styles.css 202 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u5010 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u5011 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:0px;
  33. height:0px;
  34. }
  35. #u5013 {
  36. border-width:0px;
  37. position:absolute;
  38. left:0px;
  39. top:0px;
  40. width:0px;
  41. height:0px;
  42. }
  43. #u5014_div {
  44. border-width:0px;
  45. position:absolute;
  46. left:0px;
  47. top:0px;
  48. width:129px;
  49. height:22px;
  50. background:inherit;
  51. background-color:rgba(255, 255, 255, 0);
  52. border:none;
  53. border-radius:0px;
  54. -moz-box-shadow:none;
  55. -webkit-box-shadow:none;
  56. box-shadow:none;
  57. font-size:16px;
  58. color:#FFFFFF;
  59. }
  60. #u5014 {
  61. border-width:0px;
  62. position:absolute;
  63. left:49px;
  64. top:14px;
  65. width:129px;
  66. height:22px;
  67. display:flex;
  68. font-size:16px;
  69. color:#FFFFFF;
  70. }
  71. #u5014 .text {
  72. position:absolute;
  73. align-self:flex-start;
  74. padding:0px 0px 0px 0px;
  75. box-sizing:border-box;
  76. width:100%;
  77. }
  78. #u5014_text {
  79. border-width:0px;
  80. white-space:nowrap;
  81. text-transform:none;
  82. }
  83. #u5015_div {
  84. border-width:0px;
  85. position:absolute;
  86. left:0px;
  87. top:0px;
  88. width:1600px;
  89. height:50px;
  90. background:inherit;
  91. background-color:rgba(30, 42, 68, 1);
  92. border:none;
  93. border-radius:0px;
  94. -moz-box-shadow:none;
  95. -webkit-box-shadow:none;
  96. box-shadow:none;
  97. color:#AFB3B6;
  98. }
  99. #u5015 {
  100. border-width:0px;
  101. position:absolute;
  102. left:0px;
  103. top:0px;
  104. width:1600px;
  105. height:50px;
  106. display:flex;
  107. color:#AFB3B6;
  108. }
  109. #u5015 .text {
  110. position:absolute;
  111. align-self:center;
  112. padding:2px 2px 2px 2px;
  113. box-sizing:border-box;
  114. width:100%;
  115. }
  116. #u5015_text {
  117. border-width:0px;
  118. word-wrap:break-word;
  119. text-transform:none;
  120. visibility:hidden;
  121. }
  122. #u5016 {
  123. border-width:0px;
  124. position:absolute;
  125. left:0px;
  126. top:0px;
  127. width:0px;
  128. height:0px;
  129. }
  130. #u5017_img {
  131. border-width:0px;
  132. position:absolute;
  133. left:0px;
  134. top:0px;
  135. width:31px;
  136. height:31px;
  137. }
  138. #u5017 {
  139. border-width:0px;
  140. position:absolute;
  141. left:19px;
  142. top:10px;
  143. width:31px;
  144. height:31px;
  145. display:flex;
  146. }
  147. #u5017 .text {
  148. position:absolute;
  149. align-self:center;
  150. padding:2px 2px 2px 2px;
  151. box-sizing:border-box;
  152. width:100%;
  153. }
  154. #u5017_text {
  155. border-width:0px;
  156. word-wrap:break-word;
  157. text-transform:none;
  158. }
  159. #u5018_div {
  160. border-width:0px;
  161. position:absolute;
  162. left:0px;
  163. top:0px;
  164. width:129px;
  165. height:22px;
  166. background:inherit;
  167. background-color:rgba(255, 255, 255, 0);
  168. border:none;
  169. border-radius:0px;
  170. -moz-box-shadow:none;
  171. -webkit-box-shadow:none;
  172. box-shadow:none;
  173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  174. font-weight:400;
  175. font-style:normal;
  176. font-size:16px;
  177. color:#FFFFFF;
  178. }
  179. #u5018 {
  180. border-width:0px;
  181. position:absolute;
  182. left:62px;
  183. top:14px;
  184. width:129px;
  185. height:22px;
  186. display:flex;
  187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  188. font-weight:400;
  189. font-style:normal;
  190. font-size:16px;
  191. color:#FFFFFF;
  192. }
  193. #u5018 .text {
  194. position:absolute;
  195. align-self:flex-start;
  196. padding:0px 0px 0px 0px;
  197. box-sizing:border-box;
  198. width:100%;
  199. }
  200. #u5018_text {
  201. border-width:0px;
  202. white-space:nowrap;
  203. text-transform:none;
  204. }
  205. #u5019_div {
  206. border-width:0px;
  207. position:absolute;
  208. left:0px;
  209. top:0px;
  210. width:200px;
  211. height:1200px;
  212. background:inherit;
  213. background-color:rgba(30, 42, 68, 1);
  214. border:none;
  215. border-radius:0px;
  216. -moz-box-shadow:none;
  217. -webkit-box-shadow:none;
  218. box-shadow:none;
  219. color:#AFB3B6;
  220. }
  221. #u5019 {
  222. border-width:0px;
  223. position:absolute;
  224. left:0px;
  225. top:47px;
  226. width:200px;
  227. height:1200px;
  228. display:flex;
  229. color:#AFB3B6;
  230. }
  231. #u5019 .text {
  232. position:absolute;
  233. align-self:center;
  234. padding:2px 2px 2px 2px;
  235. box-sizing:border-box;
  236. width:100%;
  237. }
  238. #u5019_text {
  239. border-width:0px;
  240. word-wrap:break-word;
  241. text-transform:none;
  242. visibility:hidden;
  243. }
  244. #u5020_img {
  245. border-width:0px;
  246. position:absolute;
  247. left:0px;
  248. top:0px;
  249. width:15px;
  250. height:15px;
  251. }
  252. #u5020 {
  253. border-width:0px;
  254. position:absolute;
  255. left:1523px;
  256. top:18px;
  257. width:15px;
  258. height:15px;
  259. display:flex;
  260. }
  261. #u5020 .text {
  262. position:absolute;
  263. align-self:center;
  264. padding:2px 2px 2px 2px;
  265. box-sizing:border-box;
  266. width:100%;
  267. }
  268. #u5020_text {
  269. border-width:0px;
  270. word-wrap:break-word;
  271. text-transform:none;
  272. visibility:hidden;
  273. }
  274. #u5021_img {
  275. border-width:0px;
  276. position:absolute;
  277. left:0px;
  278. top:0px;
  279. width:15px;
  280. height:15px;
  281. }
  282. #u5021 {
  283. border-width:0px;
  284. position:absolute;
  285. left:1493px;
  286. top:18px;
  287. width:15px;
  288. height:15px;
  289. display:flex;
  290. }
  291. #u5021 .text {
  292. position:absolute;
  293. align-self:center;
  294. padding:2px 2px 2px 2px;
  295. box-sizing:border-box;
  296. width:100%;
  297. }
  298. #u5021_text {
  299. border-width:0px;
  300. word-wrap:break-word;
  301. text-transform:none;
  302. visibility:hidden;
  303. }
  304. #u5022 {
  305. border-width:0px;
  306. position:absolute;
  307. left:0px;
  308. top:0px;
  309. width:0px;
  310. height:0px;
  311. }
  312. #u5023_img {
  313. border-width:0px;
  314. position:absolute;
  315. left:0px;
  316. top:0px;
  317. width:14px;
  318. height:14px;
  319. }
  320. #u5023 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1553px;
  324. top:18px;
  325. width:14px;
  326. height:14px;
  327. display:flex;
  328. }
  329. #u5023 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u5023_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u5024_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:8px;
  348. height:5px;
  349. }
  350. #u5024 {
  351. border-width:0px;
  352. position:absolute;
  353. left:1572px;
  354. top:23px;
  355. width:8px;
  356. height:5px;
  357. display:flex;
  358. }
  359. #u5024 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u5024_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u5025_div {
  373. border-width:0px;
  374. position:absolute;
  375. left:0px;
  376. top:0px;
  377. width:1402px;
  378. height:1200px;
  379. background:inherit;
  380. background-color:rgba(242, 242, 242, 1);
  381. border:none;
  382. border-radius:0px;
  383. -moz-box-shadow:none;
  384. -webkit-box-shadow:none;
  385. box-shadow:none;
  386. }
  387. #u5025 {
  388. border-width:0px;
  389. position:absolute;
  390. left:198px;
  391. top:47px;
  392. width:1402px;
  393. height:1200px;
  394. display:flex;
  395. }
  396. #u5025 .text {
  397. position:absolute;
  398. align-self:center;
  399. padding:2px 2px 2px 2px;
  400. box-sizing:border-box;
  401. width:100%;
  402. }
  403. #u5025_text {
  404. border-width:0px;
  405. word-wrap:break-word;
  406. text-transform:none;
  407. visibility:hidden;
  408. }
  409. #u5026 {
  410. border-width:0px;
  411. position:absolute;
  412. left:35px;
  413. top:81px;
  414. width:118px;
  415. height:220px;
  416. }
  417. #u5026_children {
  418. border-width:0px;
  419. position:absolute;
  420. left:0px;
  421. top:0px;
  422. width:0px;
  423. height:0px;
  424. }
  425. #u5027 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:98px;
  431. height:20px;
  432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  433. font-weight:400;
  434. font-style:normal;
  435. font-size:14px;
  436. color:#FFFFFF;
  437. }
  438. #u5028_div {
  439. border-width:0px;
  440. position:absolute;
  441. left:0px;
  442. top:0px;
  443. width:76px;
  444. height:20px;
  445. background:inherit;
  446. background-color:rgba(255, 255, 255, 0);
  447. border:none;
  448. border-radius:0px;
  449. -moz-box-shadow:none;
  450. -webkit-box-shadow:none;
  451. box-shadow:none;
  452. }
  453. #u5028 {
  454. border-width:0px;
  455. position:absolute;
  456. left:22px;
  457. top:0px;
  458. width:76px;
  459. height:20px;
  460. display:flex;
  461. }
  462. #u5028 .text {
  463. position:absolute;
  464. align-self:center;
  465. padding:2px 2px 2px 3px;
  466. box-sizing:border-box;
  467. width:100%;
  468. }
  469. #u5028_text {
  470. border-width:0px;
  471. white-space:nowrap;
  472. text-transform:none;
  473. }
  474. #u5029 {
  475. border-width:0px;
  476. position:absolute;
  477. left:0px;
  478. top:20px;
  479. width:84px;
  480. height:20px;
  481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  482. font-weight:400;
  483. font-style:normal;
  484. font-size:14px;
  485. color:#FFFFFF;
  486. }
  487. #u5030_img {
  488. border-width:0px;
  489. position:absolute;
  490. left:0px;
  491. top:0px;
  492. width:9px;
  493. height:9px;
  494. }
  495. #u5030 {
  496. border-width:0px;
  497. position:absolute;
  498. left:6px;
  499. top:6px;
  500. width:9px;
  501. height:9px;
  502. display:flex;
  503. }
  504. #u5030 .text {
  505. position:absolute;
  506. align-self:center;
  507. padding:2px 2px 2px 2px;
  508. box-sizing:border-box;
  509. width:100%;
  510. }
  511. #u5030_img.selected {
  512. }
  513. #u5030.selected {
  514. }
  515. #u5030_text {
  516. border-width:0px;
  517. word-wrap:break-word;
  518. text-transform:none;
  519. visibility:hidden;
  520. }
  521. #u5031_div {
  522. border-width:0px;
  523. position:absolute;
  524. left:0px;
  525. top:0px;
  526. width:62px;
  527. height:20px;
  528. background:inherit;
  529. background-color:rgba(255, 255, 255, 0);
  530. border:none;
  531. border-radius:0px;
  532. -moz-box-shadow:none;
  533. -webkit-box-shadow:none;
  534. box-shadow:none;
  535. }
  536. #u5031 {
  537. border-width:0px;
  538. position:absolute;
  539. left:22px;
  540. top:0px;
  541. width:62px;
  542. height:20px;
  543. display:flex;
  544. }
  545. #u5031 .text {
  546. position:absolute;
  547. align-self:center;
  548. padding:2px 2px 2px 3px;
  549. box-sizing:border-box;
  550. width:100%;
  551. }
  552. #u5031_text {
  553. border-width:0px;
  554. white-space:nowrap;
  555. text-transform:none;
  556. }
  557. #u5029_children {
  558. border-width:0px;
  559. position:absolute;
  560. left:0px;
  561. top:0px;
  562. width:0px;
  563. height:0px;
  564. }
  565. #u5032 {
  566. border-width:0px;
  567. position:absolute;
  568. left:20px;
  569. top:20px;
  570. width:98px;
  571. height:20px;
  572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  573. font-weight:400;
  574. font-style:normal;
  575. font-size:14px;
  576. color:#FFFFFF;
  577. }
  578. #u5033_div {
  579. border-width:0px;
  580. position:absolute;
  581. left:0px;
  582. top:0px;
  583. width:76px;
  584. height:20px;
  585. background:inherit;
  586. background-color:rgba(255, 255, 255, 0);
  587. border:none;
  588. border-radius:0px;
  589. -moz-box-shadow:none;
  590. -webkit-box-shadow:none;
  591. box-shadow:none;
  592. }
  593. #u5033 {
  594. border-width:0px;
  595. position:absolute;
  596. left:22px;
  597. top:0px;
  598. width:76px;
  599. height:20px;
  600. display:flex;
  601. }
  602. #u5033 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 3px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u5033_text {
  610. border-width:0px;
  611. white-space:nowrap;
  612. text-transform:none;
  613. }
  614. #u5034 {
  615. border-width:0px;
  616. position:absolute;
  617. left:20px;
  618. top:40px;
  619. width:98px;
  620. height:20px;
  621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  622. font-weight:400;
  623. font-style:normal;
  624. font-size:14px;
  625. color:#FFFFFF;
  626. }
  627. #u5035_div {
  628. border-width:0px;
  629. position:absolute;
  630. left:0px;
  631. top:0px;
  632. width:76px;
  633. height:20px;
  634. background:inherit;
  635. background-color:rgba(255, 255, 255, 0);
  636. border:none;
  637. border-radius:0px;
  638. -moz-box-shadow:none;
  639. -webkit-box-shadow:none;
  640. box-shadow:none;
  641. }
  642. #u5035 {
  643. border-width:0px;
  644. position:absolute;
  645. left:22px;
  646. top:0px;
  647. width:76px;
  648. height:20px;
  649. display:flex;
  650. }
  651. #u5035 .text {
  652. position:absolute;
  653. align-self:center;
  654. padding:2px 2px 2px 3px;
  655. box-sizing:border-box;
  656. width:100%;
  657. }
  658. #u5035_text {
  659. border-width:0px;
  660. white-space:nowrap;
  661. text-transform:none;
  662. }
  663. #u5036 {
  664. border-width:0px;
  665. position:absolute;
  666. left:0px;
  667. top:80px;
  668. width:84px;
  669. height:20px;
  670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  671. font-weight:400;
  672. font-style:normal;
  673. font-size:14px;
  674. color:#FFFFFF;
  675. }
  676. #u5037_img {
  677. border-width:0px;
  678. position:absolute;
  679. left:0px;
  680. top:0px;
  681. width:9px;
  682. height:9px;
  683. }
  684. #u5037 {
  685. border-width:0px;
  686. position:absolute;
  687. left:6px;
  688. top:6px;
  689. width:9px;
  690. height:9px;
  691. display:flex;
  692. }
  693. #u5037 .text {
  694. position:absolute;
  695. align-self:center;
  696. padding:2px 2px 2px 2px;
  697. box-sizing:border-box;
  698. width:100%;
  699. }
  700. #u5037_img.selected {
  701. }
  702. #u5037.selected {
  703. }
  704. #u5037_text {
  705. border-width:0px;
  706. word-wrap:break-word;
  707. text-transform:none;
  708. visibility:hidden;
  709. }
  710. #u5038_div {
  711. border-width:0px;
  712. position:absolute;
  713. left:0px;
  714. top:0px;
  715. width:62px;
  716. height:20px;
  717. background:inherit;
  718. background-color:rgba(255, 255, 255, 0);
  719. border:none;
  720. border-radius:0px;
  721. -moz-box-shadow:none;
  722. -webkit-box-shadow:none;
  723. box-shadow:none;
  724. }
  725. #u5038 {
  726. border-width:0px;
  727. position:absolute;
  728. left:22px;
  729. top:0px;
  730. width:62px;
  731. height:20px;
  732. display:flex;
  733. }
  734. #u5038 .text {
  735. position:absolute;
  736. align-self:center;
  737. padding:2px 2px 2px 3px;
  738. box-sizing:border-box;
  739. width:100%;
  740. }
  741. #u5038_text {
  742. border-width:0px;
  743. white-space:nowrap;
  744. text-transform:none;
  745. }
  746. #u5036_children {
  747. border-width:0px;
  748. position:absolute;
  749. left:0px;
  750. top:0px;
  751. width:0px;
  752. height:0px;
  753. }
  754. #u5039 {
  755. border-width:0px;
  756. position:absolute;
  757. left:20px;
  758. top:20px;
  759. width:98px;
  760. height:20px;
  761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  762. font-weight:400;
  763. font-style:normal;
  764. font-size:14px;
  765. color:#FFFFFF;
  766. }
  767. #u5040_div {
  768. border-width:0px;
  769. position:absolute;
  770. left:0px;
  771. top:0px;
  772. width:76px;
  773. height:20px;
  774. background:inherit;
  775. background-color:rgba(255, 255, 255, 0);
  776. border:none;
  777. border-radius:0px;
  778. -moz-box-shadow:none;
  779. -webkit-box-shadow:none;
  780. box-shadow:none;
  781. }
  782. #u5040 {
  783. border-width:0px;
  784. position:absolute;
  785. left:22px;
  786. top:0px;
  787. width:76px;
  788. height:20px;
  789. display:flex;
  790. }
  791. #u5040 .text {
  792. position:absolute;
  793. align-self:center;
  794. padding:2px 2px 2px 3px;
  795. box-sizing:border-box;
  796. width:100%;
  797. }
  798. #u5040_text {
  799. border-width:0px;
  800. white-space:nowrap;
  801. text-transform:none;
  802. }
  803. #u5041 {
  804. border-width:0px;
  805. position:absolute;
  806. left:20px;
  807. top:40px;
  808. width:98px;
  809. height:20px;
  810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  811. font-weight:400;
  812. font-style:normal;
  813. font-size:14px;
  814. color:#FFFFFF;
  815. }
  816. #u5042_div {
  817. border-width:0px;
  818. position:absolute;
  819. left:0px;
  820. top:0px;
  821. width:76px;
  822. height:20px;
  823. background:inherit;
  824. background-color:rgba(255, 255, 255, 0);
  825. border:none;
  826. border-radius:0px;
  827. -moz-box-shadow:none;
  828. -webkit-box-shadow:none;
  829. box-shadow:none;
  830. }
  831. #u5042 {
  832. border-width:0px;
  833. position:absolute;
  834. left:22px;
  835. top:0px;
  836. width:76px;
  837. height:20px;
  838. display:flex;
  839. }
  840. #u5042 .text {
  841. position:absolute;
  842. align-self:center;
  843. padding:2px 2px 2px 3px;
  844. box-sizing:border-box;
  845. width:100%;
  846. }
  847. #u5042_text {
  848. border-width:0px;
  849. white-space:nowrap;
  850. text-transform:none;
  851. }
  852. #u5043 {
  853. border-width:0px;
  854. position:absolute;
  855. left:0px;
  856. top:140px;
  857. width:84px;
  858. height:20px;
  859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  860. font-weight:400;
  861. font-style:normal;
  862. font-size:14px;
  863. color:#FFFFFF;
  864. }
  865. #u5044_img {
  866. border-width:0px;
  867. position:absolute;
  868. left:0px;
  869. top:0px;
  870. width:9px;
  871. height:9px;
  872. }
  873. #u5044 {
  874. border-width:0px;
  875. position:absolute;
  876. left:6px;
  877. top:6px;
  878. width:9px;
  879. height:9px;
  880. display:flex;
  881. }
  882. #u5044 .text {
  883. position:absolute;
  884. align-self:center;
  885. padding:2px 2px 2px 2px;
  886. box-sizing:border-box;
  887. width:100%;
  888. }
  889. #u5044_img.selected {
  890. }
  891. #u5044.selected {
  892. }
  893. #u5044_text {
  894. border-width:0px;
  895. word-wrap:break-word;
  896. text-transform:none;
  897. visibility:hidden;
  898. }
  899. #u5045_div {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:62px;
  905. height:20px;
  906. background:inherit;
  907. background-color:rgba(255, 255, 255, 0);
  908. border:none;
  909. border-radius:0px;
  910. -moz-box-shadow:none;
  911. -webkit-box-shadow:none;
  912. box-shadow:none;
  913. }
  914. #u5045 {
  915. border-width:0px;
  916. position:absolute;
  917. left:22px;
  918. top:0px;
  919. width:62px;
  920. height:20px;
  921. display:flex;
  922. }
  923. #u5045 .text {
  924. position:absolute;
  925. align-self:center;
  926. padding:2px 2px 2px 3px;
  927. box-sizing:border-box;
  928. width:100%;
  929. }
  930. #u5045_text {
  931. border-width:0px;
  932. white-space:nowrap;
  933. text-transform:none;
  934. }
  935. #u5043_children {
  936. border-width:0px;
  937. position:absolute;
  938. left:0px;
  939. top:0px;
  940. width:0px;
  941. height:0px;
  942. visibility:hidden;
  943. }
  944. #u5046 {
  945. border-width:0px;
  946. position:absolute;
  947. left:20px;
  948. top:20px;
  949. width:84px;
  950. height:20px;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. font-size:14px;
  955. color:#FFFFFF;
  956. }
  957. #u5047_div {
  958. border-width:0px;
  959. position:absolute;
  960. left:0px;
  961. top:0px;
  962. width:62px;
  963. height:20px;
  964. background:inherit;
  965. background-color:rgba(255, 255, 255, 0);
  966. border:none;
  967. border-radius:0px;
  968. -moz-box-shadow:none;
  969. -webkit-box-shadow:none;
  970. box-shadow:none;
  971. }
  972. #u5047 {
  973. border-width:0px;
  974. position:absolute;
  975. left:22px;
  976. top:0px;
  977. width:62px;
  978. height:20px;
  979. display:flex;
  980. }
  981. #u5047 .text {
  982. position:absolute;
  983. align-self:center;
  984. padding:2px 2px 2px 3px;
  985. box-sizing:border-box;
  986. width:100%;
  987. }
  988. #u5047_text {
  989. border-width:0px;
  990. white-space:nowrap;
  991. text-transform:none;
  992. }
  993. #u5048 {
  994. border-width:0px;
  995. position:absolute;
  996. left:20px;
  997. top:40px;
  998. width:84px;
  999. height:20px;
  1000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1001. font-weight:400;
  1002. font-style:normal;
  1003. font-size:14px;
  1004. color:#FFFFFF;
  1005. }
  1006. #u5049_div {
  1007. border-width:0px;
  1008. position:absolute;
  1009. left:0px;
  1010. top:0px;
  1011. width:62px;
  1012. height:20px;
  1013. background:inherit;
  1014. background-color:rgba(255, 255, 255, 0);
  1015. border:none;
  1016. border-radius:0px;
  1017. -moz-box-shadow:none;
  1018. -webkit-box-shadow:none;
  1019. box-shadow:none;
  1020. }
  1021. #u5049 {
  1022. border-width:0px;
  1023. position:absolute;
  1024. left:22px;
  1025. top:0px;
  1026. width:62px;
  1027. height:20px;
  1028. display:flex;
  1029. }
  1030. #u5049 .text {
  1031. position:absolute;
  1032. align-self:center;
  1033. padding:2px 2px 2px 3px;
  1034. box-sizing:border-box;
  1035. width:100%;
  1036. }
  1037. #u5049_text {
  1038. border-width:0px;
  1039. white-space:nowrap;
  1040. text-transform:none;
  1041. }
  1042. #u5050 {
  1043. border-width:0px;
  1044. position:absolute;
  1045. left:20px;
  1046. top:60px;
  1047. width:84px;
  1048. height:20px;
  1049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1050. font-weight:400;
  1051. font-style:normal;
  1052. font-size:14px;
  1053. color:#FFFFFF;
  1054. }
  1055. #u5051_div {
  1056. border-width:0px;
  1057. position:absolute;
  1058. left:0px;
  1059. top:0px;
  1060. width:62px;
  1061. height:20px;
  1062. background:inherit;
  1063. background-color:rgba(255, 255, 255, 0);
  1064. border:none;
  1065. border-radius:0px;
  1066. -moz-box-shadow:none;
  1067. -webkit-box-shadow:none;
  1068. box-shadow:none;
  1069. }
  1070. #u5051 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:22px;
  1074. top:0px;
  1075. width:62px;
  1076. height:20px;
  1077. display:flex;
  1078. }
  1079. #u5051 .text {
  1080. position:absolute;
  1081. align-self:center;
  1082. padding:2px 2px 2px 3px;
  1083. box-sizing:border-box;
  1084. width:100%;
  1085. }
  1086. #u5051_text {
  1087. border-width:0px;
  1088. white-space:nowrap;
  1089. text-transform:none;
  1090. }
  1091. #u5052 {
  1092. border-width:0px;
  1093. position:absolute;
  1094. left:20px;
  1095. top:80px;
  1096. width:84px;
  1097. height:20px;
  1098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1099. font-weight:400;
  1100. font-style:normal;
  1101. font-size:14px;
  1102. color:#FFFFFF;
  1103. }
  1104. #u5053_div {
  1105. border-width:0px;
  1106. position:absolute;
  1107. left:0px;
  1108. top:0px;
  1109. width:62px;
  1110. height:20px;
  1111. background:inherit;
  1112. background-color:rgba(255, 255, 255, 0);
  1113. border:none;
  1114. border-radius:0px;
  1115. -moz-box-shadow:none;
  1116. -webkit-box-shadow:none;
  1117. box-shadow:none;
  1118. }
  1119. #u5053 {
  1120. border-width:0px;
  1121. position:absolute;
  1122. left:22px;
  1123. top:0px;
  1124. width:62px;
  1125. height:20px;
  1126. display:flex;
  1127. }
  1128. #u5053 .text {
  1129. position:absolute;
  1130. align-self:center;
  1131. padding:2px 2px 2px 3px;
  1132. box-sizing:border-box;
  1133. width:100%;
  1134. }
  1135. #u5053_text {
  1136. border-width:0px;
  1137. white-space:nowrap;
  1138. text-transform:none;
  1139. }
  1140. #u5054 {
  1141. border-width:0px;
  1142. position:absolute;
  1143. left:0px;
  1144. top:160px;
  1145. width:98px;
  1146. height:20px;
  1147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1148. font-weight:400;
  1149. font-style:normal;
  1150. font-size:14px;
  1151. color:#FFFFFF;
  1152. }
  1153. #u5055_img {
  1154. border-width:0px;
  1155. position:absolute;
  1156. left:0px;
  1157. top:0px;
  1158. width:9px;
  1159. height:9px;
  1160. }
  1161. #u5055 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:6px;
  1165. top:6px;
  1166. width:9px;
  1167. height:9px;
  1168. display:flex;
  1169. }
  1170. #u5055 .text {
  1171. position:absolute;
  1172. align-self:center;
  1173. padding:2px 2px 2px 2px;
  1174. box-sizing:border-box;
  1175. width:100%;
  1176. }
  1177. #u5055_img.selected {
  1178. }
  1179. #u5055.selected {
  1180. }
  1181. #u5055_text {
  1182. border-width:0px;
  1183. word-wrap:break-word;
  1184. text-transform:none;
  1185. visibility:hidden;
  1186. }
  1187. #u5056_div {
  1188. border-width:0px;
  1189. position:absolute;
  1190. left:0px;
  1191. top:0px;
  1192. width:76px;
  1193. height:20px;
  1194. background:inherit;
  1195. background-color:rgba(255, 255, 255, 0);
  1196. border:none;
  1197. border-radius:0px;
  1198. -moz-box-shadow:none;
  1199. -webkit-box-shadow:none;
  1200. box-shadow:none;
  1201. }
  1202. #u5056 {
  1203. border-width:0px;
  1204. position:absolute;
  1205. left:22px;
  1206. top:0px;
  1207. width:76px;
  1208. height:20px;
  1209. display:flex;
  1210. }
  1211. #u5056 .text {
  1212. position:absolute;
  1213. align-self:center;
  1214. padding:2px 2px 2px 3px;
  1215. box-sizing:border-box;
  1216. width:100%;
  1217. }
  1218. #u5056_text {
  1219. border-width:0px;
  1220. white-space:nowrap;
  1221. text-transform:none;
  1222. }
  1223. #u5054_children {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:0px;
  1229. height:0px;
  1230. visibility:hidden;
  1231. }
  1232. #u5057 {
  1233. border-width:0px;
  1234. position:absolute;
  1235. left:20px;
  1236. top:20px;
  1237. width:98px;
  1238. height:20px;
  1239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1240. font-weight:400;
  1241. font-style:normal;
  1242. font-size:14px;
  1243. color:#FFFFFF;
  1244. }
  1245. #u5058_div {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:76px;
  1251. height:20px;
  1252. background:inherit;
  1253. background-color:rgba(255, 255, 255, 0);
  1254. border:none;
  1255. border-radius:0px;
  1256. -moz-box-shadow:none;
  1257. -webkit-box-shadow:none;
  1258. box-shadow:none;
  1259. }
  1260. #u5058 {
  1261. border-width:0px;
  1262. position:absolute;
  1263. left:22px;
  1264. top:0px;
  1265. width:76px;
  1266. height:20px;
  1267. display:flex;
  1268. }
  1269. #u5058 .text {
  1270. position:absolute;
  1271. align-self:center;
  1272. padding:2px 2px 2px 3px;
  1273. box-sizing:border-box;
  1274. width:100%;
  1275. }
  1276. #u5058_text {
  1277. border-width:0px;
  1278. white-space:nowrap;
  1279. text-transform:none;
  1280. }
  1281. #u5059 {
  1282. border-width:0px;
  1283. position:absolute;
  1284. left:20px;
  1285. top:40px;
  1286. width:98px;
  1287. height:20px;
  1288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1289. font-weight:400;
  1290. font-style:normal;
  1291. font-size:14px;
  1292. color:#FFFFFF;
  1293. }
  1294. #u5060_div {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:76px;
  1300. height:20px;
  1301. background:inherit;
  1302. background-color:rgba(255, 255, 255, 0);
  1303. border:none;
  1304. border-radius:0px;
  1305. -moz-box-shadow:none;
  1306. -webkit-box-shadow:none;
  1307. box-shadow:none;
  1308. }
  1309. #u5060 {
  1310. border-width:0px;
  1311. position:absolute;
  1312. left:22px;
  1313. top:0px;
  1314. width:76px;
  1315. height:20px;
  1316. display:flex;
  1317. }
  1318. #u5060 .text {
  1319. position:absolute;
  1320. align-self:center;
  1321. padding:2px 2px 2px 3px;
  1322. box-sizing:border-box;
  1323. width:100%;
  1324. }
  1325. #u5060_text {
  1326. border-width:0px;
  1327. white-space:nowrap;
  1328. text-transform:none;
  1329. }
  1330. #u5061 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:0px;
  1334. top:180px;
  1335. width:84px;
  1336. height:20px;
  1337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1338. font-weight:400;
  1339. font-style:normal;
  1340. font-size:14px;
  1341. color:#FFFFFF;
  1342. }
  1343. #u5062_img {
  1344. border-width:0px;
  1345. position:absolute;
  1346. left:0px;
  1347. top:0px;
  1348. width:9px;
  1349. height:9px;
  1350. }
  1351. #u5062 {
  1352. border-width:0px;
  1353. position:absolute;
  1354. left:6px;
  1355. top:6px;
  1356. width:9px;
  1357. height:9px;
  1358. display:flex;
  1359. }
  1360. #u5062 .text {
  1361. position:absolute;
  1362. align-self:center;
  1363. padding:2px 2px 2px 2px;
  1364. box-sizing:border-box;
  1365. width:100%;
  1366. }
  1367. #u5062_img.selected {
  1368. }
  1369. #u5062.selected {
  1370. }
  1371. #u5062_text {
  1372. border-width:0px;
  1373. word-wrap:break-word;
  1374. text-transform:none;
  1375. visibility:hidden;
  1376. }
  1377. #u5063_div {
  1378. border-width:0px;
  1379. position:absolute;
  1380. left:0px;
  1381. top:0px;
  1382. width:62px;
  1383. height:20px;
  1384. background:inherit;
  1385. background-color:rgba(255, 255, 255, 0);
  1386. border:none;
  1387. border-radius:0px;
  1388. -moz-box-shadow:none;
  1389. -webkit-box-shadow:none;
  1390. box-shadow:none;
  1391. }
  1392. #u5063 {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:22px;
  1396. top:0px;
  1397. width:62px;
  1398. height:20px;
  1399. display:flex;
  1400. }
  1401. #u5063 .text {
  1402. position:absolute;
  1403. align-self:center;
  1404. padding:2px 2px 2px 3px;
  1405. box-sizing:border-box;
  1406. width:100%;
  1407. }
  1408. #u5063_text {
  1409. border-width:0px;
  1410. white-space:nowrap;
  1411. text-transform:none;
  1412. }
  1413. #u5061_children {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:0px;
  1417. top:0px;
  1418. width:0px;
  1419. height:0px;
  1420. visibility:hidden;
  1421. }
  1422. #u5064 {
  1423. border-width:0px;
  1424. position:absolute;
  1425. left:20px;
  1426. top:20px;
  1427. width:98px;
  1428. height:20px;
  1429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1430. font-weight:400;
  1431. font-style:normal;
  1432. font-size:14px;
  1433. color:#FFFFFF;
  1434. }
  1435. #u5065_div {
  1436. border-width:0px;
  1437. position:absolute;
  1438. left:0px;
  1439. top:0px;
  1440. width:76px;
  1441. height:20px;
  1442. background:inherit;
  1443. background-color:rgba(255, 255, 255, 0);
  1444. border:none;
  1445. border-radius:0px;
  1446. -moz-box-shadow:none;
  1447. -webkit-box-shadow:none;
  1448. box-shadow:none;
  1449. }
  1450. #u5065 {
  1451. border-width:0px;
  1452. position:absolute;
  1453. left:22px;
  1454. top:0px;
  1455. width:76px;
  1456. height:20px;
  1457. display:flex;
  1458. }
  1459. #u5065 .text {
  1460. position:absolute;
  1461. align-self:center;
  1462. padding:2px 2px 2px 3px;
  1463. box-sizing:border-box;
  1464. width:100%;
  1465. }
  1466. #u5065_text {
  1467. border-width:0px;
  1468. white-space:nowrap;
  1469. text-transform:none;
  1470. }
  1471. #u5066 {
  1472. border-width:0px;
  1473. position:absolute;
  1474. left:20px;
  1475. top:40px;
  1476. width:84px;
  1477. height:20px;
  1478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1479. font-weight:400;
  1480. font-style:normal;
  1481. font-size:14px;
  1482. color:#FFFFFF;
  1483. }
  1484. #u5067_div {
  1485. border-width:0px;
  1486. position:absolute;
  1487. left:0px;
  1488. top:0px;
  1489. width:62px;
  1490. height:20px;
  1491. background:inherit;
  1492. background-color:rgba(255, 255, 255, 0);
  1493. border:none;
  1494. border-radius:0px;
  1495. -moz-box-shadow:none;
  1496. -webkit-box-shadow:none;
  1497. box-shadow:none;
  1498. }
  1499. #u5067 {
  1500. border-width:0px;
  1501. position:absolute;
  1502. left:22px;
  1503. top:0px;
  1504. width:62px;
  1505. height:20px;
  1506. display:flex;
  1507. }
  1508. #u5067 .text {
  1509. position:absolute;
  1510. align-self:center;
  1511. padding:2px 2px 2px 3px;
  1512. box-sizing:border-box;
  1513. width:100%;
  1514. }
  1515. #u5067_text {
  1516. border-width:0px;
  1517. white-space:nowrap;
  1518. text-transform:none;
  1519. }
  1520. #u5068 {
  1521. border-width:0px;
  1522. position:absolute;
  1523. left:0px;
  1524. top:200px;
  1525. width:84px;
  1526. height:20px;
  1527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1528. font-weight:400;
  1529. font-style:normal;
  1530. font-size:14px;
  1531. color:#FFFFFF;
  1532. }
  1533. #u5069_img {
  1534. border-width:0px;
  1535. position:absolute;
  1536. left:0px;
  1537. top:0px;
  1538. width:9px;
  1539. height:9px;
  1540. }
  1541. #u5069 {
  1542. border-width:0px;
  1543. position:absolute;
  1544. left:6px;
  1545. top:6px;
  1546. width:9px;
  1547. height:9px;
  1548. display:flex;
  1549. }
  1550. #u5069 .text {
  1551. position:absolute;
  1552. align-self:center;
  1553. padding:2px 2px 2px 2px;
  1554. box-sizing:border-box;
  1555. width:100%;
  1556. }
  1557. #u5069_img.selected {
  1558. }
  1559. #u5069.selected {
  1560. }
  1561. #u5069_text {
  1562. border-width:0px;
  1563. word-wrap:break-word;
  1564. text-transform:none;
  1565. visibility:hidden;
  1566. }
  1567. #u5070_div {
  1568. border-width:0px;
  1569. position:absolute;
  1570. left:0px;
  1571. top:0px;
  1572. width:62px;
  1573. height:20px;
  1574. background:inherit;
  1575. background-color:rgba(255, 255, 255, 0);
  1576. border:none;
  1577. border-radius:0px;
  1578. -moz-box-shadow:none;
  1579. -webkit-box-shadow:none;
  1580. box-shadow:none;
  1581. }
  1582. #u5070 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:22px;
  1586. top:0px;
  1587. width:62px;
  1588. height:20px;
  1589. display:flex;
  1590. }
  1591. #u5070 .text {
  1592. position:absolute;
  1593. align-self:center;
  1594. padding:2px 2px 2px 3px;
  1595. box-sizing:border-box;
  1596. width:100%;
  1597. }
  1598. #u5070_text {
  1599. border-width:0px;
  1600. white-space:nowrap;
  1601. text-transform:none;
  1602. }
  1603. #u5068_children {
  1604. border-width:0px;
  1605. position:absolute;
  1606. left:0px;
  1607. top:0px;
  1608. width:0px;
  1609. height:0px;
  1610. visibility:hidden;
  1611. }
  1612. #u5071 {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:20px;
  1616. top:20px;
  1617. width:84px;
  1618. height:20px;
  1619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1620. font-weight:400;
  1621. font-style:normal;
  1622. font-size:14px;
  1623. color:#FFFFFF;
  1624. }
  1625. #u5072_div {
  1626. border-width:0px;
  1627. position:absolute;
  1628. left:0px;
  1629. top:0px;
  1630. width:62px;
  1631. height:20px;
  1632. background:inherit;
  1633. background-color:rgba(255, 255, 255, 0);
  1634. border:none;
  1635. border-radius:0px;
  1636. -moz-box-shadow:none;
  1637. -webkit-box-shadow:none;
  1638. box-shadow:none;
  1639. }
  1640. #u5072 {
  1641. border-width:0px;
  1642. position:absolute;
  1643. left:22px;
  1644. top:0px;
  1645. width:62px;
  1646. height:20px;
  1647. display:flex;
  1648. }
  1649. #u5072 .text {
  1650. position:absolute;
  1651. align-self:center;
  1652. padding:2px 2px 2px 3px;
  1653. box-sizing:border-box;
  1654. width:100%;
  1655. }
  1656. #u5072_text {
  1657. border-width:0px;
  1658. white-space:nowrap;
  1659. text-transform:none;
  1660. }
  1661. #u5073 {
  1662. border-width:0px;
  1663. position:absolute;
  1664. left:20px;
  1665. top:40px;
  1666. width:84px;
  1667. height:20px;
  1668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1669. font-weight:400;
  1670. font-style:normal;
  1671. font-size:14px;
  1672. color:#FFFFFF;
  1673. }
  1674. #u5074_div {
  1675. border-width:0px;
  1676. position:absolute;
  1677. left:0px;
  1678. top:0px;
  1679. width:62px;
  1680. height:20px;
  1681. background:inherit;
  1682. background-color:rgba(255, 255, 255, 0);
  1683. border:none;
  1684. border-radius:0px;
  1685. -moz-box-shadow:none;
  1686. -webkit-box-shadow:none;
  1687. box-shadow:none;
  1688. }
  1689. #u5074 {
  1690. border-width:0px;
  1691. position:absolute;
  1692. left:22px;
  1693. top:0px;
  1694. width:62px;
  1695. height:20px;
  1696. display:flex;
  1697. }
  1698. #u5074 .text {
  1699. position:absolute;
  1700. align-self:center;
  1701. padding:2px 2px 2px 3px;
  1702. box-sizing:border-box;
  1703. width:100%;
  1704. }
  1705. #u5074_text {
  1706. border-width:0px;
  1707. white-space:nowrap;
  1708. text-transform:none;
  1709. }
  1710. #u5075 {
  1711. border-width:0px;
  1712. position:absolute;
  1713. left:20px;
  1714. top:60px;
  1715. width:84px;
  1716. height:20px;
  1717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1718. font-weight:400;
  1719. font-style:normal;
  1720. font-size:14px;
  1721. color:#FFFFFF;
  1722. }
  1723. #u5076_div {
  1724. border-width:0px;
  1725. position:absolute;
  1726. left:0px;
  1727. top:0px;
  1728. width:62px;
  1729. height:20px;
  1730. background:inherit;
  1731. background-color:rgba(255, 255, 255, 0);
  1732. border:none;
  1733. border-radius:0px;
  1734. -moz-box-shadow:none;
  1735. -webkit-box-shadow:none;
  1736. box-shadow:none;
  1737. }
  1738. #u5076 {
  1739. border-width:0px;
  1740. position:absolute;
  1741. left:22px;
  1742. top:0px;
  1743. width:62px;
  1744. height:20px;
  1745. display:flex;
  1746. }
  1747. #u5076 .text {
  1748. position:absolute;
  1749. align-self:center;
  1750. padding:2px 2px 2px 3px;
  1751. box-sizing:border-box;
  1752. width:100%;
  1753. }
  1754. #u5076_text {
  1755. border-width:0px;
  1756. white-space:nowrap;
  1757. text-transform:none;
  1758. }
  1759. #u5077 {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:0px;
  1763. top:0px;
  1764. width:0px;
  1765. height:0px;
  1766. }
  1767. #u5078_input {
  1768. position:absolute;
  1769. left:0px;
  1770. top:0px;
  1771. width:141px;
  1772. height:22px;
  1773. padding:2px 2px 2px 2px;
  1774. font-family:'ArialMT', 'Arial', sans-serif;
  1775. font-weight:400;
  1776. font-style:normal;
  1777. font-size:14px;
  1778. letter-spacing:normal;
  1779. color:#FFFFFF;
  1780. vertical-align:none;
  1781. text-align:left;
  1782. text-transform:none;
  1783. background-color:transparent;
  1784. border-color:transparent;
  1785. }
  1786. #u5078_input.disabled {
  1787. position:absolute;
  1788. left:0px;
  1789. top:0px;
  1790. width:141px;
  1791. height:22px;
  1792. padding:2px 2px 2px 2px;
  1793. font-family:'ArialMT', 'Arial', sans-serif;
  1794. font-weight:400;
  1795. font-style:normal;
  1796. font-size:14px;
  1797. letter-spacing:normal;
  1798. color:#FFFFFF;
  1799. vertical-align:none;
  1800. text-align:left;
  1801. text-transform:none;
  1802. background-color:transparent;
  1803. border-color:transparent;
  1804. }
  1805. #u5078_div {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:0px;
  1809. top:0px;
  1810. width:141px;
  1811. height:22px;
  1812. background:inherit;
  1813. background-color:rgba(255, 255, 255, 0);
  1814. border:none;
  1815. border-radius:0px;
  1816. -moz-box-shadow:none;
  1817. -webkit-box-shadow:none;
  1818. box-shadow:none;
  1819. font-size:14px;
  1820. color:#FFFFFF;
  1821. }
  1822. #u5078 {
  1823. border-width:0px;
  1824. position:absolute;
  1825. left:243px;
  1826. top:14px;
  1827. width:141px;
  1828. height:22px;
  1829. display:flex;
  1830. font-size:14px;
  1831. color:#FFFFFF;
  1832. }
  1833. #u5078 .text {
  1834. position:absolute;
  1835. align-self:flex-start;
  1836. padding:2px 2px 2px 2px;
  1837. box-sizing:border-box;
  1838. width:100%;
  1839. }
  1840. #u5078_div.disabled {
  1841. border-width:0px;
  1842. position:absolute;
  1843. left:0px;
  1844. top:0px;
  1845. width:141px;
  1846. height:22px;
  1847. background:inherit;
  1848. background-color:rgba(240, 240, 240, 1);
  1849. border:none;
  1850. border-radius:0px;
  1851. -moz-box-shadow:none;
  1852. -webkit-box-shadow:none;
  1853. box-shadow:none;
  1854. font-size:14px;
  1855. color:#FFFFFF;
  1856. }
  1857. #u5078.disabled {
  1858. }
  1859. .u5078_input_option {
  1860. font-size:14px;
  1861. }
  1862. #u5079_img {
  1863. border-width:0px;
  1864. position:absolute;
  1865. left:0px;
  1866. top:0px;
  1867. width:22px;
  1868. height:22px;
  1869. }
  1870. #u5079 {
  1871. border-width:0px;
  1872. position:absolute;
  1873. left:216px;
  1874. top:15px;
  1875. width:22px;
  1876. height:22px;
  1877. display:flex;
  1878. }
  1879. #u5079 .text {
  1880. position:absolute;
  1881. align-self:center;
  1882. padding:2px 2px 2px 2px;
  1883. box-sizing:border-box;
  1884. width:100%;
  1885. }
  1886. #u5079_text {
  1887. border-width:0px;
  1888. word-wrap:break-word;
  1889. text-transform:none;
  1890. visibility:hidden;
  1891. }
  1892. #u5080_div {
  1893. border-width:0px;
  1894. position:absolute;
  1895. left:0px;
  1896. top:0px;
  1897. width:136px;
  1898. height:16px;
  1899. background:inherit;
  1900. background-color:rgba(255, 255, 255, 0);
  1901. border:none;
  1902. border-radius:0px;
  1903. -moz-box-shadow:none;
  1904. -webkit-box-shadow:none;
  1905. box-shadow:none;
  1906. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC', sans-serif;
  1907. font-weight:200;
  1908. font-style:normal;
  1909. font-size:11px;
  1910. color:#555555;
  1911. }
  1912. #u5080 {
  1913. border-width:0px;
  1914. position:absolute;
  1915. left:208px;
  1916. top:53px;
  1917. width:136px;
  1918. height:16px;
  1919. display:flex;
  1920. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC', sans-serif;
  1921. font-weight:200;
  1922. font-style:normal;
  1923. font-size:11px;
  1924. color:#555555;
  1925. }
  1926. #u5080 .text {
  1927. position:absolute;
  1928. align-self:flex-start;
  1929. padding:0px 0px 0px 0px;
  1930. box-sizing:border-box;
  1931. width:100%;
  1932. }
  1933. #u5080_text {
  1934. border-width:0px;
  1935. white-space:nowrap;
  1936. text-transform:none;
  1937. }
  1938. #u5081_div {
  1939. border-width:0px;
  1940. position:absolute;
  1941. left:0px;
  1942. top:0px;
  1943. width:140px;
  1944. height:24px;
  1945. background:inherit;
  1946. background-color:rgba(242, 242, 242, 0.2);
  1947. border:none;
  1948. border-radius:25px;
  1949. -moz-box-shadow:none;
  1950. -webkit-box-shadow:none;
  1951. box-shadow:none;
  1952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1953. font-weight:400;
  1954. font-style:normal;
  1955. color:#FFFFFF;
  1956. text-align:center;
  1957. }
  1958. #u5081 {
  1959. border-width:0px;
  1960. position:absolute;
  1961. left:417px;
  1962. top:13px;
  1963. width:140px;
  1964. height:24px;
  1965. display:flex;
  1966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1967. font-weight:400;
  1968. font-style:normal;
  1969. color:#FFFFFF;
  1970. text-align:center;
  1971. }
  1972. #u5081 .text {
  1973. position:absolute;
  1974. align-self:center;
  1975. padding:0px 0px 0px 0px;
  1976. box-sizing:border-box;
  1977. width:100%;
  1978. }
  1979. #u5081_text {
  1980. border-width:0px;
  1981. word-wrap:break-word;
  1982. text-transform:none;
  1983. }
  1984. #u5082_div {
  1985. border-width:0px;
  1986. position:absolute;
  1987. left:0px;
  1988. top:0px;
  1989. width:85px;
  1990. height:20px;
  1991. background:inherit;
  1992. background-color:rgba(30, 42, 68, 1);
  1993. border:none;
  1994. border-radius:0px;
  1995. -moz-box-shadow:none;
  1996. -webkit-box-shadow:none;
  1997. box-shadow:none;
  1998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1999. font-weight:400;
  2000. font-style:normal;
  2001. color:#FFFFFF;
  2002. }
  2003. #u5082 {
  2004. border-width:0px;
  2005. position:absolute;
  2006. left:1374px;
  2007. top:15px;
  2008. width:85px;
  2009. height:20px;
  2010. display:flex;
  2011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2012. font-weight:400;
  2013. font-style:normal;
  2014. color:#FFFFFF;
  2015. }
  2016. #u5082 .text {
  2017. position:absolute;
  2018. align-self:flex-start;
  2019. padding:0px 0px 0px 0px;
  2020. box-sizing:border-box;
  2021. width:100%;
  2022. }
  2023. #u5082_text {
  2024. border-width:0px;
  2025. white-space:nowrap;
  2026. text-transform:none;
  2027. }
  2028. #u5083_div {
  2029. border-width:0px;
  2030. position:absolute;
  2031. left:0px;
  2032. top:0px;
  2033. width:1600px;
  2034. height:1200px;
  2035. background:inherit;
  2036. background-color:rgba(242, 242, 242, 1);
  2037. border:none;
  2038. border-radius:0px;
  2039. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2040. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2041. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2042. }
  2043. #u5083 {
  2044. border-width:0px;
  2045. position:absolute;
  2046. left:0px;
  2047. top:50px;
  2048. width:1600px;
  2049. height:1200px;
  2050. display:flex;
  2051. }
  2052. #u5083 .text {
  2053. position:absolute;
  2054. align-self:center;
  2055. padding:2px 2px 2px 2px;
  2056. box-sizing:border-box;
  2057. width:100%;
  2058. }
  2059. #u5083_text {
  2060. border-width:0px;
  2061. word-wrap:break-word;
  2062. text-transform:none;
  2063. visibility:hidden;
  2064. }
  2065. #u5084_div {
  2066. border-width:0px;
  2067. position:absolute;
  2068. left:0px;
  2069. top:0px;
  2070. width:280px;
  2071. height:1184px;
  2072. background:inherit;
  2073. background-color:rgba(255, 255, 255, 1);
  2074. box-sizing:border-box;
  2075. border-width:1px;
  2076. border-style:solid;
  2077. border-color:rgba(215, 215, 215, 1);
  2078. border-radius:0px;
  2079. -moz-box-shadow:none;
  2080. -webkit-box-shadow:none;
  2081. box-shadow:none;
  2082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2083. font-weight:400;
  2084. font-style:normal;
  2085. font-size:14px;
  2086. color:#AAAAAA;
  2087. text-align:center;
  2088. line-height:30px;
  2089. }
  2090. #u5084 {
  2091. border-width:0px;
  2092. position:absolute;
  2093. left:0px;
  2094. top:50px;
  2095. width:280px;
  2096. height:1184px;
  2097. display:flex;
  2098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2099. font-weight:400;
  2100. font-style:normal;
  2101. font-size:14px;
  2102. color:#AAAAAA;
  2103. text-align:center;
  2104. line-height:30px;
  2105. }
  2106. #u5084 .text {
  2107. position:absolute;
  2108. align-self:center;
  2109. padding:5px 10px 5px 10px;
  2110. box-sizing:border-box;
  2111. width:100%;
  2112. }
  2113. #u5084_text {
  2114. border-width:0px;
  2115. word-wrap:break-word;
  2116. text-transform:none;
  2117. visibility:hidden;
  2118. }
  2119. #u5085_div {
  2120. border-width:0px;
  2121. position:absolute;
  2122. left:0px;
  2123. top:0px;
  2124. width:1600px;
  2125. height:60px;
  2126. background:inherit;
  2127. background-color:rgba(255, 255, 255, 1);
  2128. border:none;
  2129. border-radius:0px;
  2130. -moz-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  2131. -webkit-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  2132. box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  2133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2134. font-weight:400;
  2135. font-style:normal;
  2136. font-size:14px;
  2137. color:#AAAAAA;
  2138. text-align:center;
  2139. line-height:30px;
  2140. }
  2141. #u5085 {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:0px;
  2145. top:50px;
  2146. width:1600px;
  2147. height:60px;
  2148. display:flex;
  2149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2150. font-weight:400;
  2151. font-style:normal;
  2152. font-size:14px;
  2153. color:#AAAAAA;
  2154. text-align:center;
  2155. line-height:30px;
  2156. }
  2157. #u5085 .text {
  2158. position:absolute;
  2159. align-self:center;
  2160. padding:5px 10px 5px 10px;
  2161. box-sizing:border-box;
  2162. width:100%;
  2163. }
  2164. #u5085_text {
  2165. border-width:0px;
  2166. word-wrap:break-word;
  2167. text-transform:none;
  2168. visibility:hidden;
  2169. }
  2170. #u5086_div {
  2171. border-width:0px;
  2172. position:absolute;
  2173. left:0px;
  2174. top:0px;
  2175. width:91px;
  2176. height:60px;
  2177. background:inherit;
  2178. background-color:rgba(255, 255, 255, 0);
  2179. border:none;
  2180. border-left:0px;
  2181. border-top:0px;
  2182. border-right:0px;
  2183. border-radius:0px;
  2184. border-bottom-right-radius:0px;
  2185. border-bottom-left-radius:0px;
  2186. -moz-box-shadow:none;
  2187. -webkit-box-shadow:none;
  2188. box-shadow:none;
  2189. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2190. font-weight:500;
  2191. font-style:normal;
  2192. font-size:18px;
  2193. }
  2194. #u5086 {
  2195. border-width:0px;
  2196. position:absolute;
  2197. left:103px;
  2198. top:50px;
  2199. width:91px;
  2200. height:60px;
  2201. display:flex;
  2202. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2203. font-weight:500;
  2204. font-style:normal;
  2205. font-size:18px;
  2206. }
  2207. #u5086 .text {
  2208. position:absolute;
  2209. align-self:center;
  2210. padding:5px 0px 5px 0px;
  2211. box-sizing:border-box;
  2212. width:100%;
  2213. }
  2214. #u5086_text {
  2215. border-width:0px;
  2216. white-space:nowrap;
  2217. text-transform:none;
  2218. }
  2219. #u5087_div {
  2220. border-width:0px;
  2221. position:absolute;
  2222. left:0px;
  2223. top:0px;
  2224. width:60px;
  2225. height:30px;
  2226. background:inherit;
  2227. background-color:rgba(25, 140, 251, 1);
  2228. border:none;
  2229. border-radius:4px;
  2230. -moz-box-shadow:none;
  2231. -webkit-box-shadow:none;
  2232. box-shadow:none;
  2233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2234. font-weight:400;
  2235. font-style:normal;
  2236. font-size:14px;
  2237. color:#FFFFFF;
  2238. }
  2239. #u5087 {
  2240. border-width:0px;
  2241. position:absolute;
  2242. left:1500px;
  2243. top:65px;
  2244. width:60px;
  2245. height:30px;
  2246. display:flex;
  2247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2248. font-weight:400;
  2249. font-style:normal;
  2250. font-size:14px;
  2251. color:#FFFFFF;
  2252. }
  2253. #u5087 .text {
  2254. position:absolute;
  2255. align-self:center;
  2256. padding:2px 2px 2px 2px;
  2257. box-sizing:border-box;
  2258. width:100%;
  2259. }
  2260. #u5087_text {
  2261. border-width:0px;
  2262. word-wrap:break-word;
  2263. text-transform:none;
  2264. }
  2265. #u5088_div {
  2266. border-width:0px;
  2267. position:absolute;
  2268. left:0px;
  2269. top:0px;
  2270. width:70px;
  2271. height:35px;
  2272. background:inherit;
  2273. background-color:rgba(255, 255, 255, 0);
  2274. border:none;
  2275. border-left:0px;
  2276. border-top:0px;
  2277. border-right:0px;
  2278. border-radius:0px;
  2279. border-bottom-right-radius:0px;
  2280. border-bottom-left-radius:0px;
  2281. -moz-box-shadow:none;
  2282. -webkit-box-shadow:none;
  2283. box-shadow:none;
  2284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2285. font-weight:400;
  2286. font-style:normal;
  2287. font-size:18px;
  2288. }
  2289. #u5088 {
  2290. border-width:0px;
  2291. position:absolute;
  2292. left:23px;
  2293. top:63px;
  2294. width:70px;
  2295. height:35px;
  2296. display:flex;
  2297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2298. font-weight:400;
  2299. font-style:normal;
  2300. font-size:18px;
  2301. }
  2302. #u5088 .text {
  2303. position:absolute;
  2304. align-self:center;
  2305. padding:5px 10px 5px 0px;
  2306. box-sizing:border-box;
  2307. width:100%;
  2308. }
  2309. #u5088_text {
  2310. border-width:0px;
  2311. white-space:nowrap;
  2312. text-transform:none;
  2313. }
  2314. #u5089_div {
  2315. border-width:0px;
  2316. position:absolute;
  2317. left:0px;
  2318. top:0px;
  2319. width:1002px;
  2320. height:130px;
  2321. background:inherit;
  2322. background-color:rgba(255, 255, 255, 1);
  2323. border:none;
  2324. border-radius:11px;
  2325. -moz-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  2326. -webkit-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  2327. box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  2328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2329. font-weight:400;
  2330. font-style:normal;
  2331. font-size:14px;
  2332. color:#AAAAAA;
  2333. text-align:center;
  2334. line-height:30px;
  2335. }
  2336. #u5089 {
  2337. border-width:0px;
  2338. position:absolute;
  2339. left:299px;
  2340. top:133px;
  2341. width:1002px;
  2342. height:130px;
  2343. display:flex;
  2344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2345. font-weight:400;
  2346. font-style:normal;
  2347. font-size:14px;
  2348. color:#AAAAAA;
  2349. text-align:center;
  2350. line-height:30px;
  2351. }
  2352. #u5089 .text {
  2353. position:absolute;
  2354. align-self:center;
  2355. padding:5px 10px 5px 10px;
  2356. box-sizing:border-box;
  2357. width:100%;
  2358. }
  2359. #u5089_text {
  2360. border-width:0px;
  2361. word-wrap:break-word;
  2362. text-transform:none;
  2363. visibility:hidden;
  2364. }
  2365. #u5090_input {
  2366. position:absolute;
  2367. left:0px;
  2368. top:0px;
  2369. width:946px;
  2370. height:50px;
  2371. padding:2px 2px 2px 2px;
  2372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2373. font-weight:400;
  2374. font-style:normal;
  2375. font-size:18px;
  2376. letter-spacing:normal;
  2377. color:#000000;
  2378. vertical-align:none;
  2379. text-align:left;
  2380. text-transform:none;
  2381. background-color:transparent;
  2382. border-color:transparent;
  2383. }
  2384. #u5090_input.disabled {
  2385. position:absolute;
  2386. left:0px;
  2387. top:0px;
  2388. width:946px;
  2389. height:50px;
  2390. padding:2px 2px 2px 2px;
  2391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2392. font-weight:400;
  2393. font-style:normal;
  2394. font-size:18px;
  2395. letter-spacing:normal;
  2396. color:#000000;
  2397. vertical-align:none;
  2398. text-align:left;
  2399. text-transform:none;
  2400. background-color:transparent;
  2401. border-color:transparent;
  2402. }
  2403. #u5090_div {
  2404. border-width:0px;
  2405. position:absolute;
  2406. left:0px;
  2407. top:0px;
  2408. width:946px;
  2409. height:50px;
  2410. background:inherit;
  2411. background-color:rgba(255, 255, 255, 0);
  2412. border:none;
  2413. border-radius:0px;
  2414. -moz-box-shadow:none;
  2415. -webkit-box-shadow:none;
  2416. box-shadow:none;
  2417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2418. font-weight:400;
  2419. font-style:normal;
  2420. font-size:18px;
  2421. }
  2422. #u5090 {
  2423. border-width:0px;
  2424. position:absolute;
  2425. left:327px;
  2426. top:143px;
  2427. width:946px;
  2428. height:50px;
  2429. display:flex;
  2430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2431. font-weight:400;
  2432. font-style:normal;
  2433. font-size:18px;
  2434. }
  2435. #u5090 .text {
  2436. position:absolute;
  2437. align-self:center;
  2438. padding:2px 2px 2px 2px;
  2439. box-sizing:border-box;
  2440. width:100%;
  2441. }
  2442. #u5090_div.disabled {
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:0px;
  2446. top:0px;
  2447. width:946px;
  2448. height:50px;
  2449. background:inherit;
  2450. background-color:rgba(240, 240, 240, 1);
  2451. border:none;
  2452. border-radius:0px;
  2453. -moz-box-shadow:none;
  2454. -webkit-box-shadow:none;
  2455. box-shadow:none;
  2456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2457. font-weight:400;
  2458. font-style:normal;
  2459. font-size:18px;
  2460. }
  2461. #u5090.disabled {
  2462. }
  2463. #u5091_input {
  2464. position:absolute;
  2465. left:0px;
  2466. top:0px;
  2467. width:946px;
  2468. height:50px;
  2469. padding:2px 2px 2px 2px;
  2470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2471. font-weight:400;
  2472. font-style:normal;
  2473. font-size:14px;
  2474. letter-spacing:normal;
  2475. color:#7F7F7F;
  2476. vertical-align:none;
  2477. text-align:left;
  2478. text-transform:none;
  2479. background-color:transparent;
  2480. border-color:transparent;
  2481. }
  2482. #u5091_input.disabled {
  2483. position:absolute;
  2484. left:0px;
  2485. top:0px;
  2486. width:946px;
  2487. height:50px;
  2488. padding:2px 2px 2px 2px;
  2489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2490. font-weight:400;
  2491. font-style:normal;
  2492. font-size:14px;
  2493. letter-spacing:normal;
  2494. color:#7F7F7F;
  2495. vertical-align:none;
  2496. text-align:left;
  2497. text-transform:none;
  2498. background-color:transparent;
  2499. border-color:transparent;
  2500. }
  2501. #u5091_div {
  2502. border-width:0px;
  2503. position:absolute;
  2504. left:0px;
  2505. top:0px;
  2506. width:946px;
  2507. height:50px;
  2508. background:inherit;
  2509. background-color:rgba(255, 255, 255, 0);
  2510. border:none;
  2511. border-radius:0px;
  2512. -moz-box-shadow:none;
  2513. -webkit-box-shadow:none;
  2514. box-shadow:none;
  2515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2516. font-weight:400;
  2517. font-style:normal;
  2518. font-size:14px;
  2519. color:#7F7F7F;
  2520. }
  2521. #u5091 {
  2522. border-width:0px;
  2523. position:absolute;
  2524. left:327px;
  2525. top:193px;
  2526. width:946px;
  2527. height:50px;
  2528. display:flex;
  2529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2530. font-weight:400;
  2531. font-style:normal;
  2532. font-size:14px;
  2533. color:#7F7F7F;
  2534. }
  2535. #u5091 .text {
  2536. position:absolute;
  2537. align-self:center;
  2538. padding:2px 2px 2px 2px;
  2539. box-sizing:border-box;
  2540. width:100%;
  2541. }
  2542. #u5091_div.disabled {
  2543. border-width:0px;
  2544. position:absolute;
  2545. left:0px;
  2546. top:0px;
  2547. width:946px;
  2548. height:50px;
  2549. background:inherit;
  2550. background-color:rgba(240, 240, 240, 1);
  2551. border:none;
  2552. border-radius:0px;
  2553. -moz-box-shadow:none;
  2554. -webkit-box-shadow:none;
  2555. box-shadow:none;
  2556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2557. font-weight:400;
  2558. font-style:normal;
  2559. font-size:14px;
  2560. color:#7F7F7F;
  2561. }
  2562. #u5091.disabled {
  2563. }
  2564. #u5092_div {
  2565. border-width:0px;
  2566. position:absolute;
  2567. left:0px;
  2568. top:0px;
  2569. width:278px;
  2570. height:40px;
  2571. background:inherit;
  2572. background-color:rgba(242, 242, 242, 1);
  2573. box-sizing:border-box;
  2574. border-width:1px;
  2575. border-style:solid;
  2576. border-color:rgba(215, 215, 215, 1);
  2577. border-left:0px;
  2578. border-top:0px;
  2579. border-right:0px;
  2580. border-radius:0px;
  2581. border-bottom-right-radius:0px;
  2582. border-bottom-left-radius:0px;
  2583. -moz-box-shadow:none;
  2584. -webkit-box-shadow:none;
  2585. box-shadow:none;
  2586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2587. font-weight:400;
  2588. font-style:normal;
  2589. font-size:14px;
  2590. }
  2591. #u5092 {
  2592. border-width:0px;
  2593. position:absolute;
  2594. left:0px;
  2595. top:110px;
  2596. width:278px;
  2597. height:40px;
  2598. display:flex;
  2599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2600. font-weight:400;
  2601. font-style:normal;
  2602. font-size:14px;
  2603. }
  2604. #u5092 .text {
  2605. position:absolute;
  2606. align-self:center;
  2607. padding:5px 0px 5px 20px;
  2608. box-sizing:border-box;
  2609. width:100%;
  2610. }
  2611. #u5092_text {
  2612. border-width:0px;
  2613. word-wrap:break-word;
  2614. text-transform:none;
  2615. }
  2616. #u5093 {
  2617. border-width:0px;
  2618. position:absolute;
  2619. left:0px;
  2620. top:0px;
  2621. width:0px;
  2622. height:0px;
  2623. }
  2624. #u5094_div {
  2625. border-width:0px;
  2626. position:absolute;
  2627. left:0px;
  2628. top:0px;
  2629. width:106px;
  2630. height:27px;
  2631. background:inherit;
  2632. background-color:rgba(242, 242, 242, 1);
  2633. box-sizing:border-box;
  2634. border-width:1px;
  2635. border-style:solid;
  2636. border-color:rgba(215, 215, 215, 1);
  2637. border-radius:2px;
  2638. -moz-box-shadow:none;
  2639. -webkit-box-shadow:none;
  2640. box-shadow:none;
  2641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2642. font-weight:400;
  2643. font-style:normal;
  2644. font-size:12px;
  2645. text-align:left;
  2646. }
  2647. #u5094 {
  2648. border-width:0px;
  2649. position:absolute;
  2650. left:22px;
  2651. top:170px;
  2652. width:106px;
  2653. height:27px;
  2654. display:flex;
  2655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2656. font-weight:400;
  2657. font-style:normal;
  2658. font-size:12px;
  2659. text-align:left;
  2660. }
  2661. #u5094 .text {
  2662. position:absolute;
  2663. align-self:center;
  2664. padding:5px 15px 5px 30px;
  2665. box-sizing:border-box;
  2666. width:100%;
  2667. }
  2668. #u5094_text {
  2669. border-width:0px;
  2670. white-space:nowrap;
  2671. text-transform:none;
  2672. }
  2673. #u5095_img {
  2674. border-width:0px;
  2675. position:absolute;
  2676. left:0px;
  2677. top:0px;
  2678. width:12px;
  2679. height:12px;
  2680. }
  2681. #u5095 {
  2682. border-width:0px;
  2683. position:absolute;
  2684. left:33px;
  2685. top:177px;
  2686. width:12px;
  2687. height:12px;
  2688. display:flex;
  2689. }
  2690. #u5095 .text {
  2691. position:absolute;
  2692. align-self:center;
  2693. padding:2px 2px 2px 2px;
  2694. box-sizing:border-box;
  2695. width:100%;
  2696. }
  2697. #u5095_text {
  2698. border-width:0px;
  2699. word-wrap:break-word;
  2700. text-transform:none;
  2701. visibility:hidden;
  2702. }
  2703. #u5096 {
  2704. border-width:0px;
  2705. position:absolute;
  2706. left:0px;
  2707. top:0px;
  2708. width:0px;
  2709. height:0px;
  2710. }
  2711. #u5097_img {
  2712. border-width:0px;
  2713. position:absolute;
  2714. left:0px;
  2715. top:0px;
  2716. width:77px;
  2717. height:21px;
  2718. }
  2719. #u5097 {
  2720. border-width:0px;
  2721. position:absolute;
  2722. left:1088px;
  2723. top:145px;
  2724. width:77px;
  2725. height:21px;
  2726. display:flex;
  2727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2728. font-weight:400;
  2729. font-style:normal;
  2730. font-size:12px;
  2731. }
  2732. #u5097 .text {
  2733. position:absolute;
  2734. align-self:center;
  2735. padding:2px 2px 2px 2px;
  2736. box-sizing:border-box;
  2737. width:100%;
  2738. }
  2739. #u5097_text {
  2740. border-width:0px;
  2741. white-space:nowrap;
  2742. text-transform:none;
  2743. }
  2744. #u5098_img {
  2745. border-width:0px;
  2746. position:absolute;
  2747. left:0px;
  2748. top:0px;
  2749. width:41px;
  2750. height:21px;
  2751. }
  2752. #u5098 {
  2753. border-width:0px;
  2754. position:absolute;
  2755. left:1185px;
  2756. top:145px;
  2757. width:41px;
  2758. height:21px;
  2759. display:flex;
  2760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2761. font-weight:400;
  2762. font-style:normal;
  2763. font-size:12px;
  2764. }
  2765. #u5098 .text {
  2766. position:absolute;
  2767. align-self:center;
  2768. padding:2px 2px 2px 2px;
  2769. box-sizing:border-box;
  2770. width:100%;
  2771. }
  2772. #u5098_text {
  2773. border-width:0px;
  2774. white-space:nowrap;
  2775. text-transform:none;
  2776. }
  2777. #u5099_img {
  2778. border-width:0px;
  2779. position:absolute;
  2780. left:0px;
  2781. top:0px;
  2782. width:41px;
  2783. height:21px;
  2784. }
  2785. #u5099 {
  2786. border-width:0px;
  2787. position:absolute;
  2788. left:1236px;
  2789. top:145px;
  2790. width:41px;
  2791. height:21px;
  2792. display:flex;
  2793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2794. font-weight:400;
  2795. font-style:normal;
  2796. font-size:12px;
  2797. color:#AAAAAA;
  2798. }
  2799. #u5099 .text {
  2800. position:absolute;
  2801. align-self:center;
  2802. padding:2px 2px 2px 2px;
  2803. box-sizing:border-box;
  2804. width:100%;
  2805. }
  2806. #u5099_text {
  2807. border-width:0px;
  2808. white-space:nowrap;
  2809. text-transform:none;
  2810. }
  2811. #u5100_div {
  2812. border-width:0px;
  2813. position:absolute;
  2814. left:0px;
  2815. top:0px;
  2816. width:278px;
  2817. height:40px;
  2818. background:inherit;
  2819. background-color:rgba(242, 242, 242, 1);
  2820. box-sizing:border-box;
  2821. border-width:1px;
  2822. border-style:solid;
  2823. border-color:rgba(215, 215, 215, 1);
  2824. border-left:0px;
  2825. border-top:0px;
  2826. border-right:0px;
  2827. border-radius:0px;
  2828. border-bottom-right-radius:0px;
  2829. border-bottom-left-radius:0px;
  2830. -moz-box-shadow:none;
  2831. -webkit-box-shadow:none;
  2832. box-shadow:none;
  2833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2834. font-weight:400;
  2835. font-style:normal;
  2836. font-size:14px;
  2837. }
  2838. #u5100 {
  2839. border-width:0px;
  2840. position:absolute;
  2841. left:0px;
  2842. top:227px;
  2843. width:278px;
  2844. height:40px;
  2845. display:flex;
  2846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2847. font-weight:400;
  2848. font-style:normal;
  2849. font-size:14px;
  2850. }
  2851. #u5100 .text {
  2852. position:absolute;
  2853. align-self:center;
  2854. padding:5px 0px 5px 20px;
  2855. box-sizing:border-box;
  2856. width:100%;
  2857. }
  2858. #u5100_text {
  2859. border-width:0px;
  2860. word-wrap:break-word;
  2861. text-transform:none;
  2862. }
  2863. #u5101 {
  2864. border-width:0px;
  2865. position:absolute;
  2866. left:0px;
  2867. top:0px;
  2868. width:0px;
  2869. height:0px;
  2870. }
  2871. #u5102_div {
  2872. border-width:0px;
  2873. position:absolute;
  2874. left:0px;
  2875. top:0px;
  2876. width:100px;
  2877. height:27px;
  2878. background:inherit;
  2879. background-color:rgba(242, 242, 242, 0.16078431372549);
  2880. box-sizing:border-box;
  2881. border-width:1px;
  2882. border-style:solid;
  2883. border-color:rgba(215, 215, 215, 1);
  2884. border-radius:2px;
  2885. -moz-box-shadow:none;
  2886. -webkit-box-shadow:none;
  2887. box-shadow:none;
  2888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2889. font-weight:400;
  2890. font-style:normal;
  2891. font-size:12px;
  2892. text-align:left;
  2893. }
  2894. #u5102 {
  2895. border-width:0px;
  2896. position:absolute;
  2897. left:22px;
  2898. top:318px;
  2899. width:100px;
  2900. height:27px;
  2901. display:flex;
  2902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2903. font-weight:400;
  2904. font-style:normal;
  2905. font-size:12px;
  2906. text-align:left;
  2907. }
  2908. #u5102 .text {
  2909. position:absolute;
  2910. align-self:center;
  2911. padding:5px 15px 5px 30px;
  2912. box-sizing:border-box;
  2913. width:100%;
  2914. }
  2915. #u5102_text {
  2916. border-width:0px;
  2917. word-wrap:break-word;
  2918. text-transform:none;
  2919. }
  2920. #u5103_img {
  2921. border-width:0px;
  2922. position:absolute;
  2923. left:0px;
  2924. top:0px;
  2925. width:12px;
  2926. height:12px;
  2927. }
  2928. #u5103 {
  2929. border-width:0px;
  2930. position:absolute;
  2931. left:33px;
  2932. top:325px;
  2933. width:12px;
  2934. height:12px;
  2935. display:flex;
  2936. }
  2937. #u5103 .text {
  2938. position:absolute;
  2939. align-self:center;
  2940. padding:2px 2px 2px 2px;
  2941. box-sizing:border-box;
  2942. width:100%;
  2943. }
  2944. #u5103_text {
  2945. border-width:0px;
  2946. word-wrap:break-word;
  2947. text-transform:none;
  2948. visibility:hidden;
  2949. }
  2950. #u5104 {
  2951. border-width:0px;
  2952. position:absolute;
  2953. left:0px;
  2954. top:0px;
  2955. width:0px;
  2956. height:0px;
  2957. }
  2958. #u5105_div {
  2959. border-width:0px;
  2960. position:absolute;
  2961. left:0px;
  2962. top:0px;
  2963. width:100px;
  2964. height:27px;
  2965. background:inherit;
  2966. background-color:rgba(242, 242, 242, 0.16078431372549);
  2967. box-sizing:border-box;
  2968. border-width:1px;
  2969. border-style:solid;
  2970. border-color:rgba(215, 215, 215, 1);
  2971. border-radius:2px;
  2972. -moz-box-shadow:none;
  2973. -webkit-box-shadow:none;
  2974. box-shadow:none;
  2975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2976. font-weight:400;
  2977. font-style:normal;
  2978. font-size:12px;
  2979. text-align:left;
  2980. }
  2981. #u5105 {
  2982. border-width:0px;
  2983. position:absolute;
  2984. left:22px;
  2985. top:281px;
  2986. width:100px;
  2987. height:27px;
  2988. display:flex;
  2989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2990. font-weight:400;
  2991. font-style:normal;
  2992. font-size:12px;
  2993. text-align:left;
  2994. }
  2995. #u5105 .text {
  2996. position:absolute;
  2997. align-self:center;
  2998. padding:5px 15px 5px 30px;
  2999. box-sizing:border-box;
  3000. width:100%;
  3001. }
  3002. #u5105_text {
  3003. border-width:0px;
  3004. word-wrap:break-word;
  3005. text-transform:none;
  3006. }
  3007. #u5106_img {
  3008. border-width:0px;
  3009. position:absolute;
  3010. left:0px;
  3011. top:0px;
  3012. width:12px;
  3013. height:12px;
  3014. }
  3015. #u5106 {
  3016. border-width:0px;
  3017. position:absolute;
  3018. left:33px;
  3019. top:288px;
  3020. width:12px;
  3021. height:12px;
  3022. display:flex;
  3023. }
  3024. #u5106 .text {
  3025. position:absolute;
  3026. align-self:center;
  3027. padding:2px 2px 2px 2px;
  3028. box-sizing:border-box;
  3029. width:100%;
  3030. }
  3031. #u5106_text {
  3032. border-width:0px;
  3033. word-wrap:break-word;
  3034. text-transform:none;
  3035. visibility:hidden;
  3036. }
  3037. #u5107 {
  3038. border-width:0px;
  3039. position:absolute;
  3040. left:0px;
  3041. top:0px;
  3042. width:0px;
  3043. height:0px;
  3044. }
  3045. #u5108_div {
  3046. border-width:0px;
  3047. position:absolute;
  3048. left:0px;
  3049. top:0px;
  3050. width:100px;
  3051. height:27px;
  3052. background:inherit;
  3053. background-color:rgba(242, 242, 242, 0.16078431372549);
  3054. box-sizing:border-box;
  3055. border-width:1px;
  3056. border-style:solid;
  3057. border-color:rgba(215, 215, 215, 1);
  3058. border-radius:2px;
  3059. -moz-box-shadow:none;
  3060. -webkit-box-shadow:none;
  3061. box-shadow:none;
  3062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3063. font-weight:400;
  3064. font-style:normal;
  3065. font-size:12px;
  3066. text-align:left;
  3067. }
  3068. #u5108 {
  3069. border-width:0px;
  3070. position:absolute;
  3071. left:146px;
  3072. top:281px;
  3073. width:100px;
  3074. height:27px;
  3075. display:flex;
  3076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3077. font-weight:400;
  3078. font-style:normal;
  3079. font-size:12px;
  3080. text-align:left;
  3081. }
  3082. #u5108 .text {
  3083. position:absolute;
  3084. align-self:center;
  3085. padding:5px 15px 5px 30px;
  3086. box-sizing:border-box;
  3087. width:100%;
  3088. }
  3089. #u5108_text {
  3090. border-width:0px;
  3091. word-wrap:break-word;
  3092. text-transform:none;
  3093. }
  3094. #u5109_img {
  3095. border-width:0px;
  3096. position:absolute;
  3097. left:0px;
  3098. top:0px;
  3099. width:12px;
  3100. height:12px;
  3101. }
  3102. #u5109 {
  3103. border-width:0px;
  3104. position:absolute;
  3105. left:157px;
  3106. top:288px;
  3107. width:12px;
  3108. height:12px;
  3109. display:flex;
  3110. }
  3111. #u5109 .text {
  3112. position:absolute;
  3113. align-self:center;
  3114. padding:2px 2px 2px 2px;
  3115. box-sizing:border-box;
  3116. width:100%;
  3117. }
  3118. #u5109_text {
  3119. border-width:0px;
  3120. word-wrap:break-word;
  3121. text-transform:none;
  3122. visibility:hidden;
  3123. }
  3124. #u5110 {
  3125. border-width:0px;
  3126. position:absolute;
  3127. left:0px;
  3128. top:0px;
  3129. width:0px;
  3130. height:0px;
  3131. }
  3132. #u5111_div {
  3133. border-width:0px;
  3134. position:absolute;
  3135. left:0px;
  3136. top:0px;
  3137. width:100px;
  3138. height:27px;
  3139. background:inherit;
  3140. background-color:rgba(242, 242, 242, 0.16078431372549);
  3141. box-sizing:border-box;
  3142. border-width:1px;
  3143. border-style:solid;
  3144. border-color:rgba(215, 215, 215, 1);
  3145. border-radius:2px;
  3146. -moz-box-shadow:none;
  3147. -webkit-box-shadow:none;
  3148. box-shadow:none;
  3149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3150. font-weight:400;
  3151. font-style:normal;
  3152. font-size:12px;
  3153. text-align:left;
  3154. }
  3155. #u5111 {
  3156. border-width:0px;
  3157. position:absolute;
  3158. left:146px;
  3159. top:318px;
  3160. width:100px;
  3161. height:27px;
  3162. display:flex;
  3163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3164. font-weight:400;
  3165. font-style:normal;
  3166. font-size:12px;
  3167. text-align:left;
  3168. }
  3169. #u5111 .text {
  3170. position:absolute;
  3171. align-self:center;
  3172. padding:5px 15px 5px 30px;
  3173. box-sizing:border-box;
  3174. width:100%;
  3175. }
  3176. #u5111_text {
  3177. border-width:0px;
  3178. word-wrap:break-word;
  3179. text-transform:none;
  3180. }
  3181. #u5112_img {
  3182. border-width:0px;
  3183. position:absolute;
  3184. left:0px;
  3185. top:0px;
  3186. width:12px;
  3187. height:12px;
  3188. }
  3189. #u5112 {
  3190. border-width:0px;
  3191. position:absolute;
  3192. left:157px;
  3193. top:325px;
  3194. width:12px;
  3195. height:12px;
  3196. display:flex;
  3197. }
  3198. #u5112 .text {
  3199. position:absolute;
  3200. align-self:center;
  3201. padding:2px 2px 2px 2px;
  3202. box-sizing:border-box;
  3203. width:100%;
  3204. }
  3205. #u5112_text {
  3206. border-width:0px;
  3207. word-wrap:break-word;
  3208. text-transform:none;
  3209. visibility:hidden;
  3210. }
  3211. #u5113 {
  3212. border-width:0px;
  3213. position:absolute;
  3214. left:0px;
  3215. top:0px;
  3216. width:0px;
  3217. height:0px;
  3218. }
  3219. #u5114_div {
  3220. border-width:0px;
  3221. position:absolute;
  3222. left:0px;
  3223. top:0px;
  3224. width:100px;
  3225. height:27px;
  3226. background:inherit;
  3227. background-color:rgba(242, 242, 242, 0.16078431372549);
  3228. box-sizing:border-box;
  3229. border-width:1px;
  3230. border-style:solid;
  3231. border-color:rgba(215, 215, 215, 1);
  3232. border-radius:2px;
  3233. -moz-box-shadow:none;
  3234. -webkit-box-shadow:none;
  3235. box-shadow:none;
  3236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3237. font-weight:400;
  3238. font-style:normal;
  3239. font-size:12px;
  3240. text-align:left;
  3241. }
  3242. #u5114 {
  3243. border-width:0px;
  3244. position:absolute;
  3245. left:22px;
  3246. top:355px;
  3247. width:100px;
  3248. height:27px;
  3249. display:flex;
  3250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3251. font-weight:400;
  3252. font-style:normal;
  3253. font-size:12px;
  3254. text-align:left;
  3255. }
  3256. #u5114 .text {
  3257. position:absolute;
  3258. align-self:center;
  3259. padding:5px 15px 5px 30px;
  3260. box-sizing:border-box;
  3261. width:100%;
  3262. }
  3263. #u5114_text {
  3264. border-width:0px;
  3265. word-wrap:break-word;
  3266. text-transform:none;
  3267. }
  3268. #u5115_img {
  3269. border-width:0px;
  3270. position:absolute;
  3271. left:0px;
  3272. top:0px;
  3273. width:12px;
  3274. height:12px;
  3275. }
  3276. #u5115 {
  3277. border-width:0px;
  3278. position:absolute;
  3279. left:33px;
  3280. top:362px;
  3281. width:12px;
  3282. height:12px;
  3283. display:flex;
  3284. }
  3285. #u5115 .text {
  3286. position:absolute;
  3287. align-self:center;
  3288. padding:2px 2px 2px 2px;
  3289. box-sizing:border-box;
  3290. width:100%;
  3291. }
  3292. #u5115_text {
  3293. border-width:0px;
  3294. word-wrap:break-word;
  3295. text-transform:none;
  3296. visibility:hidden;
  3297. }
  3298. #u5116 {
  3299. border-width:0px;
  3300. position:absolute;
  3301. left:0px;
  3302. top:0px;
  3303. width:0px;
  3304. height:0px;
  3305. }
  3306. #u5117_div {
  3307. border-width:0px;
  3308. position:absolute;
  3309. left:0px;
  3310. top:0px;
  3311. width:100px;
  3312. height:27px;
  3313. background:inherit;
  3314. background-color:rgba(242, 242, 242, 0.16078431372549);
  3315. box-sizing:border-box;
  3316. border-width:1px;
  3317. border-style:solid;
  3318. border-color:rgba(215, 215, 215, 1);
  3319. border-radius:2px;
  3320. -moz-box-shadow:none;
  3321. -webkit-box-shadow:none;
  3322. box-shadow:none;
  3323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3324. font-weight:400;
  3325. font-style:normal;
  3326. font-size:12px;
  3327. text-align:left;
  3328. }
  3329. #u5117 {
  3330. border-width:0px;
  3331. position:absolute;
  3332. left:146px;
  3333. top:355px;
  3334. width:100px;
  3335. height:27px;
  3336. display:flex;
  3337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3338. font-weight:400;
  3339. font-style:normal;
  3340. font-size:12px;
  3341. text-align:left;
  3342. }
  3343. #u5117 .text {
  3344. position:absolute;
  3345. align-self:center;
  3346. padding:5px 15px 5px 30px;
  3347. box-sizing:border-box;
  3348. width:100%;
  3349. }
  3350. #u5117_text {
  3351. border-width:0px;
  3352. word-wrap:break-word;
  3353. text-transform:none;
  3354. }
  3355. #u5118_img {
  3356. border-width:0px;
  3357. position:absolute;
  3358. left:0px;
  3359. top:0px;
  3360. width:12px;
  3361. height:12px;
  3362. }
  3363. #u5118 {
  3364. border-width:0px;
  3365. position:absolute;
  3366. left:157px;
  3367. top:362px;
  3368. width:12px;
  3369. height:12px;
  3370. display:flex;
  3371. }
  3372. #u5118 .text {
  3373. position:absolute;
  3374. align-self:center;
  3375. padding:2px 2px 2px 2px;
  3376. box-sizing:border-box;
  3377. width:100%;
  3378. }
  3379. #u5118_text {
  3380. border-width:0px;
  3381. word-wrap:break-word;
  3382. text-transform:none;
  3383. visibility:hidden;
  3384. }
  3385. #u5119 {
  3386. border-width:0px;
  3387. position:absolute;
  3388. left:0px;
  3389. top:0px;
  3390. width:0px;
  3391. height:0px;
  3392. }
  3393. #u5120_div {
  3394. border-width:0px;
  3395. position:absolute;
  3396. left:0px;
  3397. top:0px;
  3398. width:100px;
  3399. height:27px;
  3400. background:inherit;
  3401. background-color:rgba(242, 242, 242, 0.16078431372549);
  3402. box-sizing:border-box;
  3403. border-width:1px;
  3404. border-style:solid;
  3405. border-color:rgba(215, 215, 215, 1);
  3406. border-radius:2px;
  3407. -moz-box-shadow:none;
  3408. -webkit-box-shadow:none;
  3409. box-shadow:none;
  3410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3411. font-weight:400;
  3412. font-style:normal;
  3413. font-size:12px;
  3414. text-align:left;
  3415. }
  3416. #u5120 {
  3417. border-width:0px;
  3418. position:absolute;
  3419. left:22px;
  3420. top:392px;
  3421. width:100px;
  3422. height:27px;
  3423. display:flex;
  3424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3425. font-weight:400;
  3426. font-style:normal;
  3427. font-size:12px;
  3428. text-align:left;
  3429. }
  3430. #u5120 .text {
  3431. position:absolute;
  3432. align-self:center;
  3433. padding:5px 15px 5px 30px;
  3434. box-sizing:border-box;
  3435. width:100%;
  3436. }
  3437. #u5120_text {
  3438. border-width:0px;
  3439. word-wrap:break-word;
  3440. text-transform:none;
  3441. }
  3442. #u5121_img {
  3443. border-width:0px;
  3444. position:absolute;
  3445. left:0px;
  3446. top:0px;
  3447. width:12px;
  3448. height:12px;
  3449. }
  3450. #u5121 {
  3451. border-width:0px;
  3452. position:absolute;
  3453. left:33px;
  3454. top:399px;
  3455. width:12px;
  3456. height:12px;
  3457. display:flex;
  3458. }
  3459. #u5121 .text {
  3460. position:absolute;
  3461. align-self:center;
  3462. padding:2px 2px 2px 2px;
  3463. box-sizing:border-box;
  3464. width:100%;
  3465. }
  3466. #u5121_text {
  3467. border-width:0px;
  3468. word-wrap:break-word;
  3469. text-transform:none;
  3470. visibility:hidden;
  3471. }
  3472. #u5122 {
  3473. border-width:0px;
  3474. position:absolute;
  3475. left:0px;
  3476. top:0px;
  3477. width:0px;
  3478. height:0px;
  3479. }
  3480. #u5123_div {
  3481. border-width:0px;
  3482. position:absolute;
  3483. left:0px;
  3484. top:0px;
  3485. width:100px;
  3486. height:27px;
  3487. background:inherit;
  3488. background-color:rgba(242, 242, 242, 0.16078431372549);
  3489. box-sizing:border-box;
  3490. border-width:1px;
  3491. border-style:solid;
  3492. border-color:rgba(215, 215, 215, 1);
  3493. border-radius:2px;
  3494. -moz-box-shadow:none;
  3495. -webkit-box-shadow:none;
  3496. box-shadow:none;
  3497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3498. font-weight:400;
  3499. font-style:normal;
  3500. font-size:12px;
  3501. text-align:left;
  3502. }
  3503. #u5123 {
  3504. border-width:0px;
  3505. position:absolute;
  3506. left:146px;
  3507. top:392px;
  3508. width:100px;
  3509. height:27px;
  3510. display:flex;
  3511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3512. font-weight:400;
  3513. font-style:normal;
  3514. font-size:12px;
  3515. text-align:left;
  3516. }
  3517. #u5123 .text {
  3518. position:absolute;
  3519. align-self:center;
  3520. padding:5px 15px 5px 30px;
  3521. box-sizing:border-box;
  3522. width:100%;
  3523. }
  3524. #u5123_text {
  3525. border-width:0px;
  3526. word-wrap:break-word;
  3527. text-transform:none;
  3528. }
  3529. #u5124_img {
  3530. border-width:0px;
  3531. position:absolute;
  3532. left:0px;
  3533. top:0px;
  3534. width:12px;
  3535. height:12px;
  3536. }
  3537. #u5124 {
  3538. border-width:0px;
  3539. position:absolute;
  3540. left:157px;
  3541. top:399px;
  3542. width:12px;
  3543. height:12px;
  3544. display:flex;
  3545. }
  3546. #u5124 .text {
  3547. position:absolute;
  3548. align-self:center;
  3549. padding:2px 2px 2px 2px;
  3550. box-sizing:border-box;
  3551. width:100%;
  3552. }
  3553. #u5124_text {
  3554. border-width:0px;
  3555. word-wrap:break-word;
  3556. text-transform:none;
  3557. visibility:hidden;
  3558. }
  3559. #u5125 {
  3560. border-width:0px;
  3561. position:absolute;
  3562. left:0px;
  3563. top:0px;
  3564. width:0px;
  3565. height:0px;
  3566. }
  3567. #u5126_div {
  3568. border-width:0px;
  3569. position:absolute;
  3570. left:0px;
  3571. top:0px;
  3572. width:100px;
  3573. height:27px;
  3574. background:inherit;
  3575. background-color:rgba(242, 242, 242, 0.16078431372549);
  3576. box-sizing:border-box;
  3577. border-width:1px;
  3578. border-style:solid;
  3579. border-color:rgba(215, 215, 215, 1);
  3580. border-radius:2px;
  3581. -moz-box-shadow:none;
  3582. -webkit-box-shadow:none;
  3583. box-shadow:none;
  3584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3585. font-weight:400;
  3586. font-style:normal;
  3587. font-size:12px;
  3588. text-align:left;
  3589. }
  3590. #u5126 {
  3591. border-width:0px;
  3592. position:absolute;
  3593. left:22px;
  3594. top:429px;
  3595. width:100px;
  3596. height:27px;
  3597. display:flex;
  3598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3599. font-weight:400;
  3600. font-style:normal;
  3601. font-size:12px;
  3602. text-align:left;
  3603. }
  3604. #u5126 .text {
  3605. position:absolute;
  3606. align-self:center;
  3607. padding:5px 15px 5px 30px;
  3608. box-sizing:border-box;
  3609. width:100%;
  3610. }
  3611. #u5126_text {
  3612. border-width:0px;
  3613. word-wrap:break-word;
  3614. text-transform:none;
  3615. }
  3616. #u5127_img {
  3617. border-width:0px;
  3618. position:absolute;
  3619. left:0px;
  3620. top:0px;
  3621. width:12px;
  3622. height:12px;
  3623. }
  3624. #u5127 {
  3625. border-width:0px;
  3626. position:absolute;
  3627. left:33px;
  3628. top:436px;
  3629. width:12px;
  3630. height:12px;
  3631. display:flex;
  3632. }
  3633. #u5127 .text {
  3634. position:absolute;
  3635. align-self:center;
  3636. padding:2px 2px 2px 2px;
  3637. box-sizing:border-box;
  3638. width:100%;
  3639. }
  3640. #u5127_text {
  3641. border-width:0px;
  3642. word-wrap:break-word;
  3643. text-transform:none;
  3644. visibility:hidden;
  3645. }
  3646. #u5128 {
  3647. border-width:0px;
  3648. position:absolute;
  3649. left:0px;
  3650. top:0px;
  3651. width:0px;
  3652. height:0px;
  3653. }
  3654. #u5129_div {
  3655. border-width:0px;
  3656. position:absolute;
  3657. left:0px;
  3658. top:0px;
  3659. width:100px;
  3660. height:27px;
  3661. background:inherit;
  3662. background-color:rgba(242, 242, 242, 0.16078431372549);
  3663. box-sizing:border-box;
  3664. border-width:1px;
  3665. border-style:solid;
  3666. border-color:rgba(215, 215, 215, 1);
  3667. border-radius:2px;
  3668. -moz-box-shadow:none;
  3669. -webkit-box-shadow:none;
  3670. box-shadow:none;
  3671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3672. font-weight:400;
  3673. font-style:normal;
  3674. font-size:12px;
  3675. text-align:left;
  3676. }
  3677. #u5129 {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:146px;
  3681. top:429px;
  3682. width:100px;
  3683. height:27px;
  3684. display:flex;
  3685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3686. font-weight:400;
  3687. font-style:normal;
  3688. font-size:12px;
  3689. text-align:left;
  3690. }
  3691. #u5129 .text {
  3692. position:absolute;
  3693. align-self:center;
  3694. padding:5px 15px 5px 30px;
  3695. box-sizing:border-box;
  3696. width:100%;
  3697. }
  3698. #u5129_text {
  3699. border-width:0px;
  3700. word-wrap:break-word;
  3701. text-transform:none;
  3702. }
  3703. #u5130_img {
  3704. border-width:0px;
  3705. position:absolute;
  3706. left:0px;
  3707. top:0px;
  3708. width:12px;
  3709. height:12px;
  3710. }
  3711. #u5130 {
  3712. border-width:0px;
  3713. position:absolute;
  3714. left:157px;
  3715. top:436px;
  3716. width:12px;
  3717. height:12px;
  3718. display:flex;
  3719. }
  3720. #u5130 .text {
  3721. position:absolute;
  3722. align-self:center;
  3723. padding:2px 2px 2px 2px;
  3724. box-sizing:border-box;
  3725. width:100%;
  3726. }
  3727. #u5130_text {
  3728. border-width:0px;
  3729. word-wrap:break-word;
  3730. text-transform:none;
  3731. visibility:hidden;
  3732. }
  3733. #u5131 {
  3734. border-width:0px;
  3735. position:absolute;
  3736. left:0px;
  3737. top:0px;
  3738. width:0px;
  3739. height:0px;
  3740. }
  3741. #u5132_div {
  3742. border-width:0px;
  3743. position:absolute;
  3744. left:0px;
  3745. top:0px;
  3746. width:100px;
  3747. height:27px;
  3748. background:inherit;
  3749. background-color:rgba(242, 242, 242, 0.16078431372549);
  3750. box-sizing:border-box;
  3751. border-width:1px;
  3752. border-style:solid;
  3753. border-color:rgba(215, 215, 215, 1);
  3754. border-radius:2px;
  3755. -moz-box-shadow:none;
  3756. -webkit-box-shadow:none;
  3757. box-shadow:none;
  3758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3759. font-weight:400;
  3760. font-style:normal;
  3761. font-size:12px;
  3762. text-align:left;
  3763. }
  3764. #u5132 {
  3765. border-width:0px;
  3766. position:absolute;
  3767. left:22px;
  3768. top:536px;
  3769. width:100px;
  3770. height:27px;
  3771. display:flex;
  3772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3773. font-weight:400;
  3774. font-style:normal;
  3775. font-size:12px;
  3776. text-align:left;
  3777. }
  3778. #u5132 .text {
  3779. position:absolute;
  3780. align-self:center;
  3781. padding:5px 15px 5px 30px;
  3782. box-sizing:border-box;
  3783. width:100%;
  3784. }
  3785. #u5132_text {
  3786. border-width:0px;
  3787. word-wrap:break-word;
  3788. text-transform:none;
  3789. }
  3790. #u5133_img {
  3791. border-width:0px;
  3792. position:absolute;
  3793. left:0px;
  3794. top:0px;
  3795. width:12px;
  3796. height:12px;
  3797. }
  3798. #u5133 {
  3799. border-width:0px;
  3800. position:absolute;
  3801. left:33px;
  3802. top:543px;
  3803. width:12px;
  3804. height:12px;
  3805. display:flex;
  3806. }
  3807. #u5133 .text {
  3808. position:absolute;
  3809. align-self:center;
  3810. padding:2px 2px 2px 2px;
  3811. box-sizing:border-box;
  3812. width:100%;
  3813. }
  3814. #u5133_text {
  3815. border-width:0px;
  3816. word-wrap:break-word;
  3817. text-transform:none;
  3818. visibility:hidden;
  3819. }
  3820. #u5134 {
  3821. border-width:0px;
  3822. position:absolute;
  3823. left:0px;
  3824. top:0px;
  3825. width:0px;
  3826. height:0px;
  3827. }
  3828. #u5135_div {
  3829. border-width:0px;
  3830. position:absolute;
  3831. left:0px;
  3832. top:0px;
  3833. width:100px;
  3834. height:27px;
  3835. background:inherit;
  3836. background-color:rgba(242, 242, 242, 0.16078431372549);
  3837. box-sizing:border-box;
  3838. border-width:1px;
  3839. border-style:solid;
  3840. border-color:rgba(215, 215, 215, 1);
  3841. border-radius:2px;
  3842. -moz-box-shadow:none;
  3843. -webkit-box-shadow:none;
  3844. box-shadow:none;
  3845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3846. font-weight:400;
  3847. font-style:normal;
  3848. font-size:12px;
  3849. text-align:left;
  3850. }
  3851. #u5135 {
  3852. border-width:0px;
  3853. position:absolute;
  3854. left:146px;
  3855. top:536px;
  3856. width:100px;
  3857. height:27px;
  3858. display:flex;
  3859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3860. font-weight:400;
  3861. font-style:normal;
  3862. font-size:12px;
  3863. text-align:left;
  3864. }
  3865. #u5135 .text {
  3866. position:absolute;
  3867. align-self:center;
  3868. padding:5px 15px 5px 30px;
  3869. box-sizing:border-box;
  3870. width:100%;
  3871. }
  3872. #u5135_text {
  3873. border-width:0px;
  3874. word-wrap:break-word;
  3875. text-transform:none;
  3876. }
  3877. #u5136_img {
  3878. border-width:0px;
  3879. position:absolute;
  3880. left:0px;
  3881. top:0px;
  3882. width:12px;
  3883. height:12px;
  3884. }
  3885. #u5136 {
  3886. border-width:0px;
  3887. position:absolute;
  3888. left:157px;
  3889. top:543px;
  3890. width:12px;
  3891. height:12px;
  3892. display:flex;
  3893. }
  3894. #u5136 .text {
  3895. position:absolute;
  3896. align-self:center;
  3897. padding:2px 2px 2px 2px;
  3898. box-sizing:border-box;
  3899. width:100%;
  3900. }
  3901. #u5136_text {
  3902. border-width:0px;
  3903. word-wrap:break-word;
  3904. text-transform:none;
  3905. visibility:hidden;
  3906. }
  3907. #u5137 {
  3908. border-width:0px;
  3909. position:absolute;
  3910. left:0px;
  3911. top:0px;
  3912. width:0px;
  3913. height:0px;
  3914. }
  3915. #u5138_div {
  3916. border-width:0px;
  3917. position:absolute;
  3918. left:0px;
  3919. top:0px;
  3920. width:100px;
  3921. height:27px;
  3922. background:inherit;
  3923. background-color:rgba(242, 242, 242, 0.16078431372549);
  3924. box-sizing:border-box;
  3925. border-width:1px;
  3926. border-style:solid;
  3927. border-color:rgba(215, 215, 215, 1);
  3928. border-radius:2px;
  3929. -moz-box-shadow:none;
  3930. -webkit-box-shadow:none;
  3931. box-shadow:none;
  3932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3933. font-weight:400;
  3934. font-style:normal;
  3935. font-size:12px;
  3936. text-align:left;
  3937. }
  3938. #u5138 {
  3939. border-width:0px;
  3940. position:absolute;
  3941. left:22px;
  3942. top:573px;
  3943. width:100px;
  3944. height:27px;
  3945. display:flex;
  3946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3947. font-weight:400;
  3948. font-style:normal;
  3949. font-size:12px;
  3950. text-align:left;
  3951. }
  3952. #u5138 .text {
  3953. position:absolute;
  3954. align-self:center;
  3955. padding:5px 15px 5px 30px;
  3956. box-sizing:border-box;
  3957. width:100%;
  3958. }
  3959. #u5138_text {
  3960. border-width:0px;
  3961. word-wrap:break-word;
  3962. text-transform:none;
  3963. }
  3964. #u5139_img {
  3965. border-width:0px;
  3966. position:absolute;
  3967. left:0px;
  3968. top:0px;
  3969. width:12px;
  3970. height:12px;
  3971. }
  3972. #u5139 {
  3973. border-width:0px;
  3974. position:absolute;
  3975. left:33px;
  3976. top:580px;
  3977. width:12px;
  3978. height:12px;
  3979. display:flex;
  3980. }
  3981. #u5139 .text {
  3982. position:absolute;
  3983. align-self:center;
  3984. padding:2px 2px 2px 2px;
  3985. box-sizing:border-box;
  3986. width:100%;
  3987. }
  3988. #u5139_text {
  3989. border-width:0px;
  3990. word-wrap:break-word;
  3991. text-transform:none;
  3992. visibility:hidden;
  3993. }
  3994. #u5140 {
  3995. border-width:0px;
  3996. position:absolute;
  3997. left:0px;
  3998. top:0px;
  3999. width:0px;
  4000. height:0px;
  4001. }
  4002. #u5141_div {
  4003. border-width:0px;
  4004. position:absolute;
  4005. left:0px;
  4006. top:0px;
  4007. width:100px;
  4008. height:27px;
  4009. background:inherit;
  4010. background-color:rgba(242, 242, 242, 0.16078431372549);
  4011. box-sizing:border-box;
  4012. border-width:1px;
  4013. border-style:solid;
  4014. border-color:rgba(215, 215, 215, 1);
  4015. border-radius:2px;
  4016. -moz-box-shadow:none;
  4017. -webkit-box-shadow:none;
  4018. box-shadow:none;
  4019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4020. font-weight:400;
  4021. font-style:normal;
  4022. font-size:12px;
  4023. text-align:left;
  4024. }
  4025. #u5141 {
  4026. border-width:0px;
  4027. position:absolute;
  4028. left:146px;
  4029. top:573px;
  4030. width:100px;
  4031. height:27px;
  4032. display:flex;
  4033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4034. font-weight:400;
  4035. font-style:normal;
  4036. font-size:12px;
  4037. text-align:left;
  4038. }
  4039. #u5141 .text {
  4040. position:absolute;
  4041. align-self:center;
  4042. padding:5px 15px 5px 30px;
  4043. box-sizing:border-box;
  4044. width:100%;
  4045. }
  4046. #u5141_text {
  4047. border-width:0px;
  4048. word-wrap:break-word;
  4049. text-transform:none;
  4050. }
  4051. #u5142_img {
  4052. border-width:0px;
  4053. position:absolute;
  4054. left:0px;
  4055. top:0px;
  4056. width:12px;
  4057. height:12px;
  4058. }
  4059. #u5142 {
  4060. border-width:0px;
  4061. position:absolute;
  4062. left:157px;
  4063. top:580px;
  4064. width:12px;
  4065. height:12px;
  4066. display:flex;
  4067. }
  4068. #u5142 .text {
  4069. position:absolute;
  4070. align-self:center;
  4071. padding:2px 2px 2px 2px;
  4072. box-sizing:border-box;
  4073. width:100%;
  4074. }
  4075. #u5142_text {
  4076. border-width:0px;
  4077. word-wrap:break-word;
  4078. text-transform:none;
  4079. visibility:hidden;
  4080. }
  4081. #u5143 {
  4082. border-width:0px;
  4083. position:absolute;
  4084. left:0px;
  4085. top:0px;
  4086. width:0px;
  4087. height:0px;
  4088. }
  4089. #u5144_div {
  4090. border-width:0px;
  4091. position:absolute;
  4092. left:0px;
  4093. top:0px;
  4094. width:100px;
  4095. height:27px;
  4096. background:inherit;
  4097. background-color:rgba(242, 242, 242, 0.16078431372549);
  4098. box-sizing:border-box;
  4099. border-width:1px;
  4100. border-style:solid;
  4101. border-color:rgba(215, 215, 215, 1);
  4102. border-radius:2px;
  4103. -moz-box-shadow:none;
  4104. -webkit-box-shadow:none;
  4105. box-shadow:none;
  4106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4107. font-weight:400;
  4108. font-style:normal;
  4109. font-size:12px;
  4110. text-align:left;
  4111. }
  4112. #u5144 {
  4113. border-width:0px;
  4114. position:absolute;
  4115. left:22px;
  4116. top:610px;
  4117. width:100px;
  4118. height:27px;
  4119. display:flex;
  4120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4121. font-weight:400;
  4122. font-style:normal;
  4123. font-size:12px;
  4124. text-align:left;
  4125. }
  4126. #u5144 .text {
  4127. position:absolute;
  4128. align-self:center;
  4129. padding:5px 15px 5px 30px;
  4130. box-sizing:border-box;
  4131. width:100%;
  4132. }
  4133. #u5144_text {
  4134. border-width:0px;
  4135. word-wrap:break-word;
  4136. text-transform:none;
  4137. }
  4138. #u5145_img {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:0px;
  4142. top:0px;
  4143. width:12px;
  4144. height:12px;
  4145. }
  4146. #u5145 {
  4147. border-width:0px;
  4148. position:absolute;
  4149. left:33px;
  4150. top:617px;
  4151. width:12px;
  4152. height:12px;
  4153. display:flex;
  4154. }
  4155. #u5145 .text {
  4156. position:absolute;
  4157. align-self:center;
  4158. padding:2px 2px 2px 2px;
  4159. box-sizing:border-box;
  4160. width:100%;
  4161. }
  4162. #u5145_text {
  4163. border-width:0px;
  4164. word-wrap:break-word;
  4165. text-transform:none;
  4166. visibility:hidden;
  4167. }
  4168. #u5146 {
  4169. border-width:0px;
  4170. position:absolute;
  4171. left:0px;
  4172. top:0px;
  4173. width:0px;
  4174. height:0px;
  4175. }
  4176. #u5147_div {
  4177. border-width:0px;
  4178. position:absolute;
  4179. left:0px;
  4180. top:0px;
  4181. width:100px;
  4182. height:27px;
  4183. background:inherit;
  4184. background-color:rgba(242, 242, 242, 0.16078431372549);
  4185. box-sizing:border-box;
  4186. border-width:1px;
  4187. border-style:solid;
  4188. border-color:rgba(215, 215, 215, 1);
  4189. border-radius:2px;
  4190. -moz-box-shadow:none;
  4191. -webkit-box-shadow:none;
  4192. box-shadow:none;
  4193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4194. font-weight:400;
  4195. font-style:normal;
  4196. font-size:12px;
  4197. text-align:left;
  4198. }
  4199. #u5147 {
  4200. border-width:0px;
  4201. position:absolute;
  4202. left:146px;
  4203. top:610px;
  4204. width:100px;
  4205. height:27px;
  4206. display:flex;
  4207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4208. font-weight:400;
  4209. font-style:normal;
  4210. font-size:12px;
  4211. text-align:left;
  4212. }
  4213. #u5147 .text {
  4214. position:absolute;
  4215. align-self:center;
  4216. padding:5px 15px 5px 30px;
  4217. box-sizing:border-box;
  4218. width:100%;
  4219. }
  4220. #u5147_text {
  4221. border-width:0px;
  4222. word-wrap:break-word;
  4223. text-transform:none;
  4224. }
  4225. #u5148_img {
  4226. border-width:0px;
  4227. position:absolute;
  4228. left:0px;
  4229. top:0px;
  4230. width:12px;
  4231. height:12px;
  4232. }
  4233. #u5148 {
  4234. border-width:0px;
  4235. position:absolute;
  4236. left:157px;
  4237. top:617px;
  4238. width:12px;
  4239. height:12px;
  4240. display:flex;
  4241. }
  4242. #u5148 .text {
  4243. position:absolute;
  4244. align-self:center;
  4245. padding:2px 2px 2px 2px;
  4246. box-sizing:border-box;
  4247. width:100%;
  4248. }
  4249. #u5148_text {
  4250. border-width:0px;
  4251. word-wrap:break-word;
  4252. text-transform:none;
  4253. visibility:hidden;
  4254. }
  4255. #u5149_div {
  4256. border-width:0px;
  4257. position:absolute;
  4258. left:0px;
  4259. top:0px;
  4260. width:278px;
  4261. height:40px;
  4262. background:inherit;
  4263. background-color:rgba(242, 242, 242, 1);
  4264. box-sizing:border-box;
  4265. border-width:1px;
  4266. border-style:solid;
  4267. border-color:rgba(215, 215, 215, 1);
  4268. border-left:0px;
  4269. border-top:0px;
  4270. border-right:0px;
  4271. border-radius:0px;
  4272. border-bottom-right-radius:0px;
  4273. border-bottom-left-radius:0px;
  4274. -moz-box-shadow:none;
  4275. -webkit-box-shadow:none;
  4276. box-shadow:none;
  4277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4278. font-weight:400;
  4279. font-style:normal;
  4280. font-size:14px;
  4281. }
  4282. #u5149 {
  4283. border-width:0px;
  4284. position:absolute;
  4285. left:0px;
  4286. top:476px;
  4287. width:278px;
  4288. height:40px;
  4289. display:flex;
  4290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4291. font-weight:400;
  4292. font-style:normal;
  4293. font-size:14px;
  4294. }
  4295. #u5149 .text {
  4296. position:absolute;
  4297. align-self:center;
  4298. padding:5px 0px 5px 20px;
  4299. box-sizing:border-box;
  4300. width:100%;
  4301. }
  4302. #u5149_text {
  4303. border-width:0px;
  4304. word-wrap:break-word;
  4305. text-transform:none;
  4306. }
  4307. #u5150_div {
  4308. border-width:0px;
  4309. position:absolute;
  4310. left:0px;
  4311. top:0px;
  4312. width:278px;
  4313. height:40px;
  4314. background:inherit;
  4315. background-color:rgba(242, 242, 242, 1);
  4316. box-sizing:border-box;
  4317. border-width:1px;
  4318. border-style:solid;
  4319. border-color:rgba(215, 215, 215, 1);
  4320. border-left:0px;
  4321. border-top:0px;
  4322. border-right:0px;
  4323. border-radius:0px;
  4324. border-bottom-right-radius:0px;
  4325. border-bottom-left-radius:0px;
  4326. -moz-box-shadow:none;
  4327. -webkit-box-shadow:none;
  4328. box-shadow:none;
  4329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4330. font-weight:400;
  4331. font-style:normal;
  4332. font-size:14px;
  4333. }
  4334. #u5150 {
  4335. border-width:0px;
  4336. position:absolute;
  4337. left:0px;
  4338. top:657px;
  4339. width:278px;
  4340. height:40px;
  4341. display:flex;
  4342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4343. font-weight:400;
  4344. font-style:normal;
  4345. font-size:14px;
  4346. }
  4347. #u5150 .text {
  4348. position:absolute;
  4349. align-self:center;
  4350. padding:5px 0px 5px 20px;
  4351. box-sizing:border-box;
  4352. width:100%;
  4353. }
  4354. #u5150_text {
  4355. border-width:0px;
  4356. word-wrap:break-word;
  4357. text-transform:none;
  4358. }
  4359. #u5151 {
  4360. border-width:0px;
  4361. position:absolute;
  4362. left:0px;
  4363. top:0px;
  4364. width:0px;
  4365. height:0px;
  4366. }
  4367. #u5152_div {
  4368. border-width:0px;
  4369. position:absolute;
  4370. left:0px;
  4371. top:0px;
  4372. width:100px;
  4373. height:27px;
  4374. background:inherit;
  4375. background-color:rgba(242, 242, 242, 0.16078431372549);
  4376. box-sizing:border-box;
  4377. border-width:1px;
  4378. border-style:solid;
  4379. border-color:rgba(215, 215, 215, 1);
  4380. border-radius:2px;
  4381. -moz-box-shadow:none;
  4382. -webkit-box-shadow:none;
  4383. box-shadow:none;
  4384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4385. font-weight:400;
  4386. font-style:normal;
  4387. font-size:12px;
  4388. text-align:left;
  4389. }
  4390. #u5152 {
  4391. border-width:0px;
  4392. position:absolute;
  4393. left:22px;
  4394. top:717px;
  4395. width:100px;
  4396. height:27px;
  4397. display:flex;
  4398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4399. font-weight:400;
  4400. font-style:normal;
  4401. font-size:12px;
  4402. text-align:left;
  4403. }
  4404. #u5152 .text {
  4405. position:absolute;
  4406. align-self:center;
  4407. padding:5px 15px 5px 30px;
  4408. box-sizing:border-box;
  4409. width:100%;
  4410. }
  4411. #u5152_text {
  4412. border-width:0px;
  4413. word-wrap:break-word;
  4414. text-transform:none;
  4415. }
  4416. #u5153_img {
  4417. border-width:0px;
  4418. position:absolute;
  4419. left:0px;
  4420. top:0px;
  4421. width:12px;
  4422. height:12px;
  4423. }
  4424. #u5153 {
  4425. border-width:0px;
  4426. position:absolute;
  4427. left:33px;
  4428. top:724px;
  4429. width:12px;
  4430. height:12px;
  4431. display:flex;
  4432. }
  4433. #u5153 .text {
  4434. position:absolute;
  4435. align-self:center;
  4436. padding:2px 2px 2px 2px;
  4437. box-sizing:border-box;
  4438. width:100%;
  4439. }
  4440. #u5153_text {
  4441. border-width:0px;
  4442. word-wrap:break-word;
  4443. text-transform:none;
  4444. visibility:hidden;
  4445. }
  4446. #u5154_div {
  4447. border-width:0px;
  4448. position:absolute;
  4449. left:0px;
  4450. top:0px;
  4451. width:1000px;
  4452. height:955px;
  4453. background:inherit;
  4454. background-color:rgba(255, 255, 255, 1);
  4455. border:none;
  4456. border-radius:11px;
  4457. -moz-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  4458. -webkit-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  4459. box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  4460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4461. font-weight:400;
  4462. font-style:normal;
  4463. font-size:14px;
  4464. color:#AAAAAA;
  4465. text-align:center;
  4466. line-height:30px;
  4467. }
  4468. #u5154 {
  4469. border-width:0px;
  4470. position:absolute;
  4471. left:299px;
  4472. top:279px;
  4473. width:1000px;
  4474. height:955px;
  4475. display:flex;
  4476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4477. font-weight:400;
  4478. font-style:normal;
  4479. font-size:14px;
  4480. color:#AAAAAA;
  4481. text-align:center;
  4482. line-height:30px;
  4483. }
  4484. #u5154 .text {
  4485. position:absolute;
  4486. align-self:center;
  4487. padding:5px 10px 5px 10px;
  4488. box-sizing:border-box;
  4489. width:100%;
  4490. }
  4491. #u5154_text {
  4492. border-width:0px;
  4493. word-wrap:break-word;
  4494. text-transform:none;
  4495. visibility:hidden;
  4496. }
  4497. #u5155 {
  4498. border-width:0px;
  4499. position:absolute;
  4500. left:0px;
  4501. top:0px;
  4502. width:0px;
  4503. height:0px;
  4504. }
  4505. #u5156_div {
  4506. border-width:0px;
  4507. position:absolute;
  4508. left:0px;
  4509. top:0px;
  4510. width:954px;
  4511. height:110px;
  4512. background:inherit;
  4513. background-color:rgba(129, 211, 248, 0.0980392156862745);
  4514. border:none;
  4515. border-radius:11px;
  4516. -moz-box-shadow:none;
  4517. -webkit-box-shadow:none;
  4518. box-shadow:none;
  4519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4520. font-weight:400;
  4521. font-style:normal;
  4522. font-size:14px;
  4523. color:#AAAAAA;
  4524. line-height:30px;
  4525. }
  4526. #u5156 {
  4527. border-width:0px;
  4528. position:absolute;
  4529. left:327px;
  4530. top:299px;
  4531. width:954px;
  4532. height:110px;
  4533. display:flex;
  4534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4535. font-weight:400;
  4536. font-style:normal;
  4537. font-size:14px;
  4538. color:#AAAAAA;
  4539. line-height:30px;
  4540. }
  4541. #u5156 .text {
  4542. position:absolute;
  4543. align-self:center;
  4544. padding:5px 0px 5px 40px;
  4545. box-sizing:border-box;
  4546. width:100%;
  4547. }
  4548. #u5156_text {
  4549. border-width:0px;
  4550. word-wrap:break-word;
  4551. text-transform:none;
  4552. visibility:hidden;
  4553. }
  4554. #u5157_div {
  4555. border-width:0px;
  4556. position:absolute;
  4557. left:0px;
  4558. top:0px;
  4559. width:41px;
  4560. height:31px;
  4561. background:inherit;
  4562. background-color:rgba(255, 255, 255, 0);
  4563. border:none;
  4564. border-top:0px;
  4565. border-right:0px;
  4566. border-bottom:0px;
  4567. border-radius:0px;
  4568. border-top-left-radius:0px;
  4569. border-bottom-left-radius:0px;
  4570. -moz-box-shadow:none;
  4571. -webkit-box-shadow:none;
  4572. box-shadow:none;
  4573. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4574. font-weight:500;
  4575. font-style:normal;
  4576. font-size:15px;
  4577. }
  4578. #u5157 {
  4579. border-width:0px;
  4580. position:absolute;
  4581. left:345px;
  4582. top:318px;
  4583. width:41px;
  4584. height:31px;
  4585. display:flex;
  4586. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4587. font-weight:500;
  4588. font-style:normal;
  4589. font-size:15px;
  4590. }
  4591. #u5157 .text {
  4592. position:absolute;
  4593. align-self:center;
  4594. padding:5px 10px 5px 0px;
  4595. box-sizing:border-box;
  4596. width:100%;
  4597. }
  4598. #u5157_text {
  4599. border-width:0px;
  4600. white-space:nowrap;
  4601. text-transform:none;
  4602. }
  4603. #u5158 {
  4604. border-width:0px;
  4605. position:absolute;
  4606. left:0px;
  4607. top:0px;
  4608. width:0px;
  4609. height:0px;
  4610. }
  4611. #u5159_img {
  4612. border-width:0px;
  4613. position:absolute;
  4614. left:0px;
  4615. top:0px;
  4616. width:32px;
  4617. height:19px;
  4618. }
  4619. #u5159 {
  4620. border-width:0px;
  4621. position:absolute;
  4622. left:1207px;
  4623. top:299px;
  4624. width:32px;
  4625. height:19px;
  4626. display:flex;
  4627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4628. font-weight:400;
  4629. font-style:normal;
  4630. font-size:10px;
  4631. }
  4632. #u5159 .text {
  4633. position:absolute;
  4634. align-self:center;
  4635. padding:2px 2px 2px 2px;
  4636. box-sizing:border-box;
  4637. width:100%;
  4638. }
  4639. #u5159_text {
  4640. border-width:0px;
  4641. word-wrap:break-word;
  4642. text-transform:none;
  4643. }
  4644. #u5160_img {
  4645. border-width:0px;
  4646. position:absolute;
  4647. left:0px;
  4648. top:0px;
  4649. width:32px;
  4650. height:19px;
  4651. }
  4652. #u5160 {
  4653. border-width:0px;
  4654. position:absolute;
  4655. left:1240px;
  4656. top:299px;
  4657. width:32px;
  4658. height:19px;
  4659. display:flex;
  4660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4661. font-weight:400;
  4662. font-style:normal;
  4663. font-size:10px;
  4664. }
  4665. #u5160 .text {
  4666. position:absolute;
  4667. align-self:center;
  4668. padding:2px 2px 2px 2px;
  4669. box-sizing:border-box;
  4670. width:100%;
  4671. }
  4672. #u5160_text {
  4673. border-width:0px;
  4674. word-wrap:break-word;
  4675. text-transform:none;
  4676. }
  4677. #u5161_input {
  4678. position:absolute;
  4679. left:0px;
  4680. top:0px;
  4681. width:909px;
  4682. height:40px;
  4683. padding:2px 2px 2px 10px;
  4684. font-family:'ArialMT', 'Arial', sans-serif;
  4685. font-weight:400;
  4686. font-style:normal;
  4687. font-size:13px;
  4688. letter-spacing:normal;
  4689. color:#D7D7D7;
  4690. vertical-align:none;
  4691. text-align:left;
  4692. text-transform:none;
  4693. background-color:transparent;
  4694. border-color:transparent;
  4695. }
  4696. #u5161_input.disabled {
  4697. position:absolute;
  4698. left:0px;
  4699. top:0px;
  4700. width:909px;
  4701. height:40px;
  4702. padding:2px 2px 2px 10px;
  4703. font-family:'ArialMT', 'Arial', sans-serif;
  4704. font-weight:400;
  4705. font-style:normal;
  4706. font-size:13px;
  4707. letter-spacing:normal;
  4708. color:#D7D7D7;
  4709. vertical-align:none;
  4710. text-align:left;
  4711. text-transform:none;
  4712. background-color:transparent;
  4713. border-color:transparent;
  4714. }
  4715. #u5161_div {
  4716. border-width:0px;
  4717. position:absolute;
  4718. left:0px;
  4719. top:0px;
  4720. width:909px;
  4721. height:40px;
  4722. background:inherit;
  4723. background-color:rgba(255, 255, 255, 1);
  4724. box-sizing:border-box;
  4725. border-width:1px;
  4726. border-style:solid;
  4727. border-color:rgba(215, 215, 215, 1);
  4728. border-radius:0px;
  4729. -moz-box-shadow:none;
  4730. -webkit-box-shadow:none;
  4731. box-shadow:none;
  4732. color:#D7D7D7;
  4733. }
  4734. #u5161 {
  4735. border-width:0px;
  4736. position:absolute;
  4737. left:345px;
  4738. top:354px;
  4739. width:909px;
  4740. height:40px;
  4741. display:flex;
  4742. color:#D7D7D7;
  4743. }
  4744. #u5161 .text {
  4745. position:absolute;
  4746. align-self:flex-start;
  4747. padding:2px 2px 2px 10px;
  4748. box-sizing:border-box;
  4749. width:100%;
  4750. }
  4751. #u5161_div.disabled {
  4752. border-width:0px;
  4753. position:absolute;
  4754. left:0px;
  4755. top:0px;
  4756. width:909px;
  4757. height:40px;
  4758. background:inherit;
  4759. background-color:rgba(240, 240, 240, 1);
  4760. box-sizing:border-box;
  4761. border-width:1px;
  4762. border-style:solid;
  4763. border-color:rgba(215, 215, 215, 1);
  4764. border-radius:0px;
  4765. -moz-box-shadow:none;
  4766. -webkit-box-shadow:none;
  4767. box-shadow:none;
  4768. color:#D7D7D7;
  4769. }
  4770. #u5161.disabled {
  4771. }
  4772. .u5161_input_option {
  4773. }
  4774. #u5162 {
  4775. border-width:0px;
  4776. position:absolute;
  4777. left:0px;
  4778. top:0px;
  4779. width:0px;
  4780. height:0px;
  4781. }
  4782. #u5163_div {
  4783. border-width:0px;
  4784. position:absolute;
  4785. left:0px;
  4786. top:0px;
  4787. width:280px;
  4788. height:40px;
  4789. background:inherit;
  4790. background-color:rgba(255, 255, 255, 1);
  4791. box-sizing:border-box;
  4792. border-width:1px;
  4793. border-style:solid;
  4794. border-color:rgba(215, 215, 215, 1);
  4795. border-radius:0px;
  4796. -moz-box-shadow:none;
  4797. -webkit-box-shadow:none;
  4798. box-shadow:none;
  4799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4800. font-weight:400;
  4801. font-style:normal;
  4802. font-size:14px;
  4803. color:#FFFFFF;
  4804. text-align:center;
  4805. line-height:30px;
  4806. }
  4807. #u5163 {
  4808. border-width:0px;
  4809. position:absolute;
  4810. left:1320px;
  4811. top:110px;
  4812. width:280px;
  4813. height:40px;
  4814. display:flex;
  4815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4816. font-weight:400;
  4817. font-style:normal;
  4818. font-size:14px;
  4819. color:#FFFFFF;
  4820. text-align:center;
  4821. line-height:30px;
  4822. }
  4823. #u5163 .text {
  4824. position:absolute;
  4825. align-self:center;
  4826. padding:5px 10px 5px 10px;
  4827. box-sizing:border-box;
  4828. width:100%;
  4829. }
  4830. #u5163_text {
  4831. border-width:0px;
  4832. word-wrap:break-word;
  4833. text-transform:none;
  4834. visibility:hidden;
  4835. }
  4836. #u5164 {
  4837. border-width:0px;
  4838. position:absolute;
  4839. left:0px;
  4840. top:0px;
  4841. width:0px;
  4842. height:0px;
  4843. }
  4844. #u5165_div {
  4845. border-width:0px;
  4846. position:absolute;
  4847. left:0px;
  4848. top:0px;
  4849. width:280px;
  4850. height:1253px;
  4851. background:inherit;
  4852. background-color:rgba(255, 255, 255, 1);
  4853. box-sizing:border-box;
  4854. border-width:1px;
  4855. border-style:solid;
  4856. border-color:rgba(215, 215, 215, 1);
  4857. border-radius:0px;
  4858. -moz-box-shadow:none;
  4859. -webkit-box-shadow:none;
  4860. box-shadow:none;
  4861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4862. font-weight:400;
  4863. font-style:normal;
  4864. font-size:14px;
  4865. color:#FFFFFF;
  4866. text-align:center;
  4867. line-height:30px;
  4868. }
  4869. #u5165 {
  4870. border-width:0px;
  4871. position:absolute;
  4872. left:1320px;
  4873. top:150px;
  4874. width:280px;
  4875. height:1253px;
  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. text-align:center;
  4883. line-height:30px;
  4884. }
  4885. #u5165 .text {
  4886. position:absolute;
  4887. align-self:center;
  4888. padding:5px 10px 5px 10px;
  4889. box-sizing:border-box;
  4890. width:100%;
  4891. }
  4892. #u5165_text {
  4893. border-width:0px;
  4894. word-wrap:break-word;
  4895. text-transform:none;
  4896. visibility:hidden;
  4897. }
  4898. #u5166_div {
  4899. border-width:0px;
  4900. position:absolute;
  4901. left:0px;
  4902. top:0px;
  4903. width:67px;
  4904. height:30px;
  4905. background:inherit;
  4906. background-color:rgba(255, 255, 255, 0);
  4907. border:none;
  4908. border-top:0px;
  4909. border-right:0px;
  4910. border-bottom:0px;
  4911. border-radius:0px;
  4912. border-top-left-radius:0px;
  4913. border-bottom-left-radius:0px;
  4914. -moz-box-shadow:none;
  4915. -webkit-box-shadow:none;
  4916. box-shadow:none;
  4917. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4918. font-weight:500;
  4919. font-style:normal;
  4920. font-size:14px;
  4921. color:#198CFB;
  4922. }
  4923. #u5166 {
  4924. border-width:0px;
  4925. position:absolute;
  4926. left:1344px;
  4927. top:170px;
  4928. width:67px;
  4929. height:30px;
  4930. display:flex;
  4931. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4932. font-weight:500;
  4933. font-style:normal;
  4934. font-size:14px;
  4935. color:#198CFB;
  4936. }
  4937. #u5166 .text {
  4938. position:absolute;
  4939. align-self:center;
  4940. padding:5px 10px 5px 0px;
  4941. box-sizing:border-box;
  4942. width:100%;
  4943. }
  4944. #u5166_text {
  4945. border-width:0px;
  4946. white-space:nowrap;
  4947. text-transform:none;
  4948. }
  4949. #u5167 {
  4950. border-width:0px;
  4951. position:absolute;
  4952. left:0px;
  4953. top:0px;
  4954. width:0px;
  4955. height:0px;
  4956. }
  4957. #u5168_div {
  4958. border-width:0px;
  4959. position:absolute;
  4960. left:0px;
  4961. top:0px;
  4962. width:41px;
  4963. height:27px;
  4964. background:inherit;
  4965. background-color:rgba(255, 255, 255, 0);
  4966. border:none;
  4967. border-top:0px;
  4968. border-right:0px;
  4969. border-bottom:0px;
  4970. border-radius:0px;
  4971. border-top-left-radius:0px;
  4972. border-bottom-left-radius:0px;
  4973. -moz-box-shadow:none;
  4974. -webkit-box-shadow:none;
  4975. box-shadow:none;
  4976. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4977. font-weight:500;
  4978. font-style:normal;
  4979. font-size:12px;
  4980. }
  4981. #u5168 {
  4982. border-width:0px;
  4983. position:absolute;
  4984. left:1344px;
  4985. top:289px;
  4986. width:41px;
  4987. height:27px;
  4988. display:flex;
  4989. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4990. font-weight:500;
  4991. font-style:normal;
  4992. font-size:12px;
  4993. }
  4994. #u5168 .text {
  4995. position:absolute;
  4996. align-self:center;
  4997. padding:5px 10px 5px 0px;
  4998. box-sizing:border-box;
  4999. width:100%;
  5000. }
  5001. #u5168_text {
  5002. border-width:0px;
  5003. word-wrap:break-word;
  5004. text-transform:none;
  5005. }
  5006. #u5169_div {
  5007. border-width:0px;
  5008. position:absolute;
  5009. left:0px;
  5010. top:0px;
  5011. width:236px;
  5012. height:30px;
  5013. background:inherit;
  5014. background-color:rgba(255, 255, 255, 1);
  5015. box-sizing:border-box;
  5016. border-width:1px;
  5017. border-style:solid;
  5018. border-color:rgba(215, 215, 215, 1);
  5019. border-radius:2px;
  5020. -moz-box-shadow:none;
  5021. -webkit-box-shadow:none;
  5022. box-shadow:none;
  5023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5024. font-weight:400;
  5025. font-style:normal;
  5026. font-size:12px;
  5027. text-align:left;
  5028. }
  5029. #u5169 {
  5030. border-width:0px;
  5031. position:absolute;
  5032. left:1344px;
  5033. top:316px;
  5034. width:236px;
  5035. height:30px;
  5036. display:flex;
  5037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5038. font-weight:400;
  5039. font-style:normal;
  5040. font-size:12px;
  5041. text-align:left;
  5042. }
  5043. #u5169 .text {
  5044. position:absolute;
  5045. align-self:center;
  5046. padding:5px 15px 5px 30px;
  5047. box-sizing:border-box;
  5048. width:100%;
  5049. }
  5050. #u5169_text {
  5051. border-width:0px;
  5052. word-wrap:break-word;
  5053. text-transform:none;
  5054. visibility:hidden;
  5055. }
  5056. #u5170_input {
  5057. position:absolute;
  5058. left:0px;
  5059. top:0px;
  5060. width:212px;
  5061. height:28px;
  5062. padding:2px 2px 2px 2px;
  5063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5064. font-weight:400;
  5065. font-style:normal;
  5066. font-size:14px;
  5067. letter-spacing:normal;
  5068. color:#000000;
  5069. vertical-align:none;
  5070. text-align:left;
  5071. text-transform:none;
  5072. background-color:transparent;
  5073. border-color:transparent;
  5074. }
  5075. #u5170_input.disabled {
  5076. position:absolute;
  5077. left:0px;
  5078. top:0px;
  5079. width:212px;
  5080. height:28px;
  5081. padding:2px 2px 2px 2px;
  5082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5083. font-weight:400;
  5084. font-style:normal;
  5085. font-size:14px;
  5086. letter-spacing:normal;
  5087. color:#000000;
  5088. vertical-align:none;
  5089. text-align:left;
  5090. text-transform:none;
  5091. background-color:transparent;
  5092. border-color:transparent;
  5093. }
  5094. #u5170_div {
  5095. border-width:0px;
  5096. position:absolute;
  5097. left:0px;
  5098. top:0px;
  5099. width:212px;
  5100. height:28px;
  5101. background:inherit;
  5102. background-color:rgba(255, 255, 255, 0);
  5103. border:none;
  5104. border-radius:0px;
  5105. -moz-box-shadow:none;
  5106. -webkit-box-shadow:none;
  5107. box-shadow:none;
  5108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5109. font-weight:400;
  5110. font-style:normal;
  5111. font-size:14px;
  5112. }
  5113. #u5170 {
  5114. border-width:0px;
  5115. position:absolute;
  5116. left:1355px;
  5117. top:317px;
  5118. width:212px;
  5119. height:28px;
  5120. display:flex;
  5121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5122. font-weight:400;
  5123. font-style:normal;
  5124. font-size:14px;
  5125. }
  5126. #u5170 .text {
  5127. position:absolute;
  5128. align-self:center;
  5129. padding:2px 2px 2px 2px;
  5130. box-sizing:border-box;
  5131. width:100%;
  5132. }
  5133. #u5170_div.disabled {
  5134. border-width:0px;
  5135. position:absolute;
  5136. left:0px;
  5137. top:0px;
  5138. width:212px;
  5139. height:28px;
  5140. background:inherit;
  5141. background-color:rgba(240, 240, 240, 1);
  5142. border:none;
  5143. border-radius:0px;
  5144. -moz-box-shadow:none;
  5145. -webkit-box-shadow:none;
  5146. box-shadow:none;
  5147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5148. font-weight:400;
  5149. font-style:normal;
  5150. font-size:14px;
  5151. }
  5152. #u5170.disabled {
  5153. }
  5154. #u5171 {
  5155. border-width:0px;
  5156. position:absolute;
  5157. left:0px;
  5158. top:0px;
  5159. width:0px;
  5160. height:0px;
  5161. }
  5162. #u5172_div {
  5163. border-width:0px;
  5164. position:absolute;
  5165. left:0px;
  5166. top:0px;
  5167. width:41px;
  5168. height:27px;
  5169. background:inherit;
  5170. background-color:rgba(255, 255, 255, 0);
  5171. border:none;
  5172. border-top:0px;
  5173. border-right:0px;
  5174. border-bottom:0px;
  5175. border-radius:0px;
  5176. border-top-left-radius:0px;
  5177. border-bottom-left-radius:0px;
  5178. -moz-box-shadow:none;
  5179. -webkit-box-shadow:none;
  5180. box-shadow:none;
  5181. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5182. font-weight:500;
  5183. font-style:normal;
  5184. font-size:12px;
  5185. }
  5186. #u5172 {
  5187. border-width:0px;
  5188. position:absolute;
  5189. left:1344px;
  5190. top:366px;
  5191. width:41px;
  5192. height:27px;
  5193. display:flex;
  5194. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5195. font-weight:500;
  5196. font-style:normal;
  5197. font-size:12px;
  5198. }
  5199. #u5172 .text {
  5200. position:absolute;
  5201. align-self:center;
  5202. padding:5px 10px 5px 0px;
  5203. box-sizing:border-box;
  5204. width:100%;
  5205. }
  5206. #u5172_text {
  5207. border-width:0px;
  5208. word-wrap:break-word;
  5209. text-transform:none;
  5210. }
  5211. #u5173_div {
  5212. border-width:0px;
  5213. position:absolute;
  5214. left:0px;
  5215. top:0px;
  5216. width:236px;
  5217. height:30px;
  5218. background:inherit;
  5219. background-color:rgba(255, 255, 255, 1);
  5220. box-sizing:border-box;
  5221. border-width:1px;
  5222. border-style:solid;
  5223. border-color:rgba(215, 215, 215, 1);
  5224. border-radius:2px;
  5225. -moz-box-shadow:none;
  5226. -webkit-box-shadow:none;
  5227. box-shadow:none;
  5228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5229. font-weight:400;
  5230. font-style:normal;
  5231. font-size:12px;
  5232. text-align:left;
  5233. }
  5234. #u5173 {
  5235. border-width:0px;
  5236. position:absolute;
  5237. left:1344px;
  5238. top:393px;
  5239. width:236px;
  5240. height:30px;
  5241. display:flex;
  5242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5243. font-weight:400;
  5244. font-style:normal;
  5245. font-size:12px;
  5246. text-align:left;
  5247. }
  5248. #u5173 .text {
  5249. position:absolute;
  5250. align-self:center;
  5251. padding:5px 15px 5px 30px;
  5252. box-sizing:border-box;
  5253. width:100%;
  5254. }
  5255. #u5173_text {
  5256. border-width:0px;
  5257. word-wrap:break-word;
  5258. text-transform:none;
  5259. visibility:hidden;
  5260. }
  5261. #u5174_input {
  5262. position:absolute;
  5263. left:0px;
  5264. top:0px;
  5265. width:212px;
  5266. height:28px;
  5267. padding:2px 2px 2px 2px;
  5268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5269. font-weight:400;
  5270. font-style:normal;
  5271. font-size:14px;
  5272. letter-spacing:normal;
  5273. color:#000000;
  5274. vertical-align:none;
  5275. text-align:left;
  5276. text-transform:none;
  5277. background-color:transparent;
  5278. border-color:transparent;
  5279. }
  5280. #u5174_input.disabled {
  5281. position:absolute;
  5282. left:0px;
  5283. top:0px;
  5284. width:212px;
  5285. height:28px;
  5286. padding:2px 2px 2px 2px;
  5287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5288. font-weight:400;
  5289. font-style:normal;
  5290. font-size:14px;
  5291. letter-spacing:normal;
  5292. color:#000000;
  5293. vertical-align:none;
  5294. text-align:left;
  5295. text-transform:none;
  5296. background-color:transparent;
  5297. border-color:transparent;
  5298. }
  5299. #u5174_div {
  5300. border-width:0px;
  5301. position:absolute;
  5302. left:0px;
  5303. top:0px;
  5304. width:212px;
  5305. height:28px;
  5306. background:inherit;
  5307. background-color:rgba(255, 255, 255, 0);
  5308. border:none;
  5309. border-radius:0px;
  5310. -moz-box-shadow:none;
  5311. -webkit-box-shadow:none;
  5312. box-shadow:none;
  5313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5314. font-weight:400;
  5315. font-style:normal;
  5316. font-size:14px;
  5317. }
  5318. #u5174 {
  5319. border-width:0px;
  5320. position:absolute;
  5321. left:1355px;
  5322. top:394px;
  5323. width:212px;
  5324. height:28px;
  5325. display:flex;
  5326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5327. font-weight:400;
  5328. font-style:normal;
  5329. font-size:14px;
  5330. }
  5331. #u5174 .text {
  5332. position:absolute;
  5333. align-self:center;
  5334. padding:2px 2px 2px 2px;
  5335. box-sizing:border-box;
  5336. width:100%;
  5337. }
  5338. #u5174_div.disabled {
  5339. border-width:0px;
  5340. position:absolute;
  5341. left:0px;
  5342. top:0px;
  5343. width:212px;
  5344. height:28px;
  5345. background:inherit;
  5346. background-color:rgba(240, 240, 240, 1);
  5347. border:none;
  5348. border-radius:0px;
  5349. -moz-box-shadow:none;
  5350. -webkit-box-shadow:none;
  5351. box-shadow:none;
  5352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5353. font-weight:400;
  5354. font-style:normal;
  5355. font-size:14px;
  5356. }
  5357. #u5174.disabled {
  5358. }
  5359. #u5175 {
  5360. border-width:0px;
  5361. position:absolute;
  5362. left:0px;
  5363. top:0px;
  5364. width:0px;
  5365. height:0px;
  5366. }
  5367. #u5176_div {
  5368. border-width:0px;
  5369. position:absolute;
  5370. left:0px;
  5371. top:0px;
  5372. width:59px;
  5373. height:27px;
  5374. background:inherit;
  5375. background-color:rgba(255, 255, 255, 0);
  5376. border:none;
  5377. border-top:0px;
  5378. border-right:0px;
  5379. border-bottom:0px;
  5380. border-radius:0px;
  5381. border-top-left-radius:0px;
  5382. border-bottom-left-radius:0px;
  5383. -moz-box-shadow:none;
  5384. -webkit-box-shadow:none;
  5385. box-shadow:none;
  5386. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5387. font-weight:500;
  5388. font-style:normal;
  5389. font-size:12px;
  5390. }
  5391. #u5176 {
  5392. border-width:0px;
  5393. position:absolute;
  5394. left:1344px;
  5395. top:212px;
  5396. width:59px;
  5397. height:27px;
  5398. display:flex;
  5399. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5400. font-weight:500;
  5401. font-style:normal;
  5402. font-size:12px;
  5403. }
  5404. #u5176 .text {
  5405. position:absolute;
  5406. align-self:center;
  5407. padding:5px 10px 5px 0px;
  5408. box-sizing:border-box;
  5409. width:100%;
  5410. }
  5411. #u5176_text {
  5412. border-width:0px;
  5413. white-space:nowrap;
  5414. text-transform:none;
  5415. }
  5416. #u5177_div {
  5417. border-width:0px;
  5418. position:absolute;
  5419. left:0px;
  5420. top:0px;
  5421. width:59px;
  5422. height:30px;
  5423. background:inherit;
  5424. background-color:rgba(255, 255, 255, 1);
  5425. box-sizing:border-box;
  5426. border-width:1px;
  5427. border-style:solid;
  5428. border-color:rgba(215, 215, 215, 1);
  5429. border-radius:2px;
  5430. -moz-box-shadow:none;
  5431. -webkit-box-shadow:none;
  5432. box-shadow:none;
  5433. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5434. font-weight:500;
  5435. font-style:normal;
  5436. font-size:12px;
  5437. }
  5438. #u5177 {
  5439. border-width:0px;
  5440. position:absolute;
  5441. left:1344px;
  5442. top:239px;
  5443. width:59px;
  5444. height:30px;
  5445. display:flex;
  5446. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5447. font-weight:500;
  5448. font-style:normal;
  5449. font-size:12px;
  5450. }
  5451. #u5177 .text {
  5452. position:absolute;
  5453. align-self:center;
  5454. padding:2px 2px 2px 2px;
  5455. box-sizing:border-box;
  5456. width:100%;
  5457. }
  5458. #u5177_text {
  5459. border-width:0px;
  5460. word-wrap:break-word;
  5461. text-transform:none;
  5462. }
  5463. #u5178_div {
  5464. border-width:0px;
  5465. position:absolute;
  5466. left:0px;
  5467. top:0px;
  5468. width:59px;
  5469. height:30px;
  5470. background:inherit;
  5471. background-color:rgba(255, 255, 255, 1);
  5472. box-sizing:border-box;
  5473. border-width:1px;
  5474. border-style:solid;
  5475. border-color:rgba(215, 215, 215, 1);
  5476. border-radius:2px;
  5477. -moz-box-shadow:none;
  5478. -webkit-box-shadow:none;
  5479. box-shadow:none;
  5480. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5481. font-weight:500;
  5482. font-style:normal;
  5483. font-size:12px;
  5484. }
  5485. #u5178 {
  5486. border-width:0px;
  5487. position:absolute;
  5488. left:1403px;
  5489. top:239px;
  5490. width:59px;
  5491. height:30px;
  5492. display:flex;
  5493. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5494. font-weight:500;
  5495. font-style:normal;
  5496. font-size:12px;
  5497. }
  5498. #u5178 .text {
  5499. position:absolute;
  5500. align-self:center;
  5501. padding:2px 2px 2px 2px;
  5502. box-sizing:border-box;
  5503. width:100%;
  5504. }
  5505. #u5178_text {
  5506. border-width:0px;
  5507. word-wrap:break-word;
  5508. text-transform:none;
  5509. }
  5510. #u5179_div {
  5511. border-width:0px;
  5512. position:absolute;
  5513. left:0px;
  5514. top:0px;
  5515. width:59px;
  5516. height:30px;
  5517. background:inherit;
  5518. background-color:rgba(255, 255, 255, 1);
  5519. box-sizing:border-box;
  5520. border-width:1px;
  5521. border-style:solid;
  5522. border-color:rgba(215, 215, 215, 1);
  5523. border-radius:2px;
  5524. -moz-box-shadow:none;
  5525. -webkit-box-shadow:none;
  5526. box-shadow:none;
  5527. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5528. font-weight:500;
  5529. font-style:normal;
  5530. font-size:12px;
  5531. }
  5532. #u5179 {
  5533. border-width:0px;
  5534. position:absolute;
  5535. left:1462px;
  5536. top:239px;
  5537. width:59px;
  5538. height:30px;
  5539. display:flex;
  5540. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5541. font-weight:500;
  5542. font-style:normal;
  5543. font-size:12px;
  5544. }
  5545. #u5179 .text {
  5546. position:absolute;
  5547. align-self:center;
  5548. padding:2px 2px 2px 2px;
  5549. box-sizing:border-box;
  5550. width:100%;
  5551. }
  5552. #u5179_text {
  5553. border-width:0px;
  5554. word-wrap:break-word;
  5555. text-transform:none;
  5556. }
  5557. #u5180_div {
  5558. border-width:0px;
  5559. position:absolute;
  5560. left:0px;
  5561. top:0px;
  5562. width:59px;
  5563. height:30px;
  5564. background:inherit;
  5565. background-color:rgba(245, 154, 35, 1);
  5566. box-sizing:border-box;
  5567. border-width:1px;
  5568. border-style:solid;
  5569. border-color:rgba(215, 215, 215, 1);
  5570. border-radius:2px;
  5571. -moz-box-shadow:none;
  5572. -webkit-box-shadow:none;
  5573. box-shadow:none;
  5574. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5575. font-weight:500;
  5576. font-style:normal;
  5577. font-size:12px;
  5578. color:#FFFFFF;
  5579. }
  5580. #u5180 {
  5581. border-width:0px;
  5582. position:absolute;
  5583. left:1520px;
  5584. top:239px;
  5585. width:59px;
  5586. height:30px;
  5587. display:flex;
  5588. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5589. font-weight:500;
  5590. font-style:normal;
  5591. font-size:12px;
  5592. color:#FFFFFF;
  5593. }
  5594. #u5180 .text {
  5595. position:absolute;
  5596. align-self:center;
  5597. padding:2px 2px 2px 2px;
  5598. box-sizing:border-box;
  5599. width:100%;
  5600. }
  5601. #u5180_text {
  5602. border-width:0px;
  5603. word-wrap:break-word;
  5604. text-transform:none;
  5605. }
  5606. #u5181 label {
  5607. left:0px;
  5608. width:100%;
  5609. }
  5610. #u5181_img {
  5611. border-width:0px;
  5612. position:absolute;
  5613. left:0px;
  5614. top:4px;
  5615. width:12px;
  5616. height:12px;
  5617. }
  5618. #u5181 {
  5619. border-width:0px;
  5620. position:absolute;
  5621. left:1346px;
  5622. top:910px;
  5623. width:118px;
  5624. height:20px;
  5625. display:flex;
  5626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5627. font-weight:400;
  5628. font-style:normal;
  5629. font-size:14px;
  5630. }
  5631. #u5181 .text {
  5632. position:absolute;
  5633. align-self:center;
  5634. padding:0px 2px 0px 2px;
  5635. box-sizing:border-box;
  5636. }
  5637. #u5181_img.selected {
  5638. }
  5639. #u5181.selected {
  5640. }
  5641. #u5181_img.disabled {
  5642. }
  5643. #u5181.disabled {
  5644. }
  5645. #u5181_img.selectedDisabled {
  5646. }
  5647. #u5181.selectedDisabled {
  5648. }
  5649. #u5181_text {
  5650. border-width:0px;
  5651. position:absolute;
  5652. left:14px;
  5653. top:0px;
  5654. width:102px;
  5655. word-wrap:break-word;
  5656. text-transform:none;
  5657. }
  5658. #u5181_input {
  5659. border-width:0px;
  5660. position:absolute;
  5661. left:0px;
  5662. top:0px;
  5663. width:0px;
  5664. height:0px;
  5665. opacity:0;
  5666. }
  5667. #u5182 label {
  5668. left:0px;
  5669. width:100%;
  5670. }
  5671. #u5182_img {
  5672. border-width:0px;
  5673. position:absolute;
  5674. left:0px;
  5675. top:4px;
  5676. width:12px;
  5677. height:12px;
  5678. }
  5679. #u5182 {
  5680. border-width:0px;
  5681. position:absolute;
  5682. left:1346px;
  5683. top:940px;
  5684. width:118px;
  5685. height:20px;
  5686. display:flex;
  5687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5688. font-weight:400;
  5689. font-style:normal;
  5690. font-size:14px;
  5691. }
  5692. #u5182 .text {
  5693. position:absolute;
  5694. align-self:center;
  5695. padding:0px 2px 0px 2px;
  5696. box-sizing:border-box;
  5697. }
  5698. #u5182_img.selected {
  5699. }
  5700. #u5182.selected {
  5701. }
  5702. #u5182_img.disabled {
  5703. }
  5704. #u5182.disabled {
  5705. }
  5706. #u5182_img.selectedDisabled {
  5707. }
  5708. #u5182.selectedDisabled {
  5709. }
  5710. #u5182_text {
  5711. border-width:0px;
  5712. position:absolute;
  5713. left:14px;
  5714. top:0px;
  5715. width:102px;
  5716. word-wrap:break-word;
  5717. text-transform:none;
  5718. }
  5719. #u5182_input {
  5720. border-width:0px;
  5721. position:absolute;
  5722. left:0px;
  5723. top:0px;
  5724. width:0px;
  5725. height:0px;
  5726. opacity:0;
  5727. }
  5728. #u5183 {
  5729. border-width:0px;
  5730. position:absolute;
  5731. left:0px;
  5732. top:0px;
  5733. width:0px;
  5734. height:0px;
  5735. }
  5736. #u5184 {
  5737. border-width:0px;
  5738. position:absolute;
  5739. left:0px;
  5740. top:0px;
  5741. width:0px;
  5742. height:0px;
  5743. }
  5744. #u5185_div {
  5745. border-width:0px;
  5746. position:absolute;
  5747. left:0px;
  5748. top:0px;
  5749. width:254px;
  5750. height:90px;
  5751. background:inherit;
  5752. background-color:rgba(242, 242, 242, 1);
  5753. border:none;
  5754. border-radius:0px;
  5755. -moz-box-shadow:none;
  5756. -webkit-box-shadow:none;
  5757. box-shadow:none;
  5758. }
  5759. #u5185 {
  5760. border-width:0px;
  5761. position:absolute;
  5762. left:1332px;
  5763. top:1252px;
  5764. width:254px;
  5765. height:90px;
  5766. display:flex;
  5767. }
  5768. #u5185 .text {
  5769. position:absolute;
  5770. align-self:center;
  5771. padding:2px 2px 2px 2px;
  5772. box-sizing:border-box;
  5773. width:100%;
  5774. }
  5775. #u5185_text {
  5776. border-width:0px;
  5777. word-wrap:break-word;
  5778. text-transform:none;
  5779. visibility:hidden;
  5780. }
  5781. #u5186_div {
  5782. border-width:0px;
  5783. position:absolute;
  5784. left:0px;
  5785. top:0px;
  5786. width:47px;
  5787. height:27px;
  5788. background:inherit;
  5789. background-color:rgba(255, 255, 255, 0);
  5790. border:none;
  5791. border-top:0px;
  5792. border-right:0px;
  5793. border-bottom:0px;
  5794. border-radius:0px;
  5795. border-top-left-radius:0px;
  5796. border-bottom-left-radius:0px;
  5797. -moz-box-shadow:none;
  5798. -webkit-box-shadow:none;
  5799. box-shadow:none;
  5800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5801. font-weight:400;
  5802. font-style:normal;
  5803. font-size:12px;
  5804. text-align:right;
  5805. }
  5806. #u5186 {
  5807. border-width:0px;
  5808. position:absolute;
  5809. left:1364px;
  5810. top:1263px;
  5811. width:47px;
  5812. height:27px;
  5813. display:flex;
  5814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5815. font-weight:400;
  5816. font-style:normal;
  5817. font-size:12px;
  5818. text-align:right;
  5819. }
  5820. #u5186 .text {
  5821. position:absolute;
  5822. align-self:center;
  5823. padding:5px 10px 5px 0px;
  5824. box-sizing:border-box;
  5825. width:100%;
  5826. }
  5827. #u5186_text {
  5828. border-width:0px;
  5829. white-space:nowrap;
  5830. text-transform:none;
  5831. }
  5832. #u5187 {
  5833. border-width:0px;
  5834. position:absolute;
  5835. left:0px;
  5836. top:0px;
  5837. width:0px;
  5838. height:0px;
  5839. }
  5840. #u5188_div {
  5841. border-width:0px;
  5842. position:absolute;
  5843. left:0px;
  5844. top:0px;
  5845. width:150px;
  5846. height:30px;
  5847. background:inherit;
  5848. background-color:rgba(255, 255, 255, 1);
  5849. box-sizing:border-box;
  5850. border-width:1px;
  5851. border-style:solid;
  5852. border-color:rgba(201, 201, 201, 1);
  5853. border-radius:4px;
  5854. -moz-box-shadow:none;
  5855. -webkit-box-shadow:none;
  5856. box-shadow:none;
  5857. font-family:'Helvetica', sans-serif;
  5858. font-weight:400;
  5859. font-style:normal;
  5860. font-size:10px;
  5861. color:#CCCCCC;
  5862. text-align:right;
  5863. }
  5864. #u5188 {
  5865. border-width:0px;
  5866. position:absolute;
  5867. left:1409px;
  5868. top:1262px;
  5869. width:150px;
  5870. height:30px;
  5871. display:flex;
  5872. font-family:'Helvetica', sans-serif;
  5873. font-weight:400;
  5874. font-style:normal;
  5875. font-size:10px;
  5876. color:#CCCCCC;
  5877. text-align:right;
  5878. }
  5879. #u5188 .text {
  5880. position:absolute;
  5881. align-self:center;
  5882. padding:2px 8px 2px 8px;
  5883. box-sizing:border-box;
  5884. width:100%;
  5885. }
  5886. #u5188_text {
  5887. border-width:0px;
  5888. word-wrap:break-word;
  5889. text-transform:none;
  5890. visibility:hidden;
  5891. }
  5892. #u5189_input {
  5893. position:absolute;
  5894. left:0px;
  5895. top:0px;
  5896. width:132px;
  5897. height:26px;
  5898. padding:2px 2px 2px 2px;
  5899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5900. font-weight:400;
  5901. font-style:normal;
  5902. font-size:14px;
  5903. letter-spacing:normal;
  5904. color:#000000;
  5905. vertical-align:none;
  5906. text-align:left;
  5907. text-transform:none;
  5908. background-color:transparent;
  5909. border-color:transparent;
  5910. }
  5911. #u5189_input.disabled {
  5912. position:absolute;
  5913. left:0px;
  5914. top:0px;
  5915. width:132px;
  5916. height:26px;
  5917. padding:2px 2px 2px 2px;
  5918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5919. font-weight:400;
  5920. font-style:normal;
  5921. font-size:14px;
  5922. letter-spacing:normal;
  5923. color:#000000;
  5924. vertical-align:none;
  5925. text-align:left;
  5926. text-transform:none;
  5927. background-color:transparent;
  5928. border-color:transparent;
  5929. }
  5930. #u5189_div {
  5931. border-width:0px;
  5932. position:absolute;
  5933. left:0px;
  5934. top:0px;
  5935. width:132px;
  5936. height:26px;
  5937. background:inherit;
  5938. background-color:rgba(255, 255, 255, 1);
  5939. border:none;
  5940. border-radius:0px;
  5941. -moz-box-shadow:none;
  5942. -webkit-box-shadow:none;
  5943. box-shadow:none;
  5944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5945. font-weight:400;
  5946. font-style:normal;
  5947. font-size:14px;
  5948. }
  5949. #u5189 {
  5950. border-width:0px;
  5951. position:absolute;
  5952. left:1413px;
  5953. top:1263px;
  5954. width:132px;
  5955. height:26px;
  5956. display:flex;
  5957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5958. font-weight:400;
  5959. font-style:normal;
  5960. font-size:14px;
  5961. }
  5962. #u5189 .text {
  5963. position:absolute;
  5964. align-self:center;
  5965. padding:2px 2px 2px 2px;
  5966. box-sizing:border-box;
  5967. width:100%;
  5968. }
  5969. #u5189_div.disabled {
  5970. border-width:0px;
  5971. position:absolute;
  5972. left:0px;
  5973. top:0px;
  5974. width:132px;
  5975. height:26px;
  5976. background:inherit;
  5977. background-color:rgba(240, 240, 240, 1);
  5978. border:none;
  5979. border-radius:0px;
  5980. -moz-box-shadow:none;
  5981. -webkit-box-shadow:none;
  5982. box-shadow:none;
  5983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5984. font-weight:400;
  5985. font-style:normal;
  5986. font-size:14px;
  5987. }
  5988. #u5189.disabled {
  5989. }
  5990. #u5190_div {
  5991. border-width:0px;
  5992. position:absolute;
  5993. left:0px;
  5994. top:0px;
  5995. width:59px;
  5996. height:27px;
  5997. background:inherit;
  5998. background-color:rgba(255, 255, 255, 0);
  5999. border:none;
  6000. border-top:0px;
  6001. border-right:0px;
  6002. border-bottom:0px;
  6003. border-radius:0px;
  6004. border-top-left-radius:0px;
  6005. border-bottom-left-radius:0px;
  6006. -moz-box-shadow:none;
  6007. -webkit-box-shadow:none;
  6008. box-shadow:none;
  6009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6010. font-weight:400;
  6011. font-style:normal;
  6012. font-size:12px;
  6013. text-align:right;
  6014. }
  6015. #u5190 {
  6016. border-width:0px;
  6017. position:absolute;
  6018. left:1352px;
  6019. top:1303px;
  6020. width:59px;
  6021. height:27px;
  6022. display:flex;
  6023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6024. font-weight:400;
  6025. font-style:normal;
  6026. font-size:12px;
  6027. text-align:right;
  6028. }
  6029. #u5190 .text {
  6030. position:absolute;
  6031. align-self:center;
  6032. padding:5px 10px 5px 0px;
  6033. box-sizing:border-box;
  6034. width:100%;
  6035. }
  6036. #u5190_text {
  6037. border-width:0px;
  6038. white-space:nowrap;
  6039. text-transform:none;
  6040. }
  6041. #u5191 {
  6042. border-width:0px;
  6043. position:absolute;
  6044. left:0px;
  6045. top:0px;
  6046. width:0px;
  6047. height:0px;
  6048. }
  6049. #u5192_div {
  6050. border-width:0px;
  6051. position:absolute;
  6052. left:0px;
  6053. top:0px;
  6054. width:150px;
  6055. height:30px;
  6056. background:inherit;
  6057. background-color:rgba(255, 255, 255, 1);
  6058. box-sizing:border-box;
  6059. border-width:1px;
  6060. border-style:solid;
  6061. border-color:rgba(201, 201, 201, 1);
  6062. border-radius:4px;
  6063. -moz-box-shadow:none;
  6064. -webkit-box-shadow:none;
  6065. box-shadow:none;
  6066. font-family:'Helvetica', sans-serif;
  6067. font-weight:400;
  6068. font-style:normal;
  6069. font-size:10px;
  6070. color:#CCCCCC;
  6071. text-align:right;
  6072. }
  6073. #u5192 {
  6074. border-width:0px;
  6075. position:absolute;
  6076. left:1409px;
  6077. top:1302px;
  6078. width:150px;
  6079. height:30px;
  6080. display:flex;
  6081. font-family:'Helvetica', sans-serif;
  6082. font-weight:400;
  6083. font-style:normal;
  6084. font-size:10px;
  6085. color:#CCCCCC;
  6086. text-align:right;
  6087. }
  6088. #u5192 .text {
  6089. position:absolute;
  6090. align-self:center;
  6091. padding:2px 8px 2px 8px;
  6092. box-sizing:border-box;
  6093. width:100%;
  6094. }
  6095. #u5192_text {
  6096. border-width:0px;
  6097. word-wrap:break-word;
  6098. text-transform:none;
  6099. visibility:hidden;
  6100. }
  6101. #u5193_input {
  6102. position:absolute;
  6103. left:0px;
  6104. top:0px;
  6105. width:132px;
  6106. height:26px;
  6107. padding:2px 2px 2px 2px;
  6108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6109. font-weight:400;
  6110. font-style:normal;
  6111. font-size:14px;
  6112. letter-spacing:normal;
  6113. color:#000000;
  6114. vertical-align:none;
  6115. text-align:left;
  6116. text-transform:none;
  6117. background-color:transparent;
  6118. border-color:transparent;
  6119. }
  6120. #u5193_input.disabled {
  6121. position:absolute;
  6122. left:0px;
  6123. top:0px;
  6124. width:132px;
  6125. height:26px;
  6126. padding:2px 2px 2px 2px;
  6127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6128. font-weight:400;
  6129. font-style:normal;
  6130. font-size:14px;
  6131. letter-spacing:normal;
  6132. color:#000000;
  6133. vertical-align:none;
  6134. text-align:left;
  6135. text-transform:none;
  6136. background-color:transparent;
  6137. border-color:transparent;
  6138. }
  6139. #u5193_div {
  6140. border-width:0px;
  6141. position:absolute;
  6142. left:0px;
  6143. top:0px;
  6144. width:132px;
  6145. height:26px;
  6146. background:inherit;
  6147. background-color:rgba(255, 255, 255, 1);
  6148. border:none;
  6149. border-radius:0px;
  6150. -moz-box-shadow:none;
  6151. -webkit-box-shadow:none;
  6152. box-shadow:none;
  6153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6154. font-weight:400;
  6155. font-style:normal;
  6156. font-size:14px;
  6157. }
  6158. #u5193 {
  6159. border-width:0px;
  6160. position:absolute;
  6161. left:1413px;
  6162. top:1303px;
  6163. width:132px;
  6164. height:26px;
  6165. display:flex;
  6166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6167. font-weight:400;
  6168. font-style:normal;
  6169. font-size:14px;
  6170. }
  6171. #u5193 .text {
  6172. position:absolute;
  6173. align-self:center;
  6174. padding:2px 2px 2px 2px;
  6175. box-sizing:border-box;
  6176. width:100%;
  6177. }
  6178. #u5193_div.disabled {
  6179. border-width:0px;
  6180. position:absolute;
  6181. left:0px;
  6182. top:0px;
  6183. width:132px;
  6184. height:26px;
  6185. background:inherit;
  6186. background-color:rgba(240, 240, 240, 1);
  6187. border:none;
  6188. border-radius:0px;
  6189. -moz-box-shadow:none;
  6190. -webkit-box-shadow:none;
  6191. box-shadow:none;
  6192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6193. font-weight:400;
  6194. font-style:normal;
  6195. font-size:14px;
  6196. }
  6197. #u5193.disabled {
  6198. }
  6199. #u5194_img {
  6200. border-width:0px;
  6201. position:absolute;
  6202. left:0px;
  6203. top:0px;
  6204. width:13px;
  6205. height:13px;
  6206. }
  6207. #u5194 {
  6208. border-width:0px;
  6209. position:absolute;
  6210. left:1576px;
  6211. top:1250px;
  6212. width:13px;
  6213. height:13px;
  6214. display:flex;
  6215. }
  6216. #u5194 .text {
  6217. position:absolute;
  6218. align-self:center;
  6219. padding:2px 2px 2px 2px;
  6220. box-sizing:border-box;
  6221. width:100%;
  6222. }
  6223. #u5194_text {
  6224. border-width:0px;
  6225. word-wrap:break-word;
  6226. text-transform:none;
  6227. visibility:hidden;
  6228. }
  6229. #u5195_div {
  6230. border-width:0px;
  6231. position:absolute;
  6232. left:0px;
  6233. top:0px;
  6234. width:74px;
  6235. height:26px;
  6236. background:inherit;
  6237. background-color:rgba(255, 255, 255, 1);
  6238. border:none;
  6239. border-top:0px;
  6240. border-right:0px;
  6241. border-bottom:0px;
  6242. border-radius:0px;
  6243. border-top-left-radius:0px;
  6244. border-bottom-left-radius:0px;
  6245. -moz-box-shadow:none;
  6246. -webkit-box-shadow:none;
  6247. box-shadow:none;
  6248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6249. font-weight:400;
  6250. font-style:normal;
  6251. font-size:11px;
  6252. color:#198CFB;
  6253. }
  6254. #u5195 {
  6255. border-width:0px;
  6256. position:absolute;
  6257. left:1332px;
  6258. top:1352px;
  6259. width:74px;
  6260. height:26px;
  6261. display:flex;
  6262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6263. font-weight:400;
  6264. font-style:normal;
  6265. font-size:11px;
  6266. color:#198CFB;
  6267. }
  6268. #u5195 .text {
  6269. position:absolute;
  6270. align-self:center;
  6271. padding:5px 0px 5px 0px;
  6272. box-sizing:border-box;
  6273. width:100%;
  6274. }
  6275. #u5195_text {
  6276. border-width:0px;
  6277. word-wrap:break-word;
  6278. text-transform:none;
  6279. }
  6280. #u5196_img {
  6281. border-width:0px;
  6282. position:absolute;
  6283. left:0px;
  6284. top:0px;
  6285. width:255px;
  6286. height:2px;
  6287. }
  6288. #u5196 {
  6289. border-width:0px;
  6290. position:absolute;
  6291. left:1335px;
  6292. top:1228px;
  6293. width:254px;
  6294. height:1px;
  6295. display:flex;
  6296. }
  6297. #u5196 .text {
  6298. position:absolute;
  6299. align-self:center;
  6300. padding:2px 2px 2px 2px;
  6301. box-sizing:border-box;
  6302. width:100%;
  6303. }
  6304. #u5196_text {
  6305. border-width:0px;
  6306. word-wrap:break-word;
  6307. text-transform:none;
  6308. visibility:hidden;
  6309. }
  6310. #u5197_div {
  6311. border-width:0px;
  6312. position:absolute;
  6313. left:0px;
  6314. top:0px;
  6315. width:74px;
  6316. height:30px;
  6317. background:inherit;
  6318. background-color:rgba(255, 255, 255, 1);
  6319. border:none;
  6320. border-top:0px;
  6321. border-right:0px;
  6322. border-bottom:0px;
  6323. border-radius:0px;
  6324. border-top-left-radius:0px;
  6325. border-bottom-left-radius:0px;
  6326. -moz-box-shadow:none;
  6327. -webkit-box-shadow:none;
  6328. box-shadow:none;
  6329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6330. font-weight:400;
  6331. font-style:normal;
  6332. font-size:14px;
  6333. text-align:center;
  6334. }
  6335. #u5197 {
  6336. border-width:0px;
  6337. position:absolute;
  6338. left:1424px;
  6339. top:1214px;
  6340. width:74px;
  6341. height:30px;
  6342. display:flex;
  6343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6344. font-weight:400;
  6345. font-style:normal;
  6346. font-size:14px;
  6347. text-align:center;
  6348. }
  6349. #u5197 .text {
  6350. position:absolute;
  6351. align-self:center;
  6352. padding:5px 0px 5px 0px;
  6353. box-sizing:border-box;
  6354. width:100%;
  6355. }
  6356. #u5197_text {
  6357. border-width:0px;
  6358. word-wrap:break-word;
  6359. text-transform:none;
  6360. }
  6361. #u5198 {
  6362. border-width:0px;
  6363. position:absolute;
  6364. left:0px;
  6365. top:0px;
  6366. width:0px;
  6367. height:0px;
  6368. }
  6369. #u5199_div {
  6370. border-width:0px;
  6371. position:absolute;
  6372. left:0px;
  6373. top:0px;
  6374. width:71px;
  6375. height:27px;
  6376. background:inherit;
  6377. background-color:rgba(255, 255, 255, 0);
  6378. border:none;
  6379. border-top:0px;
  6380. border-right:0px;
  6381. border-bottom:0px;
  6382. border-radius:0px;
  6383. border-top-left-radius:0px;
  6384. border-bottom-left-radius:0px;
  6385. -moz-box-shadow:none;
  6386. -webkit-box-shadow:none;
  6387. box-shadow:none;
  6388. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6389. font-weight:500;
  6390. font-style:normal;
  6391. font-size:12px;
  6392. }
  6393. #u5199 {
  6394. border-width:0px;
  6395. position:absolute;
  6396. left:1344px;
  6397. top:562px;
  6398. width:71px;
  6399. height:27px;
  6400. display:flex;
  6401. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6402. font-weight:500;
  6403. font-style:normal;
  6404. font-size:12px;
  6405. }
  6406. #u5199 .text {
  6407. position:absolute;
  6408. align-self:center;
  6409. padding:5px 10px 5px 0px;
  6410. box-sizing:border-box;
  6411. width:100%;
  6412. }
  6413. #u5199_text {
  6414. border-width:0px;
  6415. white-space:nowrap;
  6416. text-transform:none;
  6417. }
  6418. #u5200_div {
  6419. border-width:0px;
  6420. position:absolute;
  6421. left:0px;
  6422. top:0px;
  6423. width:236px;
  6424. height:30px;
  6425. background:inherit;
  6426. background-color:rgba(255, 255, 255, 1);
  6427. box-sizing:border-box;
  6428. border-width:1px;
  6429. border-style:solid;
  6430. border-color:rgba(215, 215, 215, 1);
  6431. border-radius:2px;
  6432. -moz-box-shadow:none;
  6433. -webkit-box-shadow:none;
  6434. box-shadow:none;
  6435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6436. font-weight:400;
  6437. font-style:normal;
  6438. font-size:12px;
  6439. text-align:left;
  6440. }
  6441. #u5200 {
  6442. border-width:0px;
  6443. position:absolute;
  6444. left:1344px;
  6445. top:589px;
  6446. width:236px;
  6447. height:30px;
  6448. display:flex;
  6449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6450. font-weight:400;
  6451. font-style:normal;
  6452. font-size:12px;
  6453. text-align:left;
  6454. }
  6455. #u5200 .text {
  6456. position:absolute;
  6457. align-self:center;
  6458. padding:5px 15px 5px 30px;
  6459. box-sizing:border-box;
  6460. width:100%;
  6461. }
  6462. #u5200_text {
  6463. border-width:0px;
  6464. word-wrap:break-word;
  6465. text-transform:none;
  6466. }
  6467. #u5201_input {
  6468. position:absolute;
  6469. left:0px;
  6470. top:0px;
  6471. width:212px;
  6472. height:28px;
  6473. padding:2px 2px 2px 2px;
  6474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6475. font-weight:400;
  6476. font-style:normal;
  6477. font-size:14px;
  6478. letter-spacing:normal;
  6479. color:#000000;
  6480. vertical-align:none;
  6481. text-align:left;
  6482. text-transform:none;
  6483. background-color:transparent;
  6484. border-color:transparent;
  6485. }
  6486. #u5201_input.disabled {
  6487. position:absolute;
  6488. left:0px;
  6489. top:0px;
  6490. width:212px;
  6491. height:28px;
  6492. padding:2px 2px 2px 2px;
  6493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6494. font-weight:400;
  6495. font-style:normal;
  6496. font-size:14px;
  6497. letter-spacing:normal;
  6498. color:#000000;
  6499. vertical-align:none;
  6500. text-align:left;
  6501. text-transform:none;
  6502. background-color:transparent;
  6503. border-color:transparent;
  6504. }
  6505. #u5201_div {
  6506. border-width:0px;
  6507. position:absolute;
  6508. left:0px;
  6509. top:0px;
  6510. width:212px;
  6511. height:28px;
  6512. background:inherit;
  6513. background-color:rgba(255, 255, 255, 0);
  6514. border:none;
  6515. border-radius:0px;
  6516. -moz-box-shadow:none;
  6517. -webkit-box-shadow:none;
  6518. box-shadow:none;
  6519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6520. font-weight:400;
  6521. font-style:normal;
  6522. font-size:14px;
  6523. }
  6524. #u5201 {
  6525. border-width:0px;
  6526. position:absolute;
  6527. left:1355px;
  6528. top:590px;
  6529. width:212px;
  6530. height:28px;
  6531. display:flex;
  6532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6533. font-weight:400;
  6534. font-style:normal;
  6535. font-size:14px;
  6536. }
  6537. #u5201 .text {
  6538. position:absolute;
  6539. align-self:center;
  6540. padding:2px 2px 2px 2px;
  6541. box-sizing:border-box;
  6542. width:100%;
  6543. }
  6544. #u5201_div.disabled {
  6545. border-width:0px;
  6546. position:absolute;
  6547. left:0px;
  6548. top:0px;
  6549. width:212px;
  6550. height:28px;
  6551. background:inherit;
  6552. background-color:rgba(240, 240, 240, 1);
  6553. border:none;
  6554. border-radius:0px;
  6555. -moz-box-shadow:none;
  6556. -webkit-box-shadow:none;
  6557. box-shadow:none;
  6558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6559. font-weight:400;
  6560. font-style:normal;
  6561. font-size:14px;
  6562. }
  6563. #u5201.disabled {
  6564. }
  6565. #u5202 {
  6566. border-width:0px;
  6567. position:absolute;
  6568. left:0px;
  6569. top:0px;
  6570. width:0px;
  6571. height:0px;
  6572. }
  6573. #u5203_div {
  6574. border-width:0px;
  6575. position:absolute;
  6576. left:0px;
  6577. top:0px;
  6578. width:70px;
  6579. height:27px;
  6580. background:inherit;
  6581. background-color:rgba(255, 255, 255, 0);
  6582. border:none;
  6583. border-top:0px;
  6584. border-right:0px;
  6585. border-bottom:0px;
  6586. border-radius:0px;
  6587. border-top-left-radius:0px;
  6588. border-bottom-left-radius:0px;
  6589. -moz-box-shadow:none;
  6590. -webkit-box-shadow:none;
  6591. box-shadow:none;
  6592. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6593. font-weight:500;
  6594. font-style:normal;
  6595. font-size:12px;
  6596. }
  6597. #u5203 {
  6598. border-width:0px;
  6599. position:absolute;
  6600. left:1344px;
  6601. top:639px;
  6602. width:70px;
  6603. height:27px;
  6604. display:flex;
  6605. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6606. font-weight:500;
  6607. font-style:normal;
  6608. font-size:12px;
  6609. }
  6610. #u5203 .text {
  6611. position:absolute;
  6612. align-self:center;
  6613. padding:5px 10px 5px 0px;
  6614. box-sizing:border-box;
  6615. width:100%;
  6616. }
  6617. #u5203_text {
  6618. border-width:0px;
  6619. word-wrap:break-word;
  6620. text-transform:none;
  6621. }
  6622. #u5204 {
  6623. border-width:0px;
  6624. position:absolute;
  6625. left:0px;
  6626. top:0px;
  6627. width:0px;
  6628. height:0px;
  6629. }
  6630. #u5205_div {
  6631. border-width:0px;
  6632. position:absolute;
  6633. left:0px;
  6634. top:0px;
  6635. width:236px;
  6636. height:30px;
  6637. background:inherit;
  6638. background-color:rgba(255, 255, 255, 1);
  6639. box-sizing:border-box;
  6640. border-width:1px;
  6641. border-style:solid;
  6642. border-color:rgba(215, 215, 215, 1);
  6643. border-radius:2px;
  6644. -moz-box-shadow:none;
  6645. -webkit-box-shadow:none;
  6646. box-shadow:none;
  6647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6648. font-weight:400;
  6649. font-style:normal;
  6650. font-size:12px;
  6651. text-align:left;
  6652. }
  6653. #u5205 {
  6654. border-width:0px;
  6655. position:absolute;
  6656. left:1346px;
  6657. top:700px;
  6658. width:236px;
  6659. height:30px;
  6660. display:flex;
  6661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6662. font-weight:400;
  6663. font-style:normal;
  6664. font-size:12px;
  6665. text-align:left;
  6666. }
  6667. #u5205 .text {
  6668. position:absolute;
  6669. align-self:center;
  6670. padding:5px 15px 5px 30px;
  6671. box-sizing:border-box;
  6672. width:100%;
  6673. }
  6674. #u5205_text {
  6675. border-width:0px;
  6676. word-wrap:break-word;
  6677. text-transform:none;
  6678. visibility:hidden;
  6679. }
  6680. #u5206_input {
  6681. position:absolute;
  6682. left:0px;
  6683. top:0px;
  6684. width:212px;
  6685. height:28px;
  6686. padding:2px 2px 2px 2px;
  6687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6688. font-weight:400;
  6689. font-style:normal;
  6690. font-size:14px;
  6691. letter-spacing:normal;
  6692. color:#000000;
  6693. vertical-align:none;
  6694. text-align:left;
  6695. text-transform:none;
  6696. background-color:transparent;
  6697. border-color:transparent;
  6698. }
  6699. #u5206_input.disabled {
  6700. position:absolute;
  6701. left:0px;
  6702. top:0px;
  6703. width:212px;
  6704. height:28px;
  6705. padding:2px 2px 2px 2px;
  6706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6707. font-weight:400;
  6708. font-style:normal;
  6709. font-size:14px;
  6710. letter-spacing:normal;
  6711. color:#000000;
  6712. vertical-align:none;
  6713. text-align:left;
  6714. text-transform:none;
  6715. background-color:transparent;
  6716. border-color:transparent;
  6717. }
  6718. #u5206_div {
  6719. border-width:0px;
  6720. position:absolute;
  6721. left:0px;
  6722. top:0px;
  6723. width:212px;
  6724. height:28px;
  6725. background:inherit;
  6726. background-color:rgba(255, 255, 255, 0);
  6727. border:none;
  6728. border-radius:0px;
  6729. -moz-box-shadow:none;
  6730. -webkit-box-shadow:none;
  6731. box-shadow:none;
  6732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6733. font-weight:400;
  6734. font-style:normal;
  6735. font-size:14px;
  6736. }
  6737. #u5206 {
  6738. border-width:0px;
  6739. position:absolute;
  6740. left:1357px;
  6741. top:701px;
  6742. width:212px;
  6743. height:28px;
  6744. display:flex;
  6745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6746. font-weight:400;
  6747. font-style:normal;
  6748. font-size:14px;
  6749. }
  6750. #u5206 .text {
  6751. position:absolute;
  6752. align-self:center;
  6753. padding:2px 2px 2px 2px;
  6754. box-sizing:border-box;
  6755. width:100%;
  6756. }
  6757. #u5206_div.disabled {
  6758. border-width:0px;
  6759. position:absolute;
  6760. left:0px;
  6761. top:0px;
  6762. width:212px;
  6763. height:28px;
  6764. background:inherit;
  6765. background-color:rgba(240, 240, 240, 1);
  6766. border:none;
  6767. border-radius:0px;
  6768. -moz-box-shadow:none;
  6769. -webkit-box-shadow:none;
  6770. box-shadow:none;
  6771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6772. font-weight:400;
  6773. font-style:normal;
  6774. font-size:14px;
  6775. }
  6776. #u5206.disabled {
  6777. }
  6778. #u5207 {
  6779. border-width:0px;
  6780. position:absolute;
  6781. left:0px;
  6782. top:0px;
  6783. width:0px;
  6784. height:0px;
  6785. }
  6786. #u5208_img {
  6787. border-width:0px;
  6788. position:absolute;
  6789. left:0px;
  6790. top:0px;
  6791. width:35px;
  6792. height:19px;
  6793. }
  6794. #u5208 {
  6795. border-width:0px;
  6796. position:absolute;
  6797. left:1505px;
  6798. top:706px;
  6799. width:35px;
  6800. height:19px;
  6801. display:flex;
  6802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6803. font-weight:400;
  6804. font-style:normal;
  6805. font-size:10px;
  6806. }
  6807. #u5208 .text {
  6808. position:absolute;
  6809. align-self:center;
  6810. padding:2px 2px 2px 2px;
  6811. box-sizing:border-box;
  6812. width:100%;
  6813. }
  6814. #u5208_text {
  6815. border-width:0px;
  6816. word-wrap:break-word;
  6817. text-transform:none;
  6818. }
  6819. #u5209_img {
  6820. border-width:0px;
  6821. position:absolute;
  6822. left:0px;
  6823. top:0px;
  6824. width:35px;
  6825. height:19px;
  6826. }
  6827. #u5209 {
  6828. border-width:0px;
  6829. position:absolute;
  6830. left:1540px;
  6831. top:706px;
  6832. width:35px;
  6833. height:19px;
  6834. display:flex;
  6835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6836. font-weight:400;
  6837. font-style:normal;
  6838. font-size:10px;
  6839. }
  6840. #u5209 .text {
  6841. position:absolute;
  6842. align-self:center;
  6843. padding:2px 2px 2px 2px;
  6844. box-sizing:border-box;
  6845. width:100%;
  6846. }
  6847. #u5209_text {
  6848. border-width:0px;
  6849. word-wrap:break-word;
  6850. text-transform:none;
  6851. }
  6852. #u5210 {
  6853. border-width:0px;
  6854. position:absolute;
  6855. left:0px;
  6856. top:0px;
  6857. width:0px;
  6858. height:0px;
  6859. }
  6860. #u5211_div {
  6861. border-width:0px;
  6862. position:absolute;
  6863. left:0px;
  6864. top:0px;
  6865. width:236px;
  6866. height:30px;
  6867. background:inherit;
  6868. background-color:rgba(255, 255, 255, 1);
  6869. box-sizing:border-box;
  6870. border-width:1px;
  6871. border-style:solid;
  6872. border-color:rgba(215, 215, 215, 1);
  6873. border-radius:2px;
  6874. -moz-box-shadow:none;
  6875. -webkit-box-shadow:none;
  6876. box-shadow:none;
  6877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6878. font-weight:400;
  6879. font-style:normal;
  6880. font-size:12px;
  6881. text-align:left;
  6882. }
  6883. #u5211 {
  6884. border-width:0px;
  6885. position:absolute;
  6886. left:1346px;
  6887. top:740px;
  6888. width:236px;
  6889. height:30px;
  6890. display:flex;
  6891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6892. font-weight:400;
  6893. font-style:normal;
  6894. font-size:12px;
  6895. text-align:left;
  6896. }
  6897. #u5211 .text {
  6898. position:absolute;
  6899. align-self:center;
  6900. padding:5px 15px 5px 30px;
  6901. box-sizing:border-box;
  6902. width:100%;
  6903. }
  6904. #u5211_text {
  6905. border-width:0px;
  6906. word-wrap:break-word;
  6907. text-transform:none;
  6908. visibility:hidden;
  6909. }
  6910. #u5212_input {
  6911. position:absolute;
  6912. left:0px;
  6913. top:0px;
  6914. width:212px;
  6915. height:28px;
  6916. padding:2px 2px 2px 2px;
  6917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6918. font-weight:400;
  6919. font-style:normal;
  6920. font-size:14px;
  6921. letter-spacing:normal;
  6922. color:#000000;
  6923. vertical-align:none;
  6924. text-align:left;
  6925. text-transform:none;
  6926. background-color:transparent;
  6927. border-color:transparent;
  6928. }
  6929. #u5212_input.disabled {
  6930. position:absolute;
  6931. left:0px;
  6932. top:0px;
  6933. width:212px;
  6934. height:28px;
  6935. padding:2px 2px 2px 2px;
  6936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6937. font-weight:400;
  6938. font-style:normal;
  6939. font-size:14px;
  6940. letter-spacing:normal;
  6941. color:#000000;
  6942. vertical-align:none;
  6943. text-align:left;
  6944. text-transform:none;
  6945. background-color:transparent;
  6946. border-color:transparent;
  6947. }
  6948. #u5212_div {
  6949. border-width:0px;
  6950. position:absolute;
  6951. left:0px;
  6952. top:0px;
  6953. width:212px;
  6954. height:28px;
  6955. background:inherit;
  6956. background-color:rgba(255, 255, 255, 0);
  6957. border:none;
  6958. border-radius:0px;
  6959. -moz-box-shadow:none;
  6960. -webkit-box-shadow:none;
  6961. box-shadow:none;
  6962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6963. font-weight:400;
  6964. font-style:normal;
  6965. font-size:14px;
  6966. }
  6967. #u5212 {
  6968. border-width:0px;
  6969. position:absolute;
  6970. left:1357px;
  6971. top:741px;
  6972. width:212px;
  6973. height:28px;
  6974. display:flex;
  6975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6976. font-weight:400;
  6977. font-style:normal;
  6978. font-size:14px;
  6979. }
  6980. #u5212 .text {
  6981. position:absolute;
  6982. align-self:center;
  6983. padding:2px 2px 2px 2px;
  6984. box-sizing:border-box;
  6985. width:100%;
  6986. }
  6987. #u5212_div.disabled {
  6988. border-width:0px;
  6989. position:absolute;
  6990. left:0px;
  6991. top:0px;
  6992. width:212px;
  6993. height:28px;
  6994. background:inherit;
  6995. background-color:rgba(240, 240, 240, 1);
  6996. border:none;
  6997. border-radius:0px;
  6998. -moz-box-shadow:none;
  6999. -webkit-box-shadow:none;
  7000. box-shadow:none;
  7001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7002. font-weight:400;
  7003. font-style:normal;
  7004. font-size:14px;
  7005. }
  7006. #u5212.disabled {
  7007. }
  7008. #u5213 {
  7009. border-width:0px;
  7010. position:absolute;
  7011. left:0px;
  7012. top:0px;
  7013. width:0px;
  7014. height:0px;
  7015. }
  7016. #u5214_img {
  7017. border-width:0px;
  7018. position:absolute;
  7019. left:0px;
  7020. top:0px;
  7021. width:35px;
  7022. height:19px;
  7023. }
  7024. #u5214 {
  7025. border-width:0px;
  7026. position:absolute;
  7027. left:1505px;
  7028. top:746px;
  7029. width:35px;
  7030. height:19px;
  7031. display:flex;
  7032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7033. font-weight:400;
  7034. font-style:normal;
  7035. font-size:10px;
  7036. }
  7037. #u5214 .text {
  7038. position:absolute;
  7039. align-self:center;
  7040. padding:2px 2px 2px 2px;
  7041. box-sizing:border-box;
  7042. width:100%;
  7043. }
  7044. #u5214_text {
  7045. border-width:0px;
  7046. word-wrap:break-word;
  7047. text-transform:none;
  7048. }
  7049. #u5215_img {
  7050. border-width:0px;
  7051. position:absolute;
  7052. left:0px;
  7053. top:0px;
  7054. width:35px;
  7055. height:19px;
  7056. }
  7057. #u5215 {
  7058. border-width:0px;
  7059. position:absolute;
  7060. left:1540px;
  7061. top:746px;
  7062. width:35px;
  7063. height:19px;
  7064. display:flex;
  7065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7066. font-weight:400;
  7067. font-style:normal;
  7068. font-size:10px;
  7069. }
  7070. #u5215 .text {
  7071. position:absolute;
  7072. align-self:center;
  7073. padding:2px 2px 2px 2px;
  7074. box-sizing:border-box;
  7075. width:100%;
  7076. }
  7077. #u5215_text {
  7078. border-width:0px;
  7079. word-wrap:break-word;
  7080. text-transform:none;
  7081. }
  7082. #u5216 {
  7083. border-width:0px;
  7084. position:absolute;
  7085. left:0px;
  7086. top:0px;
  7087. width:0px;
  7088. height:0px;
  7089. }
  7090. #u5217_div {
  7091. border-width:0px;
  7092. position:absolute;
  7093. left:0px;
  7094. top:0px;
  7095. width:236px;
  7096. height:30px;
  7097. background:inherit;
  7098. background-color:rgba(255, 255, 255, 1);
  7099. box-sizing:border-box;
  7100. border-width:1px;
  7101. border-style:solid;
  7102. border-color:rgba(215, 215, 215, 1);
  7103. border-radius:2px;
  7104. -moz-box-shadow:none;
  7105. -webkit-box-shadow:none;
  7106. box-shadow:none;
  7107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7108. font-weight:400;
  7109. font-style:normal;
  7110. font-size:12px;
  7111. text-align:left;
  7112. }
  7113. #u5217 {
  7114. border-width:0px;
  7115. position:absolute;
  7116. left:1346px;
  7117. top:780px;
  7118. width:236px;
  7119. height:30px;
  7120. display:flex;
  7121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7122. font-weight:400;
  7123. font-style:normal;
  7124. font-size:12px;
  7125. text-align:left;
  7126. }
  7127. #u5217 .text {
  7128. position:absolute;
  7129. align-self:center;
  7130. padding:5px 15px 5px 30px;
  7131. box-sizing:border-box;
  7132. width:100%;
  7133. }
  7134. #u5217_text {
  7135. border-width:0px;
  7136. word-wrap:break-word;
  7137. text-transform:none;
  7138. visibility:hidden;
  7139. }
  7140. #u5218_input {
  7141. position:absolute;
  7142. left:0px;
  7143. top:0px;
  7144. width:212px;
  7145. height:28px;
  7146. padding:2px 2px 2px 2px;
  7147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7148. font-weight:400;
  7149. font-style:normal;
  7150. font-size:14px;
  7151. letter-spacing:normal;
  7152. color:#000000;
  7153. vertical-align:none;
  7154. text-align:left;
  7155. text-transform:none;
  7156. background-color:transparent;
  7157. border-color:transparent;
  7158. }
  7159. #u5218_input.disabled {
  7160. position:absolute;
  7161. left:0px;
  7162. top:0px;
  7163. width:212px;
  7164. height:28px;
  7165. padding:2px 2px 2px 2px;
  7166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7167. font-weight:400;
  7168. font-style:normal;
  7169. font-size:14px;
  7170. letter-spacing:normal;
  7171. color:#000000;
  7172. vertical-align:none;
  7173. text-align:left;
  7174. text-transform:none;
  7175. background-color:transparent;
  7176. border-color:transparent;
  7177. }
  7178. #u5218_div {
  7179. border-width:0px;
  7180. position:absolute;
  7181. left:0px;
  7182. top:0px;
  7183. width:212px;
  7184. height:28px;
  7185. background:inherit;
  7186. background-color:rgba(255, 255, 255, 0);
  7187. border:none;
  7188. border-radius:0px;
  7189. -moz-box-shadow:none;
  7190. -webkit-box-shadow:none;
  7191. box-shadow:none;
  7192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7193. font-weight:400;
  7194. font-style:normal;
  7195. font-size:14px;
  7196. }
  7197. #u5218 {
  7198. border-width:0px;
  7199. position:absolute;
  7200. left:1357px;
  7201. top:781px;
  7202. width:212px;
  7203. height:28px;
  7204. display:flex;
  7205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7206. font-weight:400;
  7207. font-style:normal;
  7208. font-size:14px;
  7209. }
  7210. #u5218 .text {
  7211. position:absolute;
  7212. align-self:center;
  7213. padding:2px 2px 2px 2px;
  7214. box-sizing:border-box;
  7215. width:100%;
  7216. }
  7217. #u5218_div.disabled {
  7218. border-width:0px;
  7219. position:absolute;
  7220. left:0px;
  7221. top:0px;
  7222. width:212px;
  7223. height:28px;
  7224. background:inherit;
  7225. background-color:rgba(240, 240, 240, 1);
  7226. border:none;
  7227. border-radius:0px;
  7228. -moz-box-shadow:none;
  7229. -webkit-box-shadow:none;
  7230. box-shadow:none;
  7231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7232. font-weight:400;
  7233. font-style:normal;
  7234. font-size:14px;
  7235. }
  7236. #u5218.disabled {
  7237. }
  7238. #u5219_img {
  7239. border-width:0px;
  7240. position:absolute;
  7241. left:0px;
  7242. top:0px;
  7243. width:111px;
  7244. height:30px;
  7245. }
  7246. #u5219 {
  7247. border-width:0px;
  7248. position:absolute;
  7249. left:1346px;
  7250. top:820px;
  7251. width:111px;
  7252. height:30px;
  7253. display:flex;
  7254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7255. font-weight:400;
  7256. font-style:normal;
  7257. font-size:12px;
  7258. }
  7259. #u5219 .text {
  7260. position:absolute;
  7261. align-self:center;
  7262. padding:5px 0px 5px 0px;
  7263. box-sizing:border-box;
  7264. width:100%;
  7265. }
  7266. #u5219_text {
  7267. border-width:0px;
  7268. word-wrap:break-word;
  7269. text-transform:none;
  7270. }
  7271. #u5220 {
  7272. border-width:0px;
  7273. position:absolute;
  7274. left:0px;
  7275. top:0px;
  7276. width:0px;
  7277. height:0px;
  7278. }
  7279. #u5221_img {
  7280. border-width:0px;
  7281. position:absolute;
  7282. left:0px;
  7283. top:0px;
  7284. width:35px;
  7285. height:19px;
  7286. }
  7287. #u5221 {
  7288. border-width:0px;
  7289. position:absolute;
  7290. left:1505px;
  7291. top:786px;
  7292. width:35px;
  7293. height:19px;
  7294. display:flex;
  7295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7296. font-weight:400;
  7297. font-style:normal;
  7298. font-size:10px;
  7299. }
  7300. #u5221 .text {
  7301. position:absolute;
  7302. align-self:center;
  7303. padding:2px 2px 2px 2px;
  7304. box-sizing:border-box;
  7305. width:100%;
  7306. }
  7307. #u5221_text {
  7308. border-width:0px;
  7309. word-wrap:break-word;
  7310. text-transform:none;
  7311. }
  7312. #u5222_img {
  7313. border-width:0px;
  7314. position:absolute;
  7315. left:0px;
  7316. top:0px;
  7317. width:35px;
  7318. height:19px;
  7319. }
  7320. #u5222 {
  7321. border-width:0px;
  7322. position:absolute;
  7323. left:1540px;
  7324. top:786px;
  7325. width:35px;
  7326. height:19px;
  7327. display:flex;
  7328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7329. font-weight:400;
  7330. font-style:normal;
  7331. font-size:10px;
  7332. }
  7333. #u5222 .text {
  7334. position:absolute;
  7335. align-self:center;
  7336. padding:2px 2px 2px 2px;
  7337. box-sizing:border-box;
  7338. width:100%;
  7339. }
  7340. #u5222_text {
  7341. border-width:0px;
  7342. word-wrap:break-word;
  7343. text-transform:none;
  7344. }
  7345. #u5223_img {
  7346. border-width:0px;
  7347. position:absolute;
  7348. left:0px;
  7349. top:0px;
  7350. width:111px;
  7351. height:30px;
  7352. }
  7353. #u5223 {
  7354. border-width:0px;
  7355. position:absolute;
  7356. left:1471px;
  7357. top:820px;
  7358. width:111px;
  7359. height:30px;
  7360. display:flex;
  7361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7362. font-weight:400;
  7363. font-style:normal;
  7364. font-size:12px;
  7365. }
  7366. #u5223 .text {
  7367. position:absolute;
  7368. align-self:center;
  7369. padding:5px 0px 5px 0px;
  7370. box-sizing:border-box;
  7371. width:100%;
  7372. }
  7373. #u5223_text {
  7374. border-width:0px;
  7375. word-wrap:break-word;
  7376. text-transform:none;
  7377. }
  7378. #u5224_div {
  7379. border-width:0px;
  7380. position:absolute;
  7381. left:0px;
  7382. top:0px;
  7383. width:70px;
  7384. height:40px;
  7385. background:inherit;
  7386. background-color:rgba(255, 255, 255, 0);
  7387. border:none;
  7388. border-top:0px;
  7389. border-right:0px;
  7390. border-bottom:0px;
  7391. border-radius:0px;
  7392. border-top-left-radius:0px;
  7393. border-bottom-left-radius:0px;
  7394. -moz-box-shadow:none;
  7395. -webkit-box-shadow:none;
  7396. box-shadow:none;
  7397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7398. font-weight:400;
  7399. font-style:normal;
  7400. font-size:12px;
  7401. color:#7F7F7F;
  7402. }
  7403. #u5224 {
  7404. border-width:0px;
  7405. position:absolute;
  7406. left:1346px;
  7407. top:850px;
  7408. width:70px;
  7409. height:40px;
  7410. display:flex;
  7411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7412. font-weight:400;
  7413. font-style:normal;
  7414. font-size:12px;
  7415. color:#7F7F7F;
  7416. }
  7417. #u5224 .text {
  7418. position:absolute;
  7419. align-self:center;
  7420. padding:5px 10px 5px 0px;
  7421. box-sizing:border-box;
  7422. width:100%;
  7423. }
  7424. #u5224_text {
  7425. border-width:0px;
  7426. word-wrap:break-word;
  7427. text-transform:none;
  7428. }
  7429. #u5225_div {
  7430. border-width:0px;
  7431. position:absolute;
  7432. left:0px;
  7433. top:0px;
  7434. width:70px;
  7435. height:40px;
  7436. background:inherit;
  7437. background-color:rgba(255, 255, 255, 0);
  7438. border:none;
  7439. border-top:0px;
  7440. border-right:0px;
  7441. border-bottom:0px;
  7442. border-radius:0px;
  7443. border-top-left-radius:0px;
  7444. border-bottom-left-radius:0px;
  7445. -moz-box-shadow:none;
  7446. -webkit-box-shadow:none;
  7447. box-shadow:none;
  7448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7449. font-weight:400;
  7450. font-style:normal;
  7451. font-size:12px;
  7452. color:#7F7F7F;
  7453. }
  7454. #u5225 {
  7455. border-width:0px;
  7456. position:absolute;
  7457. left:1512px;
  7458. top:850px;
  7459. width:70px;
  7460. height:40px;
  7461. display:flex;
  7462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7463. font-weight:400;
  7464. font-style:normal;
  7465. font-size:12px;
  7466. color:#7F7F7F;
  7467. }
  7468. #u5225 .text {
  7469. position:absolute;
  7470. align-self:center;
  7471. padding:5px 10px 5px 0px;
  7472. box-sizing:border-box;
  7473. width:100%;
  7474. }
  7475. #u5225_text {
  7476. border-width:0px;
  7477. word-wrap:break-word;
  7478. text-transform:none;
  7479. }
  7480. #u5226 label {
  7481. left:0px;
  7482. width:100%;
  7483. }
  7484. #u5226_img {
  7485. border-width:0px;
  7486. position:absolute;
  7487. left:0px;
  7488. top:3px;
  7489. width:12px;
  7490. height:12px;
  7491. }
  7492. #u5226 {
  7493. border-width:0px;
  7494. position:absolute;
  7495. left:1348px;
  7496. top:669px;
  7497. width:100px;
  7498. height:18px;
  7499. display:flex;
  7500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7501. font-weight:400;
  7502. font-style:normal;
  7503. }
  7504. #u5226 .text {
  7505. position:absolute;
  7506. align-self:center;
  7507. padding:0px 2px 0px 2px;
  7508. box-sizing:border-box;
  7509. }
  7510. #u5226_img.selected {
  7511. }
  7512. #u5226.selected {
  7513. }
  7514. #u5226_img.disabled {
  7515. }
  7516. #u5226.disabled {
  7517. }
  7518. #u5226_img.selectedDisabled {
  7519. }
  7520. #u5226.selectedDisabled {
  7521. }
  7522. #u5226_text {
  7523. border-width:0px;
  7524. position:absolute;
  7525. left:14px;
  7526. top:0px;
  7527. width:84px;
  7528. word-wrap:break-word;
  7529. text-transform:none;
  7530. }
  7531. #u5226_input {
  7532. border-width:0px;
  7533. position:absolute;
  7534. left:0px;
  7535. top:0px;
  7536. width:0px;
  7537. height:0px;
  7538. opacity:0;
  7539. }
  7540. #u5227 label {
  7541. left:0px;
  7542. width:100%;
  7543. }
  7544. #u5227_img {
  7545. border-width:0px;
  7546. position:absolute;
  7547. left:0px;
  7548. top:3px;
  7549. width:12px;
  7550. height:12px;
  7551. }
  7552. #u5227 {
  7553. border-width:0px;
  7554. position:absolute;
  7555. left:1428px;
  7556. top:669px;
  7557. width:100px;
  7558. height:18px;
  7559. display:flex;
  7560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7561. font-weight:400;
  7562. font-style:normal;
  7563. }
  7564. #u5227 .text {
  7565. position:absolute;
  7566. align-self:center;
  7567. padding:0px 2px 0px 2px;
  7568. box-sizing:border-box;
  7569. }
  7570. #u5227_img.selected {
  7571. }
  7572. #u5227.selected {
  7573. }
  7574. #u5227_img.disabled {
  7575. }
  7576. #u5227.disabled {
  7577. }
  7578. #u5227_img.selectedDisabled {
  7579. }
  7580. #u5227.selectedDisabled {
  7581. }
  7582. #u5227_text {
  7583. border-width:0px;
  7584. position:absolute;
  7585. left:14px;
  7586. top:0px;
  7587. width:84px;
  7588. word-wrap:break-word;
  7589. text-transform:none;
  7590. }
  7591. #u5227_input {
  7592. border-width:0px;
  7593. position:absolute;
  7594. left:0px;
  7595. top:0px;
  7596. width:0px;
  7597. height:0px;
  7598. opacity:0;
  7599. }
  7600. #u5228 label {
  7601. left:0px;
  7602. width:100%;
  7603. }
  7604. #u5228_img {
  7605. border-width:0px;
  7606. position:absolute;
  7607. left:0px;
  7608. top:3px;
  7609. width:12px;
  7610. height:12px;
  7611. }
  7612. #u5228 {
  7613. border-width:0px;
  7614. position:absolute;
  7615. left:1508px;
  7616. top:669px;
  7617. width:81px;
  7618. height:18px;
  7619. display:flex;
  7620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7621. font-weight:400;
  7622. font-style:normal;
  7623. }
  7624. #u5228 .text {
  7625. position:absolute;
  7626. align-self:center;
  7627. padding:0px 2px 0px 2px;
  7628. box-sizing:border-box;
  7629. }
  7630. #u5228_img.selected {
  7631. }
  7632. #u5228.selected {
  7633. }
  7634. #u5228_img.disabled {
  7635. }
  7636. #u5228.disabled {
  7637. }
  7638. #u5228_img.selectedDisabled {
  7639. }
  7640. #u5228.selectedDisabled {
  7641. }
  7642. #u5228_text {
  7643. border-width:0px;
  7644. position:absolute;
  7645. left:14px;
  7646. top:0px;
  7647. width:65px;
  7648. word-wrap:break-word;
  7649. text-transform:none;
  7650. }
  7651. #u5228_input {
  7652. border-width:0px;
  7653. position:absolute;
  7654. left:0px;
  7655. top:0px;
  7656. width:0px;
  7657. height:0px;
  7658. opacity:0;
  7659. }
  7660. #u5229_div {
  7661. border-width:0px;
  7662. position:absolute;
  7663. left:0px;
  7664. top:0px;
  7665. width:47px;
  7666. height:30px;
  7667. background:inherit;
  7668. background-color:rgba(255, 255, 255, 0);
  7669. border:none;
  7670. border-top:0px;
  7671. border-right:0px;
  7672. border-bottom:0px;
  7673. border-radius:0px;
  7674. border-top-left-radius:0px;
  7675. border-bottom-left-radius:0px;
  7676. -moz-box-shadow:none;
  7677. -webkit-box-shadow:none;
  7678. box-shadow:none;
  7679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7680. font-weight:400;
  7681. font-style:normal;
  7682. font-size:12px;
  7683. }
  7684. #u5229 {
  7685. border-width:0px;
  7686. position:absolute;
  7687. left:1344px;
  7688. top:442px;
  7689. width:47px;
  7690. height:30px;
  7691. display:flex;
  7692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7693. font-weight:400;
  7694. font-style:normal;
  7695. font-size:12px;
  7696. }
  7697. #u5229 .text {
  7698. position:absolute;
  7699. align-self:center;
  7700. padding:5px 10px 5px 0px;
  7701. box-sizing:border-box;
  7702. width:100%;
  7703. }
  7704. #u5229_text {
  7705. border-width:0px;
  7706. white-space:nowrap;
  7707. text-transform:none;
  7708. }
  7709. #u5230 {
  7710. border-width:0px;
  7711. position:absolute;
  7712. left:0px;
  7713. top:0px;
  7714. width:0px;
  7715. height:0px;
  7716. }
  7717. #u5231_div {
  7718. border-width:0px;
  7719. position:absolute;
  7720. left:0px;
  7721. top:0px;
  7722. width:236px;
  7723. height:30px;
  7724. background:inherit;
  7725. background-color:rgba(255, 255, 255, 1);
  7726. box-sizing:border-box;
  7727. border-width:1px;
  7728. border-style:solid;
  7729. border-color:rgba(215, 215, 215, 1);
  7730. border-radius:4px;
  7731. -moz-box-shadow:none;
  7732. -webkit-box-shadow:none;
  7733. box-shadow:none;
  7734. font-size:11px;
  7735. }
  7736. #u5231 {
  7737. border-width:0px;
  7738. position:absolute;
  7739. left:1344px;
  7740. top:472px;
  7741. width:236px;
  7742. height:30px;
  7743. display:flex;
  7744. font-size:11px;
  7745. }
  7746. #u5231 .text {
  7747. position:absolute;
  7748. align-self:center;
  7749. padding:2px 2px 2px 2px;
  7750. box-sizing:border-box;
  7751. width:100%;
  7752. }
  7753. #u5231_text {
  7754. border-width:0px;
  7755. word-wrap:break-word;
  7756. text-transform:none;
  7757. visibility:hidden;
  7758. }
  7759. #u5232_input {
  7760. position:absolute;
  7761. left:0px;
  7762. top:0px;
  7763. width:224px;
  7764. height:23px;
  7765. padding:2px 2px 2px 2px;
  7766. font-family:'ArialMT', 'Arial', sans-serif;
  7767. font-weight:400;
  7768. font-style:normal;
  7769. font-size:11px;
  7770. letter-spacing:normal;
  7771. color:#AAAAAA;
  7772. vertical-align:none;
  7773. text-align:left;
  7774. text-transform:none;
  7775. background-color:transparent;
  7776. border-color:transparent;
  7777. }
  7778. #u5232_input.disabled {
  7779. position:absolute;
  7780. left:0px;
  7781. top:0px;
  7782. width:224px;
  7783. height:23px;
  7784. padding:2px 2px 2px 2px;
  7785. font-family:'ArialMT', 'Arial', sans-serif;
  7786. font-weight:400;
  7787. font-style:normal;
  7788. font-size:11px;
  7789. letter-spacing:normal;
  7790. color:#AAAAAA;
  7791. vertical-align:none;
  7792. text-align:left;
  7793. text-transform:none;
  7794. background-color:transparent;
  7795. border-color:transparent;
  7796. }
  7797. #u5232_div {
  7798. border-width:0px;
  7799. position:absolute;
  7800. left:0px;
  7801. top:0px;
  7802. width:224px;
  7803. height:23px;
  7804. background:inherit;
  7805. background-color:rgba(255, 255, 255, 1);
  7806. border:none;
  7807. border-radius:0px;
  7808. -moz-box-shadow:none;
  7809. -webkit-box-shadow:none;
  7810. box-shadow:none;
  7811. font-size:11px;
  7812. color:#AAAAAA;
  7813. }
  7814. #u5232 {
  7815. border-width:0px;
  7816. position:absolute;
  7817. left:1350px;
  7818. top:474px;
  7819. width:224px;
  7820. height:23px;
  7821. display:flex;
  7822. font-size:11px;
  7823. color:#AAAAAA;
  7824. }
  7825. #u5232 .text {
  7826. position:absolute;
  7827. align-self:flex-start;
  7828. padding:2px 2px 2px 2px;
  7829. box-sizing:border-box;
  7830. width:100%;
  7831. }
  7832. #u5232_div.disabled {
  7833. border-width:0px;
  7834. position:absolute;
  7835. left:0px;
  7836. top:0px;
  7837. width:224px;
  7838. height:23px;
  7839. background:inherit;
  7840. background-color:rgba(240, 240, 240, 1);
  7841. border:none;
  7842. border-radius:0px;
  7843. -moz-box-shadow:none;
  7844. -webkit-box-shadow:none;
  7845. box-shadow:none;
  7846. font-size:11px;
  7847. color:#AAAAAA;
  7848. }
  7849. #u5232.disabled {
  7850. }
  7851. .u5232_input_option {
  7852. font-size:11px;
  7853. }
  7854. #u5233 {
  7855. border-width:0px;
  7856. position:absolute;
  7857. left:0px;
  7858. top:0px;
  7859. width:0px;
  7860. height:0px;
  7861. }
  7862. #u5234_div {
  7863. border-width:0px;
  7864. position:absolute;
  7865. left:0px;
  7866. top:0px;
  7867. width:236px;
  7868. height:30px;
  7869. background:inherit;
  7870. background-color:rgba(255, 255, 255, 1);
  7871. box-sizing:border-box;
  7872. border-width:1px;
  7873. border-style:solid;
  7874. border-color:rgba(201, 201, 201, 1);
  7875. border-radius:4px;
  7876. -moz-box-shadow:none;
  7877. -webkit-box-shadow:none;
  7878. box-shadow:none;
  7879. font-family:'Helvetica', sans-serif;
  7880. font-weight:400;
  7881. font-style:normal;
  7882. font-size:10px;
  7883. color:#CCCCCC;
  7884. text-align:right;
  7885. }
  7886. #u5234 {
  7887. border-width:0px;
  7888. position:absolute;
  7889. left:1344px;
  7890. top:512px;
  7891. width:236px;
  7892. height:30px;
  7893. display:flex;
  7894. font-family:'Helvetica', sans-serif;
  7895. font-weight:400;
  7896. font-style:normal;
  7897. font-size:10px;
  7898. color:#CCCCCC;
  7899. text-align:right;
  7900. }
  7901. #u5234 .text {
  7902. position:absolute;
  7903. align-self:center;
  7904. padding:2px 8px 2px 8px;
  7905. box-sizing:border-box;
  7906. width:100%;
  7907. }
  7908. #u5234_text {
  7909. border-width:0px;
  7910. word-wrap:break-word;
  7911. text-transform:none;
  7912. visibility:hidden;
  7913. }
  7914. #u5235_input {
  7915. position:absolute;
  7916. left:0px;
  7917. top:0px;
  7918. width:207px;
  7919. height:28px;
  7920. padding:2px 2px 2px 2px;
  7921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7922. font-weight:400;
  7923. font-style:normal;
  7924. font-size:14px;
  7925. letter-spacing:normal;
  7926. color:#000000;
  7927. vertical-align:none;
  7928. text-align:left;
  7929. text-transform:none;
  7930. background-color:transparent;
  7931. border-color:transparent;
  7932. }
  7933. #u5235_input.disabled {
  7934. position:absolute;
  7935. left:0px;
  7936. top:0px;
  7937. width:207px;
  7938. height:28px;
  7939. padding:2px 2px 2px 2px;
  7940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7941. font-weight:400;
  7942. font-style:normal;
  7943. font-size:14px;
  7944. letter-spacing:normal;
  7945. color:#000000;
  7946. vertical-align:none;
  7947. text-align:left;
  7948. text-transform:none;
  7949. background-color:transparent;
  7950. border-color:transparent;
  7951. }
  7952. #u5235_div {
  7953. border-width:0px;
  7954. position:absolute;
  7955. left:0px;
  7956. top:0px;
  7957. width:207px;
  7958. height:28px;
  7959. background:inherit;
  7960. background-color:rgba(255, 255, 255, 1);
  7961. border:none;
  7962. border-radius:0px;
  7963. -moz-box-shadow:none;
  7964. -webkit-box-shadow:none;
  7965. box-shadow:none;
  7966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7967. font-weight:400;
  7968. font-style:normal;
  7969. font-size:14px;
  7970. }
  7971. #u5235 {
  7972. border-width:0px;
  7973. position:absolute;
  7974. left:1350px;
  7975. top:513px;
  7976. width:207px;
  7977. height:28px;
  7978. display:flex;
  7979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7980. font-weight:400;
  7981. font-style:normal;
  7982. font-size:14px;
  7983. }
  7984. #u5235 .text {
  7985. position:absolute;
  7986. align-self:center;
  7987. padding:2px 2px 2px 2px;
  7988. box-sizing:border-box;
  7989. width:100%;
  7990. }
  7991. #u5235_div.disabled {
  7992. border-width:0px;
  7993. position:absolute;
  7994. left:0px;
  7995. top:0px;
  7996. width:207px;
  7997. height:28px;
  7998. background:inherit;
  7999. background-color:rgba(240, 240, 240, 1);
  8000. border:none;
  8001. border-radius:0px;
  8002. -moz-box-shadow:none;
  8003. -webkit-box-shadow:none;
  8004. box-shadow:none;
  8005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8006. font-weight:400;
  8007. font-style:normal;
  8008. font-size:14px;
  8009. }
  8010. #u5235.disabled {
  8011. }
  8012. #u5236 label {
  8013. left:0px;
  8014. width:100%;
  8015. }
  8016. #u5236_img {
  8017. border-width:0px;
  8018. position:absolute;
  8019. left:0px;
  8020. top:4px;
  8021. width:12px;
  8022. height:12px;
  8023. }
  8024. #u5236 {
  8025. border-width:0px;
  8026. position:absolute;
  8027. left:1346px;
  8028. top:970px;
  8029. width:118px;
  8030. height:20px;
  8031. display:flex;
  8032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8033. font-weight:400;
  8034. font-style:normal;
  8035. font-size:14px;
  8036. }
  8037. #u5236 .text {
  8038. position:absolute;
  8039. align-self:center;
  8040. padding:0px 2px 0px 2px;
  8041. box-sizing:border-box;
  8042. }
  8043. #u5236_img.selected {
  8044. }
  8045. #u5236.selected {
  8046. }
  8047. #u5236_img.disabled {
  8048. }
  8049. #u5236.disabled {
  8050. }
  8051. #u5236_img.selectedDisabled {
  8052. }
  8053. #u5236.selectedDisabled {
  8054. }
  8055. #u5236_text {
  8056. border-width:0px;
  8057. position:absolute;
  8058. left:14px;
  8059. top:0px;
  8060. width:102px;
  8061. word-wrap:break-word;
  8062. text-transform:none;
  8063. }
  8064. #u5236_input {
  8065. border-width:0px;
  8066. position:absolute;
  8067. left:0px;
  8068. top:0px;
  8069. width:0px;
  8070. height:0px;
  8071. opacity:0;
  8072. }
  8073. #u5237 label {
  8074. left:0px;
  8075. width:100%;
  8076. }
  8077. #u5237_img {
  8078. border-width:0px;
  8079. position:absolute;
  8080. left:0px;
  8081. top:4px;
  8082. width:12px;
  8083. height:12px;
  8084. }
  8085. #u5237 {
  8086. border-width:0px;
  8087. position:absolute;
  8088. left:1346px;
  8089. top:1002px;
  8090. width:118px;
  8091. height:20px;
  8092. display:flex;
  8093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8094. font-weight:400;
  8095. font-style:normal;
  8096. font-size:14px;
  8097. }
  8098. #u5237 .text {
  8099. position:absolute;
  8100. align-self:center;
  8101. padding:0px 2px 0px 2px;
  8102. box-sizing:border-box;
  8103. }
  8104. #u5237_img.selected {
  8105. }
  8106. #u5237.selected {
  8107. }
  8108. #u5237_img.disabled {
  8109. }
  8110. #u5237.disabled {
  8111. }
  8112. #u5237_img.selectedDisabled {
  8113. }
  8114. #u5237.selectedDisabled {
  8115. }
  8116. #u5237_text {
  8117. border-width:0px;
  8118. position:absolute;
  8119. left:14px;
  8120. top:0px;
  8121. width:102px;
  8122. word-wrap:break-word;
  8123. text-transform:none;
  8124. }
  8125. #u5237_input {
  8126. border-width:0px;
  8127. position:absolute;
  8128. left:0px;
  8129. top:0px;
  8130. width:0px;
  8131. height:0px;
  8132. opacity:0;
  8133. }
  8134. #u5238 label {
  8135. left:0px;
  8136. width:100%;
  8137. }
  8138. #u5238_img {
  8139. border-width:0px;
  8140. position:absolute;
  8141. left:0px;
  8142. top:4px;
  8143. width:12px;
  8144. height:12px;
  8145. }
  8146. #u5238 {
  8147. border-width:0px;
  8148. position:absolute;
  8149. left:1346px;
  8150. top:1035px;
  8151. width:118px;
  8152. height:20px;
  8153. display:flex;
  8154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8155. font-weight:400;
  8156. font-style:normal;
  8157. font-size:14px;
  8158. }
  8159. #u5238 .text {
  8160. position:absolute;
  8161. align-self:center;
  8162. padding:0px 2px 0px 2px;
  8163. box-sizing:border-box;
  8164. }
  8165. #u5238_img.selected {
  8166. }
  8167. #u5238.selected {
  8168. }
  8169. #u5238_img.disabled {
  8170. }
  8171. #u5238.disabled {
  8172. }
  8173. #u5238_img.selectedDisabled {
  8174. }
  8175. #u5238.selectedDisabled {
  8176. }
  8177. #u5238_text {
  8178. border-width:0px;
  8179. position:absolute;
  8180. left:14px;
  8181. top:0px;
  8182. width:102px;
  8183. word-wrap:break-word;
  8184. text-transform:none;
  8185. }
  8186. #u5238_input {
  8187. border-width:0px;
  8188. position:absolute;
  8189. left:0px;
  8190. top:0px;
  8191. width:0px;
  8192. height:0px;
  8193. opacity:0;
  8194. }
  8195. #u5239 label {
  8196. left:0px;
  8197. width:100%;
  8198. }
  8199. #u5239_img {
  8200. border-width:0px;
  8201. position:absolute;
  8202. left:0px;
  8203. top:4px;
  8204. width:12px;
  8205. height:12px;
  8206. }
  8207. #u5239 {
  8208. border-width:0px;
  8209. position:absolute;
  8210. left:1346px;
  8211. top:1067px;
  8212. width:118px;
  8213. height:20px;
  8214. display:flex;
  8215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8216. font-weight:400;
  8217. font-style:normal;
  8218. font-size:14px;
  8219. }
  8220. #u5239 .text {
  8221. position:absolute;
  8222. align-self:center;
  8223. padding:0px 2px 0px 2px;
  8224. box-sizing:border-box;
  8225. }
  8226. #u5239_img.selected {
  8227. }
  8228. #u5239.selected {
  8229. }
  8230. #u5239_img.disabled {
  8231. }
  8232. #u5239.disabled {
  8233. }
  8234. #u5239_img.selectedDisabled {
  8235. }
  8236. #u5239.selectedDisabled {
  8237. }
  8238. #u5239_text {
  8239. border-width:0px;
  8240. position:absolute;
  8241. left:14px;
  8242. top:0px;
  8243. width:102px;
  8244. word-wrap:break-word;
  8245. text-transform:none;
  8246. }
  8247. #u5239_input {
  8248. border-width:0px;
  8249. position:absolute;
  8250. left:0px;
  8251. top:0px;
  8252. width:0px;
  8253. height:0px;
  8254. opacity:0;
  8255. }
  8256. #u5240 label {
  8257. left:0px;
  8258. width:100%;
  8259. }
  8260. #u5240_img {
  8261. border-width:0px;
  8262. position:absolute;
  8263. left:0px;
  8264. top:4px;
  8265. width:12px;
  8266. height:12px;
  8267. }
  8268. #u5240 {
  8269. border-width:0px;
  8270. position:absolute;
  8271. left:1346px;
  8272. top:1097px;
  8273. width:118px;
  8274. height:20px;
  8275. display:flex;
  8276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8277. font-weight:400;
  8278. font-style:normal;
  8279. font-size:14px;
  8280. }
  8281. #u5240 .text {
  8282. position:absolute;
  8283. align-self:center;
  8284. padding:0px 2px 0px 2px;
  8285. box-sizing:border-box;
  8286. }
  8287. #u5240_img.selected {
  8288. }
  8289. #u5240.selected {
  8290. }
  8291. #u5240_img.disabled {
  8292. }
  8293. #u5240.disabled {
  8294. }
  8295. #u5240_img.selectedDisabled {
  8296. }
  8297. #u5240.selectedDisabled {
  8298. }
  8299. #u5240_text {
  8300. border-width:0px;
  8301. position:absolute;
  8302. left:14px;
  8303. top:0px;
  8304. width:102px;
  8305. word-wrap:break-word;
  8306. text-transform:none;
  8307. }
  8308. #u5240_input {
  8309. border-width:0px;
  8310. position:absolute;
  8311. left:0px;
  8312. top:0px;
  8313. width:0px;
  8314. height:0px;
  8315. opacity:0;
  8316. }
  8317. #u5241 label {
  8318. left:0px;
  8319. width:100%;
  8320. }
  8321. #u5241_img {
  8322. border-width:0px;
  8323. position:absolute;
  8324. left:0px;
  8325. top:4px;
  8326. width:12px;
  8327. height:12px;
  8328. }
  8329. #u5241 {
  8330. border-width:0px;
  8331. position:absolute;
  8332. left:1346px;
  8333. top:1127px;
  8334. width:118px;
  8335. height:20px;
  8336. display:flex;
  8337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8338. font-weight:400;
  8339. font-style:normal;
  8340. font-size:14px;
  8341. }
  8342. #u5241 .text {
  8343. position:absolute;
  8344. align-self:center;
  8345. padding:0px 2px 0px 2px;
  8346. box-sizing:border-box;
  8347. }
  8348. #u5241_img.selected {
  8349. }
  8350. #u5241.selected {
  8351. }
  8352. #u5241_img.disabled {
  8353. }
  8354. #u5241.disabled {
  8355. }
  8356. #u5241_img.selectedDisabled {
  8357. }
  8358. #u5241.selectedDisabled {
  8359. }
  8360. #u5241_text {
  8361. border-width:0px;
  8362. position:absolute;
  8363. left:14px;
  8364. top:0px;
  8365. width:102px;
  8366. word-wrap:break-word;
  8367. text-transform:none;
  8368. }
  8369. #u5241_input {
  8370. border-width:0px;
  8371. position:absolute;
  8372. left:0px;
  8373. top:0px;
  8374. width:0px;
  8375. height:0px;
  8376. opacity:0;
  8377. }
  8378. #u5242_img {
  8379. border-width:0px;
  8380. position:absolute;
  8381. left:0px;
  8382. top:0px;
  8383. width:11px;
  8384. height:11px;
  8385. }
  8386. #u5242 {
  8387. border-width:0px;
  8388. position:absolute;
  8389. left:1411px;
  8390. top:180px;
  8391. width:11px;
  8392. height:11px;
  8393. display:flex;
  8394. }
  8395. #u5242 .text {
  8396. position:absolute;
  8397. align-self:center;
  8398. padding:2px 2px 2px 2px;
  8399. box-sizing:border-box;
  8400. width:100%;
  8401. }
  8402. #u5242_text {
  8403. border-width:0px;
  8404. word-wrap:break-word;
  8405. text-transform:none;
  8406. visibility:hidden;
  8407. }
  8408. #u5243 label {
  8409. left:0px;
  8410. width:100%;
  8411. }
  8412. #u5243_img {
  8413. border-width:0px;
  8414. position:absolute;
  8415. left:0px;
  8416. top:4px;
  8417. width:12px;
  8418. height:12px;
  8419. }
  8420. #u5243 {
  8421. border-width:0px;
  8422. position:absolute;
  8423. left:1346px;
  8424. top:1157px;
  8425. width:118px;
  8426. height:20px;
  8427. display:flex;
  8428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8429. font-weight:400;
  8430. font-style:normal;
  8431. font-size:14px;
  8432. }
  8433. #u5243 .text {
  8434. position:absolute;
  8435. align-self:center;
  8436. padding:0px 2px 0px 2px;
  8437. box-sizing:border-box;
  8438. }
  8439. #u5243_img.selected {
  8440. }
  8441. #u5243.selected {
  8442. }
  8443. #u5243_img.disabled {
  8444. }
  8445. #u5243.disabled {
  8446. }
  8447. #u5243_img.selectedDisabled {
  8448. }
  8449. #u5243.selectedDisabled {
  8450. }
  8451. #u5243_text {
  8452. border-width:0px;
  8453. position:absolute;
  8454. left:14px;
  8455. top:0px;
  8456. width:102px;
  8457. word-wrap:break-word;
  8458. text-transform:none;
  8459. }
  8460. #u5243_input {
  8461. border-width:0px;
  8462. position:absolute;
  8463. left:0px;
  8464. top:0px;
  8465. width:0px;
  8466. height:0px;
  8467. opacity:0;
  8468. }
  8469. #u5244_div {
  8470. border-width:0px;
  8471. position:absolute;
  8472. left:0px;
  8473. top:0px;
  8474. width:93px;
  8475. height:40px;
  8476. background:inherit;
  8477. background-color:rgba(255, 255, 255, 1);
  8478. box-sizing:border-box;
  8479. border-width:3px;
  8480. border-style:solid;
  8481. border-color:rgba(25, 140, 251, 1);
  8482. border-left:0px;
  8483. border-top:0px;
  8484. border-right:0px;
  8485. border-radius:0px;
  8486. border-bottom-right-radius:0px;
  8487. border-bottom-left-radius:0px;
  8488. -moz-box-shadow:none;
  8489. -webkit-box-shadow:none;
  8490. box-shadow:none;
  8491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8492. font-weight:400;
  8493. font-style:normal;
  8494. font-size:14px;
  8495. color:#198CFB;
  8496. text-align:center;
  8497. line-height:30px;
  8498. }
  8499. #u5244 {
  8500. border-width:0px;
  8501. position:absolute;
  8502. left:1320px;
  8503. top:110px;
  8504. width:93px;
  8505. height:40px;
  8506. display:flex;
  8507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8508. font-weight:400;
  8509. font-style:normal;
  8510. font-size:14px;
  8511. color:#198CFB;
  8512. text-align:center;
  8513. line-height:30px;
  8514. }
  8515. #u5244 .text {
  8516. position:absolute;
  8517. align-self:center;
  8518. padding:5px 10px 5px 10px;
  8519. box-sizing:border-box;
  8520. width:100%;
  8521. }
  8522. #u5244_text {
  8523. border-width:0px;
  8524. word-wrap:break-word;
  8525. text-transform:none;
  8526. }
  8527. #u5245_div {
  8528. border-width:0px;
  8529. position:absolute;
  8530. left:0px;
  8531. top:0px;
  8532. width:93px;
  8533. height:40px;
  8534. background:inherit;
  8535. background-color:rgba(255, 255, 255, 1);
  8536. border:none;
  8537. border-left:0px;
  8538. border-top:0px;
  8539. border-right:0px;
  8540. border-radius:0px;
  8541. border-bottom-right-radius:0px;
  8542. border-bottom-left-radius:0px;
  8543. -moz-box-shadow:none;
  8544. -webkit-box-shadow:none;
  8545. box-shadow:none;
  8546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8547. font-weight:400;
  8548. font-style:normal;
  8549. font-size:14px;
  8550. text-align:center;
  8551. line-height:30px;
  8552. }
  8553. #u5245 {
  8554. border-width:0px;
  8555. position:absolute;
  8556. left:1506px;
  8557. top:109px;
  8558. width:93px;
  8559. height:40px;
  8560. display:flex;
  8561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8562. font-weight:400;
  8563. font-style:normal;
  8564. font-size:14px;
  8565. text-align:center;
  8566. line-height:30px;
  8567. }
  8568. #u5245 .text {
  8569. position:absolute;
  8570. align-self:center;
  8571. padding:5px 10px 5px 10px;
  8572. box-sizing:border-box;
  8573. width:100%;
  8574. }
  8575. #u5245_text {
  8576. border-width:0px;
  8577. word-wrap:break-word;
  8578. text-transform:none;
  8579. }
  8580. #u5246_div {
  8581. border-width:0px;
  8582. position:absolute;
  8583. left:0px;
  8584. top:0px;
  8585. width:93px;
  8586. height:40px;
  8587. background:inherit;
  8588. background-color:rgba(255, 255, 255, 1);
  8589. border:none;
  8590. border-left:0px;
  8591. border-top:0px;
  8592. border-right:0px;
  8593. border-radius:0px;
  8594. border-bottom-right-radius:0px;
  8595. border-bottom-left-radius:0px;
  8596. -moz-box-shadow:none;
  8597. -webkit-box-shadow:none;
  8598. box-shadow:none;
  8599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8600. font-weight:400;
  8601. font-style:normal;
  8602. font-size:14px;
  8603. text-align:center;
  8604. line-height:30px;
  8605. }
  8606. #u5246 {
  8607. border-width:0px;
  8608. position:absolute;
  8609. left:1413px;
  8610. top:109px;
  8611. width:93px;
  8612. height:40px;
  8613. display:flex;
  8614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8615. font-weight:400;
  8616. font-style:normal;
  8617. font-size:14px;
  8618. text-align:center;
  8619. line-height:30px;
  8620. }
  8621. #u5246 .text {
  8622. position:absolute;
  8623. align-self:center;
  8624. padding:5px 10px 5px 10px;
  8625. box-sizing:border-box;
  8626. width:100%;
  8627. }
  8628. #u5246_text {
  8629. border-width:0px;
  8630. word-wrap:break-word;
  8631. text-transform:none;
  8632. }
  8633. #u5247 {
  8634. border-width:0px;
  8635. position:absolute;
  8636. left:0px;
  8637. top:0px;
  8638. width:0px;
  8639. height:0px;
  8640. }
  8641. #u5248_div {
  8642. border-width:0px;
  8643. position:absolute;
  8644. left:0px;
  8645. top:0px;
  8646. width:854px;
  8647. height:280px;
  8648. background:inherit;
  8649. background-color:rgba(255, 255, 255, 1);
  8650. border:none;
  8651. border-radius:4px;
  8652. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8653. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8654. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8655. }
  8656. #u5248 {
  8657. border-width:0px;
  8658. position:absolute;
  8659. left:-1168px;
  8660. top:178px;
  8661. width:854px;
  8662. height:280px;
  8663. display:flex;
  8664. }
  8665. #u5248 .text {
  8666. position:absolute;
  8667. align-self:center;
  8668. padding:2px 2px 2px 2px;
  8669. box-sizing:border-box;
  8670. width:100%;
  8671. }
  8672. #u5248_text {
  8673. border-width:0px;
  8674. word-wrap:break-word;
  8675. text-transform:none;
  8676. visibility:hidden;
  8677. }
  8678. #u5249_div {
  8679. border-width:0px;
  8680. position:absolute;
  8681. left:0px;
  8682. top:0px;
  8683. width:73px;
  8684. height:50px;
  8685. background:inherit;
  8686. background-color:rgba(255, 255, 255, 0);
  8687. border:none;
  8688. border-left:0px;
  8689. border-top:0px;
  8690. border-right:0px;
  8691. border-radius:0px;
  8692. border-bottom-right-radius:0px;
  8693. border-bottom-left-radius:0px;
  8694. -moz-box-shadow:none;
  8695. -webkit-box-shadow:none;
  8696. box-shadow:none;
  8697. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8698. font-weight:500;
  8699. font-style:normal;
  8700. font-size:18px;
  8701. }
  8702. #u5249 {
  8703. border-width:0px;
  8704. position:absolute;
  8705. left:-1138px;
  8706. top:188px;
  8707. width:73px;
  8708. height:50px;
  8709. display:flex;
  8710. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8711. font-weight:500;
  8712. font-style:normal;
  8713. font-size:18px;
  8714. }
  8715. #u5249 .text {
  8716. position:absolute;
  8717. align-self:center;
  8718. padding:0px 0px 0px 0px;
  8719. box-sizing:border-box;
  8720. width:100%;
  8721. }
  8722. #u5249_text {
  8723. border-width:0px;
  8724. white-space:nowrap;
  8725. text-transform:none;
  8726. }
  8727. #u5250_img {
  8728. border-width:0px;
  8729. position:absolute;
  8730. left:0px;
  8731. top:0px;
  8732. width:12px;
  8733. height:12px;
  8734. }
  8735. #u5250 {
  8736. border-width:0px;
  8737. position:absolute;
  8738. left:-353px;
  8739. top:193px;
  8740. width:12px;
  8741. height:12px;
  8742. display:flex;
  8743. }
  8744. #u5250 .text {
  8745. position:absolute;
  8746. align-self:center;
  8747. padding:2px 2px 2px 2px;
  8748. box-sizing:border-box;
  8749. width:100%;
  8750. }
  8751. #u5250_text {
  8752. border-width:0px;
  8753. word-wrap:break-word;
  8754. text-transform:none;
  8755. visibility:hidden;
  8756. }
  8757. #u5251_div {
  8758. border-width:0px;
  8759. position:absolute;
  8760. left:0px;
  8761. top:0px;
  8762. width:61px;
  8763. height:32px;
  8764. background:inherit;
  8765. background-color:rgba(24, 144, 255, 1);
  8766. border:none;
  8767. border-radius:4px;
  8768. -moz-box-shadow:none;
  8769. -webkit-box-shadow:none;
  8770. box-shadow:none;
  8771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8772. font-weight:400;
  8773. font-style:normal;
  8774. font-size:14px;
  8775. color:#FFFFFF;
  8776. }
  8777. #u5251 {
  8778. border-width:0px;
  8779. position:absolute;
  8780. left:-402px;
  8781. top:408px;
  8782. width:61px;
  8783. height:32px;
  8784. display:flex;
  8785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8786. font-weight:400;
  8787. font-style:normal;
  8788. font-size:14px;
  8789. color:#FFFFFF;
  8790. }
  8791. #u5251 .text {
  8792. position:absolute;
  8793. align-self:center;
  8794. padding:2px 16px 2px 16px;
  8795. box-sizing:border-box;
  8796. width:100%;
  8797. }
  8798. #u5251_text {
  8799. border-width:0px;
  8800. white-space:nowrap;
  8801. text-transform:none;
  8802. }
  8803. #u5252_div {
  8804. border-width:0px;
  8805. position:absolute;
  8806. left:0px;
  8807. top:0px;
  8808. width:61px;
  8809. height:32px;
  8810. background:inherit;
  8811. background-color:rgba(255, 255, 255, 1);
  8812. box-sizing:border-box;
  8813. border-width:1px;
  8814. border-style:solid;
  8815. border-color:rgba(217, 217, 217, 1);
  8816. border-radius:4px;
  8817. -moz-box-shadow:none;
  8818. -webkit-box-shadow:none;
  8819. box-shadow:none;
  8820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8821. font-weight:400;
  8822. font-style:normal;
  8823. font-size:14px;
  8824. color:rgba(0, 0, 0, 0.647058823529412);
  8825. line-height:21px;
  8826. }
  8827. #u5252 {
  8828. border-width:0px;
  8829. position:absolute;
  8830. left:-473px;
  8831. top:408px;
  8832. width:61px;
  8833. height:32px;
  8834. display:flex;
  8835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8836. font-weight:400;
  8837. font-style:normal;
  8838. font-size:14px;
  8839. color:rgba(0, 0, 0, 0.647058823529412);
  8840. line-height:21px;
  8841. }
  8842. #u5252 .text {
  8843. position:absolute;
  8844. align-self:center;
  8845. padding:2px 16px 2px 16px;
  8846. box-sizing:border-box;
  8847. width:100%;
  8848. }
  8849. #u5252_text {
  8850. border-width:0px;
  8851. white-space:nowrap;
  8852. text-transform:none;
  8853. }
  8854. #u5253 {
  8855. border-width:0px;
  8856. position:absolute;
  8857. left:0px;
  8858. top:0px;
  8859. width:0px;
  8860. height:0px;
  8861. }
  8862. #u5254 {
  8863. border-width:0px;
  8864. position:absolute;
  8865. left:-1138px;
  8866. top:278px;
  8867. width:797px;
  8868. height:90px;
  8869. }
  8870. #u5255_img {
  8871. border-width:0px;
  8872. position:absolute;
  8873. left:0px;
  8874. top:0px;
  8875. width:225px;
  8876. height:30px;
  8877. }
  8878. #u5255 {
  8879. border-width:0px;
  8880. position:absolute;
  8881. left:0px;
  8882. top:0px;
  8883. width:225px;
  8884. height:30px;
  8885. display:flex;
  8886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8887. font-weight:400;
  8888. font-style:normal;
  8889. color:#FFFFFF;
  8890. text-align:left;
  8891. }
  8892. #u5255 .text {
  8893. position:absolute;
  8894. align-self:center;
  8895. padding:2px 2px 2px 20px;
  8896. box-sizing:border-box;
  8897. width:100%;
  8898. }
  8899. #u5255_text {
  8900. border-width:0px;
  8901. word-wrap:break-word;
  8902. text-transform:none;
  8903. }
  8904. #u5256_img {
  8905. border-width:0px;
  8906. position:absolute;
  8907. left:0px;
  8908. top:0px;
  8909. width:306px;
  8910. height:30px;
  8911. }
  8912. #u5256 {
  8913. border-width:0px;
  8914. position:absolute;
  8915. left:225px;
  8916. top:0px;
  8917. width:306px;
  8918. height:30px;
  8919. display:flex;
  8920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8921. font-weight:400;
  8922. font-style:normal;
  8923. color:#FFFFFF;
  8924. text-align:left;
  8925. }
  8926. #u5256 .text {
  8927. position:absolute;
  8928. align-self:center;
  8929. padding:2px 2px 2px 20px;
  8930. box-sizing:border-box;
  8931. width:100%;
  8932. }
  8933. #u5256_text {
  8934. border-width:0px;
  8935. word-wrap:break-word;
  8936. text-transform:none;
  8937. }
  8938. #u5257_img {
  8939. border-width:0px;
  8940. position:absolute;
  8941. left:0px;
  8942. top:0px;
  8943. width:266px;
  8944. height:30px;
  8945. }
  8946. #u5257 {
  8947. border-width:0px;
  8948. position:absolute;
  8949. left:531px;
  8950. top:0px;
  8951. width:266px;
  8952. height:30px;
  8953. display:flex;
  8954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8955. font-weight:400;
  8956. font-style:normal;
  8957. color:#FFFFFF;
  8958. text-align:left;
  8959. }
  8960. #u5257 .text {
  8961. position:absolute;
  8962. align-self:center;
  8963. padding:2px 2px 2px 20px;
  8964. box-sizing:border-box;
  8965. width:100%;
  8966. }
  8967. #u5257_text {
  8968. border-width:0px;
  8969. word-wrap:break-word;
  8970. text-transform:none;
  8971. }
  8972. #u5258_img {
  8973. border-width:0px;
  8974. position:absolute;
  8975. left:0px;
  8976. top:0px;
  8977. width:225px;
  8978. height:30px;
  8979. }
  8980. #u5258 {
  8981. border-width:0px;
  8982. position:absolute;
  8983. left:0px;
  8984. top:30px;
  8985. width:225px;
  8986. height:30px;
  8987. display:flex;
  8988. text-align:left;
  8989. }
  8990. #u5258 .text {
  8991. position:absolute;
  8992. align-self:center;
  8993. padding:2px 2px 2px 20px;
  8994. box-sizing:border-box;
  8995. width:100%;
  8996. }
  8997. #u5258_text {
  8998. border-width:0px;
  8999. word-wrap:break-word;
  9000. text-transform:none;
  9001. visibility:hidden;
  9002. }
  9003. #u5259_img {
  9004. border-width:0px;
  9005. position:absolute;
  9006. left:0px;
  9007. top:0px;
  9008. width:306px;
  9009. height:30px;
  9010. }
  9011. #u5259 {
  9012. border-width:0px;
  9013. position:absolute;
  9014. left:225px;
  9015. top:30px;
  9016. width:306px;
  9017. height:30px;
  9018. display:flex;
  9019. text-align:left;
  9020. }
  9021. #u5259 .text {
  9022. position:absolute;
  9023. align-self:center;
  9024. padding:2px 2px 2px 20px;
  9025. box-sizing:border-box;
  9026. width:100%;
  9027. }
  9028. #u5259_text {
  9029. border-width:0px;
  9030. word-wrap:break-word;
  9031. text-transform:none;
  9032. visibility:hidden;
  9033. }
  9034. #u5260_img {
  9035. border-width:0px;
  9036. position:absolute;
  9037. left:0px;
  9038. top:0px;
  9039. width:266px;
  9040. height:30px;
  9041. }
  9042. #u5260 {
  9043. border-width:0px;
  9044. position:absolute;
  9045. left:531px;
  9046. top:30px;
  9047. width:266px;
  9048. height:30px;
  9049. display:flex;
  9050. text-align:left;
  9051. }
  9052. #u5260 .text {
  9053. position:absolute;
  9054. align-self:center;
  9055. padding:2px 2px 2px 20px;
  9056. box-sizing:border-box;
  9057. width:100%;
  9058. }
  9059. #u5260_text {
  9060. border-width:0px;
  9061. word-wrap:break-word;
  9062. text-transform:none;
  9063. visibility:hidden;
  9064. }
  9065. #u5261_img {
  9066. border-width:0px;
  9067. position:absolute;
  9068. left:0px;
  9069. top:0px;
  9070. width:225px;
  9071. height:30px;
  9072. }
  9073. #u5261 {
  9074. border-width:0px;
  9075. position:absolute;
  9076. left:0px;
  9077. top:60px;
  9078. width:225px;
  9079. height:30px;
  9080. display:flex;
  9081. text-align:left;
  9082. }
  9083. #u5261 .text {
  9084. position:absolute;
  9085. align-self:center;
  9086. padding:2px 2px 2px 20px;
  9087. box-sizing:border-box;
  9088. width:100%;
  9089. }
  9090. #u5261_text {
  9091. border-width:0px;
  9092. word-wrap:break-word;
  9093. text-transform:none;
  9094. visibility:hidden;
  9095. }
  9096. #u5262_img {
  9097. border-width:0px;
  9098. position:absolute;
  9099. left:0px;
  9100. top:0px;
  9101. width:306px;
  9102. height:30px;
  9103. }
  9104. #u5262 {
  9105. border-width:0px;
  9106. position:absolute;
  9107. left:225px;
  9108. top:60px;
  9109. width:306px;
  9110. height:30px;
  9111. display:flex;
  9112. text-align:left;
  9113. }
  9114. #u5262 .text {
  9115. position:absolute;
  9116. align-self:center;
  9117. padding:2px 2px 2px 20px;
  9118. box-sizing:border-box;
  9119. width:100%;
  9120. }
  9121. #u5262_text {
  9122. border-width:0px;
  9123. word-wrap:break-word;
  9124. text-transform:none;
  9125. visibility:hidden;
  9126. }
  9127. #u5263_img {
  9128. border-width:0px;
  9129. position:absolute;
  9130. left:0px;
  9131. top:0px;
  9132. width:266px;
  9133. height:30px;
  9134. }
  9135. #u5263 {
  9136. border-width:0px;
  9137. position:absolute;
  9138. left:531px;
  9139. top:60px;
  9140. width:266px;
  9141. height:30px;
  9142. display:flex;
  9143. text-align:left;
  9144. }
  9145. #u5263 .text {
  9146. position:absolute;
  9147. align-self:center;
  9148. padding:2px 2px 2px 20px;
  9149. box-sizing:border-box;
  9150. width:100%;
  9151. }
  9152. #u5263_text {
  9153. border-width:0px;
  9154. word-wrap:break-word;
  9155. text-transform:none;
  9156. visibility:hidden;
  9157. }
  9158. #u5264_input {
  9159. position:absolute;
  9160. left:0px;
  9161. top:0px;
  9162. width:208px;
  9163. height:22px;
  9164. padding:2px 2px 2px 2px;
  9165. font-family:'ArialMT', 'Arial', sans-serif;
  9166. font-weight:400;
  9167. font-style:normal;
  9168. font-size:13px;
  9169. letter-spacing:normal;
  9170. color:#000000;
  9171. vertical-align:none;
  9172. text-align:left;
  9173. text-transform:none;
  9174. background-color:transparent;
  9175. border-color:transparent;
  9176. }
  9177. #u5264_input.disabled {
  9178. position:absolute;
  9179. left:0px;
  9180. top:0px;
  9181. width:208px;
  9182. height:22px;
  9183. padding:2px 2px 2px 2px;
  9184. font-family:'ArialMT', 'Arial', sans-serif;
  9185. font-weight:400;
  9186. font-style:normal;
  9187. font-size:13px;
  9188. letter-spacing:normal;
  9189. color:#000000;
  9190. vertical-align:none;
  9191. text-align:left;
  9192. text-transform:none;
  9193. background-color:transparent;
  9194. border-color:transparent;
  9195. }
  9196. #u5264_div {
  9197. border-width:0px;
  9198. position:absolute;
  9199. left:0px;
  9200. top:0px;
  9201. width:208px;
  9202. height:22px;
  9203. background:inherit;
  9204. background-color:rgba(255, 255, 255, 1);
  9205. border:none;
  9206. border-radius:0px;
  9207. -moz-box-shadow:none;
  9208. -webkit-box-shadow:none;
  9209. box-shadow:none;
  9210. }
  9211. #u5264 {
  9212. border-width:0px;
  9213. position:absolute;
  9214. left:-1127px;
  9215. top:312px;
  9216. width:208px;
  9217. height:22px;
  9218. display:flex;
  9219. }
  9220. #u5264 .text {
  9221. position:absolute;
  9222. align-self:flex-start;
  9223. padding:2px 2px 2px 2px;
  9224. box-sizing:border-box;
  9225. width:100%;
  9226. }
  9227. #u5264_div.disabled {
  9228. border-width:0px;
  9229. position:absolute;
  9230. left:0px;
  9231. top:0px;
  9232. width:208px;
  9233. height:22px;
  9234. background:inherit;
  9235. background-color:rgba(240, 240, 240, 1);
  9236. border:none;
  9237. border-radius:0px;
  9238. -moz-box-shadow:none;
  9239. -webkit-box-shadow:none;
  9240. box-shadow:none;
  9241. }
  9242. #u5264.disabled {
  9243. }
  9244. .u5264_input_option {
  9245. }
  9246. #u5265_input {
  9247. position:absolute;
  9248. left:0px;
  9249. top:0px;
  9250. width:208px;
  9251. height:22px;
  9252. padding:2px 2px 2px 2px;
  9253. font-family:'ArialMT', 'Arial', sans-serif;
  9254. font-weight:400;
  9255. font-style:normal;
  9256. font-size:13px;
  9257. letter-spacing:normal;
  9258. color:#000000;
  9259. vertical-align:none;
  9260. text-align:left;
  9261. text-transform:none;
  9262. background-color:transparent;
  9263. border-color:transparent;
  9264. }
  9265. #u5265_input.disabled {
  9266. position:absolute;
  9267. left:0px;
  9268. top:0px;
  9269. width:208px;
  9270. height:22px;
  9271. padding:2px 2px 2px 2px;
  9272. font-family:'ArialMT', 'Arial', sans-serif;
  9273. font-weight:400;
  9274. font-style:normal;
  9275. font-size:13px;
  9276. letter-spacing:normal;
  9277. color:#000000;
  9278. vertical-align:none;
  9279. text-align:left;
  9280. text-transform:none;
  9281. background-color:transparent;
  9282. border-color:transparent;
  9283. }
  9284. #u5265_div {
  9285. border-width:0px;
  9286. position:absolute;
  9287. left:0px;
  9288. top:0px;
  9289. width:208px;
  9290. height:22px;
  9291. background:inherit;
  9292. background-color:rgba(255, 255, 255, 1);
  9293. border:none;
  9294. border-radius:0px;
  9295. -moz-box-shadow:none;
  9296. -webkit-box-shadow:none;
  9297. box-shadow:none;
  9298. }
  9299. #u5265 {
  9300. border-width:0px;
  9301. position:absolute;
  9302. left:-1127px;
  9303. top:342px;
  9304. width:208px;
  9305. height:22px;
  9306. display:flex;
  9307. }
  9308. #u5265 .text {
  9309. position:absolute;
  9310. align-self:flex-start;
  9311. padding:2px 2px 2px 2px;
  9312. box-sizing:border-box;
  9313. width:100%;
  9314. }
  9315. #u5265_div.disabled {
  9316. border-width:0px;
  9317. position:absolute;
  9318. left:0px;
  9319. top:0px;
  9320. width:208px;
  9321. height:22px;
  9322. background:inherit;
  9323. background-color:rgba(240, 240, 240, 1);
  9324. border:none;
  9325. border-radius:0px;
  9326. -moz-box-shadow:none;
  9327. -webkit-box-shadow:none;
  9328. box-shadow:none;
  9329. }
  9330. #u5265.disabled {
  9331. }
  9332. .u5265_input_option {
  9333. }
  9334. #u5266_input {
  9335. position:absolute;
  9336. left:0px;
  9337. top:0px;
  9338. width:294px;
  9339. height:22px;
  9340. padding:2px 2px 2px 2px;
  9341. font-family:'ArialMT', 'Arial', sans-serif;
  9342. font-weight:400;
  9343. font-style:normal;
  9344. font-size:13px;
  9345. letter-spacing:normal;
  9346. color:#000000;
  9347. vertical-align:none;
  9348. text-align:left;
  9349. text-transform:none;
  9350. background-color:transparent;
  9351. border-color:transparent;
  9352. }
  9353. #u5266_input.disabled {
  9354. position:absolute;
  9355. left:0px;
  9356. top:0px;
  9357. width:294px;
  9358. height:22px;
  9359. padding:2px 2px 2px 2px;
  9360. font-family:'ArialMT', 'Arial', sans-serif;
  9361. font-weight:400;
  9362. font-style:normal;
  9363. font-size:13px;
  9364. letter-spacing:normal;
  9365. color:#000000;
  9366. vertical-align:none;
  9367. text-align:left;
  9368. text-transform:none;
  9369. background-color:transparent;
  9370. border-color:transparent;
  9371. }
  9372. #u5266_div {
  9373. border-width:0px;
  9374. position:absolute;
  9375. left:0px;
  9376. top:0px;
  9377. width:294px;
  9378. height:22px;
  9379. background:inherit;
  9380. background-color:rgba(255, 255, 255, 1);
  9381. border:none;
  9382. border-radius:0px;
  9383. -moz-box-shadow:none;
  9384. -webkit-box-shadow:none;
  9385. box-shadow:none;
  9386. }
  9387. #u5266 {
  9388. border-width:0px;
  9389. position:absolute;
  9390. left:-908px;
  9391. top:312px;
  9392. width:294px;
  9393. height:22px;
  9394. display:flex;
  9395. }
  9396. #u5266 .text {
  9397. position:absolute;
  9398. align-self:flex-start;
  9399. padding:2px 2px 2px 2px;
  9400. box-sizing:border-box;
  9401. width:100%;
  9402. }
  9403. #u5266_div.disabled {
  9404. border-width:0px;
  9405. position:absolute;
  9406. left:0px;
  9407. top:0px;
  9408. width:294px;
  9409. height:22px;
  9410. background:inherit;
  9411. background-color:rgba(240, 240, 240, 1);
  9412. border:none;
  9413. border-radius:0px;
  9414. -moz-box-shadow:none;
  9415. -webkit-box-shadow:none;
  9416. box-shadow:none;
  9417. }
  9418. #u5266.disabled {
  9419. }
  9420. .u5266_input_option {
  9421. }
  9422. #u5267_input {
  9423. position:absolute;
  9424. left:0px;
  9425. top:0px;
  9426. width:294px;
  9427. height:22px;
  9428. padding:2px 2px 2px 2px;
  9429. font-family:'ArialMT', 'Arial', sans-serif;
  9430. font-weight:400;
  9431. font-style:normal;
  9432. font-size:13px;
  9433. letter-spacing:normal;
  9434. color:#000000;
  9435. vertical-align:none;
  9436. text-align:left;
  9437. text-transform:none;
  9438. background-color:transparent;
  9439. border-color:transparent;
  9440. }
  9441. #u5267_input.disabled {
  9442. position:absolute;
  9443. left:0px;
  9444. top:0px;
  9445. width:294px;
  9446. height:22px;
  9447. padding:2px 2px 2px 2px;
  9448. font-family:'ArialMT', 'Arial', sans-serif;
  9449. font-weight:400;
  9450. font-style:normal;
  9451. font-size:13px;
  9452. letter-spacing:normal;
  9453. color:#000000;
  9454. vertical-align:none;
  9455. text-align:left;
  9456. text-transform:none;
  9457. background-color:transparent;
  9458. border-color:transparent;
  9459. }
  9460. #u5267_div {
  9461. border-width:0px;
  9462. position:absolute;
  9463. left:0px;
  9464. top:0px;
  9465. width:294px;
  9466. height:22px;
  9467. background:inherit;
  9468. background-color:rgba(255, 255, 255, 1);
  9469. border:none;
  9470. border-radius:0px;
  9471. -moz-box-shadow:none;
  9472. -webkit-box-shadow:none;
  9473. box-shadow:none;
  9474. }
  9475. #u5267 {
  9476. border-width:0px;
  9477. position:absolute;
  9478. left:-908px;
  9479. top:342px;
  9480. width:294px;
  9481. height:22px;
  9482. display:flex;
  9483. }
  9484. #u5267 .text {
  9485. position:absolute;
  9486. align-self:flex-start;
  9487. padding:2px 2px 2px 2px;
  9488. box-sizing:border-box;
  9489. width:100%;
  9490. }
  9491. #u5267_div.disabled {
  9492. border-width:0px;
  9493. position:absolute;
  9494. left:0px;
  9495. top:0px;
  9496. width:294px;
  9497. height:22px;
  9498. background:inherit;
  9499. background-color:rgba(240, 240, 240, 1);
  9500. border:none;
  9501. border-radius:0px;
  9502. -moz-box-shadow:none;
  9503. -webkit-box-shadow:none;
  9504. box-shadow:none;
  9505. }
  9506. #u5267.disabled {
  9507. }
  9508. .u5267_input_option {
  9509. }
  9510. #u5268_input {
  9511. position:absolute;
  9512. left:0px;
  9513. top:0px;
  9514. width:251px;
  9515. height:22px;
  9516. padding:2px 2px 2px 2px;
  9517. font-family:'ArialMT', 'Arial', sans-serif;
  9518. font-weight:400;
  9519. font-style:normal;
  9520. font-size:13px;
  9521. letter-spacing:normal;
  9522. color:#000000;
  9523. vertical-align:none;
  9524. text-align:left;
  9525. text-transform:none;
  9526. background-color:transparent;
  9527. border-color:transparent;
  9528. }
  9529. #u5268_input.disabled {
  9530. position:absolute;
  9531. left:0px;
  9532. top:0px;
  9533. width:251px;
  9534. height:22px;
  9535. padding:2px 2px 2px 2px;
  9536. font-family:'ArialMT', 'Arial', sans-serif;
  9537. font-weight:400;
  9538. font-style:normal;
  9539. font-size:13px;
  9540. letter-spacing:normal;
  9541. color:#000000;
  9542. vertical-align:none;
  9543. text-align:left;
  9544. text-transform:none;
  9545. background-color:transparent;
  9546. border-color:transparent;
  9547. }
  9548. #u5268_div {
  9549. border-width:0px;
  9550. position:absolute;
  9551. left:0px;
  9552. top:0px;
  9553. width:251px;
  9554. height:22px;
  9555. background:inherit;
  9556. background-color:rgba(255, 255, 255, 1);
  9557. border:none;
  9558. border-radius:0px;
  9559. -moz-box-shadow:none;
  9560. -webkit-box-shadow:none;
  9561. box-shadow:none;
  9562. }
  9563. #u5268 {
  9564. border-width:0px;
  9565. position:absolute;
  9566. left:-598px;
  9567. top:312px;
  9568. width:251px;
  9569. height:22px;
  9570. display:flex;
  9571. }
  9572. #u5268 .text {
  9573. position:absolute;
  9574. align-self:flex-start;
  9575. padding:2px 2px 2px 2px;
  9576. box-sizing:border-box;
  9577. width:100%;
  9578. }
  9579. #u5268_div.disabled {
  9580. border-width:0px;
  9581. position:absolute;
  9582. left:0px;
  9583. top:0px;
  9584. width:251px;
  9585. height:22px;
  9586. background:inherit;
  9587. background-color:rgba(240, 240, 240, 1);
  9588. border:none;
  9589. border-radius:0px;
  9590. -moz-box-shadow:none;
  9591. -webkit-box-shadow:none;
  9592. box-shadow:none;
  9593. }
  9594. #u5268.disabled {
  9595. }
  9596. .u5268_input_option {
  9597. }
  9598. #u5269_div {
  9599. border-width:0px;
  9600. position:absolute;
  9601. left:0px;
  9602. top:0px;
  9603. width:61px;
  9604. height:32px;
  9605. background:inherit;
  9606. background-color:rgba(255, 255, 255, 1);
  9607. box-sizing:border-box;
  9608. border-width:1px;
  9609. border-style:solid;
  9610. border-color:rgba(25, 140, 251, 1);
  9611. border-radius:4px;
  9612. -moz-box-shadow:none;
  9613. -webkit-box-shadow:none;
  9614. box-shadow:none;
  9615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9616. font-weight:400;
  9617. font-style:normal;
  9618. font-size:14px;
  9619. color:#198CFB;
  9620. line-height:21px;
  9621. }
  9622. #u5269 {
  9623. border-width:0px;
  9624. position:absolute;
  9625. left:-417px;
  9626. top:228px;
  9627. width:61px;
  9628. height:32px;
  9629. display:flex;
  9630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9631. font-weight:400;
  9632. font-style:normal;
  9633. font-size:14px;
  9634. color:#198CFB;
  9635. line-height:21px;
  9636. }
  9637. #u5269 .text {
  9638. position:absolute;
  9639. align-self:center;
  9640. padding:2px 16px 2px 16px;
  9641. box-sizing:border-box;
  9642. width:100%;
  9643. }
  9644. #u5269_text {
  9645. border-width:0px;
  9646. white-space:nowrap;
  9647. text-transform:none;
  9648. }
  9649. #u5270 {
  9650. border-width:0px;
  9651. position:absolute;
  9652. left:0px;
  9653. top:0px;
  9654. width:0px;
  9655. height:0px;
  9656. }
  9657. #u5271_div {
  9658. border-width:0px;
  9659. position:absolute;
  9660. left:0px;
  9661. top:0px;
  9662. width:236px;
  9663. height:30px;
  9664. background:inherit;
  9665. background-color:rgba(255, 255, 255, 1);
  9666. box-sizing:border-box;
  9667. border-width:1px;
  9668. border-style:solid;
  9669. border-color:rgba(215, 215, 215, 1);
  9670. border-radius:4px;
  9671. -moz-box-shadow:none;
  9672. -webkit-box-shadow:none;
  9673. box-shadow:none;
  9674. font-size:11px;
  9675. }
  9676. #u5271 {
  9677. border-width:0px;
  9678. position:absolute;
  9679. left:-1137px;
  9680. top:394px;
  9681. width:236px;
  9682. height:30px;
  9683. display:flex;
  9684. font-size:11px;
  9685. }
  9686. #u5271 .text {
  9687. position:absolute;
  9688. align-self:center;
  9689. padding:2px 2px 2px 2px;
  9690. box-sizing:border-box;
  9691. width:100%;
  9692. }
  9693. #u5271_text {
  9694. border-width:0px;
  9695. word-wrap:break-word;
  9696. text-transform:none;
  9697. visibility:hidden;
  9698. }
  9699. #u5272_input {
  9700. position:absolute;
  9701. left:0px;
  9702. top:0px;
  9703. width:224px;
  9704. height:23px;
  9705. padding:2px 2px 2px 2px;
  9706. font-family:'ArialMT', 'Arial', sans-serif;
  9707. font-weight:400;
  9708. font-style:normal;
  9709. font-size:11px;
  9710. letter-spacing:normal;
  9711. color:#AAAAAA;
  9712. vertical-align:none;
  9713. text-align:left;
  9714. text-transform:none;
  9715. background-color:transparent;
  9716. border-color:transparent;
  9717. }
  9718. #u5272_input.disabled {
  9719. position:absolute;
  9720. left:0px;
  9721. top:0px;
  9722. width:224px;
  9723. height:23px;
  9724. padding:2px 2px 2px 2px;
  9725. font-family:'ArialMT', 'Arial', sans-serif;
  9726. font-weight:400;
  9727. font-style:normal;
  9728. font-size:11px;
  9729. letter-spacing:normal;
  9730. color:#AAAAAA;
  9731. vertical-align:none;
  9732. text-align:left;
  9733. text-transform:none;
  9734. background-color:transparent;
  9735. border-color:transparent;
  9736. }
  9737. #u5272_div {
  9738. border-width:0px;
  9739. position:absolute;
  9740. left:0px;
  9741. top:0px;
  9742. width:224px;
  9743. height:23px;
  9744. background:inherit;
  9745. background-color:rgba(255, 255, 255, 1);
  9746. border:none;
  9747. border-radius:0px;
  9748. -moz-box-shadow:none;
  9749. -webkit-box-shadow:none;
  9750. box-shadow:none;
  9751. font-size:11px;
  9752. color:#AAAAAA;
  9753. }
  9754. #u5272 {
  9755. border-width:0px;
  9756. position:absolute;
  9757. left:-1131px;
  9758. top:396px;
  9759. width:224px;
  9760. height:23px;
  9761. display:flex;
  9762. font-size:11px;
  9763. color:#AAAAAA;
  9764. }
  9765. #u5272 .text {
  9766. position:absolute;
  9767. align-self:flex-start;
  9768. padding:2px 2px 2px 2px;
  9769. box-sizing:border-box;
  9770. width:100%;
  9771. }
  9772. #u5272_div.disabled {
  9773. border-width:0px;
  9774. position:absolute;
  9775. left:0px;
  9776. top:0px;
  9777. width:224px;
  9778. height:23px;
  9779. background:inherit;
  9780. background-color:rgba(240, 240, 240, 1);
  9781. border:none;
  9782. border-radius:0px;
  9783. -moz-box-shadow:none;
  9784. -webkit-box-shadow:none;
  9785. box-shadow:none;
  9786. font-size:11px;
  9787. color:#AAAAAA;
  9788. }
  9789. #u5272.disabled {
  9790. }
  9791. .u5272_input_option {
  9792. font-size:11px;
  9793. }
  9794. #u5273 {
  9795. border-width:0px;
  9796. position:absolute;
  9797. left:0px;
  9798. top:0px;
  9799. width:0px;
  9800. height:0px;
  9801. }
  9802. #u5274_div {
  9803. border-width:0px;
  9804. position:absolute;
  9805. left:0px;
  9806. top:0px;
  9807. width:236px;
  9808. height:30px;
  9809. background:inherit;
  9810. background-color:rgba(255, 255, 255, 1);
  9811. box-sizing:border-box;
  9812. border-width:1px;
  9813. border-style:solid;
  9814. border-color:rgba(215, 215, 215, 1);
  9815. border-radius:4px;
  9816. -moz-box-shadow:none;
  9817. -webkit-box-shadow:none;
  9818. box-shadow:none;
  9819. font-size:11px;
  9820. }
  9821. #u5274 {
  9822. border-width:0px;
  9823. position:absolute;
  9824. left:-887px;
  9825. top:394px;
  9826. width:236px;
  9827. height:30px;
  9828. display:flex;
  9829. font-size:11px;
  9830. }
  9831. #u5274 .text {
  9832. position:absolute;
  9833. align-self:center;
  9834. padding:2px 2px 2px 2px;
  9835. box-sizing:border-box;
  9836. width:100%;
  9837. }
  9838. #u5274_text {
  9839. border-width:0px;
  9840. word-wrap:break-word;
  9841. text-transform:none;
  9842. visibility:hidden;
  9843. }
  9844. #u5275_input {
  9845. position:absolute;
  9846. left:0px;
  9847. top:0px;
  9848. width:224px;
  9849. height:23px;
  9850. padding:2px 2px 2px 2px;
  9851. font-family:'ArialMT', 'Arial', sans-serif;
  9852. font-weight:400;
  9853. font-style:normal;
  9854. font-size:11px;
  9855. letter-spacing:normal;
  9856. color:#AAAAAA;
  9857. vertical-align:none;
  9858. text-align:left;
  9859. text-transform:none;
  9860. background-color:transparent;
  9861. border-color:transparent;
  9862. }
  9863. #u5275_input.disabled {
  9864. position:absolute;
  9865. left:0px;
  9866. top:0px;
  9867. width:224px;
  9868. height:23px;
  9869. padding:2px 2px 2px 2px;
  9870. font-family:'ArialMT', 'Arial', sans-serif;
  9871. font-weight:400;
  9872. font-style:normal;
  9873. font-size:11px;
  9874. letter-spacing:normal;
  9875. color:#AAAAAA;
  9876. vertical-align:none;
  9877. text-align:left;
  9878. text-transform:none;
  9879. background-color:transparent;
  9880. border-color:transparent;
  9881. }
  9882. #u5275_div {
  9883. border-width:0px;
  9884. position:absolute;
  9885. left:0px;
  9886. top:0px;
  9887. width:224px;
  9888. height:23px;
  9889. background:inherit;
  9890. background-color:rgba(255, 255, 255, 1);
  9891. border:none;
  9892. border-radius:0px;
  9893. -moz-box-shadow:none;
  9894. -webkit-box-shadow:none;
  9895. box-shadow:none;
  9896. font-size:11px;
  9897. color:#AAAAAA;
  9898. }
  9899. #u5275 {
  9900. border-width:0px;
  9901. position:absolute;
  9902. left:-881px;
  9903. top:396px;
  9904. width:224px;
  9905. height:23px;
  9906. display:flex;
  9907. font-size:11px;
  9908. color:#AAAAAA;
  9909. }
  9910. #u5275 .text {
  9911. position:absolute;
  9912. align-self:flex-start;
  9913. padding:2px 2px 2px 2px;
  9914. box-sizing:border-box;
  9915. width:100%;
  9916. }
  9917. #u5275_div.disabled {
  9918. border-width:0px;
  9919. position:absolute;
  9920. left:0px;
  9921. top:0px;
  9922. width:224px;
  9923. height:23px;
  9924. background:inherit;
  9925. background-color:rgba(240, 240, 240, 1);
  9926. border:none;
  9927. border-radius:0px;
  9928. -moz-box-shadow:none;
  9929. -webkit-box-shadow:none;
  9930. box-shadow:none;
  9931. font-size:11px;
  9932. color:#AAAAAA;
  9933. }
  9934. #u5275.disabled {
  9935. }
  9936. .u5275_input_option {
  9937. font-size:11px;
  9938. }
  9939. #u5276 {
  9940. border-width:0px;
  9941. position:absolute;
  9942. left:0px;
  9943. top:0px;
  9944. width:0px;
  9945. height:0px;
  9946. }
  9947. #u5277_div {
  9948. border-width:0px;
  9949. position:absolute;
  9950. left:0px;
  9951. top:0px;
  9952. width:236px;
  9953. height:30px;
  9954. background:inherit;
  9955. background-color:rgba(255, 255, 255, 1);
  9956. box-sizing:border-box;
  9957. border-width:1px;
  9958. border-style:solid;
  9959. border-color:rgba(215, 215, 215, 1);
  9960. border-radius:4px;
  9961. -moz-box-shadow:none;
  9962. -webkit-box-shadow:none;
  9963. box-shadow:none;
  9964. font-size:11px;
  9965. }
  9966. #u5277 {
  9967. border-width:0px;
  9968. position:absolute;
  9969. left:-638px;
  9970. top:394px;
  9971. width:236px;
  9972. height:30px;
  9973. display:flex;
  9974. font-size:11px;
  9975. }
  9976. #u5277 .text {
  9977. position:absolute;
  9978. align-self:center;
  9979. padding:2px 2px 2px 2px;
  9980. box-sizing:border-box;
  9981. width:100%;
  9982. }
  9983. #u5277_text {
  9984. border-width:0px;
  9985. word-wrap:break-word;
  9986. text-transform:none;
  9987. visibility:hidden;
  9988. }
  9989. #u5278_input {
  9990. position:absolute;
  9991. left:0px;
  9992. top:0px;
  9993. width:224px;
  9994. height:23px;
  9995. padding:2px 2px 2px 2px;
  9996. font-family:'ArialMT', 'Arial', sans-serif;
  9997. font-weight:400;
  9998. font-style:normal;
  9999. font-size:11px;
  10000. letter-spacing:normal;
  10001. color:#AAAAAA;
  10002. vertical-align:none;
  10003. text-align:left;
  10004. text-transform:none;
  10005. background-color:transparent;
  10006. border-color:transparent;
  10007. }
  10008. #u5278_input.disabled {
  10009. position:absolute;
  10010. left:0px;
  10011. top:0px;
  10012. width:224px;
  10013. height:23px;
  10014. padding:2px 2px 2px 2px;
  10015. font-family:'ArialMT', 'Arial', sans-serif;
  10016. font-weight:400;
  10017. font-style:normal;
  10018. font-size:11px;
  10019. letter-spacing:normal;
  10020. color:#AAAAAA;
  10021. vertical-align:none;
  10022. text-align:left;
  10023. text-transform:none;
  10024. background-color:transparent;
  10025. border-color:transparent;
  10026. }
  10027. #u5278_div {
  10028. border-width:0px;
  10029. position:absolute;
  10030. left:0px;
  10031. top:0px;
  10032. width:224px;
  10033. height:23px;
  10034. background:inherit;
  10035. background-color:rgba(255, 255, 255, 1);
  10036. border:none;
  10037. border-radius:0px;
  10038. -moz-box-shadow:none;
  10039. -webkit-box-shadow:none;
  10040. box-shadow:none;
  10041. font-size:11px;
  10042. color:#AAAAAA;
  10043. }
  10044. #u5278 {
  10045. border-width:0px;
  10046. position:absolute;
  10047. left:-632px;
  10048. top:396px;
  10049. width:224px;
  10050. height:23px;
  10051. display:flex;
  10052. font-size:11px;
  10053. color:#AAAAAA;
  10054. }
  10055. #u5278 .text {
  10056. position:absolute;
  10057. align-self:flex-start;
  10058. padding:2px 2px 2px 2px;
  10059. box-sizing:border-box;
  10060. width:100%;
  10061. }
  10062. #u5278_div.disabled {
  10063. border-width:0px;
  10064. position:absolute;
  10065. left:0px;
  10066. top:0px;
  10067. width:224px;
  10068. height:23px;
  10069. background:inherit;
  10070. background-color:rgba(240, 240, 240, 1);
  10071. border:none;
  10072. border-radius:0px;
  10073. -moz-box-shadow:none;
  10074. -webkit-box-shadow:none;
  10075. box-shadow:none;
  10076. font-size:11px;
  10077. color:#AAAAAA;
  10078. }
  10079. #u5278.disabled {
  10080. }
  10081. .u5278_input_option {
  10082. font-size:11px;
  10083. }
  10084. #u5279 {
  10085. border-width:0px;
  10086. position:absolute;
  10087. left:0px;
  10088. top:0px;
  10089. width:0px;
  10090. height:0px;
  10091. }
  10092. #u5280 {
  10093. border-width:0px;
  10094. position:absolute;
  10095. left:0px;
  10096. top:0px;
  10097. width:0px;
  10098. height:0px;
  10099. }
  10100. #u5281_div {
  10101. border-width:0px;
  10102. position:absolute;
  10103. left:0px;
  10104. top:0px;
  10105. width:59px;
  10106. height:27px;
  10107. background:inherit;
  10108. background-color:rgba(255, 255, 255, 0);
  10109. border:none;
  10110. border-top:0px;
  10111. border-right:0px;
  10112. border-bottom:0px;
  10113. border-radius:0px;
  10114. border-top-left-radius:0px;
  10115. border-bottom-left-radius:0px;
  10116. -moz-box-shadow:none;
  10117. -webkit-box-shadow:none;
  10118. box-shadow:none;
  10119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10120. font-weight:400;
  10121. font-style:normal;
  10122. font-size:12px;
  10123. }
  10124. #u5281 {
  10125. border-width:0px;
  10126. position:absolute;
  10127. left:1762px;
  10128. top:646px;
  10129. width:59px;
  10130. height:27px;
  10131. display:flex;
  10132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10133. font-weight:400;
  10134. font-style:normal;
  10135. font-size:12px;
  10136. }
  10137. #u5281 .text {
  10138. position:absolute;
  10139. align-self:center;
  10140. padding:5px 10px 5px 0px;
  10141. box-sizing:border-box;
  10142. width:100%;
  10143. }
  10144. #u5281_text {
  10145. border-width:0px;
  10146. white-space:nowrap;
  10147. text-transform:none;
  10148. }
  10149. #u5282_div {
  10150. border-width:0px;
  10151. position:absolute;
  10152. left:0px;
  10153. top:0px;
  10154. width:173px;
  10155. height:30px;
  10156. background:inherit;
  10157. background-color:rgba(255, 255, 255, 1);
  10158. box-sizing:border-box;
  10159. border-width:1px;
  10160. border-style:solid;
  10161. border-color:rgba(215, 215, 215, 1);
  10162. border-radius:2px;
  10163. -moz-box-shadow:none;
  10164. -webkit-box-shadow:none;
  10165. box-shadow:none;
  10166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10167. font-weight:400;
  10168. font-style:normal;
  10169. font-size:12px;
  10170. text-align:left;
  10171. }
  10172. #u5282 {
  10173. border-width:0px;
  10174. position:absolute;
  10175. left:1821px;
  10176. top:644px;
  10177. width:173px;
  10178. height:30px;
  10179. display:flex;
  10180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10181. font-weight:400;
  10182. font-style:normal;
  10183. font-size:12px;
  10184. text-align:left;
  10185. }
  10186. #u5282 .text {
  10187. position:absolute;
  10188. align-self:center;
  10189. padding:5px 15px 5px 30px;
  10190. box-sizing:border-box;
  10191. width:100%;
  10192. }
  10193. #u5282_text {
  10194. border-width:0px;
  10195. word-wrap:break-word;
  10196. text-transform:none;
  10197. visibility:hidden;
  10198. }
  10199. #u5283_input {
  10200. position:absolute;
  10201. left:0px;
  10202. top:0px;
  10203. width:110px;
  10204. height:28px;
  10205. padding:2px 2px 2px 2px;
  10206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10207. font-weight:400;
  10208. font-style:normal;
  10209. font-size:14px;
  10210. letter-spacing:normal;
  10211. color:#000000;
  10212. vertical-align:none;
  10213. text-align:left;
  10214. text-transform:none;
  10215. background-color:transparent;
  10216. border-color:transparent;
  10217. }
  10218. #u5283_input.disabled {
  10219. position:absolute;
  10220. left:0px;
  10221. top:0px;
  10222. width:110px;
  10223. height:28px;
  10224. padding:2px 2px 2px 2px;
  10225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10226. font-weight:400;
  10227. font-style:normal;
  10228. font-size:14px;
  10229. letter-spacing:normal;
  10230. color:#000000;
  10231. vertical-align:none;
  10232. text-align:left;
  10233. text-transform:none;
  10234. background-color:transparent;
  10235. border-color:transparent;
  10236. }
  10237. #u5283_div {
  10238. border-width:0px;
  10239. position:absolute;
  10240. left:0px;
  10241. top:0px;
  10242. width:110px;
  10243. height:28px;
  10244. background:inherit;
  10245. background-color:rgba(255, 255, 255, 0);
  10246. border:none;
  10247. border-radius:0px;
  10248. -moz-box-shadow:none;
  10249. -webkit-box-shadow:none;
  10250. box-shadow:none;
  10251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10252. font-weight:400;
  10253. font-style:normal;
  10254. font-size:14px;
  10255. }
  10256. #u5283 {
  10257. border-width:0px;
  10258. position:absolute;
  10259. left:1878px;
  10260. top:644px;
  10261. width:110px;
  10262. height:28px;
  10263. display:flex;
  10264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10265. font-weight:400;
  10266. font-style:normal;
  10267. font-size:14px;
  10268. }
  10269. #u5283 .text {
  10270. position:absolute;
  10271. align-self:center;
  10272. padding:2px 2px 2px 2px;
  10273. box-sizing:border-box;
  10274. width:100%;
  10275. }
  10276. #u5283_div.disabled {
  10277. border-width:0px;
  10278. position:absolute;
  10279. left:0px;
  10280. top:0px;
  10281. width:110px;
  10282. height:28px;
  10283. background:inherit;
  10284. background-color:rgba(240, 240, 240, 1);
  10285. border:none;
  10286. border-radius:0px;
  10287. -moz-box-shadow:none;
  10288. -webkit-box-shadow:none;
  10289. box-shadow:none;
  10290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10291. font-weight:400;
  10292. font-style:normal;
  10293. font-size:14px;
  10294. }
  10295. #u5283.disabled {
  10296. }
  10297. #u5284_input {
  10298. position:absolute;
  10299. left:0px;
  10300. top:0px;
  10301. width:51px;
  10302. height:23px;
  10303. padding:2px 2px 2px 2px;
  10304. font-family:'ArialMT', 'Arial', sans-serif;
  10305. font-weight:400;
  10306. font-style:normal;
  10307. font-size:11px;
  10308. letter-spacing:normal;
  10309. color:#AAAAAA;
  10310. vertical-align:none;
  10311. text-align:left;
  10312. text-transform:none;
  10313. background-color:transparent;
  10314. border-color:transparent;
  10315. }
  10316. #u5284_input.disabled {
  10317. position:absolute;
  10318. left:0px;
  10319. top:0px;
  10320. width:51px;
  10321. height:23px;
  10322. padding:2px 2px 2px 2px;
  10323. font-family:'ArialMT', 'Arial', sans-serif;
  10324. font-weight:400;
  10325. font-style:normal;
  10326. font-size:11px;
  10327. letter-spacing:normal;
  10328. color:#AAAAAA;
  10329. vertical-align:none;
  10330. text-align:left;
  10331. text-transform:none;
  10332. background-color:transparent;
  10333. border-color:transparent;
  10334. }
  10335. #u5284_div {
  10336. border-width:0px;
  10337. position:absolute;
  10338. left:0px;
  10339. top:0px;
  10340. width:51px;
  10341. height:23px;
  10342. background:inherit;
  10343. background-color:rgba(255, 255, 255, 1);
  10344. border:none;
  10345. border-radius:0px;
  10346. -moz-box-shadow:none;
  10347. -webkit-box-shadow:none;
  10348. box-shadow:none;
  10349. font-size:11px;
  10350. color:#AAAAAA;
  10351. }
  10352. #u5284 {
  10353. border-width:0px;
  10354. position:absolute;
  10355. left:1827px;
  10356. top:648px;
  10357. width:51px;
  10358. height:23px;
  10359. display:flex;
  10360. font-size:11px;
  10361. color:#AAAAAA;
  10362. }
  10363. #u5284 .text {
  10364. position:absolute;
  10365. align-self:flex-start;
  10366. padding:2px 2px 2px 2px;
  10367. box-sizing:border-box;
  10368. width:100%;
  10369. }
  10370. #u5284_div.disabled {
  10371. border-width:0px;
  10372. position:absolute;
  10373. left:0px;
  10374. top:0px;
  10375. width:51px;
  10376. height:23px;
  10377. background:inherit;
  10378. background-color:rgba(240, 240, 240, 1);
  10379. border:none;
  10380. border-radius:0px;
  10381. -moz-box-shadow:none;
  10382. -webkit-box-shadow:none;
  10383. box-shadow:none;
  10384. font-size:11px;
  10385. color:#AAAAAA;
  10386. }
  10387. #u5284.disabled {
  10388. }
  10389. .u5284_input_option {
  10390. font-size:11px;
  10391. }
  10392. #u5285 {
  10393. border-width:0px;
  10394. position:absolute;
  10395. left:0px;
  10396. top:0px;
  10397. width:0px;
  10398. height:0px;
  10399. }
  10400. #u5286_div {
  10401. border-width:0px;
  10402. position:absolute;
  10403. left:0px;
  10404. top:0px;
  10405. width:59px;
  10406. height:27px;
  10407. background:inherit;
  10408. background-color:rgba(255, 255, 255, 0);
  10409. border:none;
  10410. border-top:0px;
  10411. border-right:0px;
  10412. border-bottom:0px;
  10413. border-radius:0px;
  10414. border-top-left-radius:0px;
  10415. border-bottom-left-radius:0px;
  10416. -moz-box-shadow:none;
  10417. -webkit-box-shadow:none;
  10418. box-shadow:none;
  10419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10420. font-weight:400;
  10421. font-style:normal;
  10422. font-size:12px;
  10423. }
  10424. #u5286 {
  10425. border-width:0px;
  10426. position:absolute;
  10427. left:1762px;
  10428. top:681px;
  10429. width:59px;
  10430. height:27px;
  10431. display:flex;
  10432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10433. font-weight:400;
  10434. font-style:normal;
  10435. font-size:12px;
  10436. }
  10437. #u5286 .text {
  10438. position:absolute;
  10439. align-self:center;
  10440. padding:5px 10px 5px 0px;
  10441. box-sizing:border-box;
  10442. width:100%;
  10443. }
  10444. #u5286_text {
  10445. border-width:0px;
  10446. white-space:nowrap;
  10447. text-transform:none;
  10448. }
  10449. #u5287_div {
  10450. border-width:0px;
  10451. position:absolute;
  10452. left:0px;
  10453. top:0px;
  10454. width:173px;
  10455. height:30px;
  10456. background:inherit;
  10457. background-color:rgba(255, 255, 255, 1);
  10458. box-sizing:border-box;
  10459. border-width:1px;
  10460. border-style:solid;
  10461. border-color:rgba(215, 215, 215, 1);
  10462. border-radius:2px;
  10463. -moz-box-shadow:none;
  10464. -webkit-box-shadow:none;
  10465. box-shadow:none;
  10466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10467. font-weight:400;
  10468. font-style:normal;
  10469. font-size:12px;
  10470. text-align:left;
  10471. }
  10472. #u5287 {
  10473. border-width:0px;
  10474. position:absolute;
  10475. left:1821px;
  10476. top:679px;
  10477. width:173px;
  10478. height:30px;
  10479. display:flex;
  10480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10481. font-weight:400;
  10482. font-style:normal;
  10483. font-size:12px;
  10484. text-align:left;
  10485. }
  10486. #u5287 .text {
  10487. position:absolute;
  10488. align-self:center;
  10489. padding:5px 15px 5px 30px;
  10490. box-sizing:border-box;
  10491. width:100%;
  10492. }
  10493. #u5287_text {
  10494. border-width:0px;
  10495. word-wrap:break-word;
  10496. text-transform:none;
  10497. visibility:hidden;
  10498. }
  10499. #u5288_input {
  10500. position:absolute;
  10501. left:0px;
  10502. top:0px;
  10503. width:161px;
  10504. height:28px;
  10505. padding:2px 2px 2px 2px;
  10506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10507. font-weight:400;
  10508. font-style:normal;
  10509. font-size:14px;
  10510. letter-spacing:normal;
  10511. color:#000000;
  10512. vertical-align:none;
  10513. text-align:left;
  10514. text-transform:none;
  10515. background-color:transparent;
  10516. border-color:transparent;
  10517. }
  10518. #u5288_input.disabled {
  10519. position:absolute;
  10520. left:0px;
  10521. top:0px;
  10522. width:161px;
  10523. height:28px;
  10524. padding:2px 2px 2px 2px;
  10525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10526. font-weight:400;
  10527. font-style:normal;
  10528. font-size:14px;
  10529. letter-spacing:normal;
  10530. color:#000000;
  10531. vertical-align:none;
  10532. text-align:left;
  10533. text-transform:none;
  10534. background-color:transparent;
  10535. border-color:transparent;
  10536. }
  10537. #u5288_div {
  10538. border-width:0px;
  10539. position:absolute;
  10540. left:0px;
  10541. top:0px;
  10542. width:161px;
  10543. height:28px;
  10544. background:inherit;
  10545. background-color:rgba(255, 255, 255, 0);
  10546. border:none;
  10547. border-radius:0px;
  10548. -moz-box-shadow:none;
  10549. -webkit-box-shadow:none;
  10550. box-shadow:none;
  10551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10552. font-weight:400;
  10553. font-style:normal;
  10554. font-size:14px;
  10555. }
  10556. #u5288 {
  10557. border-width:0px;
  10558. position:absolute;
  10559. left:1827px;
  10560. top:679px;
  10561. width:161px;
  10562. height:28px;
  10563. display:flex;
  10564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10565. font-weight:400;
  10566. font-style:normal;
  10567. font-size:14px;
  10568. }
  10569. #u5288 .text {
  10570. position:absolute;
  10571. align-self:center;
  10572. padding:2px 2px 2px 2px;
  10573. box-sizing:border-box;
  10574. width:100%;
  10575. }
  10576. #u5288_div.disabled {
  10577. border-width:0px;
  10578. position:absolute;
  10579. left:0px;
  10580. top:0px;
  10581. width:161px;
  10582. height:28px;
  10583. background:inherit;
  10584. background-color:rgba(240, 240, 240, 1);
  10585. border:none;
  10586. border-radius:0px;
  10587. -moz-box-shadow:none;
  10588. -webkit-box-shadow:none;
  10589. box-shadow:none;
  10590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10591. font-weight:400;
  10592. font-style:normal;
  10593. font-size:14px;
  10594. }
  10595. #u5288.disabled {
  10596. }
  10597. #u5289 {
  10598. border-width:0px;
  10599. position:absolute;
  10600. left:0px;
  10601. top:0px;
  10602. width:0px;
  10603. height:0px;
  10604. }
  10605. #u5290_div {
  10606. border-width:0px;
  10607. position:absolute;
  10608. left:0px;
  10609. top:0px;
  10610. width:59px;
  10611. height:27px;
  10612. background:inherit;
  10613. background-color:rgba(255, 255, 255, 0);
  10614. border:none;
  10615. border-top:0px;
  10616. border-right:0px;
  10617. border-bottom:0px;
  10618. border-radius:0px;
  10619. border-top-left-radius:0px;
  10620. border-bottom-left-radius:0px;
  10621. -moz-box-shadow:none;
  10622. -webkit-box-shadow:none;
  10623. box-shadow:none;
  10624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10625. font-weight:400;
  10626. font-style:normal;
  10627. font-size:12px;
  10628. }
  10629. #u5290 {
  10630. border-width:0px;
  10631. position:absolute;
  10632. left:1762px;
  10633. top:716px;
  10634. width:59px;
  10635. height:27px;
  10636. display:flex;
  10637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10638. font-weight:400;
  10639. font-style:normal;
  10640. font-size:12px;
  10641. }
  10642. #u5290 .text {
  10643. position:absolute;
  10644. align-self:center;
  10645. padding:5px 10px 5px 0px;
  10646. box-sizing:border-box;
  10647. width:100%;
  10648. }
  10649. #u5290_text {
  10650. border-width:0px;
  10651. white-space:nowrap;
  10652. text-transform:none;
  10653. }
  10654. #u5291_div {
  10655. border-width:0px;
  10656. position:absolute;
  10657. left:0px;
  10658. top:0px;
  10659. width:173px;
  10660. height:30px;
  10661. background:inherit;
  10662. background-color:rgba(255, 255, 255, 1);
  10663. box-sizing:border-box;
  10664. border-width:1px;
  10665. border-style:solid;
  10666. border-color:rgba(215, 215, 215, 1);
  10667. border-radius:2px;
  10668. -moz-box-shadow:none;
  10669. -webkit-box-shadow:none;
  10670. box-shadow:none;
  10671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10672. font-weight:400;
  10673. font-style:normal;
  10674. font-size:12px;
  10675. text-align:left;
  10676. }
  10677. #u5291 {
  10678. border-width:0px;
  10679. position:absolute;
  10680. left:1821px;
  10681. top:714px;
  10682. width:173px;
  10683. height:30px;
  10684. display:flex;
  10685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10686. font-weight:400;
  10687. font-style:normal;
  10688. font-size:12px;
  10689. text-align:left;
  10690. }
  10691. #u5291 .text {
  10692. position:absolute;
  10693. align-self:center;
  10694. padding:5px 15px 5px 30px;
  10695. box-sizing:border-box;
  10696. width:100%;
  10697. }
  10698. #u5291_text {
  10699. border-width:0px;
  10700. word-wrap:break-word;
  10701. text-transform:none;
  10702. visibility:hidden;
  10703. }
  10704. #u5292_input {
  10705. position:absolute;
  10706. left:0px;
  10707. top:0px;
  10708. width:161px;
  10709. height:28px;
  10710. padding:2px 2px 2px 2px;
  10711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10712. font-weight:400;
  10713. font-style:normal;
  10714. font-size:14px;
  10715. letter-spacing:normal;
  10716. color:#000000;
  10717. vertical-align:none;
  10718. text-align:left;
  10719. text-transform:none;
  10720. background-color:transparent;
  10721. border-color:transparent;
  10722. }
  10723. #u5292_input.disabled {
  10724. position:absolute;
  10725. left:0px;
  10726. top:0px;
  10727. width:161px;
  10728. height:28px;
  10729. padding:2px 2px 2px 2px;
  10730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10731. font-weight:400;
  10732. font-style:normal;
  10733. font-size:14px;
  10734. letter-spacing:normal;
  10735. color:#000000;
  10736. vertical-align:none;
  10737. text-align:left;
  10738. text-transform:none;
  10739. background-color:transparent;
  10740. border-color:transparent;
  10741. }
  10742. #u5292_div {
  10743. border-width:0px;
  10744. position:absolute;
  10745. left:0px;
  10746. top:0px;
  10747. width:161px;
  10748. height:28px;
  10749. background:inherit;
  10750. background-color:rgba(255, 255, 255, 0);
  10751. border:none;
  10752. border-radius:0px;
  10753. -moz-box-shadow:none;
  10754. -webkit-box-shadow:none;
  10755. box-shadow:none;
  10756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10757. font-weight:400;
  10758. font-style:normal;
  10759. font-size:14px;
  10760. }
  10761. #u5292 {
  10762. border-width:0px;
  10763. position:absolute;
  10764. left:1827px;
  10765. top:714px;
  10766. width:161px;
  10767. height:28px;
  10768. display:flex;
  10769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10770. font-weight:400;
  10771. font-style:normal;
  10772. font-size:14px;
  10773. }
  10774. #u5292 .text {
  10775. position:absolute;
  10776. align-self:center;
  10777. padding:2px 2px 2px 2px;
  10778. box-sizing:border-box;
  10779. width:100%;
  10780. }
  10781. #u5292_div.disabled {
  10782. border-width:0px;
  10783. position:absolute;
  10784. left:0px;
  10785. top:0px;
  10786. width:161px;
  10787. height:28px;
  10788. background:inherit;
  10789. background-color:rgba(240, 240, 240, 1);
  10790. border:none;
  10791. border-radius:0px;
  10792. -moz-box-shadow:none;
  10793. -webkit-box-shadow:none;
  10794. box-shadow:none;
  10795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10796. font-weight:400;
  10797. font-style:normal;
  10798. font-size:14px;
  10799. }
  10800. #u5292.disabled {
  10801. }
  10802. #u5293 {
  10803. border-width:0px;
  10804. position:absolute;
  10805. left:0px;
  10806. top:0px;
  10807. width:0px;
  10808. height:0px;
  10809. }
  10810. #u5294_div {
  10811. border-width:0px;
  10812. position:absolute;
  10813. left:0px;
  10814. top:0px;
  10815. width:47px;
  10816. height:27px;
  10817. background:inherit;
  10818. background-color:rgba(255, 255, 255, 0);
  10819. border:none;
  10820. border-top:0px;
  10821. border-right:0px;
  10822. border-bottom:0px;
  10823. border-radius:0px;
  10824. border-top-left-radius:0px;
  10825. border-bottom-left-radius:0px;
  10826. -moz-box-shadow:none;
  10827. -webkit-box-shadow:none;
  10828. box-shadow:none;
  10829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10830. font-weight:400;
  10831. font-style:normal;
  10832. font-size:12px;
  10833. }
  10834. #u5294 {
  10835. border-width:0px;
  10836. position:absolute;
  10837. left:1762px;
  10838. top:751px;
  10839. width:47px;
  10840. height:27px;
  10841. display:flex;
  10842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10843. font-weight:400;
  10844. font-style:normal;
  10845. font-size:12px;
  10846. }
  10847. #u5294 .text {
  10848. position:absolute;
  10849. align-self:center;
  10850. padding:5px 10px 5px 0px;
  10851. box-sizing:border-box;
  10852. width:100%;
  10853. }
  10854. #u5294_text {
  10855. border-width:0px;
  10856. white-space:nowrap;
  10857. text-transform:none;
  10858. }
  10859. #u5295_div {
  10860. border-width:0px;
  10861. position:absolute;
  10862. left:0px;
  10863. top:0px;
  10864. width:173px;
  10865. height:30px;
  10866. background:inherit;
  10867. background-color:rgba(255, 255, 255, 1);
  10868. box-sizing:border-box;
  10869. border-width:1px;
  10870. border-style:solid;
  10871. border-color:rgba(215, 215, 215, 1);
  10872. border-radius:2px;
  10873. -moz-box-shadow:none;
  10874. -webkit-box-shadow:none;
  10875. box-shadow:none;
  10876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10877. font-weight:400;
  10878. font-style:normal;
  10879. font-size:12px;
  10880. text-align:left;
  10881. }
  10882. #u5295 {
  10883. border-width:0px;
  10884. position:absolute;
  10885. left:1821px;
  10886. top:749px;
  10887. width:173px;
  10888. height:30px;
  10889. display:flex;
  10890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10891. font-weight:400;
  10892. font-style:normal;
  10893. font-size:12px;
  10894. text-align:left;
  10895. }
  10896. #u5295 .text {
  10897. position:absolute;
  10898. align-self:center;
  10899. padding:5px 15px 5px 30px;
  10900. box-sizing:border-box;
  10901. width:100%;
  10902. }
  10903. #u5295_text {
  10904. border-width:0px;
  10905. word-wrap:break-word;
  10906. text-transform:none;
  10907. visibility:hidden;
  10908. }
  10909. #u5296_input {
  10910. position:absolute;
  10911. left:0px;
  10912. top:0px;
  10913. width:161px;
  10914. height:28px;
  10915. padding:2px 2px 2px 2px;
  10916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10917. font-weight:400;
  10918. font-style:normal;
  10919. font-size:14px;
  10920. letter-spacing:normal;
  10921. color:#000000;
  10922. vertical-align:none;
  10923. text-align:left;
  10924. text-transform:none;
  10925. background-color:transparent;
  10926. border-color:transparent;
  10927. }
  10928. #u5296_input.disabled {
  10929. position:absolute;
  10930. left:0px;
  10931. top:0px;
  10932. width:161px;
  10933. height:28px;
  10934. padding:2px 2px 2px 2px;
  10935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10936. font-weight:400;
  10937. font-style:normal;
  10938. font-size:14px;
  10939. letter-spacing:normal;
  10940. color:#000000;
  10941. vertical-align:none;
  10942. text-align:left;
  10943. text-transform:none;
  10944. background-color:transparent;
  10945. border-color:transparent;
  10946. }
  10947. #u5296_div {
  10948. border-width:0px;
  10949. position:absolute;
  10950. left:0px;
  10951. top:0px;
  10952. width:161px;
  10953. height:28px;
  10954. background:inherit;
  10955. background-color:rgba(255, 255, 255, 0);
  10956. border:none;
  10957. border-radius:0px;
  10958. -moz-box-shadow:none;
  10959. -webkit-box-shadow:none;
  10960. box-shadow:none;
  10961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10962. font-weight:400;
  10963. font-style:normal;
  10964. font-size:14px;
  10965. }
  10966. #u5296 {
  10967. border-width:0px;
  10968. position:absolute;
  10969. left:1827px;
  10970. top:749px;
  10971. width:161px;
  10972. height:28px;
  10973. display:flex;
  10974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10975. font-weight:400;
  10976. font-style:normal;
  10977. font-size:14px;
  10978. }
  10979. #u5296 .text {
  10980. position:absolute;
  10981. align-self:center;
  10982. padding:2px 2px 2px 2px;
  10983. box-sizing:border-box;
  10984. width:100%;
  10985. }
  10986. #u5296_div.disabled {
  10987. border-width:0px;
  10988. position:absolute;
  10989. left:0px;
  10990. top:0px;
  10991. width:161px;
  10992. height:28px;
  10993. background:inherit;
  10994. background-color:rgba(240, 240, 240, 1);
  10995. border:none;
  10996. border-radius:0px;
  10997. -moz-box-shadow:none;
  10998. -webkit-box-shadow:none;
  10999. box-shadow:none;
  11000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11001. font-weight:400;
  11002. font-style:normal;
  11003. font-size:14px;
  11004. }
  11005. #u5296.disabled {
  11006. }
  11007. #u5297 {
  11008. border-width:0px;
  11009. position:absolute;
  11010. left:0px;
  11011. top:0px;
  11012. width:0px;
  11013. height:0px;
  11014. }
  11015. #u5298_div {
  11016. border-width:0px;
  11017. position:absolute;
  11018. left:0px;
  11019. top:0px;
  11020. width:59px;
  11021. height:27px;
  11022. background:inherit;
  11023. background-color:rgba(255, 255, 255, 0);
  11024. border:none;
  11025. border-top:0px;
  11026. border-right:0px;
  11027. border-bottom:0px;
  11028. border-radius:0px;
  11029. border-top-left-radius:0px;
  11030. border-bottom-left-radius:0px;
  11031. -moz-box-shadow:none;
  11032. -webkit-box-shadow:none;
  11033. box-shadow:none;
  11034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11035. font-weight:400;
  11036. font-style:normal;
  11037. font-size:12px;
  11038. }
  11039. #u5298 {
  11040. border-width:0px;
  11041. position:absolute;
  11042. left:1762px;
  11043. top:786px;
  11044. width:59px;
  11045. height:27px;
  11046. display:flex;
  11047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11048. font-weight:400;
  11049. font-style:normal;
  11050. font-size:12px;
  11051. }
  11052. #u5298 .text {
  11053. position:absolute;
  11054. align-self:center;
  11055. padding:5px 10px 5px 0px;
  11056. box-sizing:border-box;
  11057. width:100%;
  11058. }
  11059. #u5298_text {
  11060. border-width:0px;
  11061. white-space:nowrap;
  11062. text-transform:none;
  11063. }
  11064. #u5299_div {
  11065. border-width:0px;
  11066. position:absolute;
  11067. left:0px;
  11068. top:0px;
  11069. width:173px;
  11070. height:30px;
  11071. background:inherit;
  11072. background-color:rgba(255, 255, 255, 1);
  11073. box-sizing:border-box;
  11074. border-width:1px;
  11075. border-style:solid;
  11076. border-color:rgba(215, 215, 215, 1);
  11077. border-radius:2px;
  11078. -moz-box-shadow:none;
  11079. -webkit-box-shadow:none;
  11080. box-shadow:none;
  11081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11082. font-weight:400;
  11083. font-style:normal;
  11084. font-size:12px;
  11085. text-align:left;
  11086. }
  11087. #u5299 {
  11088. border-width:0px;
  11089. position:absolute;
  11090. left:1821px;
  11091. top:784px;
  11092. width:173px;
  11093. height:30px;
  11094. display:flex;
  11095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11096. font-weight:400;
  11097. font-style:normal;
  11098. font-size:12px;
  11099. text-align:left;
  11100. }
  11101. #u5299 .text {
  11102. position:absolute;
  11103. align-self:center;
  11104. padding:5px 15px 5px 30px;
  11105. box-sizing:border-box;
  11106. width:100%;
  11107. }
  11108. #u5299_text {
  11109. border-width:0px;
  11110. word-wrap:break-word;
  11111. text-transform:none;
  11112. visibility:hidden;
  11113. }
  11114. #u5300_input {
  11115. position:absolute;
  11116. left:0px;
  11117. top:0px;
  11118. width:161px;
  11119. height:28px;
  11120. padding:2px 2px 2px 2px;
  11121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11122. font-weight:400;
  11123. font-style:normal;
  11124. font-size:14px;
  11125. letter-spacing:normal;
  11126. color:#000000;
  11127. vertical-align:none;
  11128. text-align:left;
  11129. text-transform:none;
  11130. background-color:transparent;
  11131. border-color:transparent;
  11132. }
  11133. #u5300_input.disabled {
  11134. position:absolute;
  11135. left:0px;
  11136. top:0px;
  11137. width:161px;
  11138. height:28px;
  11139. padding:2px 2px 2px 2px;
  11140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11141. font-weight:400;
  11142. font-style:normal;
  11143. font-size:14px;
  11144. letter-spacing:normal;
  11145. color:#000000;
  11146. vertical-align:none;
  11147. text-align:left;
  11148. text-transform:none;
  11149. background-color:transparent;
  11150. border-color:transparent;
  11151. }
  11152. #u5300_div {
  11153. border-width:0px;
  11154. position:absolute;
  11155. left:0px;
  11156. top:0px;
  11157. width:161px;
  11158. height:28px;
  11159. background:inherit;
  11160. background-color:rgba(255, 255, 255, 0);
  11161. border:none;
  11162. border-radius:0px;
  11163. -moz-box-shadow:none;
  11164. -webkit-box-shadow:none;
  11165. box-shadow:none;
  11166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11167. font-weight:400;
  11168. font-style:normal;
  11169. font-size:14px;
  11170. }
  11171. #u5300 {
  11172. border-width:0px;
  11173. position:absolute;
  11174. left:1827px;
  11175. top:784px;
  11176. width:161px;
  11177. height:28px;
  11178. display:flex;
  11179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11180. font-weight:400;
  11181. font-style:normal;
  11182. font-size:14px;
  11183. }
  11184. #u5300 .text {
  11185. position:absolute;
  11186. align-self:center;
  11187. padding:2px 2px 2px 2px;
  11188. box-sizing:border-box;
  11189. width:100%;
  11190. }
  11191. #u5300_div.disabled {
  11192. border-width:0px;
  11193. position:absolute;
  11194. left:0px;
  11195. top:0px;
  11196. width:161px;
  11197. height:28px;
  11198. background:inherit;
  11199. background-color:rgba(240, 240, 240, 1);
  11200. border:none;
  11201. border-radius:0px;
  11202. -moz-box-shadow:none;
  11203. -webkit-box-shadow:none;
  11204. box-shadow:none;
  11205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11206. font-weight:400;
  11207. font-style:normal;
  11208. font-size:14px;
  11209. }
  11210. #u5300.disabled {
  11211. }