styles.css 136 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506
  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. #u29458 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1600px;
  25. height:1250px;
  26. }
  27. #u29459_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1480px;
  33. height:1200px;
  34. background:inherit;
  35. background-color:rgba(242, 242, 242, 1);
  36. border-radius:0px;
  37. filter:drop-shadow(none);
  38. transition:none;
  39. }
  40. #u29459 {
  41. border-width:0px;
  42. position:absolute;
  43. left:120px;
  44. top:50px;
  45. width:1480px;
  46. height:1200px;
  47. display:flex;
  48. transition:none;
  49. transform-origin:50% 50%;
  50. }
  51. #u29459 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:2px 2px 2px 2px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u29459_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. visibility:hidden;
  63. }
  64. #u29460_div {
  65. border-width:0px;
  66. position:absolute;
  67. left:0px;
  68. top:0px;
  69. width:129px;
  70. height:22px;
  71. background:inherit;
  72. background-color:rgba(255, 255, 255, 0);
  73. border-radius:0px;
  74. filter:drop-shadow(none);
  75. transition:none;
  76. font-size:16px;
  77. color:#FFFFFF;
  78. }
  79. #u29460 {
  80. border-width:0px;
  81. position:absolute;
  82. left:49px;
  83. top:14px;
  84. width:129px;
  85. height:22px;
  86. display:flex;
  87. transition:none;
  88. transform-origin:50% 50%;
  89. font-size:16px;
  90. color:#FFFFFF;
  91. }
  92. #u29460 .text {
  93. position:absolute;
  94. align-self:flex-start;
  95. padding:0px 0px 0px 0px;
  96. box-sizing:border-box;
  97. width:100%;
  98. }
  99. #u29460_text {
  100. border-width:0px;
  101. white-space:nowrap;
  102. text-transform:none;
  103. }
  104. #u29461_div {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:1600px;
  110. height:50px;
  111. background:inherit;
  112. background-color:rgba(30, 42, 68, 1);
  113. border-radius:0px;
  114. filter:drop-shadow(none);
  115. transition:none;
  116. color:#AFB3B6;
  117. }
  118. #u29461 {
  119. border-width:0px;
  120. position:absolute;
  121. left:0px;
  122. top:0px;
  123. width:1600px;
  124. height:50px;
  125. display:flex;
  126. transition:none;
  127. transform-origin:50% 50%;
  128. color:#AFB3B6;
  129. }
  130. #u29461 .text {
  131. position:absolute;
  132. align-self:center;
  133. padding:2px 2px 2px 2px;
  134. box-sizing:border-box;
  135. width:100%;
  136. }
  137. #u29461_text {
  138. border-width:0px;
  139. word-wrap:break-word;
  140. text-transform:none;
  141. visibility:hidden;
  142. }
  143. #u29462 {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:0px;
  149. height:0px;
  150. }
  151. #u29463 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. transition:none;
  160. }
  161. #u29463 .text {
  162. position:absolute;
  163. align-self:center;
  164. padding:2px 2px 2px 2px;
  165. box-sizing:border-box;
  166. width:100%;
  167. }
  168. #u29463_img {
  169. border-width:0px;
  170. position:absolute;
  171. left:0px;
  172. top:0px;
  173. width:31px;
  174. height:31px;
  175. }
  176. #u29463_text {
  177. border-width:0px;
  178. word-wrap:break-word;
  179. text-transform:none;
  180. }
  181. #u29464_div {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:161px;
  187. height:22px;
  188. background:inherit;
  189. background-color:rgba(255, 255, 255, 0);
  190. border-radius:0px;
  191. filter:drop-shadow(none);
  192. transition:none;
  193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  194. font-weight:400;
  195. font-style:normal;
  196. font-size:16px;
  197. color:#FFFFFF;
  198. }
  199. #u29464 {
  200. border-width:0px;
  201. position:absolute;
  202. left:62px;
  203. top:14px;
  204. width:161px;
  205. height:22px;
  206. display:flex;
  207. transition:none;
  208. transform-origin:50% 50%;
  209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  210. font-weight:400;
  211. font-style:normal;
  212. font-size:16px;
  213. color:#FFFFFF;
  214. }
  215. #u29464 .text {
  216. position:absolute;
  217. align-self:flex-start;
  218. padding:0px 0px 0px 0px;
  219. box-sizing:border-box;
  220. width:100%;
  221. }
  222. #u29464_text {
  223. border-width:0px;
  224. white-space:nowrap;
  225. text-transform:none;
  226. }
  227. #u29465_div {
  228. border-width:0px;
  229. position:absolute;
  230. left:0px;
  231. top:0px;
  232. width:120px;
  233. height:1200px;
  234. background:inherit;
  235. background-color:rgba(30, 42, 68, 1);
  236. border-radius:0px;
  237. filter:drop-shadow(none);
  238. transition:none;
  239. color:#AFB3B6;
  240. }
  241. #u29465 {
  242. border-width:0px;
  243. position:absolute;
  244. left:0px;
  245. top:47px;
  246. width:120px;
  247. height:1200px;
  248. display:flex;
  249. transition:none;
  250. transform-origin:50% 50%;
  251. color:#AFB3B6;
  252. }
  253. #u29465 .text {
  254. position:absolute;
  255. align-self:center;
  256. padding:2px 2px 2px 2px;
  257. box-sizing:border-box;
  258. width:100%;
  259. }
  260. #u29465_text {
  261. border-width:0px;
  262. word-wrap:break-word;
  263. text-transform:none;
  264. visibility:hidden;
  265. }
  266. #u29466 {
  267. border-width:0px;
  268. position:absolute;
  269. left:0px;
  270. top:0px;
  271. width:0px;
  272. height:0px;
  273. }
  274. #u29467_div {
  275. border-width:0px;
  276. position:absolute;
  277. left:0px;
  278. top:0px;
  279. width:33px;
  280. height:22px;
  281. background:inherit;
  282. background-color:rgba(255, 255, 255, 0);
  283. border-radius:0px;
  284. filter:drop-shadow(none);
  285. transition:none;
  286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  287. font-weight:400;
  288. font-style:normal;
  289. font-size:16px;
  290. color:#FFFFFF;
  291. }
  292. #u29467 {
  293. border-width:0px;
  294. position:absolute;
  295. left:39px;
  296. top:171px;
  297. width:33px;
  298. height:22px;
  299. display:flex;
  300. transition:none;
  301. transform-origin:50% 50%;
  302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  303. font-weight:400;
  304. font-style:normal;
  305. font-size:16px;
  306. color:#FFFFFF;
  307. }
  308. #u29467 .text {
  309. position:absolute;
  310. align-self:flex-start;
  311. padding:0px 0px 0px 0px;
  312. box-sizing:border-box;
  313. width:100%;
  314. }
  315. #u29467_text {
  316. border-width:0px;
  317. white-space:nowrap;
  318. text-transform:none;
  319. }
  320. #u29468 {
  321. border-width:0px;
  322. position:absolute;
  323. left:20px;
  324. top:175px;
  325. width:14px;
  326. height:14px;
  327. display:flex;
  328. transition:none;
  329. }
  330. #u29468 .text {
  331. position:absolute;
  332. align-self:center;
  333. padding:2px 2px 2px 2px;
  334. box-sizing:border-box;
  335. width:100%;
  336. }
  337. #u29468_img {
  338. border-width:0px;
  339. position:absolute;
  340. left:0px;
  341. top:0px;
  342. width:14px;
  343. height:14px;
  344. }
  345. #u29468_text {
  346. border-width:0px;
  347. word-wrap:break-word;
  348. text-transform:none;
  349. visibility:hidden;
  350. }
  351. #u29469 {
  352. border-width:0px;
  353. position:absolute;
  354. left:0px;
  355. top:0px;
  356. width:0px;
  357. height:0px;
  358. }
  359. #u29470_div {
  360. border-width:0px;
  361. position:absolute;
  362. left:0px;
  363. top:0px;
  364. width:33px;
  365. height:22px;
  366. background:inherit;
  367. background-color:rgba(255, 255, 255, 0);
  368. border-radius:0px;
  369. filter:drop-shadow(none);
  370. transition:none;
  371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  372. font-weight:400;
  373. font-style:normal;
  374. font-size:16px;
  375. color:#FFFFFF;
  376. }
  377. #u29470 {
  378. border-width:0px;
  379. position:absolute;
  380. left:39px;
  381. top:381px;
  382. width:33px;
  383. height:22px;
  384. display:flex;
  385. transition:none;
  386. transform-origin:50% 50%;
  387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  388. font-weight:400;
  389. font-style:normal;
  390. font-size:16px;
  391. color:#FFFFFF;
  392. }
  393. #u29470 .text {
  394. position:absolute;
  395. align-self:flex-start;
  396. padding:0px 0px 0px 0px;
  397. box-sizing:border-box;
  398. width:100%;
  399. }
  400. #u29470_text {
  401. border-width:0px;
  402. white-space:nowrap;
  403. text-transform:none;
  404. }
  405. #u29471 {
  406. border-width:0px;
  407. position:absolute;
  408. left:20px;
  409. top:385px;
  410. width:14px;
  411. height:14px;
  412. display:flex;
  413. transition:none;
  414. }
  415. #u29471 .text {
  416. position:absolute;
  417. align-self:center;
  418. padding:2px 2px 2px 2px;
  419. box-sizing:border-box;
  420. width:100%;
  421. }
  422. #u29471_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:14px;
  428. height:14px;
  429. }
  430. #u29471_text {
  431. border-width:0px;
  432. word-wrap:break-word;
  433. text-transform:none;
  434. visibility:hidden;
  435. }
  436. #u29472 {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:0px;
  442. height:0px;
  443. }
  444. #u29473_div {
  445. border-width:0px;
  446. position:absolute;
  447. left:0px;
  448. top:0px;
  449. width:49px;
  450. height:22px;
  451. background:inherit;
  452. background-color:rgba(255, 255, 255, 0);
  453. border-radius:0px;
  454. filter:drop-shadow(none);
  455. transition:none;
  456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  457. font-weight:400;
  458. font-style:normal;
  459. font-size:16px;
  460. color:#FFFFFF;
  461. }
  462. #u29473 {
  463. border-width:0px;
  464. position:absolute;
  465. left:39px;
  466. top:133px;
  467. width:49px;
  468. height:22px;
  469. display:flex;
  470. transition:none;
  471. transform-origin:50% 50%;
  472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  473. font-weight:400;
  474. font-style:normal;
  475. font-size:16px;
  476. color:#FFFFFF;
  477. }
  478. #u29473 .text {
  479. position:absolute;
  480. align-self:flex-start;
  481. padding:0px 0px 0px 0px;
  482. box-sizing:border-box;
  483. width:100%;
  484. }
  485. #u29473_text {
  486. border-width:0px;
  487. white-space:nowrap;
  488. text-transform:none;
  489. }
  490. #u29474 {
  491. border-width:0px;
  492. position:absolute;
  493. left:20px;
  494. top:137px;
  495. width:14px;
  496. height:14px;
  497. display:flex;
  498. transition:none;
  499. }
  500. #u29474 .text {
  501. position:absolute;
  502. align-self:center;
  503. padding:2px 2px 2px 2px;
  504. box-sizing:border-box;
  505. width:100%;
  506. }
  507. #u29474_img {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:14px;
  513. height:14px;
  514. }
  515. #u29474_text {
  516. border-width:0px;
  517. word-wrap:break-word;
  518. text-transform:none;
  519. visibility:hidden;
  520. }
  521. #u29475 {
  522. border-width:0px;
  523. position:absolute;
  524. left:0px;
  525. top:0px;
  526. width:0px;
  527. height:0px;
  528. }
  529. #u29476_div {
  530. border-width:0px;
  531. position:absolute;
  532. left:0px;
  533. top:0px;
  534. width:33px;
  535. height:22px;
  536. background:inherit;
  537. background-color:rgba(255, 255, 255, 0);
  538. border-radius:0px;
  539. filter:drop-shadow(none);
  540. transition:none;
  541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  542. font-weight:400;
  543. font-style:normal;
  544. font-size:16px;
  545. color:#FFFFFF;
  546. }
  547. #u29476 {
  548. border-width:0px;
  549. position:absolute;
  550. left:39px;
  551. top:423px;
  552. width:33px;
  553. height:22px;
  554. display:flex;
  555. transition:none;
  556. transform-origin:50% 50%;
  557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  558. font-weight:400;
  559. font-style:normal;
  560. font-size:16px;
  561. color:#FFFFFF;
  562. }
  563. #u29476 .text {
  564. position:absolute;
  565. align-self:flex-start;
  566. padding:0px 0px 0px 0px;
  567. box-sizing:border-box;
  568. width:100%;
  569. }
  570. #u29476_text {
  571. border-width:0px;
  572. white-space:nowrap;
  573. text-transform:none;
  574. }
  575. #u29477 {
  576. border-width:0px;
  577. position:absolute;
  578. left:20px;
  579. top:427px;
  580. width:14px;
  581. height:14px;
  582. display:flex;
  583. transition:none;
  584. }
  585. #u29477 .text {
  586. position:absolute;
  587. align-self:center;
  588. padding:2px 2px 2px 2px;
  589. box-sizing:border-box;
  590. width:100%;
  591. }
  592. #u29477_img {
  593. border-width:0px;
  594. position:absolute;
  595. left:0px;
  596. top:0px;
  597. width:14px;
  598. height:14px;
  599. }
  600. #u29477_text {
  601. border-width:0px;
  602. word-wrap:break-word;
  603. text-transform:none;
  604. visibility:hidden;
  605. }
  606. #u29478 {
  607. border-width:0px;
  608. position:absolute;
  609. left:0px;
  610. top:0px;
  611. width:0px;
  612. height:0px;
  613. }
  614. #u29479_div {
  615. border-width:0px;
  616. position:absolute;
  617. left:0px;
  618. top:0px;
  619. width:33px;
  620. height:22px;
  621. background:inherit;
  622. background-color:rgba(255, 255, 255, 0);
  623. border-radius:0px;
  624. filter:drop-shadow(none);
  625. transition:none;
  626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  627. font-weight:400;
  628. font-style:normal;
  629. font-size:16px;
  630. color:#FFFFFF;
  631. }
  632. #u29479 {
  633. border-width:0px;
  634. position:absolute;
  635. left:39px;
  636. top:297px;
  637. width:33px;
  638. height:22px;
  639. display:flex;
  640. transition:none;
  641. transform-origin:50% 50%;
  642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  643. font-weight:400;
  644. font-style:normal;
  645. font-size:16px;
  646. color:#FFFFFF;
  647. }
  648. #u29479 .text {
  649. position:absolute;
  650. align-self:flex-start;
  651. padding:0px 0px 0px 0px;
  652. box-sizing:border-box;
  653. width:100%;
  654. }
  655. #u29479_text {
  656. border-width:0px;
  657. white-space:nowrap;
  658. text-transform:none;
  659. }
  660. #u29480 {
  661. border-width:0px;
  662. position:absolute;
  663. left:20px;
  664. top:301px;
  665. width:14px;
  666. height:14px;
  667. display:flex;
  668. transition:none;
  669. }
  670. #u29480 .text {
  671. position:absolute;
  672. align-self:center;
  673. padding:2px 2px 2px 2px;
  674. box-sizing:border-box;
  675. width:100%;
  676. }
  677. #u29480_img {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:14px;
  683. height:14px;
  684. }
  685. #u29480_text {
  686. border-width:0px;
  687. word-wrap:break-word;
  688. text-transform:none;
  689. visibility:hidden;
  690. }
  691. #u29481 {
  692. border-width:0px;
  693. position:absolute;
  694. left:0px;
  695. top:0px;
  696. width:0px;
  697. height:0px;
  698. }
  699. #u29482_div {
  700. border-width:0px;
  701. position:absolute;
  702. left:0px;
  703. top:0px;
  704. width:33px;
  705. height:22px;
  706. background:inherit;
  707. background-color:rgba(255, 255, 255, 0);
  708. border-radius:0px;
  709. filter:drop-shadow(none);
  710. transition:none;
  711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  712. font-weight:400;
  713. font-style:normal;
  714. font-size:16px;
  715. color:#FFFFFF;
  716. }
  717. #u29482 {
  718. border-width:0px;
  719. position:absolute;
  720. left:39px;
  721. top:213px;
  722. width:33px;
  723. height:22px;
  724. display:flex;
  725. transition:none;
  726. transform-origin:50% 50%;
  727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  728. font-weight:400;
  729. font-style:normal;
  730. font-size:16px;
  731. color:#FFFFFF;
  732. }
  733. #u29482 .text {
  734. position:absolute;
  735. align-self:flex-start;
  736. padding:0px 0px 0px 0px;
  737. box-sizing:border-box;
  738. width:100%;
  739. }
  740. #u29482_text {
  741. border-width:0px;
  742. white-space:nowrap;
  743. text-transform:none;
  744. }
  745. #u29483 {
  746. border-width:0px;
  747. position:absolute;
  748. left:20px;
  749. top:217px;
  750. width:14px;
  751. height:14px;
  752. display:flex;
  753. transition:none;
  754. }
  755. #u29483 .text {
  756. position:absolute;
  757. align-self:center;
  758. padding:2px 2px 2px 2px;
  759. box-sizing:border-box;
  760. width:100%;
  761. }
  762. #u29483_img {
  763. border-width:0px;
  764. position:absolute;
  765. left:0px;
  766. top:0px;
  767. width:14px;
  768. height:14px;
  769. }
  770. #u29483_text {
  771. border-width:0px;
  772. word-wrap:break-word;
  773. text-transform:none;
  774. visibility:hidden;
  775. }
  776. #u29484 {
  777. border-width:0px;
  778. position:absolute;
  779. left:0px;
  780. top:0px;
  781. width:0px;
  782. height:0px;
  783. }
  784. #u29485_div {
  785. border-width:0px;
  786. position:absolute;
  787. left:0px;
  788. top:0px;
  789. width:33px;
  790. height:22px;
  791. background:inherit;
  792. background-color:rgba(255, 255, 255, 0);
  793. border-radius:0px;
  794. filter:drop-shadow(none);
  795. transition:none;
  796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  797. font-weight:400;
  798. font-style:normal;
  799. font-size:16px;
  800. color:#FFFFFF;
  801. }
  802. #u29485 {
  803. border-width:0px;
  804. position:absolute;
  805. left:39px;
  806. top:339px;
  807. width:33px;
  808. height:22px;
  809. display:flex;
  810. transition:none;
  811. transform-origin:50% 50%;
  812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  813. font-weight:400;
  814. font-style:normal;
  815. font-size:16px;
  816. color:#FFFFFF;
  817. }
  818. #u29485 .text {
  819. position:absolute;
  820. align-self:flex-start;
  821. padding:0px 0px 0px 0px;
  822. box-sizing:border-box;
  823. width:100%;
  824. }
  825. #u29485_text {
  826. border-width:0px;
  827. white-space:nowrap;
  828. text-transform:none;
  829. }
  830. #u29486 {
  831. border-width:0px;
  832. position:absolute;
  833. left:20px;
  834. top:343px;
  835. width:14px;
  836. height:14px;
  837. display:flex;
  838. transition:none;
  839. }
  840. #u29486 .text {
  841. position:absolute;
  842. align-self:center;
  843. padding:2px 2px 2px 2px;
  844. box-sizing:border-box;
  845. width:100%;
  846. }
  847. #u29486_img {
  848. border-width:0px;
  849. position:absolute;
  850. left:0px;
  851. top:0px;
  852. width:14px;
  853. height:14px;
  854. }
  855. #u29486_text {
  856. border-width:0px;
  857. word-wrap:break-word;
  858. text-transform:none;
  859. visibility:hidden;
  860. }
  861. #u29487 {
  862. border-width:0px;
  863. position:absolute;
  864. left:0px;
  865. top:0px;
  866. width:0px;
  867. height:0px;
  868. }
  869. #u29488_div {
  870. border-width:0px;
  871. position:absolute;
  872. left:0px;
  873. top:0px;
  874. width:33px;
  875. height:22px;
  876. background:inherit;
  877. background-color:rgba(255, 255, 255, 0);
  878. border-radius:0px;
  879. filter:drop-shadow(none);
  880. transition:none;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u29488 {
  888. border-width:0px;
  889. position:absolute;
  890. left:39px;
  891. top:465px;
  892. width:33px;
  893. height:22px;
  894. display:flex;
  895. transition:none;
  896. transform-origin:50% 50%;
  897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  898. font-weight:400;
  899. font-style:normal;
  900. font-size:16px;
  901. color:#FFFFFF;
  902. }
  903. #u29488 .text {
  904. position:absolute;
  905. align-self:flex-start;
  906. padding:0px 0px 0px 0px;
  907. box-sizing:border-box;
  908. width:100%;
  909. }
  910. #u29488_text {
  911. border-width:0px;
  912. white-space:nowrap;
  913. text-transform:none;
  914. }
  915. #u29489 {
  916. border-width:0px;
  917. position:absolute;
  918. left:20px;
  919. top:469px;
  920. width:14px;
  921. height:14px;
  922. display:flex;
  923. transition:none;
  924. }
  925. #u29489 .text {
  926. position:absolute;
  927. align-self:center;
  928. padding:2px 2px 2px 2px;
  929. box-sizing:border-box;
  930. width:100%;
  931. }
  932. #u29489_img {
  933. border-width:0px;
  934. position:absolute;
  935. left:0px;
  936. top:0px;
  937. width:14px;
  938. height:14px;
  939. }
  940. #u29489_text {
  941. border-width:0px;
  942. word-wrap:break-word;
  943. text-transform:none;
  944. visibility:hidden;
  945. }
  946. #u29490 {
  947. border-width:0px;
  948. position:absolute;
  949. left:0px;
  950. top:0px;
  951. width:0px;
  952. height:0px;
  953. }
  954. #u29491_div {
  955. border-width:0px;
  956. position:absolute;
  957. left:0px;
  958. top:0px;
  959. width:29px;
  960. height:20px;
  961. background:inherit;
  962. background-color:rgba(255, 255, 255, 0);
  963. border-radius:25px;
  964. filter:drop-shadow(none);
  965. transition:none;
  966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  967. font-weight:400;
  968. font-style:normal;
  969. color:#FFFFFF;
  970. }
  971. #u29491 {
  972. border-width:0px;
  973. position:absolute;
  974. left:52px;
  975. top:1145px;
  976. width:29px;
  977. height:20px;
  978. display:flex;
  979. transition:none;
  980. transform-origin:50% 50%;
  981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  982. font-weight:400;
  983. font-style:normal;
  984. color:#FFFFFF;
  985. }
  986. #u29491 .text {
  987. position:absolute;
  988. align-self:center;
  989. padding:0px 0px 0px 0px;
  990. box-sizing:border-box;
  991. width:100%;
  992. }
  993. #u29491_text {
  994. border-width:0px;
  995. white-space:nowrap;
  996. text-transform:none;
  997. }
  998. #u29492 {
  999. border-width:0px;
  1000. position:absolute;
  1001. left:20px;
  1002. top:1144px;
  1003. width:22px;
  1004. height:22px;
  1005. display:flex;
  1006. transition:none;
  1007. }
  1008. #u29492 .text {
  1009. position:absolute;
  1010. align-self:center;
  1011. padding:2px 2px 2px 2px;
  1012. box-sizing:border-box;
  1013. width:100%;
  1014. }
  1015. #u29492_img {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:0px;
  1019. top:0px;
  1020. width:22px;
  1021. height:22px;
  1022. }
  1023. #u29492_text {
  1024. border-width:0px;
  1025. word-wrap:break-word;
  1026. text-transform:none;
  1027. visibility:hidden;
  1028. }
  1029. #u29493 {
  1030. border-width:0px;
  1031. position:absolute;
  1032. left:0px;
  1033. top:0px;
  1034. width:0px;
  1035. height:0px;
  1036. }
  1037. #u29494_div {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:0px;
  1041. top:0px;
  1042. width:29px;
  1043. height:20px;
  1044. background:inherit;
  1045. background-color:rgba(255, 255, 255, 0);
  1046. border-radius:25px;
  1047. filter:drop-shadow(none);
  1048. transition:none;
  1049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1050. font-weight:400;
  1051. font-style:normal;
  1052. color:#FFFFFF;
  1053. }
  1054. #u29494 {
  1055. border-width:0px;
  1056. position:absolute;
  1057. left:52px;
  1058. top:1187px;
  1059. width:29px;
  1060. height:20px;
  1061. display:flex;
  1062. transition:none;
  1063. transform-origin:50% 50%;
  1064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1065. font-weight:400;
  1066. font-style:normal;
  1067. color:#FFFFFF;
  1068. }
  1069. #u29494 .text {
  1070. position:absolute;
  1071. align-self:center;
  1072. padding:0px 0px 0px 0px;
  1073. box-sizing:border-box;
  1074. width:100%;
  1075. }
  1076. #u29494_text {
  1077. border-width:0px;
  1078. white-space:nowrap;
  1079. text-transform:none;
  1080. }
  1081. #u29495 {
  1082. border-width:0px;
  1083. position:absolute;
  1084. left:20px;
  1085. top:1186px;
  1086. width:22px;
  1087. height:22px;
  1088. display:flex;
  1089. transition:none;
  1090. }
  1091. #u29495 .text {
  1092. position:absolute;
  1093. align-self:center;
  1094. padding:2px 2px 2px 2px;
  1095. box-sizing:border-box;
  1096. width:100%;
  1097. }
  1098. #u29495_img {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:0px;
  1102. top:0px;
  1103. width:22px;
  1104. height:22px;
  1105. }
  1106. #u29495_text {
  1107. border-width:0px;
  1108. word-wrap:break-word;
  1109. text-transform:none;
  1110. visibility:hidden;
  1111. }
  1112. #u29496 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:0px;
  1116. top:0px;
  1117. width:0px;
  1118. height:0px;
  1119. }
  1120. #u29497_div {
  1121. border-width:0px;
  1122. position:absolute;
  1123. left:0px;
  1124. top:0px;
  1125. width:33px;
  1126. height:22px;
  1127. background:inherit;
  1128. background-color:rgba(255, 255, 255, 0);
  1129. border-radius:0px;
  1130. filter:drop-shadow(none);
  1131. transition:none;
  1132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1133. font-weight:400;
  1134. font-style:normal;
  1135. font-size:16px;
  1136. color:#FFFFFF;
  1137. }
  1138. #u29497 {
  1139. border-width:0px;
  1140. position:absolute;
  1141. left:39px;
  1142. top:255px;
  1143. width:33px;
  1144. height:22px;
  1145. display:flex;
  1146. transition:none;
  1147. transform-origin:50% 50%;
  1148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1149. font-weight:400;
  1150. font-style:normal;
  1151. font-size:16px;
  1152. color:#FFFFFF;
  1153. }
  1154. #u29497 .text {
  1155. position:absolute;
  1156. align-self:flex-start;
  1157. padding:0px 0px 0px 0px;
  1158. box-sizing:border-box;
  1159. width:100%;
  1160. }
  1161. #u29497_text {
  1162. border-width:0px;
  1163. white-space:nowrap;
  1164. text-transform:none;
  1165. }
  1166. #u29498 {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:20px;
  1170. top:259px;
  1171. width:14px;
  1172. height:14px;
  1173. display:flex;
  1174. transition:none;
  1175. }
  1176. #u29498 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:2px 2px 2px 2px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u29498_img {
  1184. border-width:0px;
  1185. position:absolute;
  1186. left:0px;
  1187. top:0px;
  1188. width:14px;
  1189. height:14px;
  1190. }
  1191. #u29498_text {
  1192. border-width:0px;
  1193. word-wrap:break-word;
  1194. text-transform:none;
  1195. visibility:hidden;
  1196. }
  1197. #u29499 {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:0px;
  1201. top:0px;
  1202. width:0px;
  1203. height:0px;
  1204. }
  1205. #u29500_input {
  1206. position:absolute;
  1207. left:0px;
  1208. top:0px;
  1209. width:214px;
  1210. height:27px;
  1211. padding:2px 2px 2px 2px;
  1212. font-family:'ArialMT', 'Arial', sans-serif;
  1213. font-weight:400;
  1214. font-style:normal;
  1215. font-size:14px;
  1216. letter-spacing:normal;
  1217. color:#FFFFFF;
  1218. vertical-align:none;
  1219. text-align:left;
  1220. text-transform:none;
  1221. background-color:transparent;
  1222. border-color:transparent;
  1223. }
  1224. #u29500_input.disabled {
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:214px;
  1229. height:27px;
  1230. padding:2px 2px 2px 2px;
  1231. font-family:'ArialMT', 'Arial', sans-serif;
  1232. font-weight:400;
  1233. font-style:normal;
  1234. font-size:14px;
  1235. letter-spacing:normal;
  1236. color:#FFFFFF;
  1237. vertical-align:none;
  1238. text-align:left;
  1239. text-transform:none;
  1240. background-color:transparent;
  1241. border-color:transparent;
  1242. }
  1243. #u29500_div {
  1244. border-width:0px;
  1245. position:absolute;
  1246. left:0px;
  1247. top:0px;
  1248. width:214px;
  1249. height:27px;
  1250. background:inherit;
  1251. background-color:rgba(255, 255, 255, 0);
  1252. border-radius:0px;
  1253. filter:drop-shadow(none);
  1254. transition:none;
  1255. font-size:14px;
  1256. color:#FFFFFF;
  1257. }
  1258. #u29500 {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:1221px;
  1262. top:11px;
  1263. width:214px;
  1264. height:27px;
  1265. display:flex;
  1266. transition:none;
  1267. transform-origin:50% 50%;
  1268. font-size:14px;
  1269. color:#FFFFFF;
  1270. }
  1271. #u29500 .text {
  1272. position:absolute;
  1273. align-self:flex-start;
  1274. padding:2px 2px 2px 2px;
  1275. box-sizing:border-box;
  1276. width:100%;
  1277. }
  1278. #u29500_div.disabled {
  1279. border-width:0px;
  1280. position:absolute;
  1281. left:0px;
  1282. top:0px;
  1283. width:214px;
  1284. height:27px;
  1285. background:inherit;
  1286. background-color:rgba(240, 240, 240, 1);
  1287. border-radius:0px;
  1288. filter:drop-shadow(none);
  1289. transition:none;
  1290. font-size:14px;
  1291. color:#FFFFFF;
  1292. }
  1293. #u29500.disabled {
  1294. }
  1295. .u29500_input_option {
  1296. font-size:14px;
  1297. }
  1298. #u29501 {
  1299. border-width:0px;
  1300. position:absolute;
  1301. left:1194px;
  1302. top:14px;
  1303. width:22px;
  1304. height:22px;
  1305. display:flex;
  1306. transition:none;
  1307. }
  1308. #u29501 .text {
  1309. position:absolute;
  1310. align-self:center;
  1311. padding:2px 2px 2px 2px;
  1312. box-sizing:border-box;
  1313. width:100%;
  1314. }
  1315. #u29501_img {
  1316. border-width:0px;
  1317. position:absolute;
  1318. left:0px;
  1319. top:0px;
  1320. width:22px;
  1321. height:22px;
  1322. }
  1323. #u29501_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u29502_div {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:100px;
  1335. height:24px;
  1336. background:inherit;
  1337. background-color:rgba(242, 242, 242, 0.2);
  1338. border-radius:25px;
  1339. filter:drop-shadow(none);
  1340. transition:none;
  1341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1342. font-weight:400;
  1343. font-style:normal;
  1344. color:#FFFFFF;
  1345. text-align:center;
  1346. }
  1347. #u29502 {
  1348. border-width:0px;
  1349. position:absolute;
  1350. left:1480px;
  1351. top:13px;
  1352. width:100px;
  1353. height:24px;
  1354. display:flex;
  1355. transition:none;
  1356. transform-origin:50% 50%;
  1357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1358. font-weight:400;
  1359. font-style:normal;
  1360. color:#FFFFFF;
  1361. text-align:center;
  1362. }
  1363. #u29502 .text {
  1364. position:absolute;
  1365. align-self:center;
  1366. padding:0px 0px 0px 0px;
  1367. box-sizing:border-box;
  1368. width:100%;
  1369. }
  1370. #u29502_text {
  1371. border-width:0px;
  1372. word-wrap:break-word;
  1373. text-transform:none;
  1374. }
  1375. #u29503 {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:1452px;
  1379. top:19px;
  1380. width:1px;
  1381. height:11px;
  1382. display:flex;
  1383. transition:none;
  1384. }
  1385. #u29503 .text {
  1386. position:absolute;
  1387. align-self:center;
  1388. padding:2px 2px 2px 2px;
  1389. box-sizing:border-box;
  1390. width:100%;
  1391. }
  1392. #u29503_img {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:0px;
  1396. top:0px;
  1397. width:2px;
  1398. height:12px;
  1399. }
  1400. #u29503_text {
  1401. border-width:0px;
  1402. word-wrap:break-word;
  1403. text-transform:none;
  1404. visibility:hidden;
  1405. }
  1406. #u29504 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:0px;
  1410. top:0px;
  1411. width:0px;
  1412. height:0px;
  1413. }
  1414. #u29505_div {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:0px;
  1418. top:0px;
  1419. width:29px;
  1420. height:20px;
  1421. background:inherit;
  1422. background-color:rgba(255, 255, 255, 0);
  1423. border-radius:25px;
  1424. filter:drop-shadow(none);
  1425. transition:none;
  1426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1427. font-weight:400;
  1428. font-style:normal;
  1429. color:#FFFFFF;
  1430. }
  1431. #u29505 {
  1432. border-width:0px;
  1433. position:absolute;
  1434. left:52px;
  1435. top:1082px;
  1436. width:29px;
  1437. height:20px;
  1438. display:flex;
  1439. transition:none;
  1440. transform-origin:50% 50%;
  1441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1442. font-weight:400;
  1443. font-style:normal;
  1444. color:#FFFFFF;
  1445. }
  1446. #u29505 .text {
  1447. position:absolute;
  1448. align-self:center;
  1449. padding:0px 0px 0px 0px;
  1450. box-sizing:border-box;
  1451. width:100%;
  1452. }
  1453. #u29505_text {
  1454. border-width:0px;
  1455. white-space:nowrap;
  1456. text-transform:none;
  1457. }
  1458. #u29506 {
  1459. border-width:0px;
  1460. position:absolute;
  1461. left:20px;
  1462. top:1081px;
  1463. width:22px;
  1464. height:22px;
  1465. display:flex;
  1466. transition:none;
  1467. }
  1468. #u29506 .text {
  1469. position:absolute;
  1470. align-self:center;
  1471. padding:2px 2px 2px 2px;
  1472. box-sizing:border-box;
  1473. width:100%;
  1474. }
  1475. #u29506_img {
  1476. border-width:0px;
  1477. position:absolute;
  1478. left:0px;
  1479. top:0px;
  1480. width:22px;
  1481. height:22px;
  1482. }
  1483. #u29506_text {
  1484. border-width:0px;
  1485. word-wrap:break-word;
  1486. text-transform:none;
  1487. visibility:hidden;
  1488. }
  1489. #u29507 {
  1490. border-width:0px;
  1491. position:absolute;
  1492. left:20px;
  1493. top:1123px;
  1494. width:68px;
  1495. height:1px;
  1496. display:flex;
  1497. transition:none;
  1498. }
  1499. #u29507 .text {
  1500. position:absolute;
  1501. align-self:center;
  1502. padding:2px 2px 2px 2px;
  1503. box-sizing:border-box;
  1504. width:100%;
  1505. }
  1506. #u29507_img {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:0px;
  1510. top:0px;
  1511. width:69px;
  1512. height:2px;
  1513. }
  1514. #u29507_text {
  1515. border-width:0px;
  1516. word-wrap:break-word;
  1517. text-transform:none;
  1518. visibility:hidden;
  1519. }
  1520. #u29508 {
  1521. border-width:0px;
  1522. position:absolute;
  1523. left:20px;
  1524. top:1061px;
  1525. width:68px;
  1526. height:1px;
  1527. display:flex;
  1528. transition:none;
  1529. }
  1530. #u29508 .text {
  1531. position:absolute;
  1532. align-self:center;
  1533. padding:2px 2px 2px 2px;
  1534. box-sizing:border-box;
  1535. width:100%;
  1536. }
  1537. #u29508_img {
  1538. border-width:0px;
  1539. position:absolute;
  1540. left:0px;
  1541. top:0px;
  1542. width:69px;
  1543. height:2px;
  1544. }
  1545. #u29508_text {
  1546. border-width:0px;
  1547. word-wrap:break-word;
  1548. text-transform:none;
  1549. visibility:hidden;
  1550. }
  1551. #u29509 {
  1552. border-width:0px;
  1553. position:absolute;
  1554. left:20px;
  1555. top:112px;
  1556. width:56px;
  1557. height:1px;
  1558. display:flex;
  1559. transition:none;
  1560. }
  1561. #u29509 .text {
  1562. position:absolute;
  1563. align-self:center;
  1564. padding:2px 2px 2px 2px;
  1565. box-sizing:border-box;
  1566. width:100%;
  1567. }
  1568. #u29509_img {
  1569. border-width:0px;
  1570. position:absolute;
  1571. left:0px;
  1572. top:0px;
  1573. width:57px;
  1574. height:2px;
  1575. }
  1576. #u29509_text {
  1577. border-width:0px;
  1578. word-wrap:break-word;
  1579. text-transform:none;
  1580. visibility:hidden;
  1581. }
  1582. #u29510 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:0px;
  1586. top:0px;
  1587. width:0px;
  1588. height:0px;
  1589. }
  1590. #u29511_div {
  1591. border-width:0px;
  1592. position:absolute;
  1593. left:0px;
  1594. top:0px;
  1595. width:33px;
  1596. height:22px;
  1597. background:inherit;
  1598. background-color:rgba(255, 255, 255, 0);
  1599. border-radius:0px;
  1600. filter:drop-shadow(none);
  1601. transition:none;
  1602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1603. font-weight:400;
  1604. font-style:normal;
  1605. font-size:16px;
  1606. color:#FFFFFF;
  1607. }
  1608. #u29511 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:43px;
  1612. top:71px;
  1613. width:33px;
  1614. height:22px;
  1615. display:flex;
  1616. transition:none;
  1617. transform-origin:50% 50%;
  1618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1619. font-weight:400;
  1620. font-style:normal;
  1621. font-size:16px;
  1622. color:#FFFFFF;
  1623. }
  1624. #u29511 .text {
  1625. position:absolute;
  1626. align-self:flex-start;
  1627. padding:0px 0px 0px 0px;
  1628. box-sizing:border-box;
  1629. width:100%;
  1630. }
  1631. #u29511_text {
  1632. border-width:0px;
  1633. white-space:nowrap;
  1634. text-transform:none;
  1635. }
  1636. #u29512 {
  1637. border-width:0px;
  1638. position:absolute;
  1639. left:20px;
  1640. top:75px;
  1641. width:18px;
  1642. height:14px;
  1643. display:flex;
  1644. transition:none;
  1645. }
  1646. #u29512 .text {
  1647. position:absolute;
  1648. align-self:center;
  1649. padding:2px 2px 2px 2px;
  1650. box-sizing:border-box;
  1651. width:100%;
  1652. }
  1653. #u29512_img {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:0px;
  1657. top:0px;
  1658. width:18px;
  1659. height:14px;
  1660. }
  1661. #u29512_text {
  1662. border-width:0px;
  1663. word-wrap:break-word;
  1664. text-transform:none;
  1665. visibility:hidden;
  1666. }
  1667. #u29513_div {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:0px;
  1671. top:0px;
  1672. width:1255px;
  1673. height:1180px;
  1674. background:inherit;
  1675. background-color:rgba(255, 255, 255, 1);
  1676. box-sizing:border-box;
  1677. border-width:1px;
  1678. border-style:solid;
  1679. border-color:rgba(242, 242, 242, 1);
  1680. border-radius:0px;
  1681. filter:drop-shadow(none);
  1682. transition:none;
  1683. }
  1684. #u29513 {
  1685. border-width:0px;
  1686. position:absolute;
  1687. left:332px;
  1688. top:50px;
  1689. width:1255px;
  1690. height:1180px;
  1691. display:flex;
  1692. transition:none;
  1693. transform-origin:50% 50%;
  1694. }
  1695. #u29513 .text {
  1696. position:absolute;
  1697. align-self:center;
  1698. padding:2px 2px 2px 2px;
  1699. box-sizing:border-box;
  1700. width:100%;
  1701. }
  1702. #u29513_text {
  1703. border-width:0px;
  1704. word-wrap:break-word;
  1705. text-transform:none;
  1706. visibility:hidden;
  1707. }
  1708. #u29514_div {
  1709. border-width:0px;
  1710. position:absolute;
  1711. left:0px;
  1712. top:0px;
  1713. width:85px;
  1714. height:50px;
  1715. background:inherit;
  1716. background-color:rgba(255, 255, 255, 0);
  1717. box-sizing:border-box;
  1718. border-width:2px;
  1719. border-style:solid;
  1720. border-color:rgba(41, 143, 255, 1);
  1721. border-left:0px;
  1722. border-top:0px;
  1723. border-right:0px;
  1724. border-radius:0px;
  1725. border-bottom-right-radius:0px;
  1726. border-bottom-left-radius:0px;
  1727. filter:drop-shadow(none);
  1728. transition:none;
  1729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1730. font-weight:400;
  1731. font-style:normal;
  1732. font-size:14px;
  1733. color:#298FFF;
  1734. line-height:40px;
  1735. }
  1736. #u29514 {
  1737. border-width:0px;
  1738. position:absolute;
  1739. left:360px;
  1740. top:51px;
  1741. width:85px;
  1742. height:50px;
  1743. display:flex;
  1744. transition:none;
  1745. transform-origin:50% 50%;
  1746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1747. font-weight:400;
  1748. font-style:normal;
  1749. font-size:14px;
  1750. color:#298FFF;
  1751. line-height:40px;
  1752. }
  1753. #u29514 .text {
  1754. position:absolute;
  1755. align-self:center;
  1756. padding:0px 0px 0px 0px;
  1757. box-sizing:border-box;
  1758. width:100%;
  1759. }
  1760. #u29514_text {
  1761. border-width:0px;
  1762. white-space:nowrap;
  1763. text-transform:none;
  1764. }
  1765. #u29515_div {
  1766. border-width:0px;
  1767. position:absolute;
  1768. left:0px;
  1769. top:0px;
  1770. width:85px;
  1771. height:50px;
  1772. background:inherit;
  1773. background-color:rgba(255, 255, 255, 0);
  1774. border-left:0px;
  1775. border-top:0px;
  1776. border-right:0px;
  1777. border-radius:0px;
  1778. border-bottom-right-radius:0px;
  1779. border-bottom-left-radius:0px;
  1780. filter:drop-shadow(none);
  1781. transition:none;
  1782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1783. font-weight:400;
  1784. font-style:normal;
  1785. font-size:14px;
  1786. color:#000000;
  1787. line-height:40px;
  1788. }
  1789. #u29515 {
  1790. border-width:0px;
  1791. position:absolute;
  1792. left:485px;
  1793. top:51px;
  1794. width:85px;
  1795. height:50px;
  1796. display:flex;
  1797. transition:none;
  1798. transform-origin:50% 50%;
  1799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1800. font-weight:400;
  1801. font-style:normal;
  1802. font-size:14px;
  1803. color:#000000;
  1804. line-height:40px;
  1805. }
  1806. #u29515 .text {
  1807. position:absolute;
  1808. align-self:center;
  1809. padding:0px 0px 0px 0px;
  1810. box-sizing:border-box;
  1811. width:100%;
  1812. }
  1813. #u29515_text {
  1814. border-width:0px;
  1815. white-space:nowrap;
  1816. text-transform:none;
  1817. }
  1818. #u29516_div {
  1819. border-width:0px;
  1820. position:absolute;
  1821. left:0px;
  1822. top:0px;
  1823. width:113px;
  1824. height:50px;
  1825. background:inherit;
  1826. background-color:rgba(255, 255, 255, 0);
  1827. border-left:0px;
  1828. border-top:0px;
  1829. border-right:0px;
  1830. border-radius:0px;
  1831. border-bottom-right-radius:0px;
  1832. border-bottom-left-radius:0px;
  1833. filter:drop-shadow(none);
  1834. transition:none;
  1835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1836. font-weight:400;
  1837. font-style:normal;
  1838. font-size:14px;
  1839. color:#000000;
  1840. line-height:40px;
  1841. }
  1842. #u29516 {
  1843. border-width:0px;
  1844. position:absolute;
  1845. left:610px;
  1846. top:51px;
  1847. width:113px;
  1848. height:50px;
  1849. display:flex;
  1850. transition:none;
  1851. transform-origin:50% 50%;
  1852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1853. font-weight:400;
  1854. font-style:normal;
  1855. font-size:14px;
  1856. color:#000000;
  1857. line-height:40px;
  1858. }
  1859. #u29516 .text {
  1860. position:absolute;
  1861. align-self:center;
  1862. padding:0px 0px 0px 0px;
  1863. box-sizing:border-box;
  1864. width:100%;
  1865. }
  1866. #u29516_text {
  1867. border-width:0px;
  1868. white-space:nowrap;
  1869. text-transform:none;
  1870. }
  1871. #u29517_div {
  1872. border-width:0px;
  1873. position:absolute;
  1874. left:0px;
  1875. top:0px;
  1876. width:60px;
  1877. height:30px;
  1878. background:inherit;
  1879. background-color:rgba(24, 144, 255, 1);
  1880. border-radius:4px;
  1881. filter:drop-shadow(none);
  1882. transition:none;
  1883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1884. font-weight:400;
  1885. font-style:normal;
  1886. font-size:14px;
  1887. color:#FFFFFF;
  1888. }
  1889. #u29517 {
  1890. border-width:0px;
  1891. position:absolute;
  1892. left:361px;
  1893. top:214px;
  1894. width:60px;
  1895. height:30px;
  1896. display:flex;
  1897. transition:none;
  1898. transform-origin:50% 50%;
  1899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1900. font-weight:400;
  1901. font-style:normal;
  1902. font-size:14px;
  1903. color:#FFFFFF;
  1904. }
  1905. #u29517 .text {
  1906. position:absolute;
  1907. align-self:center;
  1908. padding:2px 2px 2px 2px;
  1909. box-sizing:border-box;
  1910. width:100%;
  1911. }
  1912. #u29517_text {
  1913. border-width:0px;
  1914. word-wrap:break-word;
  1915. text-transform:none;
  1916. }
  1917. #u29518 {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:361px;
  1921. top:257px;
  1922. width:1208px;
  1923. height:248px;
  1924. }
  1925. #u29519 {
  1926. border-width:0px;
  1927. position:absolute;
  1928. left:0px;
  1929. top:0px;
  1930. width:201px;
  1931. height:35px;
  1932. display:flex;
  1933. transition:none;
  1934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1935. font-weight:400;
  1936. font-style:normal;
  1937. font-size:14px;
  1938. color:#FFFFFF;
  1939. }
  1940. #u29519 .text {
  1941. position:absolute;
  1942. align-self:center;
  1943. padding:2px 2px 2px 2px;
  1944. box-sizing:border-box;
  1945. width:100%;
  1946. }
  1947. #u29519_img {
  1948. border-width:0px;
  1949. position:absolute;
  1950. left:0px;
  1951. top:0px;
  1952. width:201px;
  1953. height:35px;
  1954. }
  1955. #u29519_text {
  1956. border-width:0px;
  1957. word-wrap:break-word;
  1958. text-transform:none;
  1959. }
  1960. #u29520 {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:201px;
  1964. top:0px;
  1965. width:197px;
  1966. height:35px;
  1967. display:flex;
  1968. transition:none;
  1969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1970. font-weight:400;
  1971. font-style:normal;
  1972. font-size:14px;
  1973. color:#FFFFFF;
  1974. }
  1975. #u29520 .text {
  1976. position:absolute;
  1977. align-self:center;
  1978. padding:2px 2px 2px 2px;
  1979. box-sizing:border-box;
  1980. width:100%;
  1981. }
  1982. #u29520_img {
  1983. border-width:0px;
  1984. position:absolute;
  1985. left:0px;
  1986. top:0px;
  1987. width:197px;
  1988. height:35px;
  1989. }
  1990. #u29520_text {
  1991. border-width:0px;
  1992. word-wrap:break-word;
  1993. text-transform:none;
  1994. }
  1995. #u29521 {
  1996. border-width:0px;
  1997. position:absolute;
  1998. left:398px;
  1999. top:0px;
  2000. width:210px;
  2001. height:35px;
  2002. display:flex;
  2003. transition:none;
  2004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2005. font-weight:400;
  2006. font-style:normal;
  2007. font-size:14px;
  2008. color:#FFFFFF;
  2009. }
  2010. #u29521 .text {
  2011. position:absolute;
  2012. align-self:center;
  2013. padding:2px 2px 2px 2px;
  2014. box-sizing:border-box;
  2015. width:100%;
  2016. }
  2017. #u29521_img {
  2018. border-width:0px;
  2019. position:absolute;
  2020. left:0px;
  2021. top:0px;
  2022. width:210px;
  2023. height:35px;
  2024. }
  2025. #u29521_text {
  2026. border-width:0px;
  2027. word-wrap:break-word;
  2028. text-transform:none;
  2029. }
  2030. #u29522 {
  2031. border-width:0px;
  2032. position:absolute;
  2033. left:608px;
  2034. top:0px;
  2035. width:197px;
  2036. height:35px;
  2037. display:flex;
  2038. transition:none;
  2039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2040. font-weight:400;
  2041. font-style:normal;
  2042. font-size:14px;
  2043. color:#FFFFFF;
  2044. }
  2045. #u29522 .text {
  2046. position:absolute;
  2047. align-self:center;
  2048. padding:2px 2px 2px 2px;
  2049. box-sizing:border-box;
  2050. width:100%;
  2051. }
  2052. #u29522_img {
  2053. border-width:0px;
  2054. position:absolute;
  2055. left:0px;
  2056. top:0px;
  2057. width:197px;
  2058. height:35px;
  2059. }
  2060. #u29522_text {
  2061. border-width:0px;
  2062. word-wrap:break-word;
  2063. text-transform:none;
  2064. }
  2065. #u29523 {
  2066. border-width:0px;
  2067. position:absolute;
  2068. left:805px;
  2069. top:0px;
  2070. width:213px;
  2071. height:35px;
  2072. display:flex;
  2073. transition:none;
  2074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2075. font-weight:400;
  2076. font-style:normal;
  2077. font-size:14px;
  2078. color:#FFFFFF;
  2079. }
  2080. #u29523 .text {
  2081. position:absolute;
  2082. align-self:center;
  2083. padding:2px 2px 2px 2px;
  2084. box-sizing:border-box;
  2085. width:100%;
  2086. }
  2087. #u29523_img {
  2088. border-width:0px;
  2089. position:absolute;
  2090. left:0px;
  2091. top:0px;
  2092. width:213px;
  2093. height:35px;
  2094. }
  2095. #u29523_text {
  2096. border-width:0px;
  2097. word-wrap:break-word;
  2098. text-transform:none;
  2099. }
  2100. #u29524 {
  2101. border-width:0px;
  2102. position:absolute;
  2103. left:1018px;
  2104. top:0px;
  2105. width:190px;
  2106. height:35px;
  2107. display:flex;
  2108. transition:none;
  2109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2110. font-weight:400;
  2111. font-style:normal;
  2112. font-size:14px;
  2113. color:#FFFFFF;
  2114. }
  2115. #u29524 .text {
  2116. position:absolute;
  2117. align-self:center;
  2118. padding:2px 2px 2px 2px;
  2119. box-sizing:border-box;
  2120. width:100%;
  2121. }
  2122. #u29524_img {
  2123. border-width:0px;
  2124. position:absolute;
  2125. left:0px;
  2126. top:0px;
  2127. width:190px;
  2128. height:35px;
  2129. }
  2130. #u29524_text {
  2131. border-width:0px;
  2132. word-wrap:break-word;
  2133. text-transform:none;
  2134. }
  2135. #u29525 {
  2136. border-width:0px;
  2137. position:absolute;
  2138. left:0px;
  2139. top:35px;
  2140. width:201px;
  2141. height:35px;
  2142. display:flex;
  2143. transition:none;
  2144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2145. font-weight:400;
  2146. font-style:normal;
  2147. font-size:14px;
  2148. }
  2149. #u29525 .text {
  2150. position:absolute;
  2151. align-self:center;
  2152. padding:2px 2px 2px 2px;
  2153. box-sizing:border-box;
  2154. width:100%;
  2155. }
  2156. #u29525_img {
  2157. border-width:0px;
  2158. position:absolute;
  2159. left:0px;
  2160. top:0px;
  2161. width:201px;
  2162. height:35px;
  2163. }
  2164. #u29525_text {
  2165. border-width:0px;
  2166. word-wrap:break-word;
  2167. text-transform:none;
  2168. visibility:hidden;
  2169. }
  2170. #u29526 {
  2171. border-width:0px;
  2172. position:absolute;
  2173. left:201px;
  2174. top:35px;
  2175. width:197px;
  2176. height:35px;
  2177. display:flex;
  2178. transition:none;
  2179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2180. font-weight:400;
  2181. font-style:normal;
  2182. font-size:14px;
  2183. }
  2184. #u29526 .text {
  2185. position:absolute;
  2186. align-self:center;
  2187. padding:2px 2px 2px 2px;
  2188. box-sizing:border-box;
  2189. width:100%;
  2190. }
  2191. #u29526_img {
  2192. border-width:0px;
  2193. position:absolute;
  2194. left:0px;
  2195. top:0px;
  2196. width:197px;
  2197. height:35px;
  2198. }
  2199. #u29526_text {
  2200. border-width:0px;
  2201. word-wrap:break-word;
  2202. text-transform:none;
  2203. visibility:hidden;
  2204. }
  2205. #u29527 {
  2206. border-width:0px;
  2207. position:absolute;
  2208. left:398px;
  2209. top:35px;
  2210. width:210px;
  2211. height:35px;
  2212. display:flex;
  2213. transition:none;
  2214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2215. font-weight:400;
  2216. font-style:normal;
  2217. font-size:14px;
  2218. }
  2219. #u29527 .text {
  2220. position:absolute;
  2221. align-self:center;
  2222. padding:2px 2px 2px 2px;
  2223. box-sizing:border-box;
  2224. width:100%;
  2225. }
  2226. #u29527_img {
  2227. border-width:0px;
  2228. position:absolute;
  2229. left:0px;
  2230. top:0px;
  2231. width:210px;
  2232. height:35px;
  2233. }
  2234. #u29527_text {
  2235. border-width:0px;
  2236. word-wrap:break-word;
  2237. text-transform:none;
  2238. visibility:hidden;
  2239. }
  2240. #u29528 {
  2241. border-width:0px;
  2242. position:absolute;
  2243. left:608px;
  2244. top:35px;
  2245. width:197px;
  2246. height:35px;
  2247. display:flex;
  2248. transition:none;
  2249. font-size:14px;
  2250. }
  2251. #u29528 .text {
  2252. position:absolute;
  2253. align-self:center;
  2254. padding:2px 2px 2px 2px;
  2255. box-sizing:border-box;
  2256. width:100%;
  2257. }
  2258. #u29528_img {
  2259. border-width:0px;
  2260. position:absolute;
  2261. left:0px;
  2262. top:0px;
  2263. width:197px;
  2264. height:35px;
  2265. }
  2266. #u29528_text {
  2267. border-width:0px;
  2268. word-wrap:break-word;
  2269. text-transform:none;
  2270. visibility:hidden;
  2271. }
  2272. #u29529 {
  2273. border-width:0px;
  2274. position:absolute;
  2275. left:805px;
  2276. top:35px;
  2277. width:213px;
  2278. height:35px;
  2279. display:flex;
  2280. transition:none;
  2281. font-size:14px;
  2282. }
  2283. #u29529 .text {
  2284. position:absolute;
  2285. align-self:center;
  2286. padding:2px 2px 2px 2px;
  2287. box-sizing:border-box;
  2288. width:100%;
  2289. }
  2290. #u29529_img {
  2291. border-width:0px;
  2292. position:absolute;
  2293. left:0px;
  2294. top:0px;
  2295. width:213px;
  2296. height:35px;
  2297. }
  2298. #u29529_text {
  2299. border-width:0px;
  2300. word-wrap:break-word;
  2301. text-transform:none;
  2302. visibility:hidden;
  2303. }
  2304. #u29530 {
  2305. border-width:0px;
  2306. position:absolute;
  2307. left:1018px;
  2308. top:35px;
  2309. width:190px;
  2310. height:35px;
  2311. display:flex;
  2312. transition:none;
  2313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2314. font-weight:400;
  2315. font-style:normal;
  2316. font-size:14px;
  2317. color:#1890FF;
  2318. }
  2319. #u29530 .text {
  2320. position:absolute;
  2321. align-self:center;
  2322. padding:2px 2px 2px 2px;
  2323. box-sizing:border-box;
  2324. width:100%;
  2325. }
  2326. #u29530_img {
  2327. border-width:0px;
  2328. position:absolute;
  2329. left:0px;
  2330. top:0px;
  2331. width:190px;
  2332. height:35px;
  2333. }
  2334. #u29530_text {
  2335. border-width:0px;
  2336. word-wrap:break-word;
  2337. text-transform:none;
  2338. }
  2339. #u29531 {
  2340. border-width:0px;
  2341. position:absolute;
  2342. left:0px;
  2343. top:70px;
  2344. width:201px;
  2345. height:35px;
  2346. display:flex;
  2347. transition:none;
  2348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2349. font-weight:400;
  2350. font-style:normal;
  2351. font-size:14px;
  2352. }
  2353. #u29531 .text {
  2354. position:absolute;
  2355. align-self:center;
  2356. padding:2px 2px 2px 2px;
  2357. box-sizing:border-box;
  2358. width:100%;
  2359. }
  2360. #u29531_img {
  2361. border-width:0px;
  2362. position:absolute;
  2363. left:0px;
  2364. top:0px;
  2365. width:201px;
  2366. height:35px;
  2367. }
  2368. #u29531_text {
  2369. border-width:0px;
  2370. word-wrap:break-word;
  2371. text-transform:none;
  2372. visibility:hidden;
  2373. }
  2374. #u29532 {
  2375. border-width:0px;
  2376. position:absolute;
  2377. left:201px;
  2378. top:70px;
  2379. width:197px;
  2380. height:35px;
  2381. display:flex;
  2382. transition:none;
  2383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2384. font-weight:400;
  2385. font-style:normal;
  2386. font-size:14px;
  2387. }
  2388. #u29532 .text {
  2389. position:absolute;
  2390. align-self:center;
  2391. padding:2px 2px 2px 2px;
  2392. box-sizing:border-box;
  2393. width:100%;
  2394. }
  2395. #u29532_img {
  2396. border-width:0px;
  2397. position:absolute;
  2398. left:0px;
  2399. top:0px;
  2400. width:197px;
  2401. height:35px;
  2402. }
  2403. #u29532_text {
  2404. border-width:0px;
  2405. word-wrap:break-word;
  2406. text-transform:none;
  2407. visibility:hidden;
  2408. }
  2409. #u29533 {
  2410. border-width:0px;
  2411. position:absolute;
  2412. left:398px;
  2413. top:70px;
  2414. width:210px;
  2415. height:35px;
  2416. display:flex;
  2417. transition:none;
  2418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2419. font-weight:400;
  2420. font-style:normal;
  2421. font-size:14px;
  2422. }
  2423. #u29533 .text {
  2424. position:absolute;
  2425. align-self:center;
  2426. padding:2px 2px 2px 2px;
  2427. box-sizing:border-box;
  2428. width:100%;
  2429. }
  2430. #u29533_img {
  2431. border-width:0px;
  2432. position:absolute;
  2433. left:0px;
  2434. top:0px;
  2435. width:210px;
  2436. height:35px;
  2437. }
  2438. #u29533_text {
  2439. border-width:0px;
  2440. word-wrap:break-word;
  2441. text-transform:none;
  2442. visibility:hidden;
  2443. }
  2444. #u29534 {
  2445. border-width:0px;
  2446. position:absolute;
  2447. left:608px;
  2448. top:70px;
  2449. width:197px;
  2450. height:35px;
  2451. display:flex;
  2452. transition:none;
  2453. font-size:14px;
  2454. }
  2455. #u29534 .text {
  2456. position:absolute;
  2457. align-self:center;
  2458. padding:2px 2px 2px 2px;
  2459. box-sizing:border-box;
  2460. width:100%;
  2461. }
  2462. #u29534_img {
  2463. border-width:0px;
  2464. position:absolute;
  2465. left:0px;
  2466. top:0px;
  2467. width:197px;
  2468. height:35px;
  2469. }
  2470. #u29534_text {
  2471. border-width:0px;
  2472. word-wrap:break-word;
  2473. text-transform:none;
  2474. visibility:hidden;
  2475. }
  2476. #u29535 {
  2477. border-width:0px;
  2478. position:absolute;
  2479. left:805px;
  2480. top:70px;
  2481. width:213px;
  2482. height:35px;
  2483. display:flex;
  2484. transition:none;
  2485. font-size:14px;
  2486. }
  2487. #u29535 .text {
  2488. position:absolute;
  2489. align-self:center;
  2490. padding:2px 2px 2px 2px;
  2491. box-sizing:border-box;
  2492. width:100%;
  2493. }
  2494. #u29535_img {
  2495. border-width:0px;
  2496. position:absolute;
  2497. left:0px;
  2498. top:0px;
  2499. width:213px;
  2500. height:35px;
  2501. }
  2502. #u29535_text {
  2503. border-width:0px;
  2504. word-wrap:break-word;
  2505. text-transform:none;
  2506. visibility:hidden;
  2507. }
  2508. #u29536 {
  2509. border-width:0px;
  2510. position:absolute;
  2511. left:1018px;
  2512. top:70px;
  2513. width:190px;
  2514. height:35px;
  2515. display:flex;
  2516. transition:none;
  2517. font-size:14px;
  2518. }
  2519. #u29536 .text {
  2520. position:absolute;
  2521. align-self:center;
  2522. padding:2px 2px 2px 2px;
  2523. box-sizing:border-box;
  2524. width:100%;
  2525. }
  2526. #u29536_img {
  2527. border-width:0px;
  2528. position:absolute;
  2529. left:0px;
  2530. top:0px;
  2531. width:190px;
  2532. height:35px;
  2533. }
  2534. #u29536_text {
  2535. border-width:0px;
  2536. word-wrap:break-word;
  2537. text-transform:none;
  2538. visibility:hidden;
  2539. }
  2540. #u29537 {
  2541. border-width:0px;
  2542. position:absolute;
  2543. left:0px;
  2544. top:105px;
  2545. width:201px;
  2546. height:35px;
  2547. display:flex;
  2548. transition:none;
  2549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2550. font-weight:400;
  2551. font-style:normal;
  2552. font-size:14px;
  2553. }
  2554. #u29537 .text {
  2555. position:absolute;
  2556. align-self:center;
  2557. padding:2px 2px 2px 2px;
  2558. box-sizing:border-box;
  2559. width:100%;
  2560. }
  2561. #u29537_img {
  2562. border-width:0px;
  2563. position:absolute;
  2564. left:0px;
  2565. top:0px;
  2566. width:201px;
  2567. height:35px;
  2568. }
  2569. #u29537_text {
  2570. border-width:0px;
  2571. word-wrap:break-word;
  2572. text-transform:none;
  2573. visibility:hidden;
  2574. }
  2575. #u29538 {
  2576. border-width:0px;
  2577. position:absolute;
  2578. left:201px;
  2579. top:105px;
  2580. width:197px;
  2581. height:35px;
  2582. display:flex;
  2583. transition:none;
  2584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2585. font-weight:400;
  2586. font-style:normal;
  2587. font-size:14px;
  2588. }
  2589. #u29538 .text {
  2590. position:absolute;
  2591. align-self:center;
  2592. padding:2px 2px 2px 2px;
  2593. box-sizing:border-box;
  2594. width:100%;
  2595. }
  2596. #u29538_img {
  2597. border-width:0px;
  2598. position:absolute;
  2599. left:0px;
  2600. top:0px;
  2601. width:197px;
  2602. height:35px;
  2603. }
  2604. #u29538_text {
  2605. border-width:0px;
  2606. word-wrap:break-word;
  2607. text-transform:none;
  2608. visibility:hidden;
  2609. }
  2610. #u29539 {
  2611. border-width:0px;
  2612. position:absolute;
  2613. left:398px;
  2614. top:105px;
  2615. width:210px;
  2616. height:35px;
  2617. display:flex;
  2618. transition:none;
  2619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2620. font-weight:400;
  2621. font-style:normal;
  2622. font-size:14px;
  2623. }
  2624. #u29539 .text {
  2625. position:absolute;
  2626. align-self:center;
  2627. padding:2px 2px 2px 2px;
  2628. box-sizing:border-box;
  2629. width:100%;
  2630. }
  2631. #u29539_img {
  2632. border-width:0px;
  2633. position:absolute;
  2634. left:0px;
  2635. top:0px;
  2636. width:210px;
  2637. height:35px;
  2638. }
  2639. #u29539_text {
  2640. border-width:0px;
  2641. word-wrap:break-word;
  2642. text-transform:none;
  2643. visibility:hidden;
  2644. }
  2645. #u29540 {
  2646. border-width:0px;
  2647. position:absolute;
  2648. left:608px;
  2649. top:105px;
  2650. width:197px;
  2651. height:35px;
  2652. display:flex;
  2653. transition:none;
  2654. font-size:14px;
  2655. }
  2656. #u29540 .text {
  2657. position:absolute;
  2658. align-self:center;
  2659. padding:2px 2px 2px 2px;
  2660. box-sizing:border-box;
  2661. width:100%;
  2662. }
  2663. #u29540_img {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:0px;
  2667. top:0px;
  2668. width:197px;
  2669. height:35px;
  2670. }
  2671. #u29540_text {
  2672. border-width:0px;
  2673. word-wrap:break-word;
  2674. text-transform:none;
  2675. visibility:hidden;
  2676. }
  2677. #u29541 {
  2678. border-width:0px;
  2679. position:absolute;
  2680. left:805px;
  2681. top:105px;
  2682. width:213px;
  2683. height:35px;
  2684. display:flex;
  2685. transition:none;
  2686. font-size:14px;
  2687. }
  2688. #u29541 .text {
  2689. position:absolute;
  2690. align-self:center;
  2691. padding:2px 2px 2px 2px;
  2692. box-sizing:border-box;
  2693. width:100%;
  2694. }
  2695. #u29541_img {
  2696. border-width:0px;
  2697. position:absolute;
  2698. left:0px;
  2699. top:0px;
  2700. width:213px;
  2701. height:35px;
  2702. }
  2703. #u29541_text {
  2704. border-width:0px;
  2705. word-wrap:break-word;
  2706. text-transform:none;
  2707. visibility:hidden;
  2708. }
  2709. #u29542 {
  2710. border-width:0px;
  2711. position:absolute;
  2712. left:1018px;
  2713. top:105px;
  2714. width:190px;
  2715. height:35px;
  2716. display:flex;
  2717. transition:none;
  2718. font-size:14px;
  2719. }
  2720. #u29542 .text {
  2721. position:absolute;
  2722. align-self:center;
  2723. padding:2px 2px 2px 2px;
  2724. box-sizing:border-box;
  2725. width:100%;
  2726. }
  2727. #u29542_img {
  2728. border-width:0px;
  2729. position:absolute;
  2730. left:0px;
  2731. top:0px;
  2732. width:190px;
  2733. height:35px;
  2734. }
  2735. #u29542_text {
  2736. border-width:0px;
  2737. word-wrap:break-word;
  2738. text-transform:none;
  2739. visibility:hidden;
  2740. }
  2741. #u29543 {
  2742. border-width:0px;
  2743. position:absolute;
  2744. left:0px;
  2745. top:140px;
  2746. width:201px;
  2747. height:38px;
  2748. display:flex;
  2749. transition:none;
  2750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2751. font-weight:400;
  2752. font-style:normal;
  2753. font-size:14px;
  2754. }
  2755. #u29543 .text {
  2756. position:absolute;
  2757. align-self:center;
  2758. padding:2px 2px 2px 2px;
  2759. box-sizing:border-box;
  2760. width:100%;
  2761. }
  2762. #u29543_img {
  2763. border-width:0px;
  2764. position:absolute;
  2765. left:0px;
  2766. top:0px;
  2767. width:201px;
  2768. height:38px;
  2769. }
  2770. #u29543_text {
  2771. border-width:0px;
  2772. word-wrap:break-word;
  2773. text-transform:none;
  2774. visibility:hidden;
  2775. }
  2776. #u29544 {
  2777. border-width:0px;
  2778. position:absolute;
  2779. left:201px;
  2780. top:140px;
  2781. width:197px;
  2782. height:38px;
  2783. display:flex;
  2784. transition:none;
  2785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2786. font-weight:400;
  2787. font-style:normal;
  2788. font-size:14px;
  2789. }
  2790. #u29544 .text {
  2791. position:absolute;
  2792. align-self:center;
  2793. padding:2px 2px 2px 2px;
  2794. box-sizing:border-box;
  2795. width:100%;
  2796. }
  2797. #u29544_img {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:0px;
  2801. top:0px;
  2802. width:197px;
  2803. height:38px;
  2804. }
  2805. #u29544_text {
  2806. border-width:0px;
  2807. word-wrap:break-word;
  2808. text-transform:none;
  2809. visibility:hidden;
  2810. }
  2811. #u29545 {
  2812. border-width:0px;
  2813. position:absolute;
  2814. left:398px;
  2815. top:140px;
  2816. width:210px;
  2817. height:38px;
  2818. display:flex;
  2819. transition:none;
  2820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2821. font-weight:400;
  2822. font-style:normal;
  2823. font-size:14px;
  2824. }
  2825. #u29545 .text {
  2826. position:absolute;
  2827. align-self:center;
  2828. padding:2px 2px 2px 2px;
  2829. box-sizing:border-box;
  2830. width:100%;
  2831. }
  2832. #u29545_img {
  2833. border-width:0px;
  2834. position:absolute;
  2835. left:0px;
  2836. top:0px;
  2837. width:210px;
  2838. height:38px;
  2839. }
  2840. #u29545_text {
  2841. border-width:0px;
  2842. word-wrap:break-word;
  2843. text-transform:none;
  2844. visibility:hidden;
  2845. }
  2846. #u29546 {
  2847. border-width:0px;
  2848. position:absolute;
  2849. left:608px;
  2850. top:140px;
  2851. width:197px;
  2852. height:38px;
  2853. display:flex;
  2854. transition:none;
  2855. font-size:14px;
  2856. }
  2857. #u29546 .text {
  2858. position:absolute;
  2859. align-self:center;
  2860. padding:2px 2px 2px 2px;
  2861. box-sizing:border-box;
  2862. width:100%;
  2863. }
  2864. #u29546_img {
  2865. border-width:0px;
  2866. position:absolute;
  2867. left:0px;
  2868. top:0px;
  2869. width:197px;
  2870. height:38px;
  2871. }
  2872. #u29546_text {
  2873. border-width:0px;
  2874. word-wrap:break-word;
  2875. text-transform:none;
  2876. visibility:hidden;
  2877. }
  2878. #u29547 {
  2879. border-width:0px;
  2880. position:absolute;
  2881. left:805px;
  2882. top:140px;
  2883. width:213px;
  2884. height:38px;
  2885. display:flex;
  2886. transition:none;
  2887. font-size:14px;
  2888. }
  2889. #u29547 .text {
  2890. position:absolute;
  2891. align-self:center;
  2892. padding:2px 2px 2px 2px;
  2893. box-sizing:border-box;
  2894. width:100%;
  2895. }
  2896. #u29547_img {
  2897. border-width:0px;
  2898. position:absolute;
  2899. left:0px;
  2900. top:0px;
  2901. width:213px;
  2902. height:38px;
  2903. }
  2904. #u29547_text {
  2905. border-width:0px;
  2906. word-wrap:break-word;
  2907. text-transform:none;
  2908. visibility:hidden;
  2909. }
  2910. #u29548 {
  2911. border-width:0px;
  2912. position:absolute;
  2913. left:1018px;
  2914. top:140px;
  2915. width:190px;
  2916. height:38px;
  2917. display:flex;
  2918. transition:none;
  2919. font-size:14px;
  2920. }
  2921. #u29548 .text {
  2922. position:absolute;
  2923. align-self:center;
  2924. padding:2px 2px 2px 2px;
  2925. box-sizing:border-box;
  2926. width:100%;
  2927. }
  2928. #u29548_img {
  2929. border-width:0px;
  2930. position:absolute;
  2931. left:0px;
  2932. top:0px;
  2933. width:190px;
  2934. height:38px;
  2935. }
  2936. #u29548_text {
  2937. border-width:0px;
  2938. word-wrap:break-word;
  2939. text-transform:none;
  2940. visibility:hidden;
  2941. }
  2942. #u29549 {
  2943. border-width:0px;
  2944. position:absolute;
  2945. left:0px;
  2946. top:178px;
  2947. width:201px;
  2948. height:35px;
  2949. display:flex;
  2950. transition:none;
  2951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2952. font-weight:400;
  2953. font-style:normal;
  2954. font-size:14px;
  2955. }
  2956. #u29549 .text {
  2957. position:absolute;
  2958. align-self:center;
  2959. padding:2px 2px 2px 2px;
  2960. box-sizing:border-box;
  2961. width:100%;
  2962. }
  2963. #u29549_img {
  2964. border-width:0px;
  2965. position:absolute;
  2966. left:0px;
  2967. top:0px;
  2968. width:201px;
  2969. height:35px;
  2970. }
  2971. #u29549_text {
  2972. border-width:0px;
  2973. word-wrap:break-word;
  2974. text-transform:none;
  2975. visibility:hidden;
  2976. }
  2977. #u29550 {
  2978. border-width:0px;
  2979. position:absolute;
  2980. left:201px;
  2981. top:178px;
  2982. width:197px;
  2983. height:35px;
  2984. display:flex;
  2985. transition:none;
  2986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2987. font-weight:400;
  2988. font-style:normal;
  2989. font-size:14px;
  2990. }
  2991. #u29550 .text {
  2992. position:absolute;
  2993. align-self:center;
  2994. padding:2px 2px 2px 2px;
  2995. box-sizing:border-box;
  2996. width:100%;
  2997. }
  2998. #u29550_img {
  2999. border-width:0px;
  3000. position:absolute;
  3001. left:0px;
  3002. top:0px;
  3003. width:197px;
  3004. height:35px;
  3005. }
  3006. #u29550_text {
  3007. border-width:0px;
  3008. word-wrap:break-word;
  3009. text-transform:none;
  3010. visibility:hidden;
  3011. }
  3012. #u29551 {
  3013. border-width:0px;
  3014. position:absolute;
  3015. left:398px;
  3016. top:178px;
  3017. width:210px;
  3018. height:35px;
  3019. display:flex;
  3020. transition:none;
  3021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3022. font-weight:400;
  3023. font-style:normal;
  3024. font-size:14px;
  3025. }
  3026. #u29551 .text {
  3027. position:absolute;
  3028. align-self:center;
  3029. padding:2px 2px 2px 2px;
  3030. box-sizing:border-box;
  3031. width:100%;
  3032. }
  3033. #u29551_img {
  3034. border-width:0px;
  3035. position:absolute;
  3036. left:0px;
  3037. top:0px;
  3038. width:210px;
  3039. height:35px;
  3040. }
  3041. #u29551_text {
  3042. border-width:0px;
  3043. word-wrap:break-word;
  3044. text-transform:none;
  3045. visibility:hidden;
  3046. }
  3047. #u29552 {
  3048. border-width:0px;
  3049. position:absolute;
  3050. left:608px;
  3051. top:178px;
  3052. width:197px;
  3053. height:35px;
  3054. display:flex;
  3055. transition:none;
  3056. font-size:14px;
  3057. }
  3058. #u29552 .text {
  3059. position:absolute;
  3060. align-self:center;
  3061. padding:2px 2px 2px 2px;
  3062. box-sizing:border-box;
  3063. width:100%;
  3064. }
  3065. #u29552_img {
  3066. border-width:0px;
  3067. position:absolute;
  3068. left:0px;
  3069. top:0px;
  3070. width:197px;
  3071. height:35px;
  3072. }
  3073. #u29552_text {
  3074. border-width:0px;
  3075. word-wrap:break-word;
  3076. text-transform:none;
  3077. visibility:hidden;
  3078. }
  3079. #u29553 {
  3080. border-width:0px;
  3081. position:absolute;
  3082. left:805px;
  3083. top:178px;
  3084. width:213px;
  3085. height:35px;
  3086. display:flex;
  3087. transition:none;
  3088. font-size:14px;
  3089. }
  3090. #u29553 .text {
  3091. position:absolute;
  3092. align-self:center;
  3093. padding:2px 2px 2px 2px;
  3094. box-sizing:border-box;
  3095. width:100%;
  3096. }
  3097. #u29553_img {
  3098. border-width:0px;
  3099. position:absolute;
  3100. left:0px;
  3101. top:0px;
  3102. width:213px;
  3103. height:35px;
  3104. }
  3105. #u29553_text {
  3106. border-width:0px;
  3107. word-wrap:break-word;
  3108. text-transform:none;
  3109. visibility:hidden;
  3110. }
  3111. #u29554 {
  3112. border-width:0px;
  3113. position:absolute;
  3114. left:1018px;
  3115. top:178px;
  3116. width:190px;
  3117. height:35px;
  3118. display:flex;
  3119. transition:none;
  3120. font-size:14px;
  3121. }
  3122. #u29554 .text {
  3123. position:absolute;
  3124. align-self:center;
  3125. padding:2px 2px 2px 2px;
  3126. box-sizing:border-box;
  3127. width:100%;
  3128. }
  3129. #u29554_img {
  3130. border-width:0px;
  3131. position:absolute;
  3132. left:0px;
  3133. top:0px;
  3134. width:190px;
  3135. height:35px;
  3136. }
  3137. #u29554_text {
  3138. border-width:0px;
  3139. word-wrap:break-word;
  3140. text-transform:none;
  3141. visibility:hidden;
  3142. }
  3143. #u29555 {
  3144. border-width:0px;
  3145. position:absolute;
  3146. left:0px;
  3147. top:213px;
  3148. width:201px;
  3149. height:35px;
  3150. display:flex;
  3151. transition:none;
  3152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3153. font-weight:400;
  3154. font-style:normal;
  3155. font-size:14px;
  3156. }
  3157. #u29555 .text {
  3158. position:absolute;
  3159. align-self:center;
  3160. padding:2px 2px 2px 2px;
  3161. box-sizing:border-box;
  3162. width:100%;
  3163. }
  3164. #u29555_img {
  3165. border-width:0px;
  3166. position:absolute;
  3167. left:0px;
  3168. top:0px;
  3169. width:201px;
  3170. height:35px;
  3171. }
  3172. #u29555_text {
  3173. border-width:0px;
  3174. word-wrap:break-word;
  3175. text-transform:none;
  3176. visibility:hidden;
  3177. }
  3178. #u29556 {
  3179. border-width:0px;
  3180. position:absolute;
  3181. left:201px;
  3182. top:213px;
  3183. width:197px;
  3184. height:35px;
  3185. display:flex;
  3186. transition:none;
  3187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3188. font-weight:400;
  3189. font-style:normal;
  3190. font-size:14px;
  3191. }
  3192. #u29556 .text {
  3193. position:absolute;
  3194. align-self:center;
  3195. padding:2px 2px 2px 2px;
  3196. box-sizing:border-box;
  3197. width:100%;
  3198. }
  3199. #u29556_img {
  3200. border-width:0px;
  3201. position:absolute;
  3202. left:0px;
  3203. top:0px;
  3204. width:197px;
  3205. height:35px;
  3206. }
  3207. #u29556_text {
  3208. border-width:0px;
  3209. word-wrap:break-word;
  3210. text-transform:none;
  3211. visibility:hidden;
  3212. }
  3213. #u29557 {
  3214. border-width:0px;
  3215. position:absolute;
  3216. left:398px;
  3217. top:213px;
  3218. width:210px;
  3219. height:35px;
  3220. display:flex;
  3221. transition:none;
  3222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3223. font-weight:400;
  3224. font-style:normal;
  3225. font-size:14px;
  3226. }
  3227. #u29557 .text {
  3228. position:absolute;
  3229. align-self:center;
  3230. padding:2px 2px 2px 2px;
  3231. box-sizing:border-box;
  3232. width:100%;
  3233. }
  3234. #u29557_img {
  3235. border-width:0px;
  3236. position:absolute;
  3237. left:0px;
  3238. top:0px;
  3239. width:210px;
  3240. height:35px;
  3241. }
  3242. #u29557_text {
  3243. border-width:0px;
  3244. word-wrap:break-word;
  3245. text-transform:none;
  3246. visibility:hidden;
  3247. }
  3248. #u29558 {
  3249. border-width:0px;
  3250. position:absolute;
  3251. left:608px;
  3252. top:213px;
  3253. width:197px;
  3254. height:35px;
  3255. display:flex;
  3256. transition:none;
  3257. font-size:14px;
  3258. }
  3259. #u29558 .text {
  3260. position:absolute;
  3261. align-self:center;
  3262. padding:2px 2px 2px 2px;
  3263. box-sizing:border-box;
  3264. width:100%;
  3265. }
  3266. #u29558_img {
  3267. border-width:0px;
  3268. position:absolute;
  3269. left:0px;
  3270. top:0px;
  3271. width:197px;
  3272. height:35px;
  3273. }
  3274. #u29558_text {
  3275. border-width:0px;
  3276. word-wrap:break-word;
  3277. text-transform:none;
  3278. visibility:hidden;
  3279. }
  3280. #u29559 {
  3281. border-width:0px;
  3282. position:absolute;
  3283. left:805px;
  3284. top:213px;
  3285. width:213px;
  3286. height:35px;
  3287. display:flex;
  3288. transition:none;
  3289. font-size:14px;
  3290. }
  3291. #u29559 .text {
  3292. position:absolute;
  3293. align-self:center;
  3294. padding:2px 2px 2px 2px;
  3295. box-sizing:border-box;
  3296. width:100%;
  3297. }
  3298. #u29559_img {
  3299. border-width:0px;
  3300. position:absolute;
  3301. left:0px;
  3302. top:0px;
  3303. width:213px;
  3304. height:35px;
  3305. }
  3306. #u29559_text {
  3307. border-width:0px;
  3308. word-wrap:break-word;
  3309. text-transform:none;
  3310. visibility:hidden;
  3311. }
  3312. #u29560 {
  3313. border-width:0px;
  3314. position:absolute;
  3315. left:1018px;
  3316. top:213px;
  3317. width:190px;
  3318. height:35px;
  3319. display:flex;
  3320. transition:none;
  3321. font-size:14px;
  3322. }
  3323. #u29560 .text {
  3324. position:absolute;
  3325. align-self:center;
  3326. padding:2px 2px 2px 2px;
  3327. box-sizing:border-box;
  3328. width:100%;
  3329. }
  3330. #u29560_img {
  3331. border-width:0px;
  3332. position:absolute;
  3333. left:0px;
  3334. top:0px;
  3335. width:190px;
  3336. height:35px;
  3337. }
  3338. #u29560_text {
  3339. border-width:0px;
  3340. word-wrap:break-word;
  3341. text-transform:none;
  3342. visibility:hidden;
  3343. }
  3344. #u29561 {
  3345. border-width:0px;
  3346. position:absolute;
  3347. left:0px;
  3348. top:0px;
  3349. width:0px;
  3350. height:0px;
  3351. }
  3352. #u29562_div {
  3353. border-width:0px;
  3354. position:absolute;
  3355. left:0px;
  3356. top:0px;
  3357. width:600px;
  3358. height:373px;
  3359. background:inherit;
  3360. background-color:rgba(255, 255, 255, 1);
  3361. box-sizing:border-box;
  3362. border-width:1px;
  3363. border-style:solid;
  3364. border-color:rgba(215, 215, 215, 1);
  3365. border-radius:0px;
  3366. filter:drop-shadow(none);
  3367. transition:none;
  3368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3369. font-weight:400;
  3370. font-style:normal;
  3371. font-size:14px;
  3372. color:#AAAAAA;
  3373. text-align:center;
  3374. line-height:30px;
  3375. }
  3376. #u29562 {
  3377. border-width:0px;
  3378. position:absolute;
  3379. left:424px;
  3380. top:544px;
  3381. width:600px;
  3382. height:373px;
  3383. display:flex;
  3384. transition:none;
  3385. transform-origin:50% 50%;
  3386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3387. font-weight:400;
  3388. font-style:normal;
  3389. font-size:14px;
  3390. color:#AAAAAA;
  3391. text-align:center;
  3392. line-height:30px;
  3393. }
  3394. #u29562 .text {
  3395. position:absolute;
  3396. align-self:center;
  3397. padding:5px 10px 5px 10px;
  3398. box-sizing:border-box;
  3399. width:100%;
  3400. }
  3401. #u29562_text {
  3402. border-width:0px;
  3403. word-wrap:break-word;
  3404. text-transform:none;
  3405. visibility:hidden;
  3406. }
  3407. #u29563_div {
  3408. border-width:0px;
  3409. position:absolute;
  3410. left:0px;
  3411. top:0px;
  3412. width:47px;
  3413. height:35px;
  3414. background:inherit;
  3415. background-color:rgba(255, 255, 255, 0);
  3416. border-top:0px;
  3417. border-right:0px;
  3418. border-bottom:0px;
  3419. border-radius:0px;
  3420. border-top-left-radius:0px;
  3421. border-bottom-left-radius:0px;
  3422. filter:drop-shadow(none);
  3423. transition:none;
  3424. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3425. font-weight:500;
  3426. font-style:normal;
  3427. font-size:18px;
  3428. }
  3429. #u29563 {
  3430. border-width:0px;
  3431. position:absolute;
  3432. left:444px;
  3433. top:562px;
  3434. width:47px;
  3435. height:35px;
  3436. display:flex;
  3437. transition:none;
  3438. transform-origin:50% 50%;
  3439. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3440. font-weight:500;
  3441. font-style:normal;
  3442. font-size:18px;
  3443. }
  3444. #u29563 .text {
  3445. position:absolute;
  3446. align-self:center;
  3447. padding:5px 10px 5px 0px;
  3448. box-sizing:border-box;
  3449. width:100%;
  3450. }
  3451. #u29563_text {
  3452. border-width:0px;
  3453. white-space:nowrap;
  3454. text-transform:none;
  3455. }
  3456. #u29564_div {
  3457. border-width:0px;
  3458. position:absolute;
  3459. left:0px;
  3460. top:0px;
  3461. width:88px;
  3462. height:40px;
  3463. background:inherit;
  3464. background-color:rgba(255, 255, 255, 0);
  3465. border-top:0px;
  3466. border-right:0px;
  3467. border-bottom:0px;
  3468. border-radius:0px;
  3469. border-top-left-radius:0px;
  3470. border-bottom-left-radius:0px;
  3471. filter:drop-shadow(none);
  3472. transition:none;
  3473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3474. font-weight:400;
  3475. font-style:normal;
  3476. font-size:14px;
  3477. color:#7F7F7F;
  3478. text-align:right;
  3479. }
  3480. #u29564 {
  3481. border-width:0px;
  3482. position:absolute;
  3483. left:457px;
  3484. top:726px;
  3485. width:88px;
  3486. height:40px;
  3487. display:flex;
  3488. transition:none;
  3489. transform-origin:50% 50%;
  3490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3491. font-weight:400;
  3492. font-style:normal;
  3493. font-size:14px;
  3494. color:#7F7F7F;
  3495. text-align:right;
  3496. }
  3497. #u29564 .text {
  3498. position:absolute;
  3499. align-self:center;
  3500. padding:5px 10px 5px 0px;
  3501. box-sizing:border-box;
  3502. width:100%;
  3503. }
  3504. #u29564_text {
  3505. border-width:0px;
  3506. white-space:nowrap;
  3507. text-transform:none;
  3508. }
  3509. #u29565 {
  3510. border-width:0px;
  3511. position:absolute;
  3512. left:0px;
  3513. top:0px;
  3514. width:0px;
  3515. height:0px;
  3516. }
  3517. #u29566_div {
  3518. border-width:0px;
  3519. position:absolute;
  3520. left:0px;
  3521. top:0px;
  3522. width:600px;
  3523. height:60px;
  3524. background:inherit;
  3525. background-color:rgba(255, 255, 255, 1);
  3526. box-sizing:border-box;
  3527. border-width:1px;
  3528. border-style:solid;
  3529. border-color:rgba(215, 215, 215, 1);
  3530. border-radius:0px;
  3531. filter:drop-shadow(none);
  3532. transition:none;
  3533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3534. font-weight:400;
  3535. font-style:normal;
  3536. font-size:14px;
  3537. color:#AAAAAA;
  3538. text-align:center;
  3539. line-height:30px;
  3540. }
  3541. #u29566 {
  3542. border-width:0px;
  3543. position:absolute;
  3544. left:424px;
  3545. top:857px;
  3546. width:600px;
  3547. height:60px;
  3548. display:flex;
  3549. transition:none;
  3550. transform-origin:50% 50%;
  3551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3552. font-weight:400;
  3553. font-style:normal;
  3554. font-size:14px;
  3555. color:#AAAAAA;
  3556. text-align:center;
  3557. line-height:30px;
  3558. }
  3559. #u29566 .text {
  3560. position:absolute;
  3561. align-self:center;
  3562. padding:5px 10px 5px 10px;
  3563. box-sizing:border-box;
  3564. width:100%;
  3565. }
  3566. #u29566_text {
  3567. border-width:0px;
  3568. word-wrap:break-word;
  3569. text-transform:none;
  3570. visibility:hidden;
  3571. }
  3572. #u29567_div {
  3573. border-width:0px;
  3574. position:absolute;
  3575. left:0px;
  3576. top:0px;
  3577. width:80px;
  3578. height:30px;
  3579. background:inherit;
  3580. background-color:rgba(24, 144, 255, 1);
  3581. border-radius:4px;
  3582. filter:drop-shadow(none);
  3583. transition:none;
  3584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3585. font-weight:400;
  3586. font-style:normal;
  3587. font-size:14px;
  3588. color:#FFFFFF;
  3589. }
  3590. #u29567 {
  3591. border-width:0px;
  3592. position:absolute;
  3593. left:889px;
  3594. top:872px;
  3595. width:80px;
  3596. height:30px;
  3597. display:flex;
  3598. transition:none;
  3599. transform-origin:50% 50%;
  3600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3601. font-weight:400;
  3602. font-style:normal;
  3603. font-size:14px;
  3604. color:#FFFFFF;
  3605. }
  3606. #u29567 .text {
  3607. position:absolute;
  3608. align-self:center;
  3609. padding:2px 2px 2px 2px;
  3610. box-sizing:border-box;
  3611. width:100%;
  3612. }
  3613. #u29567_text {
  3614. border-width:0px;
  3615. word-wrap:break-word;
  3616. text-transform:none;
  3617. }
  3618. #u29568_div {
  3619. border-width:0px;
  3620. position:absolute;
  3621. left:0px;
  3622. top:0px;
  3623. width:80px;
  3624. height:30px;
  3625. background:inherit;
  3626. background-color:rgba(255, 255, 255, 1);
  3627. box-sizing:border-box;
  3628. border-width:1px;
  3629. border-style:solid;
  3630. border-color:rgba(170, 170, 170, 1);
  3631. border-radius:4px;
  3632. filter:drop-shadow(none);
  3633. transition:none;
  3634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3635. font-weight:400;
  3636. font-style:normal;
  3637. font-size:14px;
  3638. }
  3639. #u29568 {
  3640. border-width:0px;
  3641. position:absolute;
  3642. left:789px;
  3643. top:872px;
  3644. width:80px;
  3645. height:30px;
  3646. display:flex;
  3647. transition:none;
  3648. transform-origin:50% 50%;
  3649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3650. font-weight:400;
  3651. font-style:normal;
  3652. font-size:14px;
  3653. }
  3654. #u29568 .text {
  3655. position:absolute;
  3656. align-self:center;
  3657. padding:2px 2px 2px 2px;
  3658. box-sizing:border-box;
  3659. width:100%;
  3660. }
  3661. #u29568_text {
  3662. border-width:0px;
  3663. word-wrap:break-word;
  3664. text-transform:none;
  3665. }
  3666. #u29569 {
  3667. border-width:0px;
  3668. position:absolute;
  3669. left:0px;
  3670. top:0px;
  3671. width:0px;
  3672. height:0px;
  3673. }
  3674. #u29570_div {
  3675. border-width:0px;
  3676. position:absolute;
  3677. left:0px;
  3678. top:0px;
  3679. width:400px;
  3680. height:40px;
  3681. background:inherit;
  3682. background-color:rgba(255, 255, 255, 1);
  3683. box-sizing:border-box;
  3684. border-width:1px;
  3685. border-style:solid;
  3686. border-color:rgba(201, 201, 201, 1);
  3687. border-radius:4px;
  3688. filter:drop-shadow(none);
  3689. transition:none;
  3690. font-family:"Microsoft YaHei", sans-serif;
  3691. font-weight:400;
  3692. font-style:normal;
  3693. font-size:14px;
  3694. color:#CCCCCC;
  3695. text-align:left;
  3696. }
  3697. #u29570 {
  3698. border-width:0px;
  3699. position:absolute;
  3700. left:555px;
  3701. top:727px;
  3702. width:400px;
  3703. height:40px;
  3704. display:flex;
  3705. transition:none;
  3706. transform-origin:50% 50%;
  3707. font-family:"Microsoft YaHei", sans-serif;
  3708. font-weight:400;
  3709. font-style:normal;
  3710. font-size:14px;
  3711. color:#CCCCCC;
  3712. text-align:left;
  3713. }
  3714. #u29570 .text {
  3715. position:absolute;
  3716. align-self:center;
  3717. padding:2px 8px 2px 8px;
  3718. box-sizing:border-box;
  3719. width:100%;
  3720. }
  3721. #u29570_text {
  3722. border-width:0px;
  3723. word-wrap:break-word;
  3724. text-transform:none;
  3725. visibility:hidden;
  3726. }
  3727. #u29571_input {
  3728. position:absolute;
  3729. left:0px;
  3730. top:0px;
  3731. width:373px;
  3732. height:38px;
  3733. padding:2px 2px 2px 2px;
  3734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3735. font-weight:400;
  3736. font-style:normal;
  3737. font-size:14px;
  3738. letter-spacing:normal;
  3739. color:#000000;
  3740. vertical-align:none;
  3741. text-align:left;
  3742. text-transform:none;
  3743. background-color:transparent;
  3744. border-color:transparent;
  3745. }
  3746. #u29571_input.hint {
  3747. position:absolute;
  3748. left:0px;
  3749. top:0px;
  3750. width:373px;
  3751. height:38px;
  3752. padding:2px 2px 2px 2px;
  3753. font-family:"Microsoft YaHei", sans-serif;
  3754. font-weight:400;
  3755. font-style:normal;
  3756. font-size:12px;
  3757. letter-spacing:normal;
  3758. color:#AAAAAA;
  3759. vertical-align:none;
  3760. text-align:left;
  3761. text-transform:none;
  3762. background-color:transparent;
  3763. border-color:transparent;
  3764. }
  3765. #u29571_input.disabled {
  3766. position:absolute;
  3767. left:0px;
  3768. top:0px;
  3769. width:373px;
  3770. height:38px;
  3771. padding:2px 2px 2px 2px;
  3772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3773. font-weight:400;
  3774. font-style:normal;
  3775. font-size:14px;
  3776. letter-spacing:normal;
  3777. color:#000000;
  3778. vertical-align:none;
  3779. text-align:left;
  3780. text-transform:none;
  3781. background-color:transparent;
  3782. border-color:transparent;
  3783. }
  3784. #u29571_input.hint.disabled {
  3785. position:absolute;
  3786. left:0px;
  3787. top:0px;
  3788. width:373px;
  3789. height:38px;
  3790. padding:2px 2px 2px 2px;
  3791. font-family:"Microsoft YaHei", sans-serif;
  3792. font-weight:400;
  3793. font-style:normal;
  3794. font-size:12px;
  3795. letter-spacing:normal;
  3796. color:#AAAAAA;
  3797. vertical-align:none;
  3798. text-align:left;
  3799. text-transform:none;
  3800. background-color:transparent;
  3801. border-color:transparent;
  3802. }
  3803. #u29571_div {
  3804. border-width:0px;
  3805. position:absolute;
  3806. left:0px;
  3807. top:0px;
  3808. width:373px;
  3809. height:38px;
  3810. background:inherit;
  3811. background-color:rgba(255, 255, 255, 1);
  3812. border-radius:0px;
  3813. filter:drop-shadow(none);
  3814. transition:none;
  3815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3816. font-weight:400;
  3817. font-style:normal;
  3818. font-size:14px;
  3819. }
  3820. #u29571 {
  3821. border-width:0px;
  3822. position:absolute;
  3823. left:570px;
  3824. top:728px;
  3825. width:373px;
  3826. height:38px;
  3827. display:flex;
  3828. transition:none;
  3829. transform-origin:50% 50%;
  3830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3831. font-weight:400;
  3832. font-style:normal;
  3833. font-size:14px;
  3834. }
  3835. #u29571 .text {
  3836. position:absolute;
  3837. align-self:center;
  3838. padding:2px 2px 2px 2px;
  3839. box-sizing:border-box;
  3840. width:100%;
  3841. }
  3842. #u29571_div.hint {
  3843. border-width:0px;
  3844. position:absolute;
  3845. left:0px;
  3846. top:0px;
  3847. width:373px;
  3848. height:38px;
  3849. background:inherit;
  3850. background-color:rgba(255, 255, 255, 1);
  3851. border-radius:0px;
  3852. filter:drop-shadow(none);
  3853. transition:none;
  3854. font-family:"Microsoft YaHei", sans-serif;
  3855. font-weight:400;
  3856. font-style:normal;
  3857. font-size:14px;
  3858. }
  3859. #u29571.hint {
  3860. }
  3861. #u29571_div.disabled {
  3862. border-width:0px;
  3863. position:absolute;
  3864. left:0px;
  3865. top:0px;
  3866. width:373px;
  3867. height:38px;
  3868. background:inherit;
  3869. background-color:rgba(240, 240, 240, 1);
  3870. border-radius:0px;
  3871. filter:drop-shadow(none);
  3872. transition:none;
  3873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3874. font-weight:400;
  3875. font-style:normal;
  3876. font-size:14px;
  3877. }
  3878. #u29571.disabled {
  3879. }
  3880. #u29571_div.hint.disabled {
  3881. border-width:0px;
  3882. position:absolute;
  3883. left:0px;
  3884. top:0px;
  3885. width:373px;
  3886. height:38px;
  3887. background:inherit;
  3888. background-color:rgba(240, 240, 240, 1);
  3889. border-radius:0px;
  3890. filter:drop-shadow(none);
  3891. transition:none;
  3892. font-family:"Microsoft YaHei", sans-serif;
  3893. font-weight:400;
  3894. font-style:normal;
  3895. font-size:14px;
  3896. }
  3897. #u29571.hint.disabled {
  3898. }
  3899. #u29572_div {
  3900. border-width:0px;
  3901. position:absolute;
  3902. left:0px;
  3903. top:0px;
  3904. width:88px;
  3905. height:40px;
  3906. background:inherit;
  3907. background-color:rgba(255, 255, 255, 0);
  3908. border-top:0px;
  3909. border-right:0px;
  3910. border-bottom:0px;
  3911. border-radius:0px;
  3912. border-top-left-radius:0px;
  3913. border-bottom-left-radius:0px;
  3914. filter:drop-shadow(none);
  3915. transition:none;
  3916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3917. font-weight:400;
  3918. font-style:normal;
  3919. font-size:14px;
  3920. color:#7F7F7F;
  3921. text-align:right;
  3922. }
  3923. #u29572 {
  3924. border-width:0px;
  3925. position:absolute;
  3926. left:457px;
  3927. top:676px;
  3928. width:88px;
  3929. height:40px;
  3930. display:flex;
  3931. transition:none;
  3932. transform-origin:50% 50%;
  3933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3934. font-weight:400;
  3935. font-style:normal;
  3936. font-size:14px;
  3937. color:#7F7F7F;
  3938. text-align:right;
  3939. }
  3940. #u29572 .text {
  3941. position:absolute;
  3942. align-self:center;
  3943. padding:5px 10px 5px 0px;
  3944. box-sizing:border-box;
  3945. width:100%;
  3946. }
  3947. #u29572_text {
  3948. border-width:0px;
  3949. white-space:nowrap;
  3950. text-transform:none;
  3951. }
  3952. #u29573 {
  3953. border-width:0px;
  3954. position:absolute;
  3955. left:0px;
  3956. top:0px;
  3957. width:0px;
  3958. height:0px;
  3959. }
  3960. #u29574_div {
  3961. border-width:0px;
  3962. position:absolute;
  3963. left:0px;
  3964. top:0px;
  3965. width:400px;
  3966. height:40px;
  3967. background:inherit;
  3968. background-color:rgba(255, 255, 255, 1);
  3969. box-sizing:border-box;
  3970. border-width:1px;
  3971. border-style:solid;
  3972. border-color:rgba(201, 201, 201, 1);
  3973. border-radius:4px;
  3974. filter:drop-shadow(none);
  3975. transition:none;
  3976. font-family:"Microsoft YaHei", sans-serif;
  3977. font-weight:400;
  3978. font-style:normal;
  3979. font-size:14px;
  3980. color:#CCCCCC;
  3981. text-align:left;
  3982. }
  3983. #u29574 {
  3984. border-width:0px;
  3985. position:absolute;
  3986. left:555px;
  3987. top:677px;
  3988. width:400px;
  3989. height:40px;
  3990. display:flex;
  3991. transition:none;
  3992. transform-origin:50% 50%;
  3993. font-family:"Microsoft YaHei", sans-serif;
  3994. font-weight:400;
  3995. font-style:normal;
  3996. font-size:14px;
  3997. color:#CCCCCC;
  3998. text-align:left;
  3999. }
  4000. #u29574 .text {
  4001. position:absolute;
  4002. align-self:center;
  4003. padding:2px 8px 2px 8px;
  4004. box-sizing:border-box;
  4005. width:100%;
  4006. }
  4007. #u29574_text {
  4008. border-width:0px;
  4009. word-wrap:break-word;
  4010. text-transform:none;
  4011. visibility:hidden;
  4012. }
  4013. #u29575_input {
  4014. position:absolute;
  4015. left:0px;
  4016. top:0px;
  4017. width:388px;
  4018. height:22px;
  4019. padding:2px 2px 2px 2px;
  4020. font-family:'ArialMT', 'Arial', sans-serif;
  4021. font-weight:400;
  4022. font-style:normal;
  4023. font-size:13px;
  4024. letter-spacing:normal;
  4025. color:#000000;
  4026. vertical-align:none;
  4027. text-align:left;
  4028. text-transform:none;
  4029. background-color:transparent;
  4030. border-color:transparent;
  4031. }
  4032. #u29575_input.disabled {
  4033. position:absolute;
  4034. left:0px;
  4035. top:0px;
  4036. width:388px;
  4037. height:22px;
  4038. padding:2px 2px 2px 2px;
  4039. font-family:'ArialMT', 'Arial', sans-serif;
  4040. font-weight:400;
  4041. font-style:normal;
  4042. font-size:13px;
  4043. letter-spacing:normal;
  4044. color:#000000;
  4045. vertical-align:none;
  4046. text-align:left;
  4047. text-transform:none;
  4048. background-color:transparent;
  4049. border-color:transparent;
  4050. }
  4051. #u29575_div {
  4052. border-width:0px;
  4053. position:absolute;
  4054. left:0px;
  4055. top:0px;
  4056. width:388px;
  4057. height:22px;
  4058. background:inherit;
  4059. background-color:rgba(255, 255, 255, 1);
  4060. border-radius:0px;
  4061. filter:drop-shadow(none);
  4062. transition:none;
  4063. }
  4064. #u29575 {
  4065. border-width:0px;
  4066. position:absolute;
  4067. left:561px;
  4068. top:686px;
  4069. width:388px;
  4070. height:22px;
  4071. display:flex;
  4072. transition:none;
  4073. transform-origin:50% 50%;
  4074. }
  4075. #u29575 .text {
  4076. position:absolute;
  4077. align-self:flex-start;
  4078. padding:2px 2px 2px 2px;
  4079. box-sizing:border-box;
  4080. width:100%;
  4081. }
  4082. #u29575_div.disabled {
  4083. border-width:0px;
  4084. position:absolute;
  4085. left:0px;
  4086. top:0px;
  4087. width:388px;
  4088. height:22px;
  4089. background:inherit;
  4090. background-color:rgba(240, 240, 240, 1);
  4091. border-radius:0px;
  4092. filter:drop-shadow(none);
  4093. transition:none;
  4094. }
  4095. #u29575.disabled {
  4096. }
  4097. .u29575_input_option {
  4098. }
  4099. #u29576_div {
  4100. border-width:0px;
  4101. position:absolute;
  4102. left:0px;
  4103. top:0px;
  4104. width:81px;
  4105. height:40px;
  4106. background:inherit;
  4107. background-color:rgba(255, 255, 255, 0);
  4108. border-top:0px;
  4109. border-right:0px;
  4110. border-bottom:0px;
  4111. border-radius:0px;
  4112. border-top-left-radius:0px;
  4113. border-bottom-left-radius:0px;
  4114. filter:drop-shadow(none);
  4115. transition:none;
  4116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4117. font-weight:400;
  4118. font-style:normal;
  4119. font-size:14px;
  4120. color:#7F7F7F;
  4121. text-align:right;
  4122. }
  4123. #u29576 {
  4124. border-width:0px;
  4125. position:absolute;
  4126. left:464px;
  4127. top:777px;
  4128. width:81px;
  4129. height:40px;
  4130. display:flex;
  4131. transition:none;
  4132. transform-origin:50% 50%;
  4133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4134. font-weight:400;
  4135. font-style:normal;
  4136. font-size:14px;
  4137. color:#7F7F7F;
  4138. text-align:right;
  4139. }
  4140. #u29576 .text {
  4141. position:absolute;
  4142. align-self:center;
  4143. padding:5px 10px 5px 0px;
  4144. box-sizing:border-box;
  4145. width:100%;
  4146. }
  4147. #u29576_text {
  4148. border-width:0px;
  4149. white-space:nowrap;
  4150. text-transform:none;
  4151. }
  4152. #u29577 {
  4153. border-width:0px;
  4154. position:absolute;
  4155. left:0px;
  4156. top:0px;
  4157. width:0px;
  4158. height:0px;
  4159. }
  4160. #u29578_div {
  4161. border-width:0px;
  4162. position:absolute;
  4163. left:0px;
  4164. top:0px;
  4165. width:400px;
  4166. height:40px;
  4167. background:inherit;
  4168. background-color:rgba(242, 242, 242, 1);
  4169. box-sizing:border-box;
  4170. border-width:1px;
  4171. border-style:solid;
  4172. border-color:rgba(201, 201, 201, 1);
  4173. border-radius:4px;
  4174. filter:drop-shadow(none);
  4175. transition:none;
  4176. font-family:"Microsoft YaHei", sans-serif;
  4177. font-weight:400;
  4178. font-style:normal;
  4179. font-size:14px;
  4180. color:#CCCCCC;
  4181. text-align:left;
  4182. }
  4183. #u29578 {
  4184. border-width:0px;
  4185. position:absolute;
  4186. left:555px;
  4187. top:778px;
  4188. width:400px;
  4189. height:40px;
  4190. display:flex;
  4191. transition:none;
  4192. transform-origin:50% 50%;
  4193. font-family:"Microsoft YaHei", sans-serif;
  4194. font-weight:400;
  4195. font-style:normal;
  4196. font-size:14px;
  4197. color:#CCCCCC;
  4198. text-align:left;
  4199. }
  4200. #u29578 .text {
  4201. position:absolute;
  4202. align-self:center;
  4203. padding:2px 8px 2px 8px;
  4204. box-sizing:border-box;
  4205. width:100%;
  4206. }
  4207. #u29578_text {
  4208. border-width:0px;
  4209. word-wrap:break-word;
  4210. text-transform:none;
  4211. visibility:hidden;
  4212. }
  4213. #u29579_input {
  4214. position:absolute;
  4215. left:0px;
  4216. top:0px;
  4217. width:373px;
  4218. height:38px;
  4219. padding:2px 2px 2px 2px;
  4220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4221. font-weight:400;
  4222. font-style:normal;
  4223. font-size:14px;
  4224. letter-spacing:normal;
  4225. color:#000000;
  4226. vertical-align:none;
  4227. text-align:left;
  4228. text-transform:none;
  4229. background-color:transparent;
  4230. border-color:transparent;
  4231. }
  4232. #u29579_input.hint {
  4233. position:absolute;
  4234. left:0px;
  4235. top:0px;
  4236. width:373px;
  4237. height:38px;
  4238. padding:2px 2px 2px 2px;
  4239. font-family:"Microsoft YaHei", sans-serif;
  4240. font-weight:400;
  4241. font-style:normal;
  4242. font-size:12px;
  4243. letter-spacing:normal;
  4244. color:#AAAAAA;
  4245. vertical-align:none;
  4246. text-align:left;
  4247. text-transform:none;
  4248. background-color:transparent;
  4249. border-color:transparent;
  4250. }
  4251. #u29579_input.disabled {
  4252. position:absolute;
  4253. left:0px;
  4254. top:0px;
  4255. width:373px;
  4256. height:38px;
  4257. padding:2px 2px 2px 2px;
  4258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4259. font-weight:400;
  4260. font-style:normal;
  4261. font-size:14px;
  4262. letter-spacing:normal;
  4263. color:#000000;
  4264. vertical-align:none;
  4265. text-align:left;
  4266. text-transform:none;
  4267. background-color:transparent;
  4268. border-color:transparent;
  4269. }
  4270. #u29579_input.hint.disabled {
  4271. position:absolute;
  4272. left:0px;
  4273. top:0px;
  4274. width:373px;
  4275. height:38px;
  4276. padding:2px 2px 2px 2px;
  4277. font-family:"Microsoft YaHei", sans-serif;
  4278. font-weight:400;
  4279. font-style:normal;
  4280. font-size:12px;
  4281. letter-spacing:normal;
  4282. color:#AAAAAA;
  4283. vertical-align:none;
  4284. text-align:left;
  4285. text-transform:none;
  4286. background-color:transparent;
  4287. border-color:transparent;
  4288. }
  4289. #u29579_div {
  4290. border-width:0px;
  4291. position:absolute;
  4292. left:0px;
  4293. top:0px;
  4294. width:373px;
  4295. height:38px;
  4296. background:inherit;
  4297. background-color:rgba(242, 242, 242, 1);
  4298. border-radius:0px;
  4299. filter:drop-shadow(none);
  4300. transition:none;
  4301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4302. font-weight:400;
  4303. font-style:normal;
  4304. font-size:14px;
  4305. }
  4306. #u29579 {
  4307. border-width:0px;
  4308. position:absolute;
  4309. left:570px;
  4310. top:779px;
  4311. width:373px;
  4312. height:38px;
  4313. display:flex;
  4314. transition:none;
  4315. transform-origin:50% 50%;
  4316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4317. font-weight:400;
  4318. font-style:normal;
  4319. font-size:14px;
  4320. }
  4321. #u29579 .text {
  4322. position:absolute;
  4323. align-self:center;
  4324. padding:2px 2px 2px 2px;
  4325. box-sizing:border-box;
  4326. width:100%;
  4327. }
  4328. #u29579_div.hint {
  4329. border-width:0px;
  4330. position:absolute;
  4331. left:0px;
  4332. top:0px;
  4333. width:373px;
  4334. height:38px;
  4335. background:inherit;
  4336. background-color:rgba(242, 242, 242, 1);
  4337. border-radius:0px;
  4338. filter:drop-shadow(none);
  4339. transition:none;
  4340. font-family:"Microsoft YaHei", sans-serif;
  4341. font-weight:400;
  4342. font-style:normal;
  4343. font-size:14px;
  4344. }
  4345. #u29579.hint {
  4346. }
  4347. #u29579_div.disabled {
  4348. border-width:0px;
  4349. position:absolute;
  4350. left:0px;
  4351. top:0px;
  4352. width:373px;
  4353. height:38px;
  4354. background:inherit;
  4355. background-color:rgba(240, 240, 240, 1);
  4356. border-radius:0px;
  4357. filter:drop-shadow(none);
  4358. transition:none;
  4359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4360. font-weight:400;
  4361. font-style:normal;
  4362. font-size:14px;
  4363. }
  4364. #u29579.disabled {
  4365. }
  4366. #u29579_div.hint.disabled {
  4367. border-width:0px;
  4368. position:absolute;
  4369. left:0px;
  4370. top:0px;
  4371. width:373px;
  4372. height:38px;
  4373. background:inherit;
  4374. background-color:rgba(240, 240, 240, 1);
  4375. border-radius:0px;
  4376. filter:drop-shadow(none);
  4377. transition:none;
  4378. font-family:"Microsoft YaHei", sans-serif;
  4379. font-weight:400;
  4380. font-style:normal;
  4381. font-size:14px;
  4382. }
  4383. #u29579.hint.disabled {
  4384. }
  4385. #u29580_div {
  4386. border-width:0px;
  4387. position:absolute;
  4388. left:0px;
  4389. top:0px;
  4390. width:88px;
  4391. height:40px;
  4392. background:inherit;
  4393. background-color:rgba(255, 255, 255, 0);
  4394. border-top:0px;
  4395. border-right:0px;
  4396. border-bottom:0px;
  4397. border-radius:0px;
  4398. border-top-left-radius:0px;
  4399. border-bottom-left-radius:0px;
  4400. filter:drop-shadow(none);
  4401. transition:none;
  4402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4403. font-weight:400;
  4404. font-style:normal;
  4405. font-size:14px;
  4406. color:#7F7F7F;
  4407. text-align:right;
  4408. }
  4409. #u29580 {
  4410. border-width:0px;
  4411. position:absolute;
  4412. left:457px;
  4413. top:626px;
  4414. width:88px;
  4415. height:40px;
  4416. display:flex;
  4417. transition:none;
  4418. transform-origin:50% 50%;
  4419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4420. font-weight:400;
  4421. font-style:normal;
  4422. font-size:14px;
  4423. color:#7F7F7F;
  4424. text-align:right;
  4425. }
  4426. #u29580 .text {
  4427. position:absolute;
  4428. align-self:center;
  4429. padding:5px 10px 5px 0px;
  4430. box-sizing:border-box;
  4431. width:100%;
  4432. }
  4433. #u29580_text {
  4434. border-width:0px;
  4435. white-space:nowrap;
  4436. text-transform:none;
  4437. }
  4438. #u29581 {
  4439. border-width:0px;
  4440. position:absolute;
  4441. left:0px;
  4442. top:0px;
  4443. width:0px;
  4444. height:0px;
  4445. }
  4446. #u29582_div {
  4447. border-width:0px;
  4448. position:absolute;
  4449. left:0px;
  4450. top:0px;
  4451. width:400px;
  4452. height:40px;
  4453. background:inherit;
  4454. background-color:rgba(255, 255, 255, 1);
  4455. box-sizing:border-box;
  4456. border-width:1px;
  4457. border-style:solid;
  4458. border-color:rgba(201, 201, 201, 1);
  4459. border-radius:4px;
  4460. filter:drop-shadow(none);
  4461. transition:none;
  4462. font-family:"Microsoft YaHei", sans-serif;
  4463. font-weight:400;
  4464. font-style:normal;
  4465. font-size:14px;
  4466. color:#CCCCCC;
  4467. text-align:left;
  4468. }
  4469. #u29582 {
  4470. border-width:0px;
  4471. position:absolute;
  4472. left:555px;
  4473. top:627px;
  4474. width:400px;
  4475. height:40px;
  4476. display:flex;
  4477. transition:none;
  4478. transform-origin:50% 50%;
  4479. font-family:"Microsoft YaHei", sans-serif;
  4480. font-weight:400;
  4481. font-style:normal;
  4482. font-size:14px;
  4483. color:#CCCCCC;
  4484. text-align:left;
  4485. }
  4486. #u29582 .text {
  4487. position:absolute;
  4488. align-self:center;
  4489. padding:2px 8px 2px 8px;
  4490. box-sizing:border-box;
  4491. width:100%;
  4492. }
  4493. #u29582_text {
  4494. border-width:0px;
  4495. word-wrap:break-word;
  4496. text-transform:none;
  4497. visibility:hidden;
  4498. }
  4499. #u29583_input {
  4500. position:absolute;
  4501. left:0px;
  4502. top:0px;
  4503. width:388px;
  4504. height:22px;
  4505. padding:2px 2px 2px 2px;
  4506. font-family:'ArialMT', 'Arial', sans-serif;
  4507. font-weight:400;
  4508. font-style:normal;
  4509. font-size:13px;
  4510. letter-spacing:normal;
  4511. color:#000000;
  4512. vertical-align:none;
  4513. text-align:left;
  4514. text-transform:none;
  4515. background-color:transparent;
  4516. border-color:transparent;
  4517. }
  4518. #u29583_input.disabled {
  4519. position:absolute;
  4520. left:0px;
  4521. top:0px;
  4522. width:388px;
  4523. height:22px;
  4524. padding:2px 2px 2px 2px;
  4525. font-family:'ArialMT', 'Arial', sans-serif;
  4526. font-weight:400;
  4527. font-style:normal;
  4528. font-size:13px;
  4529. letter-spacing:normal;
  4530. color:#000000;
  4531. vertical-align:none;
  4532. text-align:left;
  4533. text-transform:none;
  4534. background-color:transparent;
  4535. border-color:transparent;
  4536. }
  4537. #u29583_div {
  4538. border-width:0px;
  4539. position:absolute;
  4540. left:0px;
  4541. top:0px;
  4542. width:388px;
  4543. height:22px;
  4544. background:inherit;
  4545. background-color:rgba(255, 255, 255, 1);
  4546. border-radius:0px;
  4547. filter:drop-shadow(none);
  4548. transition:none;
  4549. }
  4550. #u29583 {
  4551. border-width:0px;
  4552. position:absolute;
  4553. left:561px;
  4554. top:636px;
  4555. width:388px;
  4556. height:22px;
  4557. display:flex;
  4558. transition:none;
  4559. transform-origin:50% 50%;
  4560. }
  4561. #u29583 .text {
  4562. position:absolute;
  4563. align-self:flex-start;
  4564. padding:2px 2px 2px 2px;
  4565. box-sizing:border-box;
  4566. width:100%;
  4567. }
  4568. #u29583_div.disabled {
  4569. border-width:0px;
  4570. position:absolute;
  4571. left:0px;
  4572. top:0px;
  4573. width:388px;
  4574. height:22px;
  4575. background:inherit;
  4576. background-color:rgba(240, 240, 240, 1);
  4577. border-radius:0px;
  4578. filter:drop-shadow(none);
  4579. transition:none;
  4580. }
  4581. #u29583.disabled {
  4582. }
  4583. .u29583_input_option {
  4584. }
  4585. #u29584 {
  4586. border-width:0px;
  4587. position:absolute;
  4588. left:0px;
  4589. top:0px;
  4590. width:0px;
  4591. height:0px;
  4592. }
  4593. #u29585_div {
  4594. border-width:0px;
  4595. position:absolute;
  4596. left:0px;
  4597. top:0px;
  4598. width:60px;
  4599. height:30px;
  4600. background:inherit;
  4601. background-color:rgba(24, 144, 255, 1);
  4602. border-radius:4px;
  4603. filter:drop-shadow(none);
  4604. transition:none;
  4605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4606. font-weight:400;
  4607. font-style:normal;
  4608. font-size:14px;
  4609. color:#FFFFFF;
  4610. }
  4611. #u29585 {
  4612. border-width:0px;
  4613. position:absolute;
  4614. left:871px;
  4615. top:160px;
  4616. width:60px;
  4617. height:30px;
  4618. display:flex;
  4619. transition:none;
  4620. transform-origin:50% 50%;
  4621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4622. font-weight:400;
  4623. font-style:normal;
  4624. font-size:14px;
  4625. color:#FFFFFF;
  4626. }
  4627. #u29585 .text {
  4628. position:absolute;
  4629. align-self:center;
  4630. padding:2px 2px 2px 2px;
  4631. box-sizing:border-box;
  4632. width:100%;
  4633. }
  4634. #u29585_text {
  4635. border-width:0px;
  4636. word-wrap:break-word;
  4637. text-transform:none;
  4638. }
  4639. #u29586_div {
  4640. border-width:0px;
  4641. position:absolute;
  4642. left:0px;
  4643. top:0px;
  4644. width:60px;
  4645. height:30px;
  4646. background:inherit;
  4647. background-color:rgba(255, 255, 255, 1);
  4648. box-sizing:border-box;
  4649. border-width:1px;
  4650. border-style:solid;
  4651. border-color:rgba(170, 170, 170, 1);
  4652. border-radius:4px;
  4653. filter:drop-shadow(none);
  4654. transition:none;
  4655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4656. font-weight:400;
  4657. font-style:normal;
  4658. font-size:14px;
  4659. }
  4660. #u29586 {
  4661. border-width:0px;
  4662. position:absolute;
  4663. left:941px;
  4664. top:160px;
  4665. width:60px;
  4666. height:30px;
  4667. display:flex;
  4668. transition:none;
  4669. transform-origin:50% 50%;
  4670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4671. font-weight:400;
  4672. font-style:normal;
  4673. font-size:14px;
  4674. }
  4675. #u29586 .text {
  4676. position:absolute;
  4677. align-self:center;
  4678. padding:2px 2px 2px 2px;
  4679. box-sizing:border-box;
  4680. width:100%;
  4681. }
  4682. #u29586_text {
  4683. border-width:0px;
  4684. word-wrap:break-word;
  4685. text-transform:none;
  4686. }
  4687. #u29587 {
  4688. border-width:0px;
  4689. position:absolute;
  4690. left:0px;
  4691. top:0px;
  4692. width:0px;
  4693. height:0px;
  4694. }
  4695. #u29588_div {
  4696. border-width:0px;
  4697. position:absolute;
  4698. left:0px;
  4699. top:0px;
  4700. width:160px;
  4701. height:30px;
  4702. background:inherit;
  4703. background-color:rgba(255, 255, 255, 1);
  4704. box-sizing:border-box;
  4705. border-width:1px;
  4706. border-style:solid;
  4707. border-color:rgba(215, 215, 215, 1);
  4708. border-radius:4px;
  4709. filter:drop-shadow(none);
  4710. transition:none;
  4711. font-size:14px;
  4712. }
  4713. #u29588 {
  4714. border-width:0px;
  4715. position:absolute;
  4716. left:701px;
  4717. top:160px;
  4718. width:160px;
  4719. height:30px;
  4720. display:flex;
  4721. transition:none;
  4722. transform-origin:50% 50%;
  4723. font-size:14px;
  4724. }
  4725. #u29588 .text {
  4726. position:absolute;
  4727. align-self:center;
  4728. padding:2px 2px 2px 2px;
  4729. box-sizing:border-box;
  4730. width:100%;
  4731. }
  4732. #u29588_text {
  4733. border-width:0px;
  4734. word-wrap:break-word;
  4735. text-transform:none;
  4736. visibility:hidden;
  4737. }
  4738. #u29589_input {
  4739. position:absolute;
  4740. left:0px;
  4741. top:0px;
  4742. width:153px;
  4743. height:23px;
  4744. padding:2px 2px 2px 2px;
  4745. font-family:'ArialMT', 'Arial', sans-serif;
  4746. font-weight:400;
  4747. font-style:normal;
  4748. font-size:14px;
  4749. letter-spacing:normal;
  4750. color:#AAAAAA;
  4751. vertical-align:none;
  4752. text-align:left;
  4753. text-transform:none;
  4754. background-color:transparent;
  4755. border-color:transparent;
  4756. }
  4757. #u29589_input.disabled {
  4758. position:absolute;
  4759. left:0px;
  4760. top:0px;
  4761. width:153px;
  4762. height:23px;
  4763. padding:2px 2px 2px 2px;
  4764. font-family:'ArialMT', 'Arial', sans-serif;
  4765. font-weight:400;
  4766. font-style:normal;
  4767. font-size:14px;
  4768. letter-spacing:normal;
  4769. color:#AAAAAA;
  4770. vertical-align:none;
  4771. text-align:left;
  4772. text-transform:none;
  4773. background-color:transparent;
  4774. border-color:transparent;
  4775. }
  4776. #u29589_div {
  4777. border-width:0px;
  4778. position:absolute;
  4779. left:0px;
  4780. top:0px;
  4781. width:153px;
  4782. height:23px;
  4783. background:inherit;
  4784. background-color:rgba(255, 255, 255, 1);
  4785. border-radius:0px;
  4786. filter:drop-shadow(none);
  4787. transition:none;
  4788. font-size:14px;
  4789. color:#AAAAAA;
  4790. }
  4791. #u29589 {
  4792. border-width:0px;
  4793. position:absolute;
  4794. left:706px;
  4795. top:162px;
  4796. width:153px;
  4797. height:23px;
  4798. display:flex;
  4799. transition:none;
  4800. transform-origin:50% 50%;
  4801. font-size:14px;
  4802. color:#AAAAAA;
  4803. }
  4804. #u29589 .text {
  4805. position:absolute;
  4806. align-self:flex-start;
  4807. padding:2px 2px 2px 2px;
  4808. box-sizing:border-box;
  4809. width:100%;
  4810. }
  4811. #u29589_div.disabled {
  4812. border-width:0px;
  4813. position:absolute;
  4814. left:0px;
  4815. top:0px;
  4816. width:153px;
  4817. height:23px;
  4818. background:inherit;
  4819. background-color:rgba(240, 240, 240, 1);
  4820. border-radius:0px;
  4821. filter:drop-shadow(none);
  4822. transition:none;
  4823. font-size:14px;
  4824. color:#AAAAAA;
  4825. }
  4826. #u29589.disabled {
  4827. }
  4828. .u29589_input_option {
  4829. font-size:14px;
  4830. }
  4831. #u29590 {
  4832. border-width:0px;
  4833. position:absolute;
  4834. left:0px;
  4835. top:0px;
  4836. width:0px;
  4837. height:0px;
  4838. }
  4839. #u29591_div {
  4840. border-width:0px;
  4841. position:absolute;
  4842. left:0px;
  4843. top:0px;
  4844. width:160px;
  4845. height:30px;
  4846. background:inherit;
  4847. background-color:rgba(255, 255, 255, 1);
  4848. box-sizing:border-box;
  4849. border-width:1px;
  4850. border-style:solid;
  4851. border-color:rgba(201, 201, 201, 1);
  4852. border-radius:4px;
  4853. filter:drop-shadow(none);
  4854. transition:none;
  4855. font-family:"Microsoft YaHei", sans-serif;
  4856. font-weight:400;
  4857. font-style:normal;
  4858. font-size:14px;
  4859. color:#CCCCCC;
  4860. text-align:left;
  4861. }
  4862. #u29591 {
  4863. border-width:0px;
  4864. position:absolute;
  4865. left:531px;
  4866. top:160px;
  4867. width:160px;
  4868. height:30px;
  4869. display:flex;
  4870. transition:none;
  4871. transform-origin:50% 50%;
  4872. font-family:"Microsoft YaHei", sans-serif;
  4873. font-weight:400;
  4874. font-style:normal;
  4875. font-size:14px;
  4876. color:#CCCCCC;
  4877. text-align:left;
  4878. }
  4879. #u29591 .text {
  4880. position:absolute;
  4881. align-self:center;
  4882. padding:2px 8px 2px 8px;
  4883. box-sizing:border-box;
  4884. width:100%;
  4885. }
  4886. #u29591_text {
  4887. border-width:0px;
  4888. word-wrap:break-word;
  4889. text-transform:none;
  4890. visibility:hidden;
  4891. }
  4892. #u29592_input {
  4893. position:absolute;
  4894. left:0px;
  4895. top:0px;
  4896. width:150px;
  4897. height:28px;
  4898. padding:2px 2px 2px 2px;
  4899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4900. font-weight:400;
  4901. font-style:normal;
  4902. font-size:14px;
  4903. letter-spacing:normal;
  4904. color:#000000;
  4905. vertical-align:none;
  4906. text-align:left;
  4907. text-transform:none;
  4908. background-color:transparent;
  4909. border-color:transparent;
  4910. }
  4911. #u29592_input.hint {
  4912. position:absolute;
  4913. left:0px;
  4914. top:0px;
  4915. width:150px;
  4916. height:28px;
  4917. padding:2px 2px 2px 2px;
  4918. font-family:"Microsoft YaHei", sans-serif;
  4919. font-weight:400;
  4920. font-style:normal;
  4921. font-size:12px;
  4922. letter-spacing:normal;
  4923. color:#AAAAAA;
  4924. vertical-align:none;
  4925. text-align:left;
  4926. text-transform:none;
  4927. background-color:transparent;
  4928. border-color:transparent;
  4929. }
  4930. #u29592_input.disabled {
  4931. position:absolute;
  4932. left:0px;
  4933. top:0px;
  4934. width:150px;
  4935. height:28px;
  4936. padding:2px 2px 2px 2px;
  4937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4938. font-weight:400;
  4939. font-style:normal;
  4940. font-size:14px;
  4941. letter-spacing:normal;
  4942. color:#000000;
  4943. vertical-align:none;
  4944. text-align:left;
  4945. text-transform:none;
  4946. background-color:transparent;
  4947. border-color:transparent;
  4948. }
  4949. #u29592_input.hint.disabled {
  4950. position:absolute;
  4951. left:0px;
  4952. top:0px;
  4953. width:150px;
  4954. height:28px;
  4955. padding:2px 2px 2px 2px;
  4956. font-family:"Microsoft YaHei", sans-serif;
  4957. font-weight:400;
  4958. font-style:normal;
  4959. font-size:12px;
  4960. letter-spacing:normal;
  4961. color:#AAAAAA;
  4962. vertical-align:none;
  4963. text-align:left;
  4964. text-transform:none;
  4965. background-color:transparent;
  4966. border-color:transparent;
  4967. }
  4968. #u29592_div {
  4969. border-width:0px;
  4970. position:absolute;
  4971. left:0px;
  4972. top:0px;
  4973. width:150px;
  4974. height:28px;
  4975. background:inherit;
  4976. background-color:rgba(255, 255, 255, 1);
  4977. border-radius:0px;
  4978. filter:drop-shadow(none);
  4979. transition:none;
  4980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4981. font-weight:400;
  4982. font-style:normal;
  4983. font-size:14px;
  4984. }
  4985. #u29592 {
  4986. border-width:0px;
  4987. position:absolute;
  4988. left:537px;
  4989. top:161px;
  4990. width:150px;
  4991. height:28px;
  4992. display:flex;
  4993. transition:none;
  4994. transform-origin:50% 50%;
  4995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4996. font-weight:400;
  4997. font-style:normal;
  4998. font-size:14px;
  4999. }
  5000. #u29592 .text {
  5001. position:absolute;
  5002. align-self:center;
  5003. padding:2px 2px 2px 2px;
  5004. box-sizing:border-box;
  5005. width:100%;
  5006. }
  5007. #u29592_div.hint {
  5008. border-width:0px;
  5009. position:absolute;
  5010. left:0px;
  5011. top:0px;
  5012. width:150px;
  5013. height:28px;
  5014. background:inherit;
  5015. background-color:rgba(255, 255, 255, 1);
  5016. border-radius:0px;
  5017. filter:drop-shadow(none);
  5018. transition:none;
  5019. font-family:"Microsoft YaHei", sans-serif;
  5020. font-weight:400;
  5021. font-style:normal;
  5022. font-size:14px;
  5023. }
  5024. #u29592.hint {
  5025. }
  5026. #u29592_div.disabled {
  5027. border-width:0px;
  5028. position:absolute;
  5029. left:0px;
  5030. top:0px;
  5031. width:150px;
  5032. height:28px;
  5033. background:inherit;
  5034. background-color:rgba(240, 240, 240, 1);
  5035. border-radius:0px;
  5036. filter:drop-shadow(none);
  5037. transition:none;
  5038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5039. font-weight:400;
  5040. font-style:normal;
  5041. font-size:14px;
  5042. }
  5043. #u29592.disabled {
  5044. }
  5045. #u29592_div.hint.disabled {
  5046. border-width:0px;
  5047. position:absolute;
  5048. left:0px;
  5049. top:0px;
  5050. width:150px;
  5051. height:28px;
  5052. background:inherit;
  5053. background-color:rgba(240, 240, 240, 1);
  5054. border-radius:0px;
  5055. filter:drop-shadow(none);
  5056. transition:none;
  5057. font-family:"Microsoft YaHei", sans-serif;
  5058. font-weight:400;
  5059. font-style:normal;
  5060. font-size:14px;
  5061. }
  5062. #u29592.hint.disabled {
  5063. }
  5064. #u29593_div {
  5065. border-width:0px;
  5066. position:absolute;
  5067. left:0px;
  5068. top:0px;
  5069. width:57px;
  5070. height:50px;
  5071. background:inherit;
  5072. background-color:rgba(255, 255, 255, 0);
  5073. border-left:0px;
  5074. border-top:0px;
  5075. border-right:0px;
  5076. border-radius:0px;
  5077. border-bottom-right-radius:0px;
  5078. border-bottom-left-radius:0px;
  5079. filter:drop-shadow(none);
  5080. transition:none;
  5081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5082. font-weight:400;
  5083. font-style:normal;
  5084. font-size:14px;
  5085. line-height:40px;
  5086. }
  5087. #u29593 {
  5088. border-width:0px;
  5089. position:absolute;
  5090. left:763px;
  5091. top:51px;
  5092. width:57px;
  5093. height:50px;
  5094. display:flex;
  5095. transition:none;
  5096. transform-origin:50% 50%;
  5097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5098. font-weight:400;
  5099. font-style:normal;
  5100. font-size:14px;
  5101. line-height:40px;
  5102. }
  5103. #u29593 .text {
  5104. position:absolute;
  5105. align-self:center;
  5106. padding:0px 0px 0px 0px;
  5107. box-sizing:border-box;
  5108. width:100%;
  5109. }
  5110. #u29593_text {
  5111. border-width:0px;
  5112. white-space:nowrap;
  5113. text-transform:none;
  5114. }
  5115. #u29594 {
  5116. border-width:0px;
  5117. position:absolute;
  5118. left:120px;
  5119. top:50px;
  5120. width:200px;
  5121. height:1180px;
  5122. }
  5123. #u29595_div {
  5124. border-width:0px;
  5125. position:absolute;
  5126. left:0px;
  5127. top:0px;
  5128. width:200px;
  5129. height:1180px;
  5130. background:inherit;
  5131. background-color:rgba(255, 255, 255, 1);
  5132. border-radius:0px;
  5133. filter:drop-shadow(none);
  5134. transition:none;
  5135. }
  5136. #u29595 {
  5137. border-width:0px;
  5138. position:absolute;
  5139. left:0px;
  5140. top:0px;
  5141. width:200px;
  5142. height:1180px;
  5143. display:flex;
  5144. transition:none;
  5145. transform-origin:50% 50%;
  5146. }
  5147. #u29595 .text {
  5148. position:absolute;
  5149. align-self:center;
  5150. padding:2px 2px 2px 2px;
  5151. box-sizing:border-box;
  5152. width:100%;
  5153. }
  5154. #u29595_text {
  5155. border-width:0px;
  5156. word-wrap:break-word;
  5157. text-transform:none;
  5158. visibility:hidden;
  5159. }
  5160. #u29596_div {
  5161. border-width:0px;
  5162. position:absolute;
  5163. left:0px;
  5164. top:0px;
  5165. width:200px;
  5166. height:60px;
  5167. background:inherit;
  5168. background-color:rgba(224, 231, 247, 1);
  5169. border-radius:0px;
  5170. filter:drop-shadow(none);
  5171. transition:none;
  5172. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5173. font-weight:500;
  5174. font-style:normal;
  5175. font-size:18px;
  5176. }
  5177. #u29596 {
  5178. border-width:0px;
  5179. position:absolute;
  5180. left:0px;
  5181. top:0px;
  5182. width:200px;
  5183. height:60px;
  5184. display:flex;
  5185. transition:none;
  5186. transform-origin:50% 50%;
  5187. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5188. font-weight:500;
  5189. font-style:normal;
  5190. font-size:18px;
  5191. }
  5192. #u29596 .text {
  5193. position:absolute;
  5194. align-self:center;
  5195. padding:0px 0px 0px 20px;
  5196. box-sizing:border-box;
  5197. width:100%;
  5198. }
  5199. #u29596_text {
  5200. border-width:0px;
  5201. word-wrap:break-word;
  5202. text-transform:none;
  5203. }
  5204. #u29597_div {
  5205. border-width:0px;
  5206. position:absolute;
  5207. left:0px;
  5208. top:0px;
  5209. width:97px;
  5210. height:22px;
  5211. background:inherit;
  5212. background-color:rgba(255, 255, 255, 0);
  5213. border-radius:0px;
  5214. filter:drop-shadow(none);
  5215. transition:none;
  5216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5217. font-weight:400;
  5218. font-style:normal;
  5219. font-size:16px;
  5220. }
  5221. #u29597 {
  5222. border-width:0px;
  5223. position:absolute;
  5224. left:27px;
  5225. top:111px;
  5226. width:97px;
  5227. height:22px;
  5228. display:flex;
  5229. transition:none;
  5230. transform-origin:50% 50%;
  5231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5232. font-weight:400;
  5233. font-style:normal;
  5234. font-size:16px;
  5235. }
  5236. #u29597 .text {
  5237. position:absolute;
  5238. align-self:flex-start;
  5239. padding:0px 0px 0px 0px;
  5240. box-sizing:border-box;
  5241. width:100%;
  5242. }
  5243. #u29597_text {
  5244. border-width:0px;
  5245. white-space:nowrap;
  5246. text-transform:none;
  5247. }
  5248. #u29598_div {
  5249. border-width:0px;
  5250. position:absolute;
  5251. left:0px;
  5252. top:0px;
  5253. width:97px;
  5254. height:22px;
  5255. background:inherit;
  5256. background-color:rgba(255, 255, 255, 0);
  5257. border-radius:0px;
  5258. filter:drop-shadow(none);
  5259. transition:none;
  5260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5261. font-weight:400;
  5262. font-style:normal;
  5263. font-size:16px;
  5264. }
  5265. #u29598 {
  5266. border-width:0px;
  5267. position:absolute;
  5268. left:27px;
  5269. top:153px;
  5270. width:97px;
  5271. height:22px;
  5272. display:flex;
  5273. transition:none;
  5274. transform-origin:50% 50%;
  5275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5276. font-weight:400;
  5277. font-style:normal;
  5278. font-size:16px;
  5279. }
  5280. #u29598 .text {
  5281. position:absolute;
  5282. align-self:flex-start;
  5283. padding:0px 0px 0px 0px;
  5284. box-sizing:border-box;
  5285. width:100%;
  5286. }
  5287. #u29598_text {
  5288. border-width:0px;
  5289. white-space:nowrap;
  5290. text-transform:none;
  5291. }
  5292. #u29599_div {
  5293. border-width:0px;
  5294. position:absolute;
  5295. left:0px;
  5296. top:0px;
  5297. width:97px;
  5298. height:22px;
  5299. background:inherit;
  5300. background-color:rgba(255, 255, 255, 0);
  5301. border-radius:0px;
  5302. filter:drop-shadow(none);
  5303. transition:none;
  5304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5305. font-weight:400;
  5306. font-style:normal;
  5307. font-size:16px;
  5308. }
  5309. #u29599 {
  5310. border-width:0px;
  5311. position:absolute;
  5312. left:27px;
  5313. top:197px;
  5314. width:97px;
  5315. height:22px;
  5316. display:flex;
  5317. transition:none;
  5318. transform-origin:50% 50%;
  5319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5320. font-weight:400;
  5321. font-style:normal;
  5322. font-size:16px;
  5323. }
  5324. #u29599 .text {
  5325. position:absolute;
  5326. align-self:flex-start;
  5327. padding:0px 0px 0px 0px;
  5328. box-sizing:border-box;
  5329. width:100%;
  5330. }
  5331. #u29599_text {
  5332. border-width:0px;
  5333. white-space:nowrap;
  5334. text-transform:none;
  5335. }
  5336. #u29600_div {
  5337. border-width:0px;
  5338. position:absolute;
  5339. left:0px;
  5340. top:0px;
  5341. width:49px;
  5342. height:17px;
  5343. background:inherit;
  5344. background-color:rgba(255, 255, 255, 0);
  5345. border-radius:0px;
  5346. filter:drop-shadow(none);
  5347. transition:none;
  5348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5349. font-weight:400;
  5350. font-style:normal;
  5351. font-size:12px;
  5352. color:#AAAAAA;
  5353. }
  5354. #u29600 {
  5355. border-width:0px;
  5356. position:absolute;
  5357. left:27px;
  5358. top:75px;
  5359. width:49px;
  5360. height:17px;
  5361. display:flex;
  5362. transition:none;
  5363. transform-origin:50% 50%;
  5364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5365. font-weight:400;
  5366. font-style:normal;
  5367. font-size:12px;
  5368. color:#AAAAAA;
  5369. }
  5370. #u29600 .text {
  5371. position:absolute;
  5372. align-self:flex-start;
  5373. padding:0px 0px 0px 0px;
  5374. box-sizing:border-box;
  5375. width:100%;
  5376. }
  5377. #u29600_text {
  5378. border-width:0px;
  5379. white-space:nowrap;
  5380. text-transform:none;
  5381. }
  5382. #u29601_div {
  5383. border-width:0px;
  5384. position:absolute;
  5385. left:0px;
  5386. top:0px;
  5387. width:65px;
  5388. height:22px;
  5389. background:inherit;
  5390. background-color:rgba(255, 255, 255, 0);
  5391. border-radius:0px;
  5392. filter:drop-shadow(none);
  5393. transition:none;
  5394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5395. font-weight:400;
  5396. font-style:normal;
  5397. font-size:16px;
  5398. }
  5399. #u29601 {
  5400. border-width:0px;
  5401. position:absolute;
  5402. left:27px;
  5403. top:297px;
  5404. width:65px;
  5405. height:22px;
  5406. display:flex;
  5407. transition:none;
  5408. transform-origin:50% 50%;
  5409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5410. font-weight:400;
  5411. font-style:normal;
  5412. font-size:16px;
  5413. }
  5414. #u29601 .text {
  5415. position:absolute;
  5416. align-self:flex-start;
  5417. padding:0px 0px 0px 0px;
  5418. box-sizing:border-box;
  5419. width:100%;
  5420. }
  5421. #u29601_text {
  5422. border-width:0px;
  5423. white-space:nowrap;
  5424. text-transform:none;
  5425. }
  5426. #u29602_div {
  5427. border-width:0px;
  5428. position:absolute;
  5429. left:0px;
  5430. top:0px;
  5431. width:49px;
  5432. height:17px;
  5433. background:inherit;
  5434. background-color:rgba(255, 255, 255, 0);
  5435. border-radius:0px;
  5436. filter:drop-shadow(none);
  5437. transition:none;
  5438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5439. font-weight:400;
  5440. font-style:normal;
  5441. font-size:12px;
  5442. color:#AAAAAA;
  5443. }
  5444. #u29602 {
  5445. border-width:0px;
  5446. position:absolute;
  5447. left:27px;
  5448. top:261px;
  5449. width:49px;
  5450. height:17px;
  5451. display:flex;
  5452. transition:none;
  5453. transform-origin:50% 50%;
  5454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5455. font-weight:400;
  5456. font-style:normal;
  5457. font-size:12px;
  5458. color:#AAAAAA;
  5459. }
  5460. #u29602 .text {
  5461. position:absolute;
  5462. align-self:flex-start;
  5463. padding:0px 0px 0px 0px;
  5464. box-sizing:border-box;
  5465. width:100%;
  5466. }
  5467. #u29602_text {
  5468. border-width:0px;
  5469. white-space:nowrap;
  5470. text-transform:none;
  5471. }
  5472. #u29603 {
  5473. border-width:0px;
  5474. position:absolute;
  5475. left:0px;
  5476. top:239px;
  5477. width:200px;
  5478. height:1px;
  5479. display:flex;
  5480. transition:none;
  5481. }
  5482. #u29603 .text {
  5483. position:absolute;
  5484. align-self:center;
  5485. padding:2px 2px 2px 2px;
  5486. box-sizing:border-box;
  5487. width:100%;
  5488. }
  5489. #u29603_img {
  5490. border-width:0px;
  5491. position:absolute;
  5492. left:0px;
  5493. top:0px;
  5494. width:201px;
  5495. height:2px;
  5496. }
  5497. #u29603_text {
  5498. border-width:0px;
  5499. word-wrap:break-word;
  5500. text-transform:none;
  5501. visibility:hidden;
  5502. }
  5503. #u29604 {
  5504. border-width:0px;
  5505. position:absolute;
  5506. left:0px;
  5507. top:0px;
  5508. width:0px;
  5509. height:0px;
  5510. }
  5511. #u29605 {
  5512. border-width:0px;
  5513. position:absolute;
  5514. left:0px;
  5515. top:0px;
  5516. width:0px;
  5517. height:0px;
  5518. }
  5519. #u29606_div {
  5520. border-width:0px;
  5521. position:absolute;
  5522. left:0px;
  5523. top:0px;
  5524. width:380px;
  5525. height:164px;
  5526. background:inherit;
  5527. background-color:rgba(255, 255, 255, 1);
  5528. box-sizing:border-box;
  5529. border-width:1px;
  5530. border-style:solid;
  5531. border-color:rgba(204, 204, 204, 1);
  5532. border-radius:4px;
  5533. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  5534. transition:none;
  5535. font-family:"Microsoft YaHei", sans-serif;
  5536. font-weight:400;
  5537. font-style:normal;
  5538. }
  5539. #u29606 {
  5540. border-width:0px;
  5541. position:absolute;
  5542. left:1189px;
  5543. top:381px;
  5544. width:380px;
  5545. height:164px;
  5546. display:flex;
  5547. transition:none;
  5548. transform-origin:50% 50%;
  5549. font-family:"Microsoft YaHei", sans-serif;
  5550. font-weight:400;
  5551. font-style:normal;
  5552. }
  5553. #u29606 .text {
  5554. position:absolute;
  5555. align-self:center;
  5556. padding:2px 2px 2px 2px;
  5557. box-sizing:border-box;
  5558. width:100%;
  5559. }
  5560. #u29606_text {
  5561. border-width:0px;
  5562. word-wrap:break-word;
  5563. text-transform:none;
  5564. visibility:hidden;
  5565. }
  5566. #u29607_div {
  5567. border-width:0px;
  5568. position:absolute;
  5569. left:0px;
  5570. top:0px;
  5571. width:299px;
  5572. height:22px;
  5573. background:inherit;
  5574. background-color:rgba(255, 255, 255, 0);
  5575. border-radius:0px;
  5576. filter:drop-shadow(none);
  5577. transition:none;
  5578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5579. font-weight:400;
  5580. font-style:normal;
  5581. font-size:14px;
  5582. color:#666666;
  5583. line-height:22px;
  5584. }
  5585. #u29607 {
  5586. border-width:0px;
  5587. position:absolute;
  5588. left:1249px;
  5589. top:436px;
  5590. width:299px;
  5591. height:22px;
  5592. display:flex;
  5593. transition:none;
  5594. transform-origin:50% 50%;
  5595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5596. font-weight:400;
  5597. font-style:normal;
  5598. font-size:14px;
  5599. color:#666666;
  5600. line-height:22px;
  5601. }
  5602. #u29607 .text {
  5603. position:absolute;
  5604. align-self:flex-start;
  5605. padding:0px 0px 0px 0px;
  5606. box-sizing:border-box;
  5607. width:100%;
  5608. }
  5609. #u29607_text {
  5610. border-width:0px;
  5611. word-wrap:break-word;
  5612. text-transform:none;
  5613. }
  5614. #u29608_div {
  5615. border-width:0px;
  5616. position:absolute;
  5617. left:0px;
  5618. top:0px;
  5619. width:163px;
  5620. height:21px;
  5621. background:inherit;
  5622. background-color:rgba(255, 255, 255, 0);
  5623. border-radius:0px;
  5624. filter:drop-shadow(none);
  5625. transition:none;
  5626. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5627. font-weight:650;
  5628. font-style:normal;
  5629. font-size:18px;
  5630. color:#000000;
  5631. line-height:22px;
  5632. }
  5633. #u29608 {
  5634. border-width:0px;
  5635. position:absolute;
  5636. left:1249px;
  5637. top:406px;
  5638. width:163px;
  5639. height:21px;
  5640. display:flex;
  5641. transition:none;
  5642. transform-origin:50% 50%;
  5643. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5644. font-weight:650;
  5645. font-style:normal;
  5646. font-size:18px;
  5647. color:#000000;
  5648. line-height:22px;
  5649. }
  5650. #u29608 .text {
  5651. position:absolute;
  5652. align-self:flex-start;
  5653. padding:0px 0px 0px 0px;
  5654. box-sizing:border-box;
  5655. width:100%;
  5656. }
  5657. #u29608_text {
  5658. border-width:0px;
  5659. white-space:nowrap;
  5660. text-transform:none;
  5661. }
  5662. #u29609_div {
  5663. border-width:0px;
  5664. position:absolute;
  5665. left:0px;
  5666. top:0px;
  5667. width:61px;
  5668. height:30px;
  5669. background:inherit;
  5670. background-color:rgba(24, 144, 255, 1);
  5671. border-radius:4px;
  5672. filter:drop-shadow(none);
  5673. transition:none;
  5674. font-family:"Microsoft YaHei", sans-serif;
  5675. font-weight:400;
  5676. font-style:normal;
  5677. font-size:14px;
  5678. color:#FFFFFF;
  5679. }
  5680. #u29609 {
  5681. border-width:0px;
  5682. position:absolute;
  5683. left:1491px;
  5684. top:496px;
  5685. width:61px;
  5686. height:30px;
  5687. display:flex;
  5688. transition:none;
  5689. transform-origin:50% 50%;
  5690. font-family:"Microsoft YaHei", sans-serif;
  5691. font-weight:400;
  5692. font-style:normal;
  5693. font-size:14px;
  5694. color:#FFFFFF;
  5695. }
  5696. #u29609 .text {
  5697. position:absolute;
  5698. align-self:center;
  5699. padding:2px 16px 2px 16px;
  5700. box-sizing:border-box;
  5701. width:100%;
  5702. }
  5703. #u29609_text {
  5704. border-width:0px;
  5705. white-space:nowrap;
  5706. text-transform:none;
  5707. }
  5708. #u29610_div {
  5709. border-width:0px;
  5710. position:absolute;
  5711. left:0px;
  5712. top:0px;
  5713. width:66px;
  5714. height:30px;
  5715. background:inherit;
  5716. background-color:rgba(255, 255, 255, 1);
  5717. box-sizing:border-box;
  5718. border-width:1px;
  5719. border-style:solid;
  5720. border-color:rgba(217, 217, 217, 1);
  5721. border-radius:4px;
  5722. filter:drop-shadow(none);
  5723. transition:none;
  5724. font-family:"Microsoft YaHei", sans-serif;
  5725. font-weight:400;
  5726. font-style:normal;
  5727. font-size:14px;
  5728. color:rgba(0, 0, 0, 0.6470588235294118);
  5729. line-height:21px;
  5730. }
  5731. #u29610 {
  5732. border-width:0px;
  5733. position:absolute;
  5734. left:1409px;
  5735. top:496px;
  5736. width:66px;
  5737. height:30px;
  5738. display:flex;
  5739. transition:none;
  5740. transform-origin:50% 50%;
  5741. font-family:"Microsoft YaHei", sans-serif;
  5742. font-weight:400;
  5743. font-style:normal;
  5744. font-size:14px;
  5745. color:rgba(0, 0, 0, 0.6470588235294118);
  5746. line-height:21px;
  5747. }
  5748. #u29610 .text {
  5749. position:absolute;
  5750. align-self:center;
  5751. padding:2px 16px 2px 16px;
  5752. box-sizing:border-box;
  5753. width:100%;
  5754. }
  5755. #u29610_text {
  5756. border-width:0px;
  5757. white-space:nowrap;
  5758. text-transform:none;
  5759. }
  5760. #u29611 {
  5761. border-width:0px;
  5762. position:absolute;
  5763. left:1218px;
  5764. top:410px;
  5765. width:20px;
  5766. height:20px;
  5767. display:flex;
  5768. transition:none;
  5769. }
  5770. #u29611 .text {
  5771. position:absolute;
  5772. align-self:center;
  5773. padding:2px 2px 2px 2px;
  5774. box-sizing:border-box;
  5775. width:100%;
  5776. }
  5777. #u29611_img {
  5778. border-width:0px;
  5779. position:absolute;
  5780. left:0px;
  5781. top:0px;
  5782. width:20px;
  5783. height:20px;
  5784. }
  5785. #u29611_text {
  5786. border-width:0px;
  5787. word-wrap:break-word;
  5788. text-transform:none;
  5789. visibility:hidden;
  5790. }
  5791. #u29612 {
  5792. border-width:0px;
  5793. position:absolute;
  5794. left:0px;
  5795. top:0px;
  5796. width:0px;
  5797. height:0px;
  5798. }
  5799. #u29613_div {
  5800. border-width:0px;
  5801. position:absolute;
  5802. left:0px;
  5803. top:0px;
  5804. width:380px;
  5805. height:164px;
  5806. background:inherit;
  5807. background-color:rgba(255, 255, 255, 1);
  5808. box-sizing:border-box;
  5809. border-width:1px;
  5810. border-style:solid;
  5811. border-color:rgba(204, 204, 204, 1);
  5812. border-radius:4px;
  5813. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  5814. transition:none;
  5815. font-family:"Microsoft YaHei", sans-serif;
  5816. font-weight:400;
  5817. font-style:normal;
  5818. }
  5819. #u29613 {
  5820. border-width:0px;
  5821. position:absolute;
  5822. left:1189px;
  5823. top:553px;
  5824. width:380px;
  5825. height:164px;
  5826. display:flex;
  5827. transition:none;
  5828. transform-origin:50% 50%;
  5829. font-family:"Microsoft YaHei", sans-serif;
  5830. font-weight:400;
  5831. font-style:normal;
  5832. }
  5833. #u29613 .text {
  5834. position:absolute;
  5835. align-self:center;
  5836. padding:2px 2px 2px 2px;
  5837. box-sizing:border-box;
  5838. width:100%;
  5839. }
  5840. #u29613_text {
  5841. border-width:0px;
  5842. word-wrap:break-word;
  5843. text-transform:none;
  5844. visibility:hidden;
  5845. }
  5846. #u29614_div {
  5847. border-width:0px;
  5848. position:absolute;
  5849. left:0px;
  5850. top:0px;
  5851. width:288px;
  5852. height:22px;
  5853. background:inherit;
  5854. background-color:rgba(255, 255, 255, 0);
  5855. border-radius:0px;
  5856. filter:drop-shadow(none);
  5857. transition:none;
  5858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5859. font-weight:400;
  5860. font-style:normal;
  5861. font-size:14px;
  5862. color:#666666;
  5863. line-height:22px;
  5864. }
  5865. #u29614 {
  5866. border-width:0px;
  5867. position:absolute;
  5868. left:1249px;
  5869. top:608px;
  5870. width:288px;
  5871. height:22px;
  5872. display:flex;
  5873. transition:none;
  5874. transform-origin:50% 50%;
  5875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5876. font-weight:400;
  5877. font-style:normal;
  5878. font-size:14px;
  5879. color:#666666;
  5880. line-height:22px;
  5881. }
  5882. #u29614 .text {
  5883. position:absolute;
  5884. align-self:flex-start;
  5885. padding:0px 0px 0px 0px;
  5886. box-sizing:border-box;
  5887. width:100%;
  5888. }
  5889. #u29614_text {
  5890. border-width:0px;
  5891. word-wrap:break-word;
  5892. text-transform:none;
  5893. }
  5894. #u29615_div {
  5895. border-width:0px;
  5896. position:absolute;
  5897. left:0px;
  5898. top:0px;
  5899. width:91px;
  5900. height:21px;
  5901. background:inherit;
  5902. background-color:rgba(255, 255, 255, 0);
  5903. border-radius:0px;
  5904. filter:drop-shadow(none);
  5905. transition:none;
  5906. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5907. font-weight:650;
  5908. font-style:normal;
  5909. font-size:18px;
  5910. color:#000000;
  5911. line-height:22px;
  5912. }
  5913. #u29615 {
  5914. border-width:0px;
  5915. position:absolute;
  5916. left:1249px;
  5917. top:578px;
  5918. width:91px;
  5919. height:21px;
  5920. display:flex;
  5921. transition:none;
  5922. transform-origin:50% 50%;
  5923. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5924. font-weight:650;
  5925. font-style:normal;
  5926. font-size:18px;
  5927. color:#000000;
  5928. line-height:22px;
  5929. }
  5930. #u29615 .text {
  5931. position:absolute;
  5932. align-self:flex-start;
  5933. padding:0px 0px 0px 0px;
  5934. box-sizing:border-box;
  5935. width:100%;
  5936. }
  5937. #u29615_text {
  5938. border-width:0px;
  5939. white-space:nowrap;
  5940. text-transform:none;
  5941. }
  5942. #u29616_div {
  5943. border-width:0px;
  5944. position:absolute;
  5945. left:0px;
  5946. top:0px;
  5947. width:61px;
  5948. height:30px;
  5949. background:inherit;
  5950. background-color:rgba(24, 144, 255, 1);
  5951. border-radius:4px;
  5952. filter:drop-shadow(none);
  5953. transition:none;
  5954. font-family:"Microsoft YaHei", sans-serif;
  5955. font-weight:400;
  5956. font-style:normal;
  5957. font-size:14px;
  5958. color:#FFFFFF;
  5959. }
  5960. #u29616 {
  5961. border-width:0px;
  5962. position:absolute;
  5963. left:1488px;
  5964. top:668px;
  5965. width:61px;
  5966. height:30px;
  5967. display:flex;
  5968. transition:none;
  5969. transform-origin:50% 50%;
  5970. font-family:"Microsoft YaHei", sans-serif;
  5971. font-weight:400;
  5972. font-style:normal;
  5973. font-size:14px;
  5974. color:#FFFFFF;
  5975. }
  5976. #u29616 .text {
  5977. position:absolute;
  5978. align-self:center;
  5979. padding:2px 16px 2px 16px;
  5980. box-sizing:border-box;
  5981. width:100%;
  5982. }
  5983. #u29616_text {
  5984. border-width:0px;
  5985. white-space:nowrap;
  5986. text-transform:none;
  5987. }
  5988. #u29617_div {
  5989. border-width:0px;
  5990. position:absolute;
  5991. left:0px;
  5992. top:0px;
  5993. width:66px;
  5994. height:30px;
  5995. background:inherit;
  5996. background-color:rgba(255, 255, 255, 1);
  5997. box-sizing:border-box;
  5998. border-width:1px;
  5999. border-style:solid;
  6000. border-color:rgba(217, 217, 217, 1);
  6001. border-radius:4px;
  6002. filter:drop-shadow(none);
  6003. transition:none;
  6004. font-family:"Microsoft YaHei", sans-serif;
  6005. font-weight:400;
  6006. font-style:normal;
  6007. font-size:14px;
  6008. color:rgba(0, 0, 0, 0.6470588235294118);
  6009. line-height:21px;
  6010. }
  6011. #u29617 {
  6012. border-width:0px;
  6013. position:absolute;
  6014. left:1409px;
  6015. top:668px;
  6016. width:66px;
  6017. height:30px;
  6018. display:flex;
  6019. transition:none;
  6020. transform-origin:50% 50%;
  6021. font-family:"Microsoft YaHei", sans-serif;
  6022. font-weight:400;
  6023. font-style:normal;
  6024. font-size:14px;
  6025. color:rgba(0, 0, 0, 0.6470588235294118);
  6026. line-height:21px;
  6027. }
  6028. #u29617 .text {
  6029. position:absolute;
  6030. align-self:center;
  6031. padding:2px 16px 2px 16px;
  6032. box-sizing:border-box;
  6033. width:100%;
  6034. }
  6035. #u29617_text {
  6036. border-width:0px;
  6037. white-space:nowrap;
  6038. text-transform:none;
  6039. }
  6040. #u29618 {
  6041. border-width:0px;
  6042. position:absolute;
  6043. left:1218px;
  6044. top:580px;
  6045. width:20px;
  6046. height:20px;
  6047. display:flex;
  6048. transition:none;
  6049. }
  6050. #u29618 .text {
  6051. position:absolute;
  6052. align-self:center;
  6053. padding:2px 2px 2px 2px;
  6054. box-sizing:border-box;
  6055. width:100%;
  6056. }
  6057. #u29618_img {
  6058. border-width:0px;
  6059. position:absolute;
  6060. left:0px;
  6061. top:0px;
  6062. width:20px;
  6063. height:20px;
  6064. }
  6065. #u29618_text {
  6066. border-width:0px;
  6067. word-wrap:break-word;
  6068. text-transform:none;
  6069. visibility:hidden;
  6070. }
  6071. #u29619_div {
  6072. border-width:0px;
  6073. position:absolute;
  6074. left:0px;
  6075. top:0px;
  6076. width:771px;
  6077. height:20px;
  6078. background:inherit;
  6079. background-color:rgba(255, 255, 255, 0);
  6080. border-left:0px;
  6081. border-top:0px;
  6082. border-right:0px;
  6083. border-radius:0px;
  6084. border-bottom-right-radius:0px;
  6085. border-bottom-left-radius:0px;
  6086. filter:drop-shadow(none);
  6087. transition:none;
  6088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6089. font-weight:400;
  6090. font-style:normal;
  6091. font-size:14px;
  6092. color:#7F7F7F;
  6093. }
  6094. #u29619 {
  6095. border-width:0px;
  6096. position:absolute;
  6097. left:361px;
  6098. top:120px;
  6099. width:771px;
  6100. height:20px;
  6101. display:flex;
  6102. transition:none;
  6103. transform-origin:50% 50%;
  6104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6105. font-weight:400;
  6106. font-style:normal;
  6107. font-size:14px;
  6108. color:#7F7F7F;
  6109. }
  6110. #u29619 .text {
  6111. position:absolute;
  6112. align-self:center;
  6113. padding:0px 0px 0px 0px;
  6114. box-sizing:border-box;
  6115. width:100%;
  6116. }
  6117. #u29619_text {
  6118. border-width:0px;
  6119. white-space:nowrap;
  6120. text-transform:none;
  6121. }
  6122. #u29620 {
  6123. border-width:0px;
  6124. position:absolute;
  6125. left:0px;
  6126. top:0px;
  6127. width:0px;
  6128. height:0px;
  6129. }
  6130. #u29621_div {
  6131. border-width:0px;
  6132. position:absolute;
  6133. left:0px;
  6134. top:0px;
  6135. width:160px;
  6136. height:30px;
  6137. background:inherit;
  6138. background-color:rgba(255, 255, 255, 1);
  6139. box-sizing:border-box;
  6140. border-width:1px;
  6141. border-style:solid;
  6142. border-color:rgba(215, 215, 215, 1);
  6143. border-radius:4px;
  6144. filter:drop-shadow(none);
  6145. transition:none;
  6146. font-size:14px;
  6147. }
  6148. #u29621 {
  6149. border-width:0px;
  6150. position:absolute;
  6151. left:361px;
  6152. top:160px;
  6153. width:160px;
  6154. height:30px;
  6155. display:flex;
  6156. transition:none;
  6157. transform-origin:50% 50%;
  6158. font-size:14px;
  6159. }
  6160. #u29621 .text {
  6161. position:absolute;
  6162. align-self:center;
  6163. padding:2px 2px 2px 2px;
  6164. box-sizing:border-box;
  6165. width:100%;
  6166. }
  6167. #u29621_text {
  6168. border-width:0px;
  6169. word-wrap:break-word;
  6170. text-transform:none;
  6171. visibility:hidden;
  6172. }
  6173. #u29622_input {
  6174. position:absolute;
  6175. left:0px;
  6176. top:0px;
  6177. width:153px;
  6178. height:23px;
  6179. padding:2px 2px 2px 2px;
  6180. font-family:'ArialMT', 'Arial', sans-serif;
  6181. font-weight:400;
  6182. font-style:normal;
  6183. font-size:14px;
  6184. letter-spacing:normal;
  6185. color:#AAAAAA;
  6186. vertical-align:none;
  6187. text-align:left;
  6188. text-transform:none;
  6189. background-color:transparent;
  6190. border-color:transparent;
  6191. }
  6192. #u29622_input.disabled {
  6193. position:absolute;
  6194. left:0px;
  6195. top:0px;
  6196. width:153px;
  6197. height:23px;
  6198. padding:2px 2px 2px 2px;
  6199. font-family:'ArialMT', 'Arial', sans-serif;
  6200. font-weight:400;
  6201. font-style:normal;
  6202. font-size:14px;
  6203. letter-spacing:normal;
  6204. color:#AAAAAA;
  6205. vertical-align:none;
  6206. text-align:left;
  6207. text-transform:none;
  6208. background-color:transparent;
  6209. border-color:transparent;
  6210. }
  6211. #u29622_div {
  6212. border-width:0px;
  6213. position:absolute;
  6214. left:0px;
  6215. top:0px;
  6216. width:153px;
  6217. height:23px;
  6218. background:inherit;
  6219. background-color:rgba(255, 255, 255, 1);
  6220. border-radius:0px;
  6221. filter:drop-shadow(none);
  6222. transition:none;
  6223. font-size:14px;
  6224. color:#AAAAAA;
  6225. }
  6226. #u29622 {
  6227. border-width:0px;
  6228. position:absolute;
  6229. left:366px;
  6230. top:162px;
  6231. width:153px;
  6232. height:23px;
  6233. display:flex;
  6234. transition:none;
  6235. transform-origin:50% 50%;
  6236. font-size:14px;
  6237. color:#AAAAAA;
  6238. }
  6239. #u29622 .text {
  6240. position:absolute;
  6241. align-self:flex-start;
  6242. padding:2px 2px 2px 2px;
  6243. box-sizing:border-box;
  6244. width:100%;
  6245. }
  6246. #u29622_div.disabled {
  6247. border-width:0px;
  6248. position:absolute;
  6249. left:0px;
  6250. top:0px;
  6251. width:153px;
  6252. height:23px;
  6253. background:inherit;
  6254. background-color:rgba(240, 240, 240, 1);
  6255. border-radius:0px;
  6256. filter:drop-shadow(none);
  6257. transition:none;
  6258. font-size:14px;
  6259. color:#AAAAAA;
  6260. }
  6261. #u29622.disabled {
  6262. }
  6263. .u29622_input_option {
  6264. font-size:14px;
  6265. }
  6266. #u29623 {
  6267. border-width:0px;
  6268. position:absolute;
  6269. left:0px;
  6270. top:0px;
  6271. width:0px;
  6272. height:0px;
  6273. }
  6274. #u29624_div {
  6275. border-width:0px;
  6276. position:absolute;
  6277. left:0px;
  6278. top:0px;
  6279. width:600px;
  6280. height:373px;
  6281. background:inherit;
  6282. background-color:rgba(255, 255, 255, 1);
  6283. box-sizing:border-box;
  6284. border-width:1px;
  6285. border-style:solid;
  6286. border-color:rgba(215, 215, 215, 1);
  6287. border-radius:0px;
  6288. filter:drop-shadow(none);
  6289. transition:none;
  6290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6291. font-weight:400;
  6292. font-style:normal;
  6293. font-size:14px;
  6294. color:#AAAAAA;
  6295. text-align:center;
  6296. line-height:30px;
  6297. }
  6298. #u29624 {
  6299. border-width:0px;
  6300. position:absolute;
  6301. left:424px;
  6302. top:938px;
  6303. width:600px;
  6304. height:373px;
  6305. display:flex;
  6306. transition:none;
  6307. transform-origin:50% 50%;
  6308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6309. font-weight:400;
  6310. font-style:normal;
  6311. font-size:14px;
  6312. color:#AAAAAA;
  6313. text-align:center;
  6314. line-height:30px;
  6315. }
  6316. #u29624 .text {
  6317. position:absolute;
  6318. align-self:center;
  6319. padding:5px 10px 5px 10px;
  6320. box-sizing:border-box;
  6321. width:100%;
  6322. }
  6323. #u29624_text {
  6324. border-width:0px;
  6325. word-wrap:break-word;
  6326. text-transform:none;
  6327. visibility:hidden;
  6328. }
  6329. #u29625_div {
  6330. border-width:0px;
  6331. position:absolute;
  6332. left:0px;
  6333. top:0px;
  6334. width:47px;
  6335. height:35px;
  6336. background:inherit;
  6337. background-color:rgba(255, 255, 255, 0);
  6338. border-top:0px;
  6339. border-right:0px;
  6340. border-bottom:0px;
  6341. border-radius:0px;
  6342. border-top-left-radius:0px;
  6343. border-bottom-left-radius:0px;
  6344. filter:drop-shadow(none);
  6345. transition:none;
  6346. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6347. font-weight:500;
  6348. font-style:normal;
  6349. font-size:18px;
  6350. }
  6351. #u29625 {
  6352. border-width:0px;
  6353. position:absolute;
  6354. left:444px;
  6355. top:956px;
  6356. width:47px;
  6357. height:35px;
  6358. display:flex;
  6359. transition:none;
  6360. transform-origin:50% 50%;
  6361. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6362. font-weight:500;
  6363. font-style:normal;
  6364. font-size:18px;
  6365. }
  6366. #u29625 .text {
  6367. position:absolute;
  6368. align-self:center;
  6369. padding:5px 10px 5px 0px;
  6370. box-sizing:border-box;
  6371. width:100%;
  6372. }
  6373. #u29625_text {
  6374. border-width:0px;
  6375. white-space:nowrap;
  6376. text-transform:none;
  6377. }
  6378. #u29626_div {
  6379. border-width:0px;
  6380. position:absolute;
  6381. left:0px;
  6382. top:0px;
  6383. width:88px;
  6384. height:40px;
  6385. background:inherit;
  6386. background-color:rgba(255, 255, 255, 0);
  6387. border-top:0px;
  6388. border-right:0px;
  6389. border-bottom:0px;
  6390. border-radius:0px;
  6391. border-top-left-radius:0px;
  6392. border-bottom-left-radius:0px;
  6393. filter:drop-shadow(none);
  6394. transition:none;
  6395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6396. font-weight:400;
  6397. font-style:normal;
  6398. font-size:14px;
  6399. color:#7F7F7F;
  6400. text-align:right;
  6401. }
  6402. #u29626 {
  6403. border-width:0px;
  6404. position:absolute;
  6405. left:457px;
  6406. top:1120px;
  6407. width:88px;
  6408. height:40px;
  6409. display:flex;
  6410. transition:none;
  6411. transform-origin:50% 50%;
  6412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6413. font-weight:400;
  6414. font-style:normal;
  6415. font-size:14px;
  6416. color:#7F7F7F;
  6417. text-align:right;
  6418. }
  6419. #u29626 .text {
  6420. position:absolute;
  6421. align-self:center;
  6422. padding:5px 10px 5px 0px;
  6423. box-sizing:border-box;
  6424. width:100%;
  6425. }
  6426. #u29626_text {
  6427. border-width:0px;
  6428. white-space:nowrap;
  6429. text-transform:none;
  6430. }
  6431. #u29627 {
  6432. border-width:0px;
  6433. position:absolute;
  6434. left:0px;
  6435. top:0px;
  6436. width:0px;
  6437. height:0px;
  6438. }
  6439. #u29628_div {
  6440. border-width:0px;
  6441. position:absolute;
  6442. left:0px;
  6443. top:0px;
  6444. width:600px;
  6445. height:60px;
  6446. background:inherit;
  6447. background-color:rgba(255, 255, 255, 1);
  6448. box-sizing:border-box;
  6449. border-width:1px;
  6450. border-style:solid;
  6451. border-color:rgba(215, 215, 215, 1);
  6452. border-radius:0px;
  6453. filter:drop-shadow(none);
  6454. transition:none;
  6455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6456. font-weight:400;
  6457. font-style:normal;
  6458. font-size:14px;
  6459. color:#AAAAAA;
  6460. text-align:center;
  6461. line-height:30px;
  6462. }
  6463. #u29628 {
  6464. border-width:0px;
  6465. position:absolute;
  6466. left:424px;
  6467. top:1251px;
  6468. width:600px;
  6469. height:60px;
  6470. display:flex;
  6471. transition:none;
  6472. transform-origin:50% 50%;
  6473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6474. font-weight:400;
  6475. font-style:normal;
  6476. font-size:14px;
  6477. color:#AAAAAA;
  6478. text-align:center;
  6479. line-height:30px;
  6480. }
  6481. #u29628 .text {
  6482. position:absolute;
  6483. align-self:center;
  6484. padding:5px 10px 5px 10px;
  6485. box-sizing:border-box;
  6486. width:100%;
  6487. }
  6488. #u29628_text {
  6489. border-width:0px;
  6490. word-wrap:break-word;
  6491. text-transform:none;
  6492. visibility:hidden;
  6493. }
  6494. #u29629_div {
  6495. border-width:0px;
  6496. position:absolute;
  6497. left:0px;
  6498. top:0px;
  6499. width:80px;
  6500. height:30px;
  6501. background:inherit;
  6502. background-color:rgba(24, 144, 255, 1);
  6503. border-radius:4px;
  6504. filter:drop-shadow(none);
  6505. transition:none;
  6506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6507. font-weight:400;
  6508. font-style:normal;
  6509. font-size:14px;
  6510. color:#FFFFFF;
  6511. }
  6512. #u29629 {
  6513. border-width:0px;
  6514. position:absolute;
  6515. left:889px;
  6516. top:1266px;
  6517. width:80px;
  6518. height:30px;
  6519. display:flex;
  6520. transition:none;
  6521. transform-origin:50% 50%;
  6522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6523. font-weight:400;
  6524. font-style:normal;
  6525. font-size:14px;
  6526. color:#FFFFFF;
  6527. }
  6528. #u29629 .text {
  6529. position:absolute;
  6530. align-self:center;
  6531. padding:2px 2px 2px 2px;
  6532. box-sizing:border-box;
  6533. width:100%;
  6534. }
  6535. #u29629_text {
  6536. border-width:0px;
  6537. word-wrap:break-word;
  6538. text-transform:none;
  6539. }
  6540. #u29630_div {
  6541. border-width:0px;
  6542. position:absolute;
  6543. left:0px;
  6544. top:0px;
  6545. width:80px;
  6546. height:30px;
  6547. background:inherit;
  6548. background-color:rgba(255, 255, 255, 1);
  6549. box-sizing:border-box;
  6550. border-width:1px;
  6551. border-style:solid;
  6552. border-color:rgba(170, 170, 170, 1);
  6553. border-radius:4px;
  6554. filter:drop-shadow(none);
  6555. transition:none;
  6556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6557. font-weight:400;
  6558. font-style:normal;
  6559. font-size:14px;
  6560. }
  6561. #u29630 {
  6562. border-width:0px;
  6563. position:absolute;
  6564. left:789px;
  6565. top:1266px;
  6566. width:80px;
  6567. height:30px;
  6568. display:flex;
  6569. transition:none;
  6570. transform-origin:50% 50%;
  6571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6572. font-weight:400;
  6573. font-style:normal;
  6574. font-size:14px;
  6575. }
  6576. #u29630 .text {
  6577. position:absolute;
  6578. align-self:center;
  6579. padding:2px 2px 2px 2px;
  6580. box-sizing:border-box;
  6581. width:100%;
  6582. }
  6583. #u29630_text {
  6584. border-width:0px;
  6585. word-wrap:break-word;
  6586. text-transform:none;
  6587. }
  6588. #u29631 {
  6589. border-width:0px;
  6590. position:absolute;
  6591. left:0px;
  6592. top:0px;
  6593. width:0px;
  6594. height:0px;
  6595. }
  6596. #u29632_div {
  6597. border-width:0px;
  6598. position:absolute;
  6599. left:0px;
  6600. top:0px;
  6601. width:400px;
  6602. height:40px;
  6603. background:inherit;
  6604. background-color:rgba(255, 255, 255, 1);
  6605. box-sizing:border-box;
  6606. border-width:1px;
  6607. border-style:solid;
  6608. border-color:rgba(201, 201, 201, 1);
  6609. border-radius:4px;
  6610. filter:drop-shadow(none);
  6611. transition:none;
  6612. font-family:"Microsoft YaHei", sans-serif;
  6613. font-weight:400;
  6614. font-style:normal;
  6615. font-size:14px;
  6616. color:#CCCCCC;
  6617. text-align:left;
  6618. }
  6619. #u29632 {
  6620. border-width:0px;
  6621. position:absolute;
  6622. left:555px;
  6623. top:1121px;
  6624. width:400px;
  6625. height:40px;
  6626. display:flex;
  6627. transition:none;
  6628. transform-origin:50% 50%;
  6629. font-family:"Microsoft YaHei", sans-serif;
  6630. font-weight:400;
  6631. font-style:normal;
  6632. font-size:14px;
  6633. color:#CCCCCC;
  6634. text-align:left;
  6635. }
  6636. #u29632 .text {
  6637. position:absolute;
  6638. align-self:center;
  6639. padding:2px 8px 2px 8px;
  6640. box-sizing:border-box;
  6641. width:100%;
  6642. }
  6643. #u29632_text {
  6644. border-width:0px;
  6645. word-wrap:break-word;
  6646. text-transform:none;
  6647. visibility:hidden;
  6648. }
  6649. #u29633_input {
  6650. position:absolute;
  6651. left:0px;
  6652. top:0px;
  6653. width:373px;
  6654. height:38px;
  6655. padding:2px 2px 2px 2px;
  6656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6657. font-weight:400;
  6658. font-style:normal;
  6659. font-size:14px;
  6660. letter-spacing:normal;
  6661. color:#000000;
  6662. vertical-align:none;
  6663. text-align:left;
  6664. text-transform:none;
  6665. background-color:transparent;
  6666. border-color:transparent;
  6667. }
  6668. #u29633_input.hint {
  6669. position:absolute;
  6670. left:0px;
  6671. top:0px;
  6672. width:373px;
  6673. height:38px;
  6674. padding:2px 2px 2px 2px;
  6675. font-family:"Microsoft YaHei", sans-serif;
  6676. font-weight:400;
  6677. font-style:normal;
  6678. font-size:12px;
  6679. letter-spacing:normal;
  6680. color:#AAAAAA;
  6681. vertical-align:none;
  6682. text-align:left;
  6683. text-transform:none;
  6684. background-color:transparent;
  6685. border-color:transparent;
  6686. }
  6687. #u29633_input.disabled {
  6688. position:absolute;
  6689. left:0px;
  6690. top:0px;
  6691. width:373px;
  6692. height:38px;
  6693. padding:2px 2px 2px 2px;
  6694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6695. font-weight:400;
  6696. font-style:normal;
  6697. font-size:14px;
  6698. letter-spacing:normal;
  6699. color:#000000;
  6700. vertical-align:none;
  6701. text-align:left;
  6702. text-transform:none;
  6703. background-color:transparent;
  6704. border-color:transparent;
  6705. }
  6706. #u29633_input.hint.disabled {
  6707. position:absolute;
  6708. left:0px;
  6709. top:0px;
  6710. width:373px;
  6711. height:38px;
  6712. padding:2px 2px 2px 2px;
  6713. font-family:"Microsoft YaHei", sans-serif;
  6714. font-weight:400;
  6715. font-style:normal;
  6716. font-size:12px;
  6717. letter-spacing:normal;
  6718. color:#AAAAAA;
  6719. vertical-align:none;
  6720. text-align:left;
  6721. text-transform:none;
  6722. background-color:transparent;
  6723. border-color:transparent;
  6724. }
  6725. #u29633_div {
  6726. border-width:0px;
  6727. position:absolute;
  6728. left:0px;
  6729. top:0px;
  6730. width:373px;
  6731. height:38px;
  6732. background:inherit;
  6733. background-color:rgba(255, 255, 255, 1);
  6734. border-radius:0px;
  6735. filter:drop-shadow(none);
  6736. transition:none;
  6737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6738. font-weight:400;
  6739. font-style:normal;
  6740. font-size:14px;
  6741. }
  6742. #u29633 {
  6743. border-width:0px;
  6744. position:absolute;
  6745. left:570px;
  6746. top:1122px;
  6747. width:373px;
  6748. height:38px;
  6749. display:flex;
  6750. transition:none;
  6751. transform-origin:50% 50%;
  6752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6753. font-weight:400;
  6754. font-style:normal;
  6755. font-size:14px;
  6756. }
  6757. #u29633 .text {
  6758. position:absolute;
  6759. align-self:center;
  6760. padding:2px 2px 2px 2px;
  6761. box-sizing:border-box;
  6762. width:100%;
  6763. }
  6764. #u29633_div.hint {
  6765. border-width:0px;
  6766. position:absolute;
  6767. left:0px;
  6768. top:0px;
  6769. width:373px;
  6770. height:38px;
  6771. background:inherit;
  6772. background-color:rgba(255, 255, 255, 1);
  6773. border-radius:0px;
  6774. filter:drop-shadow(none);
  6775. transition:none;
  6776. font-family:"Microsoft YaHei", sans-serif;
  6777. font-weight:400;
  6778. font-style:normal;
  6779. font-size:14px;
  6780. }
  6781. #u29633.hint {
  6782. }
  6783. #u29633_div.disabled {
  6784. border-width:0px;
  6785. position:absolute;
  6786. left:0px;
  6787. top:0px;
  6788. width:373px;
  6789. height:38px;
  6790. background:inherit;
  6791. background-color:rgba(240, 240, 240, 1);
  6792. border-radius:0px;
  6793. filter:drop-shadow(none);
  6794. transition:none;
  6795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6796. font-weight:400;
  6797. font-style:normal;
  6798. font-size:14px;
  6799. }
  6800. #u29633.disabled {
  6801. }
  6802. #u29633_div.hint.disabled {
  6803. border-width:0px;
  6804. position:absolute;
  6805. left:0px;
  6806. top:0px;
  6807. width:373px;
  6808. height:38px;
  6809. background:inherit;
  6810. background-color:rgba(240, 240, 240, 1);
  6811. border-radius:0px;
  6812. filter:drop-shadow(none);
  6813. transition:none;
  6814. font-family:"Microsoft YaHei", sans-serif;
  6815. font-weight:400;
  6816. font-style:normal;
  6817. font-size:14px;
  6818. }
  6819. #u29633.hint.disabled {
  6820. }
  6821. #u29634_div {
  6822. border-width:0px;
  6823. position:absolute;
  6824. left:0px;
  6825. top:0px;
  6826. width:88px;
  6827. height:40px;
  6828. background:inherit;
  6829. background-color:rgba(255, 255, 255, 0);
  6830. border-top:0px;
  6831. border-right:0px;
  6832. border-bottom:0px;
  6833. border-radius:0px;
  6834. border-top-left-radius:0px;
  6835. border-bottom-left-radius:0px;
  6836. filter:drop-shadow(none);
  6837. transition:none;
  6838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6839. font-weight:400;
  6840. font-style:normal;
  6841. font-size:14px;
  6842. color:#7F7F7F;
  6843. text-align:right;
  6844. }
  6845. #u29634 {
  6846. border-width:0px;
  6847. position:absolute;
  6848. left:457px;
  6849. top:1070px;
  6850. width:88px;
  6851. height:40px;
  6852. display:flex;
  6853. transition:none;
  6854. transform-origin:50% 50%;
  6855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6856. font-weight:400;
  6857. font-style:normal;
  6858. font-size:14px;
  6859. color:#7F7F7F;
  6860. text-align:right;
  6861. }
  6862. #u29634 .text {
  6863. position:absolute;
  6864. align-self:center;
  6865. padding:5px 10px 5px 0px;
  6866. box-sizing:border-box;
  6867. width:100%;
  6868. }
  6869. #u29634_text {
  6870. border-width:0px;
  6871. white-space:nowrap;
  6872. text-transform:none;
  6873. }
  6874. #u29635 {
  6875. border-width:0px;
  6876. position:absolute;
  6877. left:0px;
  6878. top:0px;
  6879. width:0px;
  6880. height:0px;
  6881. }
  6882. #u29636_div {
  6883. border-width:0px;
  6884. position:absolute;
  6885. left:0px;
  6886. top:0px;
  6887. width:400px;
  6888. height:40px;
  6889. background:inherit;
  6890. background-color:rgba(242, 242, 242, 1);
  6891. box-sizing:border-box;
  6892. border-width:1px;
  6893. border-style:solid;
  6894. border-color:rgba(201, 201, 201, 1);
  6895. border-radius:4px;
  6896. filter:drop-shadow(none);
  6897. transition:none;
  6898. font-family:"Microsoft YaHei", sans-serif;
  6899. font-weight:400;
  6900. font-style:normal;
  6901. font-size:14px;
  6902. color:#CCCCCC;
  6903. text-align:left;
  6904. }
  6905. #u29636 {
  6906. border-width:0px;
  6907. position:absolute;
  6908. left:555px;
  6909. top:1071px;
  6910. width:400px;
  6911. height:40px;
  6912. display:flex;
  6913. transition:none;
  6914. transform-origin:50% 50%;
  6915. font-family:"Microsoft YaHei", sans-serif;
  6916. font-weight:400;
  6917. font-style:normal;
  6918. font-size:14px;
  6919. color:#CCCCCC;
  6920. text-align:left;
  6921. }
  6922. #u29636 .text {
  6923. position:absolute;
  6924. align-self:center;
  6925. padding:2px 8px 2px 8px;
  6926. box-sizing:border-box;
  6927. width:100%;
  6928. }
  6929. #u29636_text {
  6930. border-width:0px;
  6931. word-wrap:break-word;
  6932. text-transform:none;
  6933. visibility:hidden;
  6934. }
  6935. #u29637_input {
  6936. position:absolute;
  6937. left:0px;
  6938. top:0px;
  6939. width:388px;
  6940. height:22px;
  6941. padding:2px 2px 2px 2px;
  6942. font-family:'ArialMT', 'Arial', sans-serif;
  6943. font-weight:400;
  6944. font-style:normal;
  6945. font-size:13px;
  6946. letter-spacing:normal;
  6947. color:#000000;
  6948. vertical-align:none;
  6949. text-align:left;
  6950. text-transform:none;
  6951. background-color:transparent;
  6952. border-color:transparent;
  6953. }
  6954. #u29637_input.disabled {
  6955. position:absolute;
  6956. left:0px;
  6957. top:0px;
  6958. width:388px;
  6959. height:22px;
  6960. padding:2px 2px 2px 2px;
  6961. font-family:'ArialMT', 'Arial', sans-serif;
  6962. font-weight:400;
  6963. font-style:normal;
  6964. font-size:13px;
  6965. letter-spacing:normal;
  6966. color:#000000;
  6967. vertical-align:none;
  6968. text-align:left;
  6969. text-transform:none;
  6970. background-color:transparent;
  6971. border-color:transparent;
  6972. }
  6973. #u29637_div {
  6974. border-width:0px;
  6975. position:absolute;
  6976. left:0px;
  6977. top:0px;
  6978. width:388px;
  6979. height:22px;
  6980. background:inherit;
  6981. background-color:rgba(242, 242, 242, 1);
  6982. border-radius:0px;
  6983. filter:drop-shadow(none);
  6984. transition:none;
  6985. }
  6986. #u29637 {
  6987. border-width:0px;
  6988. position:absolute;
  6989. left:561px;
  6990. top:1080px;
  6991. width:388px;
  6992. height:22px;
  6993. display:flex;
  6994. transition:none;
  6995. transform-origin:50% 50%;
  6996. }
  6997. #u29637 .text {
  6998. position:absolute;
  6999. align-self:flex-start;
  7000. padding:2px 2px 2px 2px;
  7001. box-sizing:border-box;
  7002. width:100%;
  7003. }
  7004. #u29637_div.disabled {
  7005. border-width:0px;
  7006. position:absolute;
  7007. left:0px;
  7008. top:0px;
  7009. width:388px;
  7010. height:22px;
  7011. background:inherit;
  7012. background-color:rgba(240, 240, 240, 1);
  7013. border-radius:0px;
  7014. filter:drop-shadow(none);
  7015. transition:none;
  7016. }
  7017. #u29637.disabled {
  7018. }
  7019. .u29637_input_option {
  7020. }
  7021. #u29638_div {
  7022. border-width:0px;
  7023. position:absolute;
  7024. left:0px;
  7025. top:0px;
  7026. width:81px;
  7027. height:40px;
  7028. background:inherit;
  7029. background-color:rgba(255, 255, 255, 0);
  7030. border-top:0px;
  7031. border-right:0px;
  7032. border-bottom:0px;
  7033. border-radius:0px;
  7034. border-top-left-radius:0px;
  7035. border-bottom-left-radius:0px;
  7036. filter:drop-shadow(none);
  7037. transition:none;
  7038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7039. font-weight:400;
  7040. font-style:normal;
  7041. font-size:14px;
  7042. color:#7F7F7F;
  7043. text-align:right;
  7044. }
  7045. #u29638 {
  7046. border-width:0px;
  7047. position:absolute;
  7048. left:464px;
  7049. top:1171px;
  7050. width:81px;
  7051. height:40px;
  7052. display:flex;
  7053. transition:none;
  7054. transform-origin:50% 50%;
  7055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7056. font-weight:400;
  7057. font-style:normal;
  7058. font-size:14px;
  7059. color:#7F7F7F;
  7060. text-align:right;
  7061. }
  7062. #u29638 .text {
  7063. position:absolute;
  7064. align-self:center;
  7065. padding:5px 10px 5px 0px;
  7066. box-sizing:border-box;
  7067. width:100%;
  7068. }
  7069. #u29638_text {
  7070. border-width:0px;
  7071. white-space:nowrap;
  7072. text-transform:none;
  7073. }
  7074. #u29639 {
  7075. border-width:0px;
  7076. position:absolute;
  7077. left:0px;
  7078. top:0px;
  7079. width:0px;
  7080. height:0px;
  7081. }
  7082. #u29640_div {
  7083. border-width:0px;
  7084. position:absolute;
  7085. left:0px;
  7086. top:0px;
  7087. width:400px;
  7088. height:40px;
  7089. background:inherit;
  7090. background-color:rgba(242, 242, 242, 1);
  7091. box-sizing:border-box;
  7092. border-width:1px;
  7093. border-style:solid;
  7094. border-color:rgba(201, 201, 201, 1);
  7095. border-radius:4px;
  7096. filter:drop-shadow(none);
  7097. transition:none;
  7098. font-family:"Microsoft YaHei", sans-serif;
  7099. font-weight:400;
  7100. font-style:normal;
  7101. font-size:14px;
  7102. color:#CCCCCC;
  7103. text-align:left;
  7104. }
  7105. #u29640 {
  7106. border-width:0px;
  7107. position:absolute;
  7108. left:555px;
  7109. top:1172px;
  7110. width:400px;
  7111. height:40px;
  7112. display:flex;
  7113. transition:none;
  7114. transform-origin:50% 50%;
  7115. font-family:"Microsoft YaHei", sans-serif;
  7116. font-weight:400;
  7117. font-style:normal;
  7118. font-size:14px;
  7119. color:#CCCCCC;
  7120. text-align:left;
  7121. }
  7122. #u29640 .text {
  7123. position:absolute;
  7124. align-self:center;
  7125. padding:2px 8px 2px 8px;
  7126. box-sizing:border-box;
  7127. width:100%;
  7128. }
  7129. #u29640_text {
  7130. border-width:0px;
  7131. word-wrap:break-word;
  7132. text-transform:none;
  7133. visibility:hidden;
  7134. }
  7135. #u29641_input {
  7136. position:absolute;
  7137. left:0px;
  7138. top:0px;
  7139. width:373px;
  7140. height:38px;
  7141. padding:2px 2px 2px 2px;
  7142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7143. font-weight:400;
  7144. font-style:normal;
  7145. font-size:14px;
  7146. letter-spacing:normal;
  7147. color:#000000;
  7148. vertical-align:none;
  7149. text-align:left;
  7150. text-transform:none;
  7151. background-color:transparent;
  7152. border-color:transparent;
  7153. }
  7154. #u29641_input.hint {
  7155. position:absolute;
  7156. left:0px;
  7157. top:0px;
  7158. width:373px;
  7159. height:38px;
  7160. padding:2px 2px 2px 2px;
  7161. font-family:"Microsoft YaHei", sans-serif;
  7162. font-weight:400;
  7163. font-style:normal;
  7164. font-size:12px;
  7165. letter-spacing:normal;
  7166. color:#AAAAAA;
  7167. vertical-align:none;
  7168. text-align:left;
  7169. text-transform:none;
  7170. background-color:transparent;
  7171. border-color:transparent;
  7172. }
  7173. #u29641_input.disabled {
  7174. position:absolute;
  7175. left:0px;
  7176. top:0px;
  7177. width:373px;
  7178. height:38px;
  7179. padding:2px 2px 2px 2px;
  7180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7181. font-weight:400;
  7182. font-style:normal;
  7183. font-size:14px;
  7184. letter-spacing:normal;
  7185. color:#000000;
  7186. vertical-align:none;
  7187. text-align:left;
  7188. text-transform:none;
  7189. background-color:transparent;
  7190. border-color:transparent;
  7191. }
  7192. #u29641_input.hint.disabled {
  7193. position:absolute;
  7194. left:0px;
  7195. top:0px;
  7196. width:373px;
  7197. height:38px;
  7198. padding:2px 2px 2px 2px;
  7199. font-family:"Microsoft YaHei", sans-serif;
  7200. font-weight:400;
  7201. font-style:normal;
  7202. font-size:12px;
  7203. letter-spacing:normal;
  7204. color:#AAAAAA;
  7205. vertical-align:none;
  7206. text-align:left;
  7207. text-transform:none;
  7208. background-color:transparent;
  7209. border-color:transparent;
  7210. }
  7211. #u29641_div {
  7212. border-width:0px;
  7213. position:absolute;
  7214. left:0px;
  7215. top:0px;
  7216. width:373px;
  7217. height:38px;
  7218. background:inherit;
  7219. background-color:rgba(242, 242, 242, 1);
  7220. border-radius:0px;
  7221. filter:drop-shadow(none);
  7222. transition:none;
  7223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7224. font-weight:400;
  7225. font-style:normal;
  7226. font-size:14px;
  7227. }
  7228. #u29641 {
  7229. border-width:0px;
  7230. position:absolute;
  7231. left:570px;
  7232. top:1173px;
  7233. width:373px;
  7234. height:38px;
  7235. display:flex;
  7236. transition:none;
  7237. transform-origin:50% 50%;
  7238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7239. font-weight:400;
  7240. font-style:normal;
  7241. font-size:14px;
  7242. }
  7243. #u29641 .text {
  7244. position:absolute;
  7245. align-self:center;
  7246. padding:2px 2px 2px 2px;
  7247. box-sizing:border-box;
  7248. width:100%;
  7249. }
  7250. #u29641_div.hint {
  7251. border-width:0px;
  7252. position:absolute;
  7253. left:0px;
  7254. top:0px;
  7255. width:373px;
  7256. height:38px;
  7257. background:inherit;
  7258. background-color:rgba(242, 242, 242, 1);
  7259. border-radius:0px;
  7260. filter:drop-shadow(none);
  7261. transition:none;
  7262. font-family:"Microsoft YaHei", sans-serif;
  7263. font-weight:400;
  7264. font-style:normal;
  7265. font-size:14px;
  7266. }
  7267. #u29641.hint {
  7268. }
  7269. #u29641_div.disabled {
  7270. border-width:0px;
  7271. position:absolute;
  7272. left:0px;
  7273. top:0px;
  7274. width:373px;
  7275. height:38px;
  7276. background:inherit;
  7277. background-color:rgba(240, 240, 240, 1);
  7278. border-radius:0px;
  7279. filter:drop-shadow(none);
  7280. transition:none;
  7281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7282. font-weight:400;
  7283. font-style:normal;
  7284. font-size:14px;
  7285. }
  7286. #u29641.disabled {
  7287. }
  7288. #u29641_div.hint.disabled {
  7289. border-width:0px;
  7290. position:absolute;
  7291. left:0px;
  7292. top:0px;
  7293. width:373px;
  7294. height:38px;
  7295. background:inherit;
  7296. background-color:rgba(240, 240, 240, 1);
  7297. border-radius:0px;
  7298. filter:drop-shadow(none);
  7299. transition:none;
  7300. font-family:"Microsoft YaHei", sans-serif;
  7301. font-weight:400;
  7302. font-style:normal;
  7303. font-size:14px;
  7304. }
  7305. #u29641.hint.disabled {
  7306. }
  7307. #u29642_div {
  7308. border-width:0px;
  7309. position:absolute;
  7310. left:0px;
  7311. top:0px;
  7312. width:88px;
  7313. height:40px;
  7314. background:inherit;
  7315. background-color:rgba(255, 255, 255, 0);
  7316. border-top:0px;
  7317. border-right:0px;
  7318. border-bottom:0px;
  7319. border-radius:0px;
  7320. border-top-left-radius:0px;
  7321. border-bottom-left-radius:0px;
  7322. filter:drop-shadow(none);
  7323. transition:none;
  7324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7325. font-weight:400;
  7326. font-style:normal;
  7327. font-size:14px;
  7328. color:#7F7F7F;
  7329. text-align:right;
  7330. }
  7331. #u29642 {
  7332. border-width:0px;
  7333. position:absolute;
  7334. left:457px;
  7335. top:1020px;
  7336. width:88px;
  7337. height:40px;
  7338. display:flex;
  7339. transition:none;
  7340. transform-origin:50% 50%;
  7341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7342. font-weight:400;
  7343. font-style:normal;
  7344. font-size:14px;
  7345. color:#7F7F7F;
  7346. text-align:right;
  7347. }
  7348. #u29642 .text {
  7349. position:absolute;
  7350. align-self:center;
  7351. padding:5px 10px 5px 0px;
  7352. box-sizing:border-box;
  7353. width:100%;
  7354. }
  7355. #u29642_text {
  7356. border-width:0px;
  7357. white-space:nowrap;
  7358. text-transform:none;
  7359. }
  7360. #u29643 {
  7361. border-width:0px;
  7362. position:absolute;
  7363. left:0px;
  7364. top:0px;
  7365. width:0px;
  7366. height:0px;
  7367. }
  7368. #u29644_div {
  7369. border-width:0px;
  7370. position:absolute;
  7371. left:0px;
  7372. top:0px;
  7373. width:400px;
  7374. height:40px;
  7375. background:inherit;
  7376. background-color:rgba(242, 242, 242, 1);
  7377. box-sizing:border-box;
  7378. border-width:1px;
  7379. border-style:solid;
  7380. border-color:rgba(201, 201, 201, 1);
  7381. border-radius:4px;
  7382. filter:drop-shadow(none);
  7383. transition:none;
  7384. font-family:"Microsoft YaHei", sans-serif;
  7385. font-weight:400;
  7386. font-style:normal;
  7387. font-size:14px;
  7388. color:#CCCCCC;
  7389. text-align:left;
  7390. }
  7391. #u29644 {
  7392. border-width:0px;
  7393. position:absolute;
  7394. left:555px;
  7395. top:1021px;
  7396. width:400px;
  7397. height:40px;
  7398. display:flex;
  7399. transition:none;
  7400. transform-origin:50% 50%;
  7401. font-family:"Microsoft YaHei", sans-serif;
  7402. font-weight:400;
  7403. font-style:normal;
  7404. font-size:14px;
  7405. color:#CCCCCC;
  7406. text-align:left;
  7407. }
  7408. #u29644 .text {
  7409. position:absolute;
  7410. align-self:center;
  7411. padding:2px 8px 2px 8px;
  7412. box-sizing:border-box;
  7413. width:100%;
  7414. }
  7415. #u29644_text {
  7416. border-width:0px;
  7417. word-wrap:break-word;
  7418. text-transform:none;
  7419. visibility:hidden;
  7420. }
  7421. #u29645_input {
  7422. position:absolute;
  7423. left:0px;
  7424. top:0px;
  7425. width:388px;
  7426. height:22px;
  7427. padding:2px 2px 2px 2px;
  7428. font-family:'ArialMT', 'Arial', sans-serif;
  7429. font-weight:400;
  7430. font-style:normal;
  7431. font-size:13px;
  7432. letter-spacing:normal;
  7433. color:#000000;
  7434. vertical-align:none;
  7435. text-align:left;
  7436. text-transform:none;
  7437. background-color:transparent;
  7438. border-color:transparent;
  7439. }
  7440. #u29645_input.disabled {
  7441. position:absolute;
  7442. left:0px;
  7443. top:0px;
  7444. width:388px;
  7445. height:22px;
  7446. padding:2px 2px 2px 2px;
  7447. font-family:'ArialMT', 'Arial', sans-serif;
  7448. font-weight:400;
  7449. font-style:normal;
  7450. font-size:13px;
  7451. letter-spacing:normal;
  7452. color:#000000;
  7453. vertical-align:none;
  7454. text-align:left;
  7455. text-transform:none;
  7456. background-color:transparent;
  7457. border-color:transparent;
  7458. }
  7459. #u29645_div {
  7460. border-width:0px;
  7461. position:absolute;
  7462. left:0px;
  7463. top:0px;
  7464. width:388px;
  7465. height:22px;
  7466. background:inherit;
  7467. background-color:rgba(242, 242, 242, 1);
  7468. border-radius:0px;
  7469. filter:drop-shadow(none);
  7470. transition:none;
  7471. }
  7472. #u29645 {
  7473. border-width:0px;
  7474. position:absolute;
  7475. left:561px;
  7476. top:1030px;
  7477. width:388px;
  7478. height:22px;
  7479. display:flex;
  7480. transition:none;
  7481. transform-origin:50% 50%;
  7482. }
  7483. #u29645 .text {
  7484. position:absolute;
  7485. align-self:flex-start;
  7486. padding:2px 2px 2px 2px;
  7487. box-sizing:border-box;
  7488. width:100%;
  7489. }
  7490. #u29645_div.disabled {
  7491. border-width:0px;
  7492. position:absolute;
  7493. left:0px;
  7494. top:0px;
  7495. width:388px;
  7496. height:22px;
  7497. background:inherit;
  7498. background-color:rgba(240, 240, 240, 1);
  7499. border-radius:0px;
  7500. filter:drop-shadow(none);
  7501. transition:none;
  7502. }
  7503. #u29645.disabled {
  7504. }
  7505. .u29645_input_option {
  7506. }