styles.css 125 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053
  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. #u32566 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1600px;
  25. height:1250px;
  26. }
  27. #u32567_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. #u32567 {
  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. #u32567 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:2px 2px 2px 2px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u32567_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. visibility:hidden;
  63. }
  64. #u32568_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. #u32568 {
  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. #u32568 .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. #u32568_text {
  100. border-width:0px;
  101. white-space:nowrap;
  102. text-transform:none;
  103. }
  104. #u32569_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. #u32569 {
  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. #u32569 .text {
  131. position:absolute;
  132. align-self:center;
  133. padding:2px 2px 2px 2px;
  134. box-sizing:border-box;
  135. width:100%;
  136. }
  137. #u32569_text {
  138. border-width:0px;
  139. word-wrap:break-word;
  140. text-transform:none;
  141. visibility:hidden;
  142. }
  143. #u32570 {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:0px;
  149. height:0px;
  150. }
  151. #u32571 {
  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. #u32571 .text {
  162. position:absolute;
  163. align-self:center;
  164. padding:2px 2px 2px 2px;
  165. box-sizing:border-box;
  166. width:100%;
  167. }
  168. #u32571_img {
  169. border-width:0px;
  170. position:absolute;
  171. left:0px;
  172. top:0px;
  173. width:31px;
  174. height:31px;
  175. }
  176. #u32571_text {
  177. border-width:0px;
  178. word-wrap:break-word;
  179. text-transform:none;
  180. }
  181. #u32572_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. #u32572 {
  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. #u32572 .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. #u32572_text {
  223. border-width:0px;
  224. white-space:nowrap;
  225. text-transform:none;
  226. }
  227. #u32573_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. #u32573 {
  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. #u32573 .text {
  254. position:absolute;
  255. align-self:center;
  256. padding:2px 2px 2px 2px;
  257. box-sizing:border-box;
  258. width:100%;
  259. }
  260. #u32573_text {
  261. border-width:0px;
  262. word-wrap:break-word;
  263. text-transform:none;
  264. visibility:hidden;
  265. }
  266. #u32574 {
  267. border-width:0px;
  268. position:absolute;
  269. left:0px;
  270. top:0px;
  271. width:0px;
  272. height:0px;
  273. }
  274. #u32575_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. #u32575 {
  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. #u32575 .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. #u32575_text {
  316. border-width:0px;
  317. white-space:nowrap;
  318. text-transform:none;
  319. }
  320. #u32576 {
  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. #u32576 .text {
  331. position:absolute;
  332. align-self:center;
  333. padding:2px 2px 2px 2px;
  334. box-sizing:border-box;
  335. width:100%;
  336. }
  337. #u32576_img {
  338. border-width:0px;
  339. position:absolute;
  340. left:0px;
  341. top:0px;
  342. width:14px;
  343. height:14px;
  344. }
  345. #u32576_text {
  346. border-width:0px;
  347. word-wrap:break-word;
  348. text-transform:none;
  349. visibility:hidden;
  350. }
  351. #u32577 {
  352. border-width:0px;
  353. position:absolute;
  354. left:0px;
  355. top:0px;
  356. width:0px;
  357. height:0px;
  358. }
  359. #u32578_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. #u32578 {
  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. #u32578 .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. #u32578_text {
  401. border-width:0px;
  402. white-space:nowrap;
  403. text-transform:none;
  404. }
  405. #u32579 {
  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. #u32579 .text {
  416. position:absolute;
  417. align-self:center;
  418. padding:2px 2px 2px 2px;
  419. box-sizing:border-box;
  420. width:100%;
  421. }
  422. #u32579_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:14px;
  428. height:14px;
  429. }
  430. #u32579_text {
  431. border-width:0px;
  432. word-wrap:break-word;
  433. text-transform:none;
  434. visibility:hidden;
  435. }
  436. #u32580 {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:0px;
  442. height:0px;
  443. }
  444. #u32581_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. #u32581 {
  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. #u32581 .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. #u32581_text {
  486. border-width:0px;
  487. white-space:nowrap;
  488. text-transform:none;
  489. }
  490. #u32582 {
  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. #u32582 .text {
  501. position:absolute;
  502. align-self:center;
  503. padding:2px 2px 2px 2px;
  504. box-sizing:border-box;
  505. width:100%;
  506. }
  507. #u32582_img {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:14px;
  513. height:14px;
  514. }
  515. #u32582_text {
  516. border-width:0px;
  517. word-wrap:break-word;
  518. text-transform:none;
  519. visibility:hidden;
  520. }
  521. #u32583 {
  522. border-width:0px;
  523. position:absolute;
  524. left:0px;
  525. top:0px;
  526. width:0px;
  527. height:0px;
  528. }
  529. #u32584_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. #u32584 {
  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. #u32584 .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. #u32584_text {
  571. border-width:0px;
  572. white-space:nowrap;
  573. text-transform:none;
  574. }
  575. #u32585 {
  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. #u32585 .text {
  586. position:absolute;
  587. align-self:center;
  588. padding:2px 2px 2px 2px;
  589. box-sizing:border-box;
  590. width:100%;
  591. }
  592. #u32585_img {
  593. border-width:0px;
  594. position:absolute;
  595. left:0px;
  596. top:0px;
  597. width:14px;
  598. height:14px;
  599. }
  600. #u32585_text {
  601. border-width:0px;
  602. word-wrap:break-word;
  603. text-transform:none;
  604. visibility:hidden;
  605. }
  606. #u32586 {
  607. border-width:0px;
  608. position:absolute;
  609. left:0px;
  610. top:0px;
  611. width:0px;
  612. height:0px;
  613. }
  614. #u32587_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. #u32587 {
  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. #u32587 .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. #u32587_text {
  656. border-width:0px;
  657. white-space:nowrap;
  658. text-transform:none;
  659. }
  660. #u32588 {
  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. #u32588 .text {
  671. position:absolute;
  672. align-self:center;
  673. padding:2px 2px 2px 2px;
  674. box-sizing:border-box;
  675. width:100%;
  676. }
  677. #u32588_img {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:14px;
  683. height:14px;
  684. }
  685. #u32588_text {
  686. border-width:0px;
  687. word-wrap:break-word;
  688. text-transform:none;
  689. visibility:hidden;
  690. }
  691. #u32589 {
  692. border-width:0px;
  693. position:absolute;
  694. left:0px;
  695. top:0px;
  696. width:0px;
  697. height:0px;
  698. }
  699. #u32590_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. #u32590 {
  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. #u32590 .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. #u32590_text {
  741. border-width:0px;
  742. white-space:nowrap;
  743. text-transform:none;
  744. }
  745. #u32591 {
  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. #u32591 .text {
  756. position:absolute;
  757. align-self:center;
  758. padding:2px 2px 2px 2px;
  759. box-sizing:border-box;
  760. width:100%;
  761. }
  762. #u32591_img {
  763. border-width:0px;
  764. position:absolute;
  765. left:0px;
  766. top:0px;
  767. width:14px;
  768. height:14px;
  769. }
  770. #u32591_text {
  771. border-width:0px;
  772. word-wrap:break-word;
  773. text-transform:none;
  774. visibility:hidden;
  775. }
  776. #u32592 {
  777. border-width:0px;
  778. position:absolute;
  779. left:0px;
  780. top:0px;
  781. width:0px;
  782. height:0px;
  783. }
  784. #u32593_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. #u32593 {
  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. #u32593 .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. #u32593_text {
  826. border-width:0px;
  827. white-space:nowrap;
  828. text-transform:none;
  829. }
  830. #u32594 {
  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. #u32594 .text {
  841. position:absolute;
  842. align-self:center;
  843. padding:2px 2px 2px 2px;
  844. box-sizing:border-box;
  845. width:100%;
  846. }
  847. #u32594_img {
  848. border-width:0px;
  849. position:absolute;
  850. left:0px;
  851. top:0px;
  852. width:14px;
  853. height:14px;
  854. }
  855. #u32594_text {
  856. border-width:0px;
  857. word-wrap:break-word;
  858. text-transform:none;
  859. visibility:hidden;
  860. }
  861. #u32595 {
  862. border-width:0px;
  863. position:absolute;
  864. left:0px;
  865. top:0px;
  866. width:0px;
  867. height:0px;
  868. }
  869. #u32596_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. #u32596 {
  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. #u32596 .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. #u32596_text {
  911. border-width:0px;
  912. white-space:nowrap;
  913. text-transform:none;
  914. }
  915. #u32597 {
  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. #u32597 .text {
  926. position:absolute;
  927. align-self:center;
  928. padding:2px 2px 2px 2px;
  929. box-sizing:border-box;
  930. width:100%;
  931. }
  932. #u32597_img {
  933. border-width:0px;
  934. position:absolute;
  935. left:0px;
  936. top:0px;
  937. width:14px;
  938. height:14px;
  939. }
  940. #u32597_text {
  941. border-width:0px;
  942. word-wrap:break-word;
  943. text-transform:none;
  944. visibility:hidden;
  945. }
  946. #u32598 {
  947. border-width:0px;
  948. position:absolute;
  949. left:0px;
  950. top:0px;
  951. width:0px;
  952. height:0px;
  953. }
  954. #u32599_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. #u32599 {
  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. #u32599 .text {
  987. position:absolute;
  988. align-self:center;
  989. padding:0px 0px 0px 0px;
  990. box-sizing:border-box;
  991. width:100%;
  992. }
  993. #u32599_text {
  994. border-width:0px;
  995. white-space:nowrap;
  996. text-transform:none;
  997. }
  998. #u32600 {
  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. #u32600 .text {
  1009. position:absolute;
  1010. align-self:center;
  1011. padding:2px 2px 2px 2px;
  1012. box-sizing:border-box;
  1013. width:100%;
  1014. }
  1015. #u32600_img {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:0px;
  1019. top:0px;
  1020. width:22px;
  1021. height:22px;
  1022. }
  1023. #u32600_text {
  1024. border-width:0px;
  1025. word-wrap:break-word;
  1026. text-transform:none;
  1027. visibility:hidden;
  1028. }
  1029. #u32601 {
  1030. border-width:0px;
  1031. position:absolute;
  1032. left:0px;
  1033. top:0px;
  1034. width:0px;
  1035. height:0px;
  1036. }
  1037. #u32602_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. #u32602 {
  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. #u32602 .text {
  1070. position:absolute;
  1071. align-self:center;
  1072. padding:0px 0px 0px 0px;
  1073. box-sizing:border-box;
  1074. width:100%;
  1075. }
  1076. #u32602_text {
  1077. border-width:0px;
  1078. white-space:nowrap;
  1079. text-transform:none;
  1080. }
  1081. #u32603 {
  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. #u32603 .text {
  1092. position:absolute;
  1093. align-self:center;
  1094. padding:2px 2px 2px 2px;
  1095. box-sizing:border-box;
  1096. width:100%;
  1097. }
  1098. #u32603_img {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:0px;
  1102. top:0px;
  1103. width:22px;
  1104. height:22px;
  1105. }
  1106. #u32603_text {
  1107. border-width:0px;
  1108. word-wrap:break-word;
  1109. text-transform:none;
  1110. visibility:hidden;
  1111. }
  1112. #u32604 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:0px;
  1116. top:0px;
  1117. width:0px;
  1118. height:0px;
  1119. }
  1120. #u32605_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. #u32605 {
  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. #u32605 .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. #u32605_text {
  1162. border-width:0px;
  1163. white-space:nowrap;
  1164. text-transform:none;
  1165. }
  1166. #u32606 {
  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. #u32606 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:2px 2px 2px 2px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u32606_img {
  1184. border-width:0px;
  1185. position:absolute;
  1186. left:0px;
  1187. top:0px;
  1188. width:14px;
  1189. height:14px;
  1190. }
  1191. #u32606_text {
  1192. border-width:0px;
  1193. word-wrap:break-word;
  1194. text-transform:none;
  1195. visibility:hidden;
  1196. }
  1197. #u32607 {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:0px;
  1201. top:0px;
  1202. width:0px;
  1203. height:0px;
  1204. }
  1205. #u32608_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. #u32608_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. #u32608_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. #u32608 {
  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. #u32608 .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. #u32608_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. #u32608.disabled {
  1294. }
  1295. .u32608_input_option {
  1296. font-size:14px;
  1297. }
  1298. #u32609 {
  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. #u32609 .text {
  1309. position:absolute;
  1310. align-self:center;
  1311. padding:2px 2px 2px 2px;
  1312. box-sizing:border-box;
  1313. width:100%;
  1314. }
  1315. #u32609_img {
  1316. border-width:0px;
  1317. position:absolute;
  1318. left:0px;
  1319. top:0px;
  1320. width:22px;
  1321. height:22px;
  1322. }
  1323. #u32609_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u32610_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. #u32610 {
  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. #u32610 .text {
  1364. position:absolute;
  1365. align-self:center;
  1366. padding:0px 0px 0px 0px;
  1367. box-sizing:border-box;
  1368. width:100%;
  1369. }
  1370. #u32610_text {
  1371. border-width:0px;
  1372. word-wrap:break-word;
  1373. text-transform:none;
  1374. }
  1375. #u32611 {
  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. #u32611 .text {
  1386. position:absolute;
  1387. align-self:center;
  1388. padding:2px 2px 2px 2px;
  1389. box-sizing:border-box;
  1390. width:100%;
  1391. }
  1392. #u32611_img {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:0px;
  1396. top:0px;
  1397. width:2px;
  1398. height:12px;
  1399. }
  1400. #u32611_text {
  1401. border-width:0px;
  1402. word-wrap:break-word;
  1403. text-transform:none;
  1404. visibility:hidden;
  1405. }
  1406. #u32612 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:0px;
  1410. top:0px;
  1411. width:0px;
  1412. height:0px;
  1413. }
  1414. #u32613_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. #u32613 {
  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. #u32613 .text {
  1447. position:absolute;
  1448. align-self:center;
  1449. padding:0px 0px 0px 0px;
  1450. box-sizing:border-box;
  1451. width:100%;
  1452. }
  1453. #u32613_text {
  1454. border-width:0px;
  1455. white-space:nowrap;
  1456. text-transform:none;
  1457. }
  1458. #u32614 {
  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. #u32614 .text {
  1469. position:absolute;
  1470. align-self:center;
  1471. padding:2px 2px 2px 2px;
  1472. box-sizing:border-box;
  1473. width:100%;
  1474. }
  1475. #u32614_img {
  1476. border-width:0px;
  1477. position:absolute;
  1478. left:0px;
  1479. top:0px;
  1480. width:22px;
  1481. height:22px;
  1482. }
  1483. #u32614_text {
  1484. border-width:0px;
  1485. word-wrap:break-word;
  1486. text-transform:none;
  1487. visibility:hidden;
  1488. }
  1489. #u32615 {
  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. #u32615 .text {
  1500. position:absolute;
  1501. align-self:center;
  1502. padding:2px 2px 2px 2px;
  1503. box-sizing:border-box;
  1504. width:100%;
  1505. }
  1506. #u32615_img {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:0px;
  1510. top:0px;
  1511. width:69px;
  1512. height:2px;
  1513. }
  1514. #u32615_text {
  1515. border-width:0px;
  1516. word-wrap:break-word;
  1517. text-transform:none;
  1518. visibility:hidden;
  1519. }
  1520. #u32616 {
  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. #u32616 .text {
  1531. position:absolute;
  1532. align-self:center;
  1533. padding:2px 2px 2px 2px;
  1534. box-sizing:border-box;
  1535. width:100%;
  1536. }
  1537. #u32616_img {
  1538. border-width:0px;
  1539. position:absolute;
  1540. left:0px;
  1541. top:0px;
  1542. width:69px;
  1543. height:2px;
  1544. }
  1545. #u32616_text {
  1546. border-width:0px;
  1547. word-wrap:break-word;
  1548. text-transform:none;
  1549. visibility:hidden;
  1550. }
  1551. #u32617 {
  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. #u32617 .text {
  1562. position:absolute;
  1563. align-self:center;
  1564. padding:2px 2px 2px 2px;
  1565. box-sizing:border-box;
  1566. width:100%;
  1567. }
  1568. #u32617_img {
  1569. border-width:0px;
  1570. position:absolute;
  1571. left:0px;
  1572. top:0px;
  1573. width:57px;
  1574. height:2px;
  1575. }
  1576. #u32617_text {
  1577. border-width:0px;
  1578. word-wrap:break-word;
  1579. text-transform:none;
  1580. visibility:hidden;
  1581. }
  1582. #u32618 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:0px;
  1586. top:0px;
  1587. width:0px;
  1588. height:0px;
  1589. }
  1590. #u32619_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. #u32619 {
  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. #u32619 .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. #u32619_text {
  1632. border-width:0px;
  1633. white-space:nowrap;
  1634. text-transform:none;
  1635. }
  1636. #u32620 {
  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. #u32620 .text {
  1647. position:absolute;
  1648. align-self:center;
  1649. padding:2px 2px 2px 2px;
  1650. box-sizing:border-box;
  1651. width:100%;
  1652. }
  1653. #u32620_img {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:0px;
  1657. top:0px;
  1658. width:18px;
  1659. height:14px;
  1660. }
  1661. #u32620_text {
  1662. border-width:0px;
  1663. word-wrap:break-word;
  1664. text-transform:none;
  1665. visibility:hidden;
  1666. }
  1667. #u32621_div {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:0px;
  1671. top:0px;
  1672. width:1260px;
  1673. height:1179px;
  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. #u32621 {
  1685. border-width:0px;
  1686. position:absolute;
  1687. left:334px;
  1688. top:51px;
  1689. width:1260px;
  1690. height:1179px;
  1691. display:flex;
  1692. transition:none;
  1693. transform-origin:50% 50%;
  1694. }
  1695. #u32621 .text {
  1696. position:absolute;
  1697. align-self:center;
  1698. padding:2px 2px 2px 2px;
  1699. box-sizing:border-box;
  1700. width:100%;
  1701. }
  1702. #u32621_text {
  1703. border-width:0px;
  1704. word-wrap:break-word;
  1705. text-transform:none;
  1706. visibility:hidden;
  1707. }
  1708. #u32622 {
  1709. border-width:0px;
  1710. position:absolute;
  1711. left:358px;
  1712. top:229px;
  1713. width:1212px;
  1714. height:220px;
  1715. }
  1716. #u32623 {
  1717. border-width:0px;
  1718. position:absolute;
  1719. left:0px;
  1720. top:0px;
  1721. width:38px;
  1722. height:30px;
  1723. display:flex;
  1724. transition:none;
  1725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1726. font-weight:400;
  1727. font-style:normal;
  1728. font-size:14px;
  1729. color:#FFFFFF;
  1730. }
  1731. #u32623 .text {
  1732. position:absolute;
  1733. align-self:center;
  1734. padding:2px 2px 2px 2px;
  1735. box-sizing:border-box;
  1736. width:100%;
  1737. }
  1738. #u32623_img {
  1739. border-width:0px;
  1740. position:absolute;
  1741. left:0px;
  1742. top:0px;
  1743. width:38px;
  1744. height:30px;
  1745. }
  1746. #u32623_text {
  1747. border-width:0px;
  1748. word-wrap:break-word;
  1749. text-transform:none;
  1750. visibility:hidden;
  1751. }
  1752. #u32624 {
  1753. border-width:0px;
  1754. position:absolute;
  1755. left:38px;
  1756. top:0px;
  1757. width:135px;
  1758. height:30px;
  1759. display:flex;
  1760. transition:none;
  1761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1762. font-weight:400;
  1763. font-style:normal;
  1764. font-size:14px;
  1765. color:#FFFFFF;
  1766. }
  1767. #u32624 .text {
  1768. position:absolute;
  1769. align-self:center;
  1770. padding:2px 2px 2px 2px;
  1771. box-sizing:border-box;
  1772. width:100%;
  1773. }
  1774. #u32624_img {
  1775. border-width:0px;
  1776. position:absolute;
  1777. left:0px;
  1778. top:0px;
  1779. width:135px;
  1780. height:30px;
  1781. }
  1782. #u32624_text {
  1783. border-width:0px;
  1784. word-wrap:break-word;
  1785. text-transform:none;
  1786. }
  1787. #u32625 {
  1788. border-width:0px;
  1789. position:absolute;
  1790. left:172px;
  1791. top:0px;
  1792. width:135px;
  1793. height:30px;
  1794. display:flex;
  1795. transition:none;
  1796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1797. font-weight:400;
  1798. font-style:normal;
  1799. font-size:14px;
  1800. color:#FFFFFF;
  1801. }
  1802. #u32625 .text {
  1803. position:absolute;
  1804. align-self:center;
  1805. padding:2px 2px 2px 2px;
  1806. box-sizing:border-box;
  1807. width:100%;
  1808. }
  1809. #u32625_img {
  1810. border-width:0px;
  1811. position:absolute;
  1812. left:0px;
  1813. top:0px;
  1814. width:135px;
  1815. height:30px;
  1816. }
  1817. #u32625_text {
  1818. border-width:0px;
  1819. word-wrap:break-word;
  1820. text-transform:none;
  1821. }
  1822. #u32626 {
  1823. border-width:0px;
  1824. position:absolute;
  1825. left:307px;
  1826. top:0px;
  1827. width:191px;
  1828. height:30px;
  1829. display:flex;
  1830. transition:none;
  1831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1832. font-weight:400;
  1833. font-style:normal;
  1834. font-size:14px;
  1835. color:#FFFFFF;
  1836. }
  1837. #u32626 .text {
  1838. position:absolute;
  1839. align-self:center;
  1840. padding:2px 2px 2px 2px;
  1841. box-sizing:border-box;
  1842. width:100%;
  1843. }
  1844. #u32626_img {
  1845. border-width:0px;
  1846. position:absolute;
  1847. left:0px;
  1848. top:0px;
  1849. width:191px;
  1850. height:30px;
  1851. }
  1852. #u32626_text {
  1853. border-width:0px;
  1854. word-wrap:break-word;
  1855. text-transform:none;
  1856. }
  1857. #u32627 {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:498px;
  1861. top:0px;
  1862. width:155px;
  1863. height:30px;
  1864. display:flex;
  1865. transition:none;
  1866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1867. font-weight:400;
  1868. font-style:normal;
  1869. font-size:14px;
  1870. color:#FFFFFF;
  1871. }
  1872. #u32627 .text {
  1873. position:absolute;
  1874. align-self:center;
  1875. padding:2px 2px 2px 2px;
  1876. box-sizing:border-box;
  1877. width:100%;
  1878. }
  1879. #u32627_img {
  1880. border-width:0px;
  1881. position:absolute;
  1882. left:0px;
  1883. top:0px;
  1884. width:155px;
  1885. height:30px;
  1886. }
  1887. #u32627_text {
  1888. border-width:0px;
  1889. word-wrap:break-word;
  1890. text-transform:none;
  1891. }
  1892. #u32628 {
  1893. border-width:0px;
  1894. position:absolute;
  1895. left:653px;
  1896. top:0px;
  1897. width:193px;
  1898. height:30px;
  1899. display:flex;
  1900. transition:none;
  1901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1902. font-weight:400;
  1903. font-style:normal;
  1904. font-size:14px;
  1905. color:#FFFFFF;
  1906. }
  1907. #u32628 .text {
  1908. position:absolute;
  1909. align-self:center;
  1910. padding:2px 2px 2px 2px;
  1911. box-sizing:border-box;
  1912. width:100%;
  1913. }
  1914. #u32628_img {
  1915. border-width:0px;
  1916. position:absolute;
  1917. left:0px;
  1918. top:0px;
  1919. width:193px;
  1920. height:30px;
  1921. }
  1922. #u32628_text {
  1923. border-width:0px;
  1924. word-wrap:break-word;
  1925. text-transform:none;
  1926. }
  1927. #u32629 {
  1928. border-width:0px;
  1929. position:absolute;
  1930. left:846px;
  1931. top:0px;
  1932. width:121px;
  1933. height:30px;
  1934. display:flex;
  1935. transition:none;
  1936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1937. font-weight:400;
  1938. font-style:normal;
  1939. font-size:14px;
  1940. color:#FFFFFF;
  1941. }
  1942. #u32629 .text {
  1943. position:absolute;
  1944. align-self:center;
  1945. padding:2px 2px 2px 2px;
  1946. box-sizing:border-box;
  1947. width:100%;
  1948. }
  1949. #u32629_img {
  1950. border-width:0px;
  1951. position:absolute;
  1952. left:0px;
  1953. top:0px;
  1954. width:121px;
  1955. height:30px;
  1956. }
  1957. #u32629_text {
  1958. border-width:0px;
  1959. word-wrap:break-word;
  1960. text-transform:none;
  1961. }
  1962. #u32630 {
  1963. border-width:0px;
  1964. position:absolute;
  1965. left:968px;
  1966. top:0px;
  1967. width:122px;
  1968. height:30px;
  1969. display:flex;
  1970. transition:none;
  1971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1972. font-weight:400;
  1973. font-style:normal;
  1974. font-size:14px;
  1975. color:#FFFFFF;
  1976. }
  1977. #u32630 .text {
  1978. position:absolute;
  1979. align-self:center;
  1980. padding:2px 2px 2px 2px;
  1981. box-sizing:border-box;
  1982. width:100%;
  1983. }
  1984. #u32630_img {
  1985. border-width:0px;
  1986. position:absolute;
  1987. left:0px;
  1988. top:0px;
  1989. width:122px;
  1990. height:30px;
  1991. }
  1992. #u32630_text {
  1993. border-width:0px;
  1994. word-wrap:break-word;
  1995. text-transform:none;
  1996. }
  1997. #u32631 {
  1998. border-width:0px;
  1999. position:absolute;
  2000. left:1090px;
  2001. top:0px;
  2002. width:122px;
  2003. height:30px;
  2004. display:flex;
  2005. transition:none;
  2006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2007. font-weight:400;
  2008. font-style:normal;
  2009. font-size:14px;
  2010. color:#FFFFFF;
  2011. }
  2012. #u32631 .text {
  2013. position:absolute;
  2014. align-self:center;
  2015. padding:2px 2px 2px 2px;
  2016. box-sizing:border-box;
  2017. width:100%;
  2018. }
  2019. #u32631_img {
  2020. border-width:0px;
  2021. position:absolute;
  2022. left:0px;
  2023. top:0px;
  2024. width:122px;
  2025. height:30px;
  2026. }
  2027. #u32631_text {
  2028. border-width:0px;
  2029. word-wrap:break-word;
  2030. text-transform:none;
  2031. }
  2032. #u32632 {
  2033. border-width:0px;
  2034. position:absolute;
  2035. left:0px;
  2036. top:30px;
  2037. width:38px;
  2038. height:44px;
  2039. display:flex;
  2040. transition:none;
  2041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2042. font-weight:400;
  2043. font-style:normal;
  2044. font-size:14px;
  2045. }
  2046. #u32632 .text {
  2047. position:absolute;
  2048. align-self:center;
  2049. padding:2px 2px 2px 2px;
  2050. box-sizing:border-box;
  2051. width:100%;
  2052. }
  2053. #u32632_img {
  2054. border-width:0px;
  2055. position:absolute;
  2056. left:0px;
  2057. top:0px;
  2058. width:38px;
  2059. height:44px;
  2060. }
  2061. #u32632_text {
  2062. border-width:0px;
  2063. word-wrap:break-word;
  2064. text-transform:none;
  2065. visibility:hidden;
  2066. }
  2067. #u32633 {
  2068. border-width:0px;
  2069. position:absolute;
  2070. left:38px;
  2071. top:30px;
  2072. width:135px;
  2073. height:44px;
  2074. display:flex;
  2075. transition:none;
  2076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2077. font-weight:400;
  2078. font-style:normal;
  2079. font-size:14px;
  2080. }
  2081. #u32633 .text {
  2082. position:absolute;
  2083. align-self:center;
  2084. padding:2px 2px 2px 2px;
  2085. box-sizing:border-box;
  2086. width:100%;
  2087. }
  2088. #u32633_img {
  2089. border-width:0px;
  2090. position:absolute;
  2091. left:0px;
  2092. top:0px;
  2093. width:135px;
  2094. height:44px;
  2095. }
  2096. #u32633_text {
  2097. border-width:0px;
  2098. word-wrap:break-word;
  2099. text-transform:none;
  2100. visibility:hidden;
  2101. }
  2102. #u32634 {
  2103. border-width:0px;
  2104. position:absolute;
  2105. left:172px;
  2106. top:30px;
  2107. width:135px;
  2108. height:44px;
  2109. display:flex;
  2110. transition:none;
  2111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2112. font-weight:400;
  2113. font-style:normal;
  2114. font-size:14px;
  2115. }
  2116. #u32634 .text {
  2117. position:absolute;
  2118. align-self:center;
  2119. padding:2px 2px 2px 2px;
  2120. box-sizing:border-box;
  2121. width:100%;
  2122. }
  2123. #u32634_img {
  2124. border-width:0px;
  2125. position:absolute;
  2126. left:0px;
  2127. top:0px;
  2128. width:135px;
  2129. height:44px;
  2130. }
  2131. #u32634_text {
  2132. border-width:0px;
  2133. word-wrap:break-word;
  2134. text-transform:none;
  2135. visibility:hidden;
  2136. }
  2137. #u32635 {
  2138. border-width:0px;
  2139. position:absolute;
  2140. left:307px;
  2141. top:30px;
  2142. width:191px;
  2143. height:44px;
  2144. display:flex;
  2145. transition:none;
  2146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2147. font-weight:400;
  2148. font-style:normal;
  2149. font-size:14px;
  2150. }
  2151. #u32635 .text {
  2152. position:absolute;
  2153. align-self:center;
  2154. padding:2px 2px 2px 2px;
  2155. box-sizing:border-box;
  2156. width:100%;
  2157. }
  2158. #u32635_img {
  2159. border-width:0px;
  2160. position:absolute;
  2161. left:0px;
  2162. top:0px;
  2163. width:191px;
  2164. height:44px;
  2165. }
  2166. #u32635_text {
  2167. border-width:0px;
  2168. word-wrap:break-word;
  2169. text-transform:none;
  2170. visibility:hidden;
  2171. }
  2172. #u32636 {
  2173. border-width:0px;
  2174. position:absolute;
  2175. left:498px;
  2176. top:30px;
  2177. width:155px;
  2178. height:44px;
  2179. display:flex;
  2180. transition:none;
  2181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2182. font-weight:400;
  2183. font-style:normal;
  2184. font-size:14px;
  2185. }
  2186. #u32636 .text {
  2187. position:absolute;
  2188. align-self:center;
  2189. padding:2px 2px 2px 2px;
  2190. box-sizing:border-box;
  2191. width:100%;
  2192. }
  2193. #u32636_img {
  2194. border-width:0px;
  2195. position:absolute;
  2196. left:0px;
  2197. top:0px;
  2198. width:155px;
  2199. height:44px;
  2200. }
  2201. #u32636_text {
  2202. border-width:0px;
  2203. word-wrap:break-word;
  2204. text-transform:none;
  2205. visibility:hidden;
  2206. }
  2207. #u32637 {
  2208. border-width:0px;
  2209. position:absolute;
  2210. left:653px;
  2211. top:30px;
  2212. width:193px;
  2213. height:44px;
  2214. display:flex;
  2215. transition:none;
  2216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2217. font-weight:400;
  2218. font-style:normal;
  2219. font-size:14px;
  2220. }
  2221. #u32637 .text {
  2222. position:absolute;
  2223. align-self:center;
  2224. padding:2px 2px 2px 2px;
  2225. box-sizing:border-box;
  2226. width:100%;
  2227. }
  2228. #u32637_img {
  2229. border-width:0px;
  2230. position:absolute;
  2231. left:0px;
  2232. top:0px;
  2233. width:193px;
  2234. height:44px;
  2235. }
  2236. #u32637_text {
  2237. border-width:0px;
  2238. word-wrap:break-word;
  2239. text-transform:none;
  2240. visibility:hidden;
  2241. }
  2242. #u32638 {
  2243. border-width:0px;
  2244. position:absolute;
  2245. left:846px;
  2246. top:30px;
  2247. width:121px;
  2248. height:44px;
  2249. display:flex;
  2250. transition:none;
  2251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2252. font-weight:400;
  2253. font-style:normal;
  2254. font-size:14px;
  2255. }
  2256. #u32638 .text {
  2257. position:absolute;
  2258. align-self:center;
  2259. padding:2px 2px 2px 2px;
  2260. box-sizing:border-box;
  2261. width:100%;
  2262. }
  2263. #u32638_img {
  2264. border-width:0px;
  2265. position:absolute;
  2266. left:0px;
  2267. top:0px;
  2268. width:121px;
  2269. height:44px;
  2270. }
  2271. #u32638_text {
  2272. border-width:0px;
  2273. word-wrap:break-word;
  2274. text-transform:none;
  2275. }
  2276. #u32639 {
  2277. border-width:0px;
  2278. position:absolute;
  2279. left:968px;
  2280. top:30px;
  2281. width:122px;
  2282. height:44px;
  2283. display:flex;
  2284. transition:none;
  2285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2286. font-weight:400;
  2287. font-style:normal;
  2288. font-size:14px;
  2289. }
  2290. #u32639 .text {
  2291. position:absolute;
  2292. align-self:center;
  2293. padding:2px 2px 2px 2px;
  2294. box-sizing:border-box;
  2295. width:100%;
  2296. }
  2297. #u32639_img {
  2298. border-width:0px;
  2299. position:absolute;
  2300. left:0px;
  2301. top:0px;
  2302. width:122px;
  2303. height:44px;
  2304. }
  2305. #u32639_text {
  2306. border-width:0px;
  2307. word-wrap:break-word;
  2308. text-transform:none;
  2309. visibility:hidden;
  2310. }
  2311. #u32640 {
  2312. border-width:0px;
  2313. position:absolute;
  2314. left:1090px;
  2315. top:30px;
  2316. width:122px;
  2317. height:44px;
  2318. display:flex;
  2319. transition:none;
  2320. font-size:14px;
  2321. color:#1890FF;
  2322. }
  2323. #u32640 .text {
  2324. position:absolute;
  2325. align-self:center;
  2326. padding:2px 2px 2px 2px;
  2327. box-sizing:border-box;
  2328. width:100%;
  2329. }
  2330. #u32640_img {
  2331. border-width:0px;
  2332. position:absolute;
  2333. left:0px;
  2334. top:0px;
  2335. width:122px;
  2336. height:44px;
  2337. }
  2338. #u32640_text {
  2339. border-width:0px;
  2340. word-wrap:break-word;
  2341. text-transform:none;
  2342. }
  2343. #u32641 {
  2344. border-width:0px;
  2345. position:absolute;
  2346. left:0px;
  2347. top:74px;
  2348. width:38px;
  2349. height:38px;
  2350. display:flex;
  2351. transition:none;
  2352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2353. font-weight:400;
  2354. font-style:normal;
  2355. font-size:14px;
  2356. }
  2357. #u32641 .text {
  2358. position:absolute;
  2359. align-self:center;
  2360. padding:2px 2px 2px 2px;
  2361. box-sizing:border-box;
  2362. width:100%;
  2363. }
  2364. #u32641_img {
  2365. border-width:0px;
  2366. position:absolute;
  2367. left:0px;
  2368. top:0px;
  2369. width:38px;
  2370. height:38px;
  2371. }
  2372. #u32641_text {
  2373. border-width:0px;
  2374. word-wrap:break-word;
  2375. text-transform:none;
  2376. visibility:hidden;
  2377. }
  2378. #u32642 {
  2379. border-width:0px;
  2380. position:absolute;
  2381. left:38px;
  2382. top:74px;
  2383. width:135px;
  2384. height:38px;
  2385. display:flex;
  2386. transition:none;
  2387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2388. font-weight:400;
  2389. font-style:normal;
  2390. font-size:14px;
  2391. }
  2392. #u32642 .text {
  2393. position:absolute;
  2394. align-self:center;
  2395. padding:2px 2px 2px 2px;
  2396. box-sizing:border-box;
  2397. width:100%;
  2398. }
  2399. #u32642_img {
  2400. border-width:0px;
  2401. position:absolute;
  2402. left:0px;
  2403. top:0px;
  2404. width:135px;
  2405. height:38px;
  2406. }
  2407. #u32642_text {
  2408. border-width:0px;
  2409. word-wrap:break-word;
  2410. text-transform:none;
  2411. visibility:hidden;
  2412. }
  2413. #u32643 {
  2414. border-width:0px;
  2415. position:absolute;
  2416. left:172px;
  2417. top:74px;
  2418. width:135px;
  2419. height:38px;
  2420. display:flex;
  2421. transition:none;
  2422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2423. font-weight:400;
  2424. font-style:normal;
  2425. font-size:14px;
  2426. }
  2427. #u32643 .text {
  2428. position:absolute;
  2429. align-self:center;
  2430. padding:2px 2px 2px 2px;
  2431. box-sizing:border-box;
  2432. width:100%;
  2433. }
  2434. #u32643_img {
  2435. border-width:0px;
  2436. position:absolute;
  2437. left:0px;
  2438. top:0px;
  2439. width:135px;
  2440. height:38px;
  2441. }
  2442. #u32643_text {
  2443. border-width:0px;
  2444. word-wrap:break-word;
  2445. text-transform:none;
  2446. visibility:hidden;
  2447. }
  2448. #u32644 {
  2449. border-width:0px;
  2450. position:absolute;
  2451. left:307px;
  2452. top:74px;
  2453. width:191px;
  2454. height:38px;
  2455. display:flex;
  2456. transition:none;
  2457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2458. font-weight:400;
  2459. font-style:normal;
  2460. font-size:14px;
  2461. }
  2462. #u32644 .text {
  2463. position:absolute;
  2464. align-self:center;
  2465. padding:2px 2px 2px 2px;
  2466. box-sizing:border-box;
  2467. width:100%;
  2468. }
  2469. #u32644_img {
  2470. border-width:0px;
  2471. position:absolute;
  2472. left:0px;
  2473. top:0px;
  2474. width:191px;
  2475. height:38px;
  2476. }
  2477. #u32644_text {
  2478. border-width:0px;
  2479. word-wrap:break-word;
  2480. text-transform:none;
  2481. visibility:hidden;
  2482. }
  2483. #u32645 {
  2484. border-width:0px;
  2485. position:absolute;
  2486. left:498px;
  2487. top:74px;
  2488. width:155px;
  2489. height:38px;
  2490. display:flex;
  2491. transition:none;
  2492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2493. font-weight:400;
  2494. font-style:normal;
  2495. font-size:14px;
  2496. }
  2497. #u32645 .text {
  2498. position:absolute;
  2499. align-self:center;
  2500. padding:2px 2px 2px 2px;
  2501. box-sizing:border-box;
  2502. width:100%;
  2503. }
  2504. #u32645_img {
  2505. border-width:0px;
  2506. position:absolute;
  2507. left:0px;
  2508. top:0px;
  2509. width:155px;
  2510. height:38px;
  2511. }
  2512. #u32645_text {
  2513. border-width:0px;
  2514. word-wrap:break-word;
  2515. text-transform:none;
  2516. visibility:hidden;
  2517. }
  2518. #u32646 {
  2519. border-width:0px;
  2520. position:absolute;
  2521. left:653px;
  2522. top:74px;
  2523. width:193px;
  2524. height:38px;
  2525. display:flex;
  2526. transition:none;
  2527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2528. font-weight:400;
  2529. font-style:normal;
  2530. font-size:14px;
  2531. }
  2532. #u32646 .text {
  2533. position:absolute;
  2534. align-self:center;
  2535. padding:2px 2px 2px 2px;
  2536. box-sizing:border-box;
  2537. width:100%;
  2538. }
  2539. #u32646_img {
  2540. border-width:0px;
  2541. position:absolute;
  2542. left:0px;
  2543. top:0px;
  2544. width:193px;
  2545. height:38px;
  2546. }
  2547. #u32646_text {
  2548. border-width:0px;
  2549. word-wrap:break-word;
  2550. text-transform:none;
  2551. visibility:hidden;
  2552. }
  2553. #u32647 {
  2554. border-width:0px;
  2555. position:absolute;
  2556. left:846px;
  2557. top:74px;
  2558. width:121px;
  2559. height:38px;
  2560. display:flex;
  2561. transition:none;
  2562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2563. font-weight:400;
  2564. font-style:normal;
  2565. font-size:14px;
  2566. }
  2567. #u32647 .text {
  2568. position:absolute;
  2569. align-self:center;
  2570. padding:2px 2px 2px 2px;
  2571. box-sizing:border-box;
  2572. width:100%;
  2573. }
  2574. #u32647_img {
  2575. border-width:0px;
  2576. position:absolute;
  2577. left:0px;
  2578. top:0px;
  2579. width:121px;
  2580. height:38px;
  2581. }
  2582. #u32647_text {
  2583. border-width:0px;
  2584. word-wrap:break-word;
  2585. text-transform:none;
  2586. }
  2587. #u32648 {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:968px;
  2591. top:74px;
  2592. width:122px;
  2593. height:38px;
  2594. display:flex;
  2595. transition:none;
  2596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2597. font-weight:400;
  2598. font-style:normal;
  2599. font-size:14px;
  2600. }
  2601. #u32648 .text {
  2602. position:absolute;
  2603. align-self:center;
  2604. padding:2px 2px 2px 2px;
  2605. box-sizing:border-box;
  2606. width:100%;
  2607. }
  2608. #u32648_img {
  2609. border-width:0px;
  2610. position:absolute;
  2611. left:0px;
  2612. top:0px;
  2613. width:122px;
  2614. height:38px;
  2615. }
  2616. #u32648_text {
  2617. border-width:0px;
  2618. word-wrap:break-word;
  2619. text-transform:none;
  2620. visibility:hidden;
  2621. }
  2622. #u32649 {
  2623. border-width:0px;
  2624. position:absolute;
  2625. left:1090px;
  2626. top:74px;
  2627. width:122px;
  2628. height:38px;
  2629. display:flex;
  2630. transition:none;
  2631. font-size:14px;
  2632. color:#1890FF;
  2633. }
  2634. #u32649 .text {
  2635. position:absolute;
  2636. align-self:center;
  2637. padding:2px 2px 2px 2px;
  2638. box-sizing:border-box;
  2639. width:100%;
  2640. }
  2641. #u32649_img {
  2642. border-width:0px;
  2643. position:absolute;
  2644. left:0px;
  2645. top:0px;
  2646. width:122px;
  2647. height:38px;
  2648. }
  2649. #u32649_text {
  2650. border-width:0px;
  2651. word-wrap:break-word;
  2652. text-transform:none;
  2653. }
  2654. #u32650 {
  2655. border-width:0px;
  2656. position:absolute;
  2657. left:0px;
  2658. top:112px;
  2659. width:38px;
  2660. height:38px;
  2661. display:flex;
  2662. transition:none;
  2663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2664. font-weight:400;
  2665. font-style:normal;
  2666. font-size:14px;
  2667. }
  2668. #u32650 .text {
  2669. position:absolute;
  2670. align-self:center;
  2671. padding:2px 2px 2px 2px;
  2672. box-sizing:border-box;
  2673. width:100%;
  2674. }
  2675. #u32650_img {
  2676. border-width:0px;
  2677. position:absolute;
  2678. left:0px;
  2679. top:0px;
  2680. width:38px;
  2681. height:38px;
  2682. }
  2683. #u32650_text {
  2684. border-width:0px;
  2685. word-wrap:break-word;
  2686. text-transform:none;
  2687. visibility:hidden;
  2688. }
  2689. #u32651 {
  2690. border-width:0px;
  2691. position:absolute;
  2692. left:38px;
  2693. top:112px;
  2694. width:135px;
  2695. height:38px;
  2696. display:flex;
  2697. transition:none;
  2698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2699. font-weight:400;
  2700. font-style:normal;
  2701. font-size:14px;
  2702. }
  2703. #u32651 .text {
  2704. position:absolute;
  2705. align-self:center;
  2706. padding:2px 2px 2px 2px;
  2707. box-sizing:border-box;
  2708. width:100%;
  2709. }
  2710. #u32651_img {
  2711. border-width:0px;
  2712. position:absolute;
  2713. left:0px;
  2714. top:0px;
  2715. width:135px;
  2716. height:38px;
  2717. }
  2718. #u32651_text {
  2719. border-width:0px;
  2720. word-wrap:break-word;
  2721. text-transform:none;
  2722. visibility:hidden;
  2723. }
  2724. #u32652 {
  2725. border-width:0px;
  2726. position:absolute;
  2727. left:172px;
  2728. top:112px;
  2729. width:135px;
  2730. height:38px;
  2731. display:flex;
  2732. transition:none;
  2733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2734. font-weight:400;
  2735. font-style:normal;
  2736. font-size:14px;
  2737. }
  2738. #u32652 .text {
  2739. position:absolute;
  2740. align-self:center;
  2741. padding:2px 2px 2px 2px;
  2742. box-sizing:border-box;
  2743. width:100%;
  2744. }
  2745. #u32652_img {
  2746. border-width:0px;
  2747. position:absolute;
  2748. left:0px;
  2749. top:0px;
  2750. width:135px;
  2751. height:38px;
  2752. }
  2753. #u32652_text {
  2754. border-width:0px;
  2755. word-wrap:break-word;
  2756. text-transform:none;
  2757. visibility:hidden;
  2758. }
  2759. #u32653 {
  2760. border-width:0px;
  2761. position:absolute;
  2762. left:307px;
  2763. top:112px;
  2764. width:191px;
  2765. height:38px;
  2766. display:flex;
  2767. transition:none;
  2768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2769. font-weight:400;
  2770. font-style:normal;
  2771. font-size:14px;
  2772. }
  2773. #u32653 .text {
  2774. position:absolute;
  2775. align-self:center;
  2776. padding:2px 2px 2px 2px;
  2777. box-sizing:border-box;
  2778. width:100%;
  2779. }
  2780. #u32653_img {
  2781. border-width:0px;
  2782. position:absolute;
  2783. left:0px;
  2784. top:0px;
  2785. width:191px;
  2786. height:38px;
  2787. }
  2788. #u32653_text {
  2789. border-width:0px;
  2790. word-wrap:break-word;
  2791. text-transform:none;
  2792. visibility:hidden;
  2793. }
  2794. #u32654 {
  2795. border-width:0px;
  2796. position:absolute;
  2797. left:498px;
  2798. top:112px;
  2799. width:155px;
  2800. height:38px;
  2801. display:flex;
  2802. transition:none;
  2803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2804. font-weight:400;
  2805. font-style:normal;
  2806. font-size:14px;
  2807. }
  2808. #u32654 .text {
  2809. position:absolute;
  2810. align-self:center;
  2811. padding:2px 2px 2px 2px;
  2812. box-sizing:border-box;
  2813. width:100%;
  2814. }
  2815. #u32654_img {
  2816. border-width:0px;
  2817. position:absolute;
  2818. left:0px;
  2819. top:0px;
  2820. width:155px;
  2821. height:38px;
  2822. }
  2823. #u32654_text {
  2824. border-width:0px;
  2825. word-wrap:break-word;
  2826. text-transform:none;
  2827. visibility:hidden;
  2828. }
  2829. #u32655 {
  2830. border-width:0px;
  2831. position:absolute;
  2832. left:653px;
  2833. top:112px;
  2834. width:193px;
  2835. height:38px;
  2836. display:flex;
  2837. transition:none;
  2838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2839. font-weight:400;
  2840. font-style:normal;
  2841. font-size:14px;
  2842. }
  2843. #u32655 .text {
  2844. position:absolute;
  2845. align-self:center;
  2846. padding:2px 2px 2px 2px;
  2847. box-sizing:border-box;
  2848. width:100%;
  2849. }
  2850. #u32655_img {
  2851. border-width:0px;
  2852. position:absolute;
  2853. left:0px;
  2854. top:0px;
  2855. width:193px;
  2856. height:38px;
  2857. }
  2858. #u32655_text {
  2859. border-width:0px;
  2860. word-wrap:break-word;
  2861. text-transform:none;
  2862. visibility:hidden;
  2863. }
  2864. #u32656 {
  2865. border-width:0px;
  2866. position:absolute;
  2867. left:846px;
  2868. top:112px;
  2869. width:121px;
  2870. height:38px;
  2871. display:flex;
  2872. transition:none;
  2873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2874. font-weight:400;
  2875. font-style:normal;
  2876. font-size:14px;
  2877. }
  2878. #u32656 .text {
  2879. position:absolute;
  2880. align-self:center;
  2881. padding:2px 2px 2px 2px;
  2882. box-sizing:border-box;
  2883. width:100%;
  2884. }
  2885. #u32656_img {
  2886. border-width:0px;
  2887. position:absolute;
  2888. left:0px;
  2889. top:0px;
  2890. width:121px;
  2891. height:38px;
  2892. }
  2893. #u32656_text {
  2894. border-width:0px;
  2895. word-wrap:break-word;
  2896. text-transform:none;
  2897. }
  2898. #u32657 {
  2899. border-width:0px;
  2900. position:absolute;
  2901. left:968px;
  2902. top:112px;
  2903. width:122px;
  2904. height:38px;
  2905. display:flex;
  2906. transition:none;
  2907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2908. font-weight:400;
  2909. font-style:normal;
  2910. font-size:14px;
  2911. }
  2912. #u32657 .text {
  2913. position:absolute;
  2914. align-self:center;
  2915. padding:2px 2px 2px 2px;
  2916. box-sizing:border-box;
  2917. width:100%;
  2918. }
  2919. #u32657_img {
  2920. border-width:0px;
  2921. position:absolute;
  2922. left:0px;
  2923. top:0px;
  2924. width:122px;
  2925. height:38px;
  2926. }
  2927. #u32657_text {
  2928. border-width:0px;
  2929. word-wrap:break-word;
  2930. text-transform:none;
  2931. visibility:hidden;
  2932. }
  2933. #u32658 {
  2934. border-width:0px;
  2935. position:absolute;
  2936. left:1090px;
  2937. top:112px;
  2938. width:122px;
  2939. height:38px;
  2940. display:flex;
  2941. transition:none;
  2942. font-size:14px;
  2943. }
  2944. #u32658 .text {
  2945. position:absolute;
  2946. align-self:center;
  2947. padding:2px 2px 2px 2px;
  2948. box-sizing:border-box;
  2949. width:100%;
  2950. }
  2951. #u32658_img {
  2952. border-width:0px;
  2953. position:absolute;
  2954. left:0px;
  2955. top:0px;
  2956. width:122px;
  2957. height:38px;
  2958. }
  2959. #u32658_text {
  2960. border-width:0px;
  2961. word-wrap:break-word;
  2962. text-transform:none;
  2963. visibility:hidden;
  2964. }
  2965. #u32659 {
  2966. border-width:0px;
  2967. position:absolute;
  2968. left:0px;
  2969. top:150px;
  2970. width:38px;
  2971. height:38px;
  2972. display:flex;
  2973. transition:none;
  2974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2975. font-weight:400;
  2976. font-style:normal;
  2977. font-size:14px;
  2978. }
  2979. #u32659 .text {
  2980. position:absolute;
  2981. align-self:center;
  2982. padding:2px 2px 2px 2px;
  2983. box-sizing:border-box;
  2984. width:100%;
  2985. }
  2986. #u32659_img {
  2987. border-width:0px;
  2988. position:absolute;
  2989. left:0px;
  2990. top:0px;
  2991. width:38px;
  2992. height:38px;
  2993. }
  2994. #u32659_text {
  2995. border-width:0px;
  2996. word-wrap:break-word;
  2997. text-transform:none;
  2998. visibility:hidden;
  2999. }
  3000. #u32660 {
  3001. border-width:0px;
  3002. position:absolute;
  3003. left:38px;
  3004. top:150px;
  3005. width:135px;
  3006. height:38px;
  3007. display:flex;
  3008. transition:none;
  3009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3010. font-weight:400;
  3011. font-style:normal;
  3012. font-size:14px;
  3013. }
  3014. #u32660 .text {
  3015. position:absolute;
  3016. align-self:center;
  3017. padding:2px 2px 2px 2px;
  3018. box-sizing:border-box;
  3019. width:100%;
  3020. }
  3021. #u32660_img {
  3022. border-width:0px;
  3023. position:absolute;
  3024. left:0px;
  3025. top:0px;
  3026. width:135px;
  3027. height:38px;
  3028. }
  3029. #u32660_text {
  3030. border-width:0px;
  3031. word-wrap:break-word;
  3032. text-transform:none;
  3033. visibility:hidden;
  3034. }
  3035. #u32661 {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:172px;
  3039. top:150px;
  3040. width:135px;
  3041. height:38px;
  3042. display:flex;
  3043. transition:none;
  3044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3045. font-weight:400;
  3046. font-style:normal;
  3047. font-size:14px;
  3048. }
  3049. #u32661 .text {
  3050. position:absolute;
  3051. align-self:center;
  3052. padding:2px 2px 2px 2px;
  3053. box-sizing:border-box;
  3054. width:100%;
  3055. }
  3056. #u32661_img {
  3057. border-width:0px;
  3058. position:absolute;
  3059. left:0px;
  3060. top:0px;
  3061. width:135px;
  3062. height:38px;
  3063. }
  3064. #u32661_text {
  3065. border-width:0px;
  3066. word-wrap:break-word;
  3067. text-transform:none;
  3068. visibility:hidden;
  3069. }
  3070. #u32662 {
  3071. border-width:0px;
  3072. position:absolute;
  3073. left:307px;
  3074. top:150px;
  3075. width:191px;
  3076. height:38px;
  3077. display:flex;
  3078. transition:none;
  3079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3080. font-weight:400;
  3081. font-style:normal;
  3082. font-size:14px;
  3083. }
  3084. #u32662 .text {
  3085. position:absolute;
  3086. align-self:center;
  3087. padding:2px 2px 2px 2px;
  3088. box-sizing:border-box;
  3089. width:100%;
  3090. }
  3091. #u32662_img {
  3092. border-width:0px;
  3093. position:absolute;
  3094. left:0px;
  3095. top:0px;
  3096. width:191px;
  3097. height:38px;
  3098. }
  3099. #u32662_text {
  3100. border-width:0px;
  3101. word-wrap:break-word;
  3102. text-transform:none;
  3103. visibility:hidden;
  3104. }
  3105. #u32663 {
  3106. border-width:0px;
  3107. position:absolute;
  3108. left:498px;
  3109. top:150px;
  3110. width:155px;
  3111. height:38px;
  3112. display:flex;
  3113. transition:none;
  3114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3115. font-weight:400;
  3116. font-style:normal;
  3117. font-size:14px;
  3118. }
  3119. #u32663 .text {
  3120. position:absolute;
  3121. align-self:center;
  3122. padding:2px 2px 2px 2px;
  3123. box-sizing:border-box;
  3124. width:100%;
  3125. }
  3126. #u32663_img {
  3127. border-width:0px;
  3128. position:absolute;
  3129. left:0px;
  3130. top:0px;
  3131. width:155px;
  3132. height:38px;
  3133. }
  3134. #u32663_text {
  3135. border-width:0px;
  3136. word-wrap:break-word;
  3137. text-transform:none;
  3138. visibility:hidden;
  3139. }
  3140. #u32664 {
  3141. border-width:0px;
  3142. position:absolute;
  3143. left:653px;
  3144. top:150px;
  3145. width:193px;
  3146. height:38px;
  3147. display:flex;
  3148. transition:none;
  3149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3150. font-weight:400;
  3151. font-style:normal;
  3152. font-size:14px;
  3153. }
  3154. #u32664 .text {
  3155. position:absolute;
  3156. align-self:center;
  3157. padding:2px 2px 2px 2px;
  3158. box-sizing:border-box;
  3159. width:100%;
  3160. }
  3161. #u32664_img {
  3162. border-width:0px;
  3163. position:absolute;
  3164. left:0px;
  3165. top:0px;
  3166. width:193px;
  3167. height:38px;
  3168. }
  3169. #u32664_text {
  3170. border-width:0px;
  3171. word-wrap:break-word;
  3172. text-transform:none;
  3173. visibility:hidden;
  3174. }
  3175. #u32665 {
  3176. border-width:0px;
  3177. position:absolute;
  3178. left:846px;
  3179. top:150px;
  3180. width:121px;
  3181. height:38px;
  3182. display:flex;
  3183. transition:none;
  3184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3185. font-weight:400;
  3186. font-style:normal;
  3187. font-size:14px;
  3188. }
  3189. #u32665 .text {
  3190. position:absolute;
  3191. align-self:center;
  3192. padding:2px 2px 2px 2px;
  3193. box-sizing:border-box;
  3194. width:100%;
  3195. }
  3196. #u32665_img {
  3197. border-width:0px;
  3198. position:absolute;
  3199. left:0px;
  3200. top:0px;
  3201. width:121px;
  3202. height:38px;
  3203. }
  3204. #u32665_text {
  3205. border-width:0px;
  3206. word-wrap:break-word;
  3207. text-transform:none;
  3208. }
  3209. #u32666 {
  3210. border-width:0px;
  3211. position:absolute;
  3212. left:968px;
  3213. top:150px;
  3214. width:122px;
  3215. height:38px;
  3216. display:flex;
  3217. transition:none;
  3218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3219. font-weight:400;
  3220. font-style:normal;
  3221. font-size:14px;
  3222. }
  3223. #u32666 .text {
  3224. position:absolute;
  3225. align-self:center;
  3226. padding:2px 2px 2px 2px;
  3227. box-sizing:border-box;
  3228. width:100%;
  3229. }
  3230. #u32666_img {
  3231. border-width:0px;
  3232. position:absolute;
  3233. left:0px;
  3234. top:0px;
  3235. width:122px;
  3236. height:38px;
  3237. }
  3238. #u32666_text {
  3239. border-width:0px;
  3240. word-wrap:break-word;
  3241. text-transform:none;
  3242. visibility:hidden;
  3243. }
  3244. #u32667 {
  3245. border-width:0px;
  3246. position:absolute;
  3247. left:1090px;
  3248. top:150px;
  3249. width:122px;
  3250. height:38px;
  3251. display:flex;
  3252. transition:none;
  3253. font-size:14px;
  3254. }
  3255. #u32667 .text {
  3256. position:absolute;
  3257. align-self:center;
  3258. padding:2px 2px 2px 2px;
  3259. box-sizing:border-box;
  3260. width:100%;
  3261. }
  3262. #u32667_img {
  3263. border-width:0px;
  3264. position:absolute;
  3265. left:0px;
  3266. top:0px;
  3267. width:122px;
  3268. height:38px;
  3269. }
  3270. #u32667_text {
  3271. border-width:0px;
  3272. word-wrap:break-word;
  3273. text-transform:none;
  3274. visibility:hidden;
  3275. }
  3276. #u32668 {
  3277. border-width:0px;
  3278. position:absolute;
  3279. left:0px;
  3280. top:188px;
  3281. width:38px;
  3282. height:32px;
  3283. display:flex;
  3284. transition:none;
  3285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3286. font-weight:400;
  3287. font-style:normal;
  3288. font-size:14px;
  3289. }
  3290. #u32668 .text {
  3291. position:absolute;
  3292. align-self:center;
  3293. padding:2px 2px 2px 2px;
  3294. box-sizing:border-box;
  3295. width:100%;
  3296. }
  3297. #u32668_img {
  3298. border-width:0px;
  3299. position:absolute;
  3300. left:0px;
  3301. top:0px;
  3302. width:38px;
  3303. height:32px;
  3304. }
  3305. #u32668_text {
  3306. border-width:0px;
  3307. word-wrap:break-word;
  3308. text-transform:none;
  3309. visibility:hidden;
  3310. }
  3311. #u32669 {
  3312. border-width:0px;
  3313. position:absolute;
  3314. left:38px;
  3315. top:188px;
  3316. width:135px;
  3317. height:32px;
  3318. display:flex;
  3319. transition:none;
  3320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3321. font-weight:400;
  3322. font-style:normal;
  3323. font-size:14px;
  3324. }
  3325. #u32669 .text {
  3326. position:absolute;
  3327. align-self:center;
  3328. padding:2px 2px 2px 2px;
  3329. box-sizing:border-box;
  3330. width:100%;
  3331. }
  3332. #u32669_img {
  3333. border-width:0px;
  3334. position:absolute;
  3335. left:0px;
  3336. top:0px;
  3337. width:135px;
  3338. height:32px;
  3339. }
  3340. #u32669_text {
  3341. border-width:0px;
  3342. word-wrap:break-word;
  3343. text-transform:none;
  3344. visibility:hidden;
  3345. }
  3346. #u32670 {
  3347. border-width:0px;
  3348. position:absolute;
  3349. left:172px;
  3350. top:188px;
  3351. width:135px;
  3352. height:32px;
  3353. display:flex;
  3354. transition:none;
  3355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3356. font-weight:400;
  3357. font-style:normal;
  3358. font-size:14px;
  3359. }
  3360. #u32670 .text {
  3361. position:absolute;
  3362. align-self:center;
  3363. padding:2px 2px 2px 2px;
  3364. box-sizing:border-box;
  3365. width:100%;
  3366. }
  3367. #u32670_img {
  3368. border-width:0px;
  3369. position:absolute;
  3370. left:0px;
  3371. top:0px;
  3372. width:135px;
  3373. height:32px;
  3374. }
  3375. #u32670_text {
  3376. border-width:0px;
  3377. word-wrap:break-word;
  3378. text-transform:none;
  3379. visibility:hidden;
  3380. }
  3381. #u32671 {
  3382. border-width:0px;
  3383. position:absolute;
  3384. left:307px;
  3385. top:188px;
  3386. width:191px;
  3387. height:32px;
  3388. display:flex;
  3389. transition:none;
  3390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3391. font-weight:400;
  3392. font-style:normal;
  3393. font-size:14px;
  3394. }
  3395. #u32671 .text {
  3396. position:absolute;
  3397. align-self:center;
  3398. padding:2px 2px 2px 2px;
  3399. box-sizing:border-box;
  3400. width:100%;
  3401. }
  3402. #u32671_img {
  3403. border-width:0px;
  3404. position:absolute;
  3405. left:0px;
  3406. top:0px;
  3407. width:191px;
  3408. height:32px;
  3409. }
  3410. #u32671_text {
  3411. border-width:0px;
  3412. word-wrap:break-word;
  3413. text-transform:none;
  3414. visibility:hidden;
  3415. }
  3416. #u32672 {
  3417. border-width:0px;
  3418. position:absolute;
  3419. left:498px;
  3420. top:188px;
  3421. width:155px;
  3422. height:32px;
  3423. display:flex;
  3424. transition:none;
  3425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3426. font-weight:400;
  3427. font-style:normal;
  3428. font-size:14px;
  3429. }
  3430. #u32672 .text {
  3431. position:absolute;
  3432. align-self:center;
  3433. padding:2px 2px 2px 2px;
  3434. box-sizing:border-box;
  3435. width:100%;
  3436. }
  3437. #u32672_img {
  3438. border-width:0px;
  3439. position:absolute;
  3440. left:0px;
  3441. top:0px;
  3442. width:155px;
  3443. height:32px;
  3444. }
  3445. #u32672_text {
  3446. border-width:0px;
  3447. word-wrap:break-word;
  3448. text-transform:none;
  3449. visibility:hidden;
  3450. }
  3451. #u32673 {
  3452. border-width:0px;
  3453. position:absolute;
  3454. left:653px;
  3455. top:188px;
  3456. width:193px;
  3457. height:32px;
  3458. display:flex;
  3459. transition:none;
  3460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3461. font-weight:400;
  3462. font-style:normal;
  3463. font-size:14px;
  3464. }
  3465. #u32673 .text {
  3466. position:absolute;
  3467. align-self:center;
  3468. padding:2px 2px 2px 2px;
  3469. box-sizing:border-box;
  3470. width:100%;
  3471. }
  3472. #u32673_img {
  3473. border-width:0px;
  3474. position:absolute;
  3475. left:0px;
  3476. top:0px;
  3477. width:193px;
  3478. height:32px;
  3479. }
  3480. #u32673_text {
  3481. border-width:0px;
  3482. word-wrap:break-word;
  3483. text-transform:none;
  3484. visibility:hidden;
  3485. }
  3486. #u32674 {
  3487. border-width:0px;
  3488. position:absolute;
  3489. left:846px;
  3490. top:188px;
  3491. width:121px;
  3492. height:32px;
  3493. display:flex;
  3494. transition:none;
  3495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3496. font-weight:400;
  3497. font-style:normal;
  3498. font-size:14px;
  3499. }
  3500. #u32674 .text {
  3501. position:absolute;
  3502. align-self:center;
  3503. padding:2px 2px 2px 2px;
  3504. box-sizing:border-box;
  3505. width:100%;
  3506. }
  3507. #u32674_img {
  3508. border-width:0px;
  3509. position:absolute;
  3510. left:0px;
  3511. top:0px;
  3512. width:121px;
  3513. height:32px;
  3514. }
  3515. #u32674_text {
  3516. border-width:0px;
  3517. word-wrap:break-word;
  3518. text-transform:none;
  3519. visibility:hidden;
  3520. }
  3521. #u32675 {
  3522. border-width:0px;
  3523. position:absolute;
  3524. left:968px;
  3525. top:188px;
  3526. width:122px;
  3527. height:32px;
  3528. display:flex;
  3529. transition:none;
  3530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3531. font-weight:400;
  3532. font-style:normal;
  3533. font-size:14px;
  3534. }
  3535. #u32675 .text {
  3536. position:absolute;
  3537. align-self:center;
  3538. padding:2px 2px 2px 2px;
  3539. box-sizing:border-box;
  3540. width:100%;
  3541. }
  3542. #u32675_img {
  3543. border-width:0px;
  3544. position:absolute;
  3545. left:0px;
  3546. top:0px;
  3547. width:122px;
  3548. height:32px;
  3549. }
  3550. #u32675_text {
  3551. border-width:0px;
  3552. word-wrap:break-word;
  3553. text-transform:none;
  3554. visibility:hidden;
  3555. }
  3556. #u32676 {
  3557. border-width:0px;
  3558. position:absolute;
  3559. left:1090px;
  3560. top:188px;
  3561. width:122px;
  3562. height:32px;
  3563. display:flex;
  3564. transition:none;
  3565. font-size:14px;
  3566. }
  3567. #u32676 .text {
  3568. position:absolute;
  3569. align-self:center;
  3570. padding:2px 2px 2px 2px;
  3571. box-sizing:border-box;
  3572. width:100%;
  3573. }
  3574. #u32676_img {
  3575. border-width:0px;
  3576. position:absolute;
  3577. left:0px;
  3578. top:0px;
  3579. width:122px;
  3580. height:32px;
  3581. }
  3582. #u32676_text {
  3583. border-width:0px;
  3584. word-wrap:break-word;
  3585. text-transform:none;
  3586. visibility:hidden;
  3587. }
  3588. #u32677_div {
  3589. border-width:0px;
  3590. position:absolute;
  3591. left:0px;
  3592. top:0px;
  3593. width:80px;
  3594. height:30px;
  3595. background:inherit;
  3596. background-color:rgba(24, 144, 255, 1);
  3597. border-radius:4px;
  3598. filter:drop-shadow(none);
  3599. transition:none;
  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. #u32677 {
  3607. border-width:0px;
  3608. position:absolute;
  3609. left:358px;
  3610. top:191px;
  3611. width:80px;
  3612. height:30px;
  3613. display:flex;
  3614. transition:none;
  3615. transform-origin:50% 50%;
  3616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3617. font-weight:400;
  3618. font-style:normal;
  3619. font-size:14px;
  3620. color:#FFFFFF;
  3621. }
  3622. #u32677 .text {
  3623. position:absolute;
  3624. align-self:center;
  3625. padding:2px 2px 2px 2px;
  3626. box-sizing:border-box;
  3627. width:100%;
  3628. }
  3629. #u32677_text {
  3630. border-width:0px;
  3631. word-wrap:break-word;
  3632. text-transform:none;
  3633. }
  3634. #u32678 {
  3635. border-width:0px;
  3636. position:absolute;
  3637. left:0px;
  3638. top:0px;
  3639. width:0px;
  3640. height:0px;
  3641. }
  3642. #u32679_div {
  3643. border-width:0px;
  3644. position:absolute;
  3645. left:0px;
  3646. top:0px;
  3647. width:160px;
  3648. height:30px;
  3649. background:inherit;
  3650. background-color:rgba(255, 255, 255, 1);
  3651. box-sizing:border-box;
  3652. border-width:1px;
  3653. border-style:solid;
  3654. border-color:rgba(201, 201, 201, 1);
  3655. border-radius:4px;
  3656. filter:drop-shadow(none);
  3657. transition:none;
  3658. font-family:"Microsoft YaHei", sans-serif;
  3659. font-weight:400;
  3660. font-style:normal;
  3661. font-size:14px;
  3662. color:#CCCCCC;
  3663. text-align:left;
  3664. }
  3665. #u32679 {
  3666. border-width:0px;
  3667. position:absolute;
  3668. left:867px;
  3669. top:140px;
  3670. width:160px;
  3671. height:30px;
  3672. display:flex;
  3673. transition:none;
  3674. transform-origin:50% 50%;
  3675. font-family:"Microsoft YaHei", sans-serif;
  3676. font-weight:400;
  3677. font-style:normal;
  3678. font-size:14px;
  3679. color:#CCCCCC;
  3680. text-align:left;
  3681. }
  3682. #u32679 .text {
  3683. position:absolute;
  3684. align-self:center;
  3685. padding:2px 8px 2px 8px;
  3686. box-sizing:border-box;
  3687. width:100%;
  3688. }
  3689. #u32679_text {
  3690. border-width:0px;
  3691. word-wrap:break-word;
  3692. text-transform:none;
  3693. visibility:hidden;
  3694. }
  3695. #u32680_input {
  3696. position:absolute;
  3697. left:0px;
  3698. top:0px;
  3699. width:150px;
  3700. height:28px;
  3701. padding:2px 2px 2px 2px;
  3702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3703. font-weight:400;
  3704. font-style:normal;
  3705. font-size:14px;
  3706. letter-spacing:normal;
  3707. color:#000000;
  3708. vertical-align:none;
  3709. text-align:left;
  3710. text-transform:none;
  3711. background-color:transparent;
  3712. border-color:transparent;
  3713. }
  3714. #u32680_input.hint {
  3715. position:absolute;
  3716. left:0px;
  3717. top:0px;
  3718. width:150px;
  3719. height:28px;
  3720. padding:2px 2px 2px 2px;
  3721. font-family:"Microsoft YaHei", sans-serif;
  3722. font-weight:400;
  3723. font-style:normal;
  3724. font-size:12px;
  3725. letter-spacing:normal;
  3726. color:#AAAAAA;
  3727. vertical-align:none;
  3728. text-align:left;
  3729. text-transform:none;
  3730. background-color:transparent;
  3731. border-color:transparent;
  3732. }
  3733. #u32680_input.disabled {
  3734. position:absolute;
  3735. left:0px;
  3736. top:0px;
  3737. width:150px;
  3738. height:28px;
  3739. padding:2px 2px 2px 2px;
  3740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3741. font-weight:400;
  3742. font-style:normal;
  3743. font-size:14px;
  3744. letter-spacing:normal;
  3745. color:#000000;
  3746. vertical-align:none;
  3747. text-align:left;
  3748. text-transform:none;
  3749. background-color:transparent;
  3750. border-color:transparent;
  3751. }
  3752. #u32680_input.hint.disabled {
  3753. position:absolute;
  3754. left:0px;
  3755. top:0px;
  3756. width:150px;
  3757. height:28px;
  3758. padding:2px 2px 2px 2px;
  3759. font-family:"Microsoft YaHei", sans-serif;
  3760. font-weight:400;
  3761. font-style:normal;
  3762. font-size:12px;
  3763. letter-spacing:normal;
  3764. color:#AAAAAA;
  3765. vertical-align:none;
  3766. text-align:left;
  3767. text-transform:none;
  3768. background-color:transparent;
  3769. border-color:transparent;
  3770. }
  3771. #u32680_div {
  3772. border-width:0px;
  3773. position:absolute;
  3774. left:0px;
  3775. top:0px;
  3776. width:150px;
  3777. height:28px;
  3778. background:inherit;
  3779. background-color:rgba(255, 255, 255, 1);
  3780. border-radius:0px;
  3781. filter:drop-shadow(none);
  3782. transition:none;
  3783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3784. font-weight:400;
  3785. font-style:normal;
  3786. font-size:14px;
  3787. }
  3788. #u32680 {
  3789. border-width:0px;
  3790. position:absolute;
  3791. left:873px;
  3792. top:141px;
  3793. width:150px;
  3794. height:28px;
  3795. display:flex;
  3796. transition:none;
  3797. transform-origin:50% 50%;
  3798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3799. font-weight:400;
  3800. font-style:normal;
  3801. font-size:14px;
  3802. }
  3803. #u32680 .text {
  3804. position:absolute;
  3805. align-self:center;
  3806. padding:2px 2px 2px 2px;
  3807. box-sizing:border-box;
  3808. width:100%;
  3809. }
  3810. #u32680_div.hint {
  3811. border-width:0px;
  3812. position:absolute;
  3813. left:0px;
  3814. top:0px;
  3815. width:150px;
  3816. height:28px;
  3817. background:inherit;
  3818. background-color:rgba(255, 255, 255, 1);
  3819. border-radius:0px;
  3820. filter:drop-shadow(none);
  3821. transition:none;
  3822. font-family:"Microsoft YaHei", sans-serif;
  3823. font-weight:400;
  3824. font-style:normal;
  3825. font-size:14px;
  3826. }
  3827. #u32680.hint {
  3828. }
  3829. #u32680_div.disabled {
  3830. border-width:0px;
  3831. position:absolute;
  3832. left:0px;
  3833. top:0px;
  3834. width:150px;
  3835. height:28px;
  3836. background:inherit;
  3837. background-color:rgba(240, 240, 240, 1);
  3838. border-radius:0px;
  3839. filter:drop-shadow(none);
  3840. transition:none;
  3841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3842. font-weight:400;
  3843. font-style:normal;
  3844. font-size:14px;
  3845. }
  3846. #u32680.disabled {
  3847. }
  3848. #u32680_div.hint.disabled {
  3849. border-width:0px;
  3850. position:absolute;
  3851. left:0px;
  3852. top:0px;
  3853. width:150px;
  3854. height:28px;
  3855. background:inherit;
  3856. background-color:rgba(240, 240, 240, 1);
  3857. border-radius:0px;
  3858. filter:drop-shadow(none);
  3859. transition:none;
  3860. font-family:"Microsoft YaHei", sans-serif;
  3861. font-weight:400;
  3862. font-style:normal;
  3863. font-size:14px;
  3864. }
  3865. #u32680.hint.disabled {
  3866. }
  3867. #u32681 {
  3868. border-width:0px;
  3869. position:absolute;
  3870. left:0px;
  3871. top:0px;
  3872. width:0px;
  3873. height:0px;
  3874. }
  3875. #u32682_div {
  3876. border-width:0px;
  3877. position:absolute;
  3878. left:0px;
  3879. top:0px;
  3880. width:60px;
  3881. height:30px;
  3882. background:inherit;
  3883. background-color:rgba(24, 144, 255, 1);
  3884. border-radius:4px;
  3885. filter:drop-shadow(none);
  3886. transition:none;
  3887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3888. font-weight:400;
  3889. font-style:normal;
  3890. font-size:14px;
  3891. color:#FFFFFF;
  3892. }
  3893. #u32682 {
  3894. border-width:0px;
  3895. position:absolute;
  3896. left:1207px;
  3897. top:140px;
  3898. width:60px;
  3899. height:30px;
  3900. display:flex;
  3901. transition:none;
  3902. transform-origin:50% 50%;
  3903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3904. font-weight:400;
  3905. font-style:normal;
  3906. font-size:14px;
  3907. color:#FFFFFF;
  3908. }
  3909. #u32682 .text {
  3910. position:absolute;
  3911. align-self:center;
  3912. padding:2px 2px 2px 2px;
  3913. box-sizing:border-box;
  3914. width:100%;
  3915. }
  3916. #u32682_text {
  3917. border-width:0px;
  3918. word-wrap:break-word;
  3919. text-transform:none;
  3920. }
  3921. #u32683_div {
  3922. border-width:0px;
  3923. position:absolute;
  3924. left:0px;
  3925. top:0px;
  3926. width:60px;
  3927. height:30px;
  3928. background:inherit;
  3929. background-color:rgba(255, 255, 255, 1);
  3930. box-sizing:border-box;
  3931. border-width:1px;
  3932. border-style:solid;
  3933. border-color:rgba(170, 170, 170, 1);
  3934. border-radius:4px;
  3935. filter:drop-shadow(none);
  3936. transition:none;
  3937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3938. font-weight:400;
  3939. font-style:normal;
  3940. font-size:14px;
  3941. }
  3942. #u32683 {
  3943. border-width:0px;
  3944. position:absolute;
  3945. left:1277px;
  3946. top:140px;
  3947. width:60px;
  3948. height:30px;
  3949. display:flex;
  3950. transition:none;
  3951. transform-origin:50% 50%;
  3952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3953. font-weight:400;
  3954. font-style:normal;
  3955. font-size:14px;
  3956. }
  3957. #u32683 .text {
  3958. position:absolute;
  3959. align-self:center;
  3960. padding:2px 2px 2px 2px;
  3961. box-sizing:border-box;
  3962. width:100%;
  3963. }
  3964. #u32683_text {
  3965. border-width:0px;
  3966. word-wrap:break-word;
  3967. text-transform:none;
  3968. }
  3969. #u32684 {
  3970. border-width:0px;
  3971. position:absolute;
  3972. left:0px;
  3973. top:0px;
  3974. width:0px;
  3975. height:0px;
  3976. }
  3977. #u32685_div {
  3978. border-width:0px;
  3979. position:absolute;
  3980. left:0px;
  3981. top:0px;
  3982. width:160px;
  3983. height:30px;
  3984. background:inherit;
  3985. background-color:rgba(255, 255, 255, 1);
  3986. box-sizing:border-box;
  3987. border-width:1px;
  3988. border-style:solid;
  3989. border-color:rgba(215, 215, 215, 1);
  3990. border-radius:4px;
  3991. filter:drop-shadow(none);
  3992. transition:none;
  3993. font-size:14px;
  3994. }
  3995. #u32685 {
  3996. border-width:0px;
  3997. position:absolute;
  3998. left:1037px;
  3999. top:140px;
  4000. width:160px;
  4001. height:30px;
  4002. display:flex;
  4003. transition:none;
  4004. transform-origin:50% 50%;
  4005. font-size:14px;
  4006. }
  4007. #u32685 .text {
  4008. position:absolute;
  4009. align-self:center;
  4010. padding:2px 2px 2px 2px;
  4011. box-sizing:border-box;
  4012. width:100%;
  4013. }
  4014. #u32685_text {
  4015. border-width:0px;
  4016. word-wrap:break-word;
  4017. text-transform:none;
  4018. visibility:hidden;
  4019. }
  4020. #u32686_input {
  4021. position:absolute;
  4022. left:0px;
  4023. top:0px;
  4024. width:153px;
  4025. height:23px;
  4026. padding:2px 2px 2px 2px;
  4027. font-family:'ArialMT', 'Arial', sans-serif;
  4028. font-weight:400;
  4029. font-style:normal;
  4030. font-size:14px;
  4031. letter-spacing:normal;
  4032. color:#AAAAAA;
  4033. vertical-align:none;
  4034. text-align:left;
  4035. text-transform:none;
  4036. background-color:transparent;
  4037. border-color:transparent;
  4038. }
  4039. #u32686_input.disabled {
  4040. position:absolute;
  4041. left:0px;
  4042. top:0px;
  4043. width:153px;
  4044. height:23px;
  4045. padding:2px 2px 2px 2px;
  4046. font-family:'ArialMT', 'Arial', sans-serif;
  4047. font-weight:400;
  4048. font-style:normal;
  4049. font-size:14px;
  4050. letter-spacing:normal;
  4051. color:#AAAAAA;
  4052. vertical-align:none;
  4053. text-align:left;
  4054. text-transform:none;
  4055. background-color:transparent;
  4056. border-color:transparent;
  4057. }
  4058. #u32686_div {
  4059. border-width:0px;
  4060. position:absolute;
  4061. left:0px;
  4062. top:0px;
  4063. width:153px;
  4064. height:23px;
  4065. background:inherit;
  4066. background-color:rgba(255, 255, 255, 1);
  4067. border-radius:0px;
  4068. filter:drop-shadow(none);
  4069. transition:none;
  4070. font-size:14px;
  4071. color:#AAAAAA;
  4072. }
  4073. #u32686 {
  4074. border-width:0px;
  4075. position:absolute;
  4076. left:1042px;
  4077. top:142px;
  4078. width:153px;
  4079. height:23px;
  4080. display:flex;
  4081. transition:none;
  4082. transform-origin:50% 50%;
  4083. font-size:14px;
  4084. color:#AAAAAA;
  4085. }
  4086. #u32686 .text {
  4087. position:absolute;
  4088. align-self:flex-start;
  4089. padding:2px 2px 2px 2px;
  4090. box-sizing:border-box;
  4091. width:100%;
  4092. }
  4093. #u32686_div.disabled {
  4094. border-width:0px;
  4095. position:absolute;
  4096. left:0px;
  4097. top:0px;
  4098. width:153px;
  4099. height:23px;
  4100. background:inherit;
  4101. background-color:rgba(240, 240, 240, 1);
  4102. border-radius:0px;
  4103. filter:drop-shadow(none);
  4104. transition:none;
  4105. font-size:14px;
  4106. color:#AAAAAA;
  4107. }
  4108. #u32686.disabled {
  4109. }
  4110. .u32686_input_option {
  4111. font-size:14px;
  4112. }
  4113. #u32687_div {
  4114. border-width:0px;
  4115. position:absolute;
  4116. left:0px;
  4117. top:0px;
  4118. width:73px;
  4119. height:50px;
  4120. background:inherit;
  4121. background-color:rgba(255, 255, 255, 0);
  4122. border-left:0px;
  4123. border-top:0px;
  4124. border-right:0px;
  4125. border-radius:0px;
  4126. border-bottom-right-radius:0px;
  4127. border-bottom-left-radius:0px;
  4128. filter:drop-shadow(none);
  4129. transition:none;
  4130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4131. font-weight:400;
  4132. font-style:normal;
  4133. font-size:18px;
  4134. line-height:40px;
  4135. }
  4136. #u32687 {
  4137. border-width:0px;
  4138. position:absolute;
  4139. left:357px;
  4140. top:50px;
  4141. width:73px;
  4142. height:50px;
  4143. display:flex;
  4144. transition:none;
  4145. transform-origin:50% 50%;
  4146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4147. font-weight:400;
  4148. font-style:normal;
  4149. font-size:18px;
  4150. line-height:40px;
  4151. }
  4152. #u32687 .text {
  4153. position:absolute;
  4154. align-self:center;
  4155. padding:0px 0px 0px 0px;
  4156. box-sizing:border-box;
  4157. width:100%;
  4158. }
  4159. #u32687_text {
  4160. border-width:0px;
  4161. white-space:nowrap;
  4162. text-transform:none;
  4163. }
  4164. #u32688 label {
  4165. left:0px;
  4166. width:100%;
  4167. height:100%;
  4168. }
  4169. #u32688_img {
  4170. border-width:0px;
  4171. position:absolute;
  4172. left:0px;
  4173. top:0px;
  4174. width:12px;
  4175. height:12px;
  4176. }
  4177. #u32688 {
  4178. border-width:0px;
  4179. position:absolute;
  4180. left:373px;
  4181. top:237px;
  4182. width:25px;
  4183. height:16px;
  4184. display:flex;
  4185. transition:none;
  4186. }
  4187. #u32688 .text {
  4188. position:absolute;
  4189. align-self:center;
  4190. padding:0px 2px 0px 2px;
  4191. box-sizing:border-box;
  4192. }
  4193. #u32688_img.selected {
  4194. }
  4195. #u32688.selected {
  4196. }
  4197. #u32688_img.disabled {
  4198. }
  4199. #u32688.disabled {
  4200. }
  4201. #u32688_img.selected.error {
  4202. }
  4203. #u32688.selected.error {
  4204. }
  4205. #u32688_img.selected.hint {
  4206. }
  4207. #u32688.selected.hint {
  4208. }
  4209. #u32688_img.selected.error.hint {
  4210. }
  4211. #u32688.selected.error.hint {
  4212. }
  4213. #u32688_img.mouseOver.selected {
  4214. }
  4215. #u32688.mouseOver.selected {
  4216. }
  4217. #u32688_img.mouseOver.selected.error {
  4218. }
  4219. #u32688.mouseOver.selected.error {
  4220. }
  4221. #u32688_img.mouseOver.selected.hint {
  4222. }
  4223. #u32688.mouseOver.selected.hint {
  4224. }
  4225. #u32688_img.mouseOver.selected.error.hint {
  4226. }
  4227. #u32688.mouseOver.selected.error.hint {
  4228. }
  4229. #u32688_img.mouseDown.selected {
  4230. }
  4231. #u32688.mouseDown.selected {
  4232. }
  4233. #u32688_img.mouseDown.selected.error {
  4234. }
  4235. #u32688.mouseDown.selected.error {
  4236. }
  4237. #u32688_img.mouseDown.selected.hint {
  4238. }
  4239. #u32688.mouseDown.selected.hint {
  4240. }
  4241. #u32688_img.mouseDown.selected.error.hint {
  4242. }
  4243. #u32688.mouseDown.selected.error.hint {
  4244. }
  4245. #u32688_img.mouseOver.mouseDown.selected {
  4246. }
  4247. #u32688.mouseOver.mouseDown.selected {
  4248. }
  4249. #u32688_img.mouseOver.mouseDown.selected.error {
  4250. }
  4251. #u32688.mouseOver.mouseDown.selected.error {
  4252. }
  4253. #u32688_img.mouseOver.mouseDown.selected.hint {
  4254. }
  4255. #u32688.mouseOver.mouseDown.selected.hint {
  4256. }
  4257. #u32688_img.mouseOver.mouseDown.selected.error.hint {
  4258. }
  4259. #u32688.mouseOver.mouseDown.selected.error.hint {
  4260. }
  4261. #u32688_img.focused.selected {
  4262. }
  4263. #u32688.focused.selected {
  4264. }
  4265. #u32688_img.focused.selected.error {
  4266. }
  4267. #u32688.focused.selected.error {
  4268. }
  4269. #u32688_img.focused.selected.hint {
  4270. }
  4271. #u32688.focused.selected.hint {
  4272. }
  4273. #u32688_img.focused.selected.error.hint {
  4274. }
  4275. #u32688.focused.selected.error.hint {
  4276. }
  4277. #u32688_img.selected.disabled {
  4278. }
  4279. #u32688.selected.disabled {
  4280. }
  4281. #u32688_img.selected.hint.disabled {
  4282. }
  4283. #u32688.selected.hint.disabled {
  4284. }
  4285. #u32688_img.selected.error.disabled {
  4286. }
  4287. #u32688.selected.error.disabled {
  4288. }
  4289. #u32688_img.selected.error.hint.disabled {
  4290. }
  4291. #u32688.selected.error.hint.disabled {
  4292. }
  4293. #u32688_text {
  4294. border-width:0px;
  4295. position:absolute;
  4296. left:12px;
  4297. top:0px;
  4298. width:13px;
  4299. word-wrap:break-word;
  4300. text-transform:none;
  4301. visibility:hidden;
  4302. }
  4303. #u32688_input {
  4304. border-width:0px;
  4305. position:absolute;
  4306. left:0px;
  4307. top:0px;
  4308. width:0px;
  4309. height:0px;
  4310. opacity:0;
  4311. }
  4312. #u32689 label {
  4313. left:0px;
  4314. width:100%;
  4315. height:100%;
  4316. }
  4317. #u32689_img {
  4318. border-width:0px;
  4319. position:absolute;
  4320. left:0px;
  4321. top:0px;
  4322. width:12px;
  4323. height:12px;
  4324. }
  4325. #u32689 {
  4326. border-width:0px;
  4327. position:absolute;
  4328. left:373px;
  4329. top:275px;
  4330. width:25px;
  4331. height:16px;
  4332. display:flex;
  4333. transition:none;
  4334. }
  4335. #u32689 .text {
  4336. position:absolute;
  4337. align-self:center;
  4338. padding:0px 2px 0px 2px;
  4339. box-sizing:border-box;
  4340. }
  4341. #u32689_img.selected {
  4342. }
  4343. #u32689.selected {
  4344. }
  4345. #u32689_img.disabled {
  4346. }
  4347. #u32689.disabled {
  4348. }
  4349. #u32689_img.selected.error {
  4350. }
  4351. #u32689.selected.error {
  4352. }
  4353. #u32689_img.selected.hint {
  4354. }
  4355. #u32689.selected.hint {
  4356. }
  4357. #u32689_img.selected.error.hint {
  4358. }
  4359. #u32689.selected.error.hint {
  4360. }
  4361. #u32689_img.mouseOver.selected {
  4362. }
  4363. #u32689.mouseOver.selected {
  4364. }
  4365. #u32689_img.mouseOver.selected.error {
  4366. }
  4367. #u32689.mouseOver.selected.error {
  4368. }
  4369. #u32689_img.mouseOver.selected.hint {
  4370. }
  4371. #u32689.mouseOver.selected.hint {
  4372. }
  4373. #u32689_img.mouseOver.selected.error.hint {
  4374. }
  4375. #u32689.mouseOver.selected.error.hint {
  4376. }
  4377. #u32689_img.mouseDown.selected {
  4378. }
  4379. #u32689.mouseDown.selected {
  4380. }
  4381. #u32689_img.mouseDown.selected.error {
  4382. }
  4383. #u32689.mouseDown.selected.error {
  4384. }
  4385. #u32689_img.mouseDown.selected.hint {
  4386. }
  4387. #u32689.mouseDown.selected.hint {
  4388. }
  4389. #u32689_img.mouseDown.selected.error.hint {
  4390. }
  4391. #u32689.mouseDown.selected.error.hint {
  4392. }
  4393. #u32689_img.mouseOver.mouseDown.selected {
  4394. }
  4395. #u32689.mouseOver.mouseDown.selected {
  4396. }
  4397. #u32689_img.mouseOver.mouseDown.selected.error {
  4398. }
  4399. #u32689.mouseOver.mouseDown.selected.error {
  4400. }
  4401. #u32689_img.mouseOver.mouseDown.selected.hint {
  4402. }
  4403. #u32689.mouseOver.mouseDown.selected.hint {
  4404. }
  4405. #u32689_img.mouseOver.mouseDown.selected.error.hint {
  4406. }
  4407. #u32689.mouseOver.mouseDown.selected.error.hint {
  4408. }
  4409. #u32689_img.focused.selected {
  4410. }
  4411. #u32689.focused.selected {
  4412. }
  4413. #u32689_img.focused.selected.error {
  4414. }
  4415. #u32689.focused.selected.error {
  4416. }
  4417. #u32689_img.focused.selected.hint {
  4418. }
  4419. #u32689.focused.selected.hint {
  4420. }
  4421. #u32689_img.focused.selected.error.hint {
  4422. }
  4423. #u32689.focused.selected.error.hint {
  4424. }
  4425. #u32689_img.selected.disabled {
  4426. }
  4427. #u32689.selected.disabled {
  4428. }
  4429. #u32689_img.selected.hint.disabled {
  4430. }
  4431. #u32689.selected.hint.disabled {
  4432. }
  4433. #u32689_img.selected.error.disabled {
  4434. }
  4435. #u32689.selected.error.disabled {
  4436. }
  4437. #u32689_img.selected.error.hint.disabled {
  4438. }
  4439. #u32689.selected.error.hint.disabled {
  4440. }
  4441. #u32689_text {
  4442. border-width:0px;
  4443. position:absolute;
  4444. left:12px;
  4445. top:0px;
  4446. width:13px;
  4447. word-wrap:break-word;
  4448. text-transform:none;
  4449. visibility:hidden;
  4450. }
  4451. #u32689_input {
  4452. border-width:0px;
  4453. position:absolute;
  4454. left:0px;
  4455. top:0px;
  4456. width:0px;
  4457. height:0px;
  4458. opacity:0;
  4459. }
  4460. #u32690 {
  4461. border-width:0px;
  4462. position:absolute;
  4463. left:0px;
  4464. top:0px;
  4465. width:0px;
  4466. height:0px;
  4467. }
  4468. #u32691_div {
  4469. border-width:0px;
  4470. position:absolute;
  4471. left:0px;
  4472. top:0px;
  4473. width:160px;
  4474. height:30px;
  4475. background:inherit;
  4476. background-color:rgba(255, 255, 255, 1);
  4477. box-sizing:border-box;
  4478. border-width:1px;
  4479. border-style:solid;
  4480. border-color:rgba(215, 215, 215, 1);
  4481. border-radius:4px;
  4482. filter:drop-shadow(none);
  4483. transition:none;
  4484. font-size:14px;
  4485. }
  4486. #u32691 {
  4487. border-width:0px;
  4488. position:absolute;
  4489. left:697px;
  4490. top:140px;
  4491. width:160px;
  4492. height:30px;
  4493. display:flex;
  4494. transition:none;
  4495. transform-origin:50% 50%;
  4496. font-size:14px;
  4497. }
  4498. #u32691 .text {
  4499. position:absolute;
  4500. align-self:center;
  4501. padding:2px 2px 2px 2px;
  4502. box-sizing:border-box;
  4503. width:100%;
  4504. }
  4505. #u32691_text {
  4506. border-width:0px;
  4507. word-wrap:break-word;
  4508. text-transform:none;
  4509. visibility:hidden;
  4510. }
  4511. #u32692_input {
  4512. position:absolute;
  4513. left:0px;
  4514. top:0px;
  4515. width:153px;
  4516. height:23px;
  4517. padding:2px 2px 2px 2px;
  4518. font-family:'ArialMT', 'Arial', sans-serif;
  4519. font-weight:400;
  4520. font-style:normal;
  4521. font-size:14px;
  4522. letter-spacing:normal;
  4523. color:#AAAAAA;
  4524. vertical-align:none;
  4525. text-align:left;
  4526. text-transform:none;
  4527. background-color:transparent;
  4528. border-color:transparent;
  4529. }
  4530. #u32692_input.disabled {
  4531. position:absolute;
  4532. left:0px;
  4533. top:0px;
  4534. width:153px;
  4535. height:23px;
  4536. padding:2px 2px 2px 2px;
  4537. font-family:'ArialMT', 'Arial', sans-serif;
  4538. font-weight:400;
  4539. font-style:normal;
  4540. font-size:14px;
  4541. letter-spacing:normal;
  4542. color:#AAAAAA;
  4543. vertical-align:none;
  4544. text-align:left;
  4545. text-transform:none;
  4546. background-color:transparent;
  4547. border-color:transparent;
  4548. }
  4549. #u32692_div {
  4550. border-width:0px;
  4551. position:absolute;
  4552. left:0px;
  4553. top:0px;
  4554. width:153px;
  4555. height:23px;
  4556. background:inherit;
  4557. background-color:rgba(255, 255, 255, 1);
  4558. border-radius:0px;
  4559. filter:drop-shadow(none);
  4560. transition:none;
  4561. font-size:14px;
  4562. color:#AAAAAA;
  4563. }
  4564. #u32692 {
  4565. border-width:0px;
  4566. position:absolute;
  4567. left:702px;
  4568. top:142px;
  4569. width:153px;
  4570. height:23px;
  4571. display:flex;
  4572. transition:none;
  4573. transform-origin:50% 50%;
  4574. font-size:14px;
  4575. color:#AAAAAA;
  4576. }
  4577. #u32692 .text {
  4578. position:absolute;
  4579. align-self:flex-start;
  4580. padding:2px 2px 2px 2px;
  4581. box-sizing:border-box;
  4582. width:100%;
  4583. }
  4584. #u32692_div.disabled {
  4585. border-width:0px;
  4586. position:absolute;
  4587. left:0px;
  4588. top:0px;
  4589. width:153px;
  4590. height:23px;
  4591. background:inherit;
  4592. background-color:rgba(240, 240, 240, 1);
  4593. border-radius:0px;
  4594. filter:drop-shadow(none);
  4595. transition:none;
  4596. font-size:14px;
  4597. color:#AAAAAA;
  4598. }
  4599. #u32692.disabled {
  4600. }
  4601. .u32692_input_option {
  4602. font-size:14px;
  4603. }
  4604. #u32693 {
  4605. border-width:0px;
  4606. position:absolute;
  4607. left:0px;
  4608. top:0px;
  4609. width:0px;
  4610. height:0px;
  4611. }
  4612. #u32694_div {
  4613. border-width:0px;
  4614. position:absolute;
  4615. left:0px;
  4616. top:0px;
  4617. width:160px;
  4618. height:30px;
  4619. background:inherit;
  4620. background-color:rgba(255, 255, 255, 1);
  4621. box-sizing:border-box;
  4622. border-width:1px;
  4623. border-style:solid;
  4624. border-color:rgba(215, 215, 215, 1);
  4625. border-radius:4px;
  4626. filter:drop-shadow(none);
  4627. transition:none;
  4628. font-size:14px;
  4629. }
  4630. #u32694 {
  4631. border-width:0px;
  4632. position:absolute;
  4633. left:357px;
  4634. top:140px;
  4635. width:160px;
  4636. height:30px;
  4637. display:flex;
  4638. transition:none;
  4639. transform-origin:50% 50%;
  4640. font-size:14px;
  4641. }
  4642. #u32694 .text {
  4643. position:absolute;
  4644. align-self:center;
  4645. padding:2px 2px 2px 2px;
  4646. box-sizing:border-box;
  4647. width:100%;
  4648. }
  4649. #u32694_text {
  4650. border-width:0px;
  4651. word-wrap:break-word;
  4652. text-transform:none;
  4653. visibility:hidden;
  4654. }
  4655. #u32695_input {
  4656. position:absolute;
  4657. left:0px;
  4658. top:0px;
  4659. width:153px;
  4660. height:23px;
  4661. padding:2px 2px 2px 2px;
  4662. font-family:'ArialMT', 'Arial', sans-serif;
  4663. font-weight:400;
  4664. font-style:normal;
  4665. font-size:14px;
  4666. letter-spacing:normal;
  4667. color:#AAAAAA;
  4668. vertical-align:none;
  4669. text-align:left;
  4670. text-transform:none;
  4671. background-color:transparent;
  4672. border-color:transparent;
  4673. }
  4674. #u32695_input.disabled {
  4675. position:absolute;
  4676. left:0px;
  4677. top:0px;
  4678. width:153px;
  4679. height:23px;
  4680. padding:2px 2px 2px 2px;
  4681. font-family:'ArialMT', 'Arial', sans-serif;
  4682. font-weight:400;
  4683. font-style:normal;
  4684. font-size:14px;
  4685. letter-spacing:normal;
  4686. color:#AAAAAA;
  4687. vertical-align:none;
  4688. text-align:left;
  4689. text-transform:none;
  4690. background-color:transparent;
  4691. border-color:transparent;
  4692. }
  4693. #u32695_div {
  4694. border-width:0px;
  4695. position:absolute;
  4696. left:0px;
  4697. top:0px;
  4698. width:153px;
  4699. height:23px;
  4700. background:inherit;
  4701. background-color:rgba(255, 255, 255, 1);
  4702. border-radius:0px;
  4703. filter:drop-shadow(none);
  4704. transition:none;
  4705. font-size:14px;
  4706. color:#AAAAAA;
  4707. }
  4708. #u32695 {
  4709. border-width:0px;
  4710. position:absolute;
  4711. left:362px;
  4712. top:142px;
  4713. width:153px;
  4714. height:23px;
  4715. display:flex;
  4716. transition:none;
  4717. transform-origin:50% 50%;
  4718. font-size:14px;
  4719. color:#AAAAAA;
  4720. }
  4721. #u32695 .text {
  4722. position:absolute;
  4723. align-self:flex-start;
  4724. padding:2px 2px 2px 2px;
  4725. box-sizing:border-box;
  4726. width:100%;
  4727. }
  4728. #u32695_div.disabled {
  4729. border-width:0px;
  4730. position:absolute;
  4731. left:0px;
  4732. top:0px;
  4733. width:153px;
  4734. height:23px;
  4735. background:inherit;
  4736. background-color:rgba(240, 240, 240, 1);
  4737. border-radius:0px;
  4738. filter:drop-shadow(none);
  4739. transition:none;
  4740. font-size:14px;
  4741. color:#AAAAAA;
  4742. }
  4743. #u32695.disabled {
  4744. }
  4745. .u32695_input_option {
  4746. font-size:14px;
  4747. }
  4748. #u32696 {
  4749. border-width:0px;
  4750. position:absolute;
  4751. left:0px;
  4752. top:0px;
  4753. width:0px;
  4754. height:0px;
  4755. }
  4756. #u32697_div {
  4757. border-width:0px;
  4758. position:absolute;
  4759. left:0px;
  4760. top:0px;
  4761. width:160px;
  4762. height:30px;
  4763. background:inherit;
  4764. background-color:rgba(255, 255, 255, 1);
  4765. box-sizing:border-box;
  4766. border-width:1px;
  4767. border-style:solid;
  4768. border-color:rgba(215, 215, 215, 1);
  4769. border-radius:4px;
  4770. filter:drop-shadow(none);
  4771. transition:none;
  4772. font-size:14px;
  4773. }
  4774. #u32697 {
  4775. border-width:0px;
  4776. position:absolute;
  4777. left:527px;
  4778. top:140px;
  4779. width:160px;
  4780. height:30px;
  4781. display:flex;
  4782. transition:none;
  4783. transform-origin:50% 50%;
  4784. font-size:14px;
  4785. }
  4786. #u32697 .text {
  4787. position:absolute;
  4788. align-self:center;
  4789. padding:2px 2px 2px 2px;
  4790. box-sizing:border-box;
  4791. width:100%;
  4792. }
  4793. #u32697_text {
  4794. border-width:0px;
  4795. word-wrap:break-word;
  4796. text-transform:none;
  4797. visibility:hidden;
  4798. }
  4799. #u32698_input {
  4800. position:absolute;
  4801. left:0px;
  4802. top:0px;
  4803. width:153px;
  4804. height:23px;
  4805. padding:2px 2px 2px 2px;
  4806. font-family:'ArialMT', 'Arial', sans-serif;
  4807. font-weight:400;
  4808. font-style:normal;
  4809. font-size:14px;
  4810. letter-spacing:normal;
  4811. color:#AAAAAA;
  4812. vertical-align:none;
  4813. text-align:left;
  4814. text-transform:none;
  4815. background-color:transparent;
  4816. border-color:transparent;
  4817. }
  4818. #u32698_input.disabled {
  4819. position:absolute;
  4820. left:0px;
  4821. top:0px;
  4822. width:153px;
  4823. height:23px;
  4824. padding:2px 2px 2px 2px;
  4825. font-family:'ArialMT', 'Arial', sans-serif;
  4826. font-weight:400;
  4827. font-style:normal;
  4828. font-size:14px;
  4829. letter-spacing:normal;
  4830. color:#AAAAAA;
  4831. vertical-align:none;
  4832. text-align:left;
  4833. text-transform:none;
  4834. background-color:transparent;
  4835. border-color:transparent;
  4836. }
  4837. #u32698_div {
  4838. border-width:0px;
  4839. position:absolute;
  4840. left:0px;
  4841. top:0px;
  4842. width:153px;
  4843. height:23px;
  4844. background:inherit;
  4845. background-color:rgba(255, 255, 255, 1);
  4846. border-radius:0px;
  4847. filter:drop-shadow(none);
  4848. transition:none;
  4849. font-size:14px;
  4850. color:#AAAAAA;
  4851. }
  4852. #u32698 {
  4853. border-width:0px;
  4854. position:absolute;
  4855. left:532px;
  4856. top:142px;
  4857. width:153px;
  4858. height:23px;
  4859. display:flex;
  4860. transition:none;
  4861. transform-origin:50% 50%;
  4862. font-size:14px;
  4863. color:#AAAAAA;
  4864. }
  4865. #u32698 .text {
  4866. position:absolute;
  4867. align-self:flex-start;
  4868. padding:2px 2px 2px 2px;
  4869. box-sizing:border-box;
  4870. width:100%;
  4871. }
  4872. #u32698_div.disabled {
  4873. border-width:0px;
  4874. position:absolute;
  4875. left:0px;
  4876. top:0px;
  4877. width:153px;
  4878. height:23px;
  4879. background:inherit;
  4880. background-color:rgba(240, 240, 240, 1);
  4881. border-radius:0px;
  4882. filter:drop-shadow(none);
  4883. transition:none;
  4884. font-size:14px;
  4885. color:#AAAAAA;
  4886. }
  4887. #u32698.disabled {
  4888. }
  4889. .u32698_input_option {
  4890. font-size:14px;
  4891. }
  4892. #u32699 {
  4893. border-width:0px;
  4894. position:absolute;
  4895. left:120px;
  4896. top:50px;
  4897. width:200px;
  4898. height:1188px;
  4899. }
  4900. #u32700_div {
  4901. border-width:0px;
  4902. position:absolute;
  4903. left:0px;
  4904. top:0px;
  4905. width:200px;
  4906. height:1188px;
  4907. background:inherit;
  4908. background-color:rgba(255, 255, 255, 1);
  4909. border-radius:0px;
  4910. filter:drop-shadow(none);
  4911. transition:none;
  4912. }
  4913. #u32700 {
  4914. border-width:0px;
  4915. position:absolute;
  4916. left:0px;
  4917. top:0px;
  4918. width:200px;
  4919. height:1188px;
  4920. display:flex;
  4921. transition:none;
  4922. transform-origin:50% 50%;
  4923. }
  4924. #u32700 .text {
  4925. position:absolute;
  4926. align-self:center;
  4927. padding:2px 2px 2px 2px;
  4928. box-sizing:border-box;
  4929. width:100%;
  4930. }
  4931. #u32700_text {
  4932. border-width:0px;
  4933. word-wrap:break-word;
  4934. text-transform:none;
  4935. visibility:hidden;
  4936. }
  4937. #u32701_div {
  4938. border-width:0px;
  4939. position:absolute;
  4940. left:0px;
  4941. top:0px;
  4942. width:200px;
  4943. height:60px;
  4944. background:inherit;
  4945. background-color:rgba(224, 231, 247, 1);
  4946. border-radius:0px;
  4947. filter:drop-shadow(none);
  4948. transition:none;
  4949. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4950. font-weight:500;
  4951. font-style:normal;
  4952. font-size:18px;
  4953. }
  4954. #u32701 {
  4955. border-width:0px;
  4956. position:absolute;
  4957. left:0px;
  4958. top:0px;
  4959. width:200px;
  4960. height:60px;
  4961. display:flex;
  4962. transition:none;
  4963. transform-origin:50% 50%;
  4964. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4965. font-weight:500;
  4966. font-style:normal;
  4967. font-size:18px;
  4968. }
  4969. #u32701 .text {
  4970. position:absolute;
  4971. align-self:center;
  4972. padding:0px 0px 0px 20px;
  4973. box-sizing:border-box;
  4974. width:100%;
  4975. }
  4976. #u32701_text {
  4977. border-width:0px;
  4978. word-wrap:break-word;
  4979. text-transform:none;
  4980. }
  4981. #u32702_div {
  4982. border-width:0px;
  4983. position:absolute;
  4984. left:0px;
  4985. top:0px;
  4986. width:65px;
  4987. height:22px;
  4988. background:inherit;
  4989. background-color:rgba(255, 255, 255, 0);
  4990. border-radius:0px;
  4991. filter:drop-shadow(none);
  4992. transition:none;
  4993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4994. font-weight:400;
  4995. font-style:normal;
  4996. font-size:16px;
  4997. }
  4998. #u32702 {
  4999. border-width:0px;
  5000. position:absolute;
  5001. left:27px;
  5002. top:296px;
  5003. width:65px;
  5004. height:22px;
  5005. display:flex;
  5006. transition:none;
  5007. transform-origin:50% 50%;
  5008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5009. font-weight:400;
  5010. font-style:normal;
  5011. font-size:16px;
  5012. }
  5013. #u32702 .text {
  5014. position:absolute;
  5015. align-self:flex-start;
  5016. padding:0px 0px 0px 0px;
  5017. box-sizing:border-box;
  5018. width:100%;
  5019. }
  5020. #u32702_text {
  5021. border-width:0px;
  5022. white-space:nowrap;
  5023. text-transform:none;
  5024. }
  5025. #u32703_div {
  5026. border-width:0px;
  5027. position:absolute;
  5028. left:0px;
  5029. top:0px;
  5030. width:65px;
  5031. height:22px;
  5032. background:inherit;
  5033. background-color:rgba(255, 255, 255, 0);
  5034. border-radius:0px;
  5035. filter:drop-shadow(none);
  5036. transition:none;
  5037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5038. font-weight:400;
  5039. font-style:normal;
  5040. font-size:16px;
  5041. }
  5042. #u32703 {
  5043. border-width:0px;
  5044. position:absolute;
  5045. left:27px;
  5046. top:338px;
  5047. width:65px;
  5048. height:22px;
  5049. display:flex;
  5050. transition:none;
  5051. transform-origin:50% 50%;
  5052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5053. font-weight:400;
  5054. font-style:normal;
  5055. font-size:16px;
  5056. }
  5057. #u32703 .text {
  5058. position:absolute;
  5059. align-self:flex-start;
  5060. padding:0px 0px 0px 0px;
  5061. box-sizing:border-box;
  5062. width:100%;
  5063. }
  5064. #u32703_text {
  5065. border-width:0px;
  5066. white-space:nowrap;
  5067. text-transform:none;
  5068. }
  5069. #u32704_div {
  5070. border-width:0px;
  5071. position:absolute;
  5072. left:0px;
  5073. top:0px;
  5074. width:49px;
  5075. height:22px;
  5076. background:inherit;
  5077. background-color:rgba(255, 255, 255, 0);
  5078. border-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:16px;
  5085. }
  5086. #u32704 {
  5087. border-width:0px;
  5088. position:absolute;
  5089. left:27px;
  5090. top:449px;
  5091. width:49px;
  5092. height:22px;
  5093. display:flex;
  5094. transition:none;
  5095. transform-origin:50% 50%;
  5096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5097. font-weight:400;
  5098. font-style:normal;
  5099. font-size:16px;
  5100. }
  5101. #u32704 .text {
  5102. position:absolute;
  5103. align-self:flex-start;
  5104. padding:0px 0px 0px 0px;
  5105. box-sizing:border-box;
  5106. width:100%;
  5107. }
  5108. #u32704_text {
  5109. border-width:0px;
  5110. white-space:nowrap;
  5111. text-transform:none;
  5112. }
  5113. #u32705_div {
  5114. border-width:0px;
  5115. position:absolute;
  5116. left:0px;
  5117. top:0px;
  5118. width:65px;
  5119. height:22px;
  5120. background:inherit;
  5121. background-color:rgba(255, 255, 255, 0);
  5122. border-radius:0px;
  5123. filter:drop-shadow(none);
  5124. transition:none;
  5125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5126. font-weight:400;
  5127. font-style:normal;
  5128. font-size:16px;
  5129. }
  5130. #u32705 {
  5131. border-width:0px;
  5132. position:absolute;
  5133. left:27px;
  5134. top:575px;
  5135. width:65px;
  5136. height:22px;
  5137. display:flex;
  5138. transition:none;
  5139. transform-origin:50% 50%;
  5140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5141. font-weight:400;
  5142. font-style:normal;
  5143. font-size:16px;
  5144. }
  5145. #u32705 .text {
  5146. position:absolute;
  5147. align-self:flex-start;
  5148. padding:0px 0px 0px 0px;
  5149. box-sizing:border-box;
  5150. width:100%;
  5151. }
  5152. #u32705_text {
  5153. border-width:0px;
  5154. white-space:nowrap;
  5155. text-transform:none;
  5156. }
  5157. #u32706_div {
  5158. border-width:0px;
  5159. position:absolute;
  5160. left:0px;
  5161. top:0px;
  5162. width:49px;
  5163. height:17px;
  5164. background:inherit;
  5165. background-color:rgba(255, 255, 255, 0);
  5166. border-radius:0px;
  5167. filter:drop-shadow(none);
  5168. transition:none;
  5169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5170. font-weight:400;
  5171. font-style:normal;
  5172. font-size:12px;
  5173. color:#AAAAAA;
  5174. }
  5175. #u32706 {
  5176. border-width:0px;
  5177. position:absolute;
  5178. left:27px;
  5179. top:220px;
  5180. width:49px;
  5181. height:17px;
  5182. display:flex;
  5183. transition:none;
  5184. transform-origin:50% 50%;
  5185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5186. font-weight:400;
  5187. font-style:normal;
  5188. font-size:12px;
  5189. color:#AAAAAA;
  5190. }
  5191. #u32706 .text {
  5192. position:absolute;
  5193. align-self:flex-start;
  5194. padding:0px 0px 0px 0px;
  5195. box-sizing:border-box;
  5196. width:100%;
  5197. }
  5198. #u32706_text {
  5199. border-width:0px;
  5200. white-space:nowrap;
  5201. text-transform:none;
  5202. }
  5203. #u32707 {
  5204. border-width:0px;
  5205. position:absolute;
  5206. left:0px;
  5207. top:390px;
  5208. width:200px;
  5209. height:1px;
  5210. display:flex;
  5211. transition:none;
  5212. }
  5213. #u32707 .text {
  5214. position:absolute;
  5215. align-self:center;
  5216. padding:2px 2px 2px 2px;
  5217. box-sizing:border-box;
  5218. width:100%;
  5219. }
  5220. #u32707_img {
  5221. border-width:0px;
  5222. position:absolute;
  5223. left:0px;
  5224. top:0px;
  5225. width:201px;
  5226. height:2px;
  5227. }
  5228. #u32707_text {
  5229. border-width:0px;
  5230. word-wrap:break-word;
  5231. text-transform:none;
  5232. visibility:hidden;
  5233. }
  5234. #u32708_div {
  5235. border-width:0px;
  5236. position:absolute;
  5237. left:0px;
  5238. top:0px;
  5239. width:65px;
  5240. height:22px;
  5241. background:inherit;
  5242. background-color:rgba(255, 255, 255, 0);
  5243. border-radius:0px;
  5244. filter:drop-shadow(none);
  5245. transition:none;
  5246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5247. font-weight:400;
  5248. font-style:normal;
  5249. font-size:16px;
  5250. }
  5251. #u32708 {
  5252. border-width:0px;
  5253. position:absolute;
  5254. left:27px;
  5255. top:533px;
  5256. width:65px;
  5257. height:22px;
  5258. display:flex;
  5259. transition:none;
  5260. transform-origin:50% 50%;
  5261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5262. font-weight:400;
  5263. font-style:normal;
  5264. font-size:16px;
  5265. }
  5266. #u32708 .text {
  5267. position:absolute;
  5268. align-self:flex-start;
  5269. padding:0px 0px 0px 0px;
  5270. box-sizing:border-box;
  5271. width:100%;
  5272. }
  5273. #u32708_text {
  5274. border-width:0px;
  5275. white-space:nowrap;
  5276. text-transform:none;
  5277. }
  5278. #u32709_div {
  5279. border-width:0px;
  5280. position:absolute;
  5281. left:0px;
  5282. top:0px;
  5283. width:65px;
  5284. height:22px;
  5285. background:inherit;
  5286. background-color:rgba(255, 255, 255, 0);
  5287. border-radius:0px;
  5288. filter:drop-shadow(none);
  5289. transition:none;
  5290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5291. font-weight:400;
  5292. font-style:normal;
  5293. font-size:16px;
  5294. }
  5295. #u32709 {
  5296. border-width:0px;
  5297. position:absolute;
  5298. left:27px;
  5299. top:617px;
  5300. width:65px;
  5301. height:22px;
  5302. display:flex;
  5303. transition:none;
  5304. transform-origin:50% 50%;
  5305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5306. font-weight:400;
  5307. font-style:normal;
  5308. font-size:16px;
  5309. }
  5310. #u32709 .text {
  5311. position:absolute;
  5312. align-self:flex-start;
  5313. padding:0px 0px 0px 0px;
  5314. box-sizing:border-box;
  5315. width:100%;
  5316. }
  5317. #u32709_text {
  5318. border-width:0px;
  5319. white-space:nowrap;
  5320. text-transform:none;
  5321. }
  5322. #u32710_div {
  5323. border-width:0px;
  5324. position:absolute;
  5325. left:0px;
  5326. top:0px;
  5327. width:49px;
  5328. height:17px;
  5329. background:inherit;
  5330. background-color:rgba(255, 255, 255, 0);
  5331. border-radius:0px;
  5332. filter:drop-shadow(none);
  5333. transition:none;
  5334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5335. font-weight:400;
  5336. font-style:normal;
  5337. font-size:12px;
  5338. color:#AAAAAA;
  5339. }
  5340. #u32710 {
  5341. border-width:0px;
  5342. position:absolute;
  5343. left:27px;
  5344. top:412px;
  5345. width:49px;
  5346. height:17px;
  5347. display:flex;
  5348. transition:none;
  5349. transform-origin:50% 50%;
  5350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5351. font-weight:400;
  5352. font-style:normal;
  5353. font-size:12px;
  5354. color:#AAAAAA;
  5355. }
  5356. #u32710 .text {
  5357. position:absolute;
  5358. align-self:flex-start;
  5359. padding:0px 0px 0px 0px;
  5360. box-sizing:border-box;
  5361. width:100%;
  5362. }
  5363. #u32710_text {
  5364. border-width:0px;
  5365. white-space:nowrap;
  5366. text-transform:none;
  5367. }
  5368. #u32711_div {
  5369. border-width:0px;
  5370. position:absolute;
  5371. left:0px;
  5372. top:0px;
  5373. width:65px;
  5374. height:22px;
  5375. background:inherit;
  5376. background-color:rgba(255, 255, 255, 0);
  5377. border-radius:0px;
  5378. filter:drop-shadow(none);
  5379. transition:none;
  5380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5381. font-weight:400;
  5382. font-style:normal;
  5383. font-size:16px;
  5384. }
  5385. #u32711 {
  5386. border-width:0px;
  5387. position:absolute;
  5388. left:27px;
  5389. top:116px;
  5390. width:65px;
  5391. height:22px;
  5392. display:flex;
  5393. transition:none;
  5394. transform-origin:50% 50%;
  5395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5396. font-weight:400;
  5397. font-style:normal;
  5398. font-size:16px;
  5399. }
  5400. #u32711 .text {
  5401. position:absolute;
  5402. align-self:flex-start;
  5403. padding:0px 0px 0px 0px;
  5404. box-sizing:border-box;
  5405. width:100%;
  5406. }
  5407. #u32711_text {
  5408. border-width:0px;
  5409. white-space:nowrap;
  5410. text-transform:none;
  5411. }
  5412. #u32712_div {
  5413. border-width:0px;
  5414. position:absolute;
  5415. left:0px;
  5416. top:0px;
  5417. width:65px;
  5418. height:22px;
  5419. background:inherit;
  5420. background-color:rgba(255, 255, 255, 0);
  5421. border-radius:0px;
  5422. filter:drop-shadow(none);
  5423. transition:none;
  5424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5425. font-weight:400;
  5426. font-style:normal;
  5427. font-size:16px;
  5428. }
  5429. #u32712 {
  5430. border-width:0px;
  5431. position:absolute;
  5432. left:27px;
  5433. top:254px;
  5434. width:65px;
  5435. height:22px;
  5436. display:flex;
  5437. transition:none;
  5438. transform-origin:50% 50%;
  5439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5440. font-weight:400;
  5441. font-style:normal;
  5442. font-size:16px;
  5443. }
  5444. #u32712 .text {
  5445. position:absolute;
  5446. align-self:flex-start;
  5447. padding:0px 0px 0px 0px;
  5448. box-sizing:border-box;
  5449. width:100%;
  5450. }
  5451. #u32712_text {
  5452. border-width:0px;
  5453. white-space:nowrap;
  5454. text-transform:none;
  5455. }
  5456. #u32713_div {
  5457. border-width:0px;
  5458. position:absolute;
  5459. left:0px;
  5460. top:0px;
  5461. width:49px;
  5462. height:17px;
  5463. background:inherit;
  5464. background-color:rgba(255, 255, 255, 0);
  5465. border-radius:0px;
  5466. filter:drop-shadow(none);
  5467. transition:none;
  5468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5469. font-weight:400;
  5470. font-style:normal;
  5471. font-size:12px;
  5472. color:#AAAAAA;
  5473. }
  5474. #u32713 {
  5475. border-width:0px;
  5476. position:absolute;
  5477. left:27px;
  5478. top:80px;
  5479. width:49px;
  5480. height:17px;
  5481. display:flex;
  5482. transition:none;
  5483. transform-origin:50% 50%;
  5484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5485. font-weight:400;
  5486. font-style:normal;
  5487. font-size:12px;
  5488. color:#AAAAAA;
  5489. }
  5490. #u32713 .text {
  5491. position:absolute;
  5492. align-self:flex-start;
  5493. padding:0px 0px 0px 0px;
  5494. box-sizing:border-box;
  5495. width:100%;
  5496. }
  5497. #u32713_text {
  5498. border-width:0px;
  5499. white-space:nowrap;
  5500. text-transform:none;
  5501. }
  5502. #u32714 {
  5503. border-width:0px;
  5504. position:absolute;
  5505. left:0px;
  5506. top:199px;
  5507. width:200px;
  5508. height:1px;
  5509. display:flex;
  5510. transition:none;
  5511. }
  5512. #u32714 .text {
  5513. position:absolute;
  5514. align-self:center;
  5515. padding:2px 2px 2px 2px;
  5516. box-sizing:border-box;
  5517. width:100%;
  5518. }
  5519. #u32714_img {
  5520. border-width:0px;
  5521. position:absolute;
  5522. left:0px;
  5523. top:0px;
  5524. width:201px;
  5525. height:2px;
  5526. }
  5527. #u32714_text {
  5528. border-width:0px;
  5529. word-wrap:break-word;
  5530. text-transform:none;
  5531. visibility:hidden;
  5532. }
  5533. #u32715_div {
  5534. border-width:0px;
  5535. position:absolute;
  5536. left:0px;
  5537. top:0px;
  5538. width:65px;
  5539. height:22px;
  5540. background:inherit;
  5541. background-color:rgba(255, 255, 255, 0);
  5542. border-radius:0px;
  5543. filter:drop-shadow(none);
  5544. transition:none;
  5545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5546. font-weight:400;
  5547. font-style:normal;
  5548. font-size:16px;
  5549. }
  5550. #u32715 {
  5551. border-width:0px;
  5552. position:absolute;
  5553. left:27px;
  5554. top:156px;
  5555. width:65px;
  5556. height:22px;
  5557. display:flex;
  5558. transition:none;
  5559. transform-origin:50% 50%;
  5560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5561. font-weight:400;
  5562. font-style:normal;
  5563. font-size:16px;
  5564. }
  5565. #u32715 .text {
  5566. position:absolute;
  5567. align-self:flex-start;
  5568. padding:0px 0px 0px 0px;
  5569. box-sizing:border-box;
  5570. width:100%;
  5571. }
  5572. #u32715_text {
  5573. border-width:0px;
  5574. white-space:nowrap;
  5575. text-transform:none;
  5576. }
  5577. #u32716_div {
  5578. border-width:0px;
  5579. position:absolute;
  5580. left:0px;
  5581. top:0px;
  5582. width:65px;
  5583. height:22px;
  5584. background:inherit;
  5585. background-color:rgba(255, 255, 255, 0);
  5586. border-radius:0px;
  5587. filter:drop-shadow(none);
  5588. transition:none;
  5589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5590. font-weight:400;
  5591. font-style:normal;
  5592. font-size:16px;
  5593. }
  5594. #u32716 {
  5595. border-width:0px;
  5596. position:absolute;
  5597. left:27px;
  5598. top:491px;
  5599. width:65px;
  5600. height:22px;
  5601. display:flex;
  5602. transition:none;
  5603. transform-origin:50% 50%;
  5604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5605. font-weight:400;
  5606. font-style:normal;
  5607. font-size:16px;
  5608. }
  5609. #u32716 .text {
  5610. position:absolute;
  5611. align-self:flex-start;
  5612. padding:0px 0px 0px 0px;
  5613. box-sizing:border-box;
  5614. width:100%;
  5615. }
  5616. #u32716_text {
  5617. border-width:0px;
  5618. white-space:nowrap;
  5619. text-transform:none;
  5620. }
  5621. #u32717_div {
  5622. border-width:0px;
  5623. position:absolute;
  5624. left:0px;
  5625. top:0px;
  5626. width:534px;
  5627. height:40px;
  5628. background:inherit;
  5629. background-color:rgba(255, 255, 255, 0);
  5630. border-left:0px;
  5631. border-top:0px;
  5632. border-right:0px;
  5633. border-radius:0px;
  5634. border-bottom-right-radius:0px;
  5635. border-bottom-left-radius:0px;
  5636. filter:drop-shadow(none);
  5637. transition:none;
  5638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5639. font-weight:400;
  5640. font-style:normal;
  5641. font-size:14px;
  5642. color:#D9001B;
  5643. }
  5644. #u32717 {
  5645. border-width:0px;
  5646. position:absolute;
  5647. left:1036px;
  5648. top:179px;
  5649. width:534px;
  5650. height:40px;
  5651. display:flex;
  5652. transition:none;
  5653. transform-origin:50% 50%;
  5654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5655. font-weight:400;
  5656. font-style:normal;
  5657. font-size:14px;
  5658. color:#D9001B;
  5659. }
  5660. #u32717 .text {
  5661. position:absolute;
  5662. align-self:center;
  5663. padding:0px 0px 0px 0px;
  5664. box-sizing:border-box;
  5665. width:100%;
  5666. }
  5667. #u32717_text {
  5668. border-width:0px;
  5669. white-space:nowrap;
  5670. text-transform:none;
  5671. }
  5672. #u32718_div {
  5673. border-width:0px;
  5674. position:absolute;
  5675. left:0px;
  5676. top:0px;
  5677. width:547px;
  5678. height:120px;
  5679. background:inherit;
  5680. background-color:rgba(255, 255, 255, 0);
  5681. border-radius:0px;
  5682. filter:drop-shadow(none);
  5683. transition:none;
  5684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5685. font-weight:400;
  5686. font-style:normal;
  5687. font-size:14px;
  5688. color:#D9001B;
  5689. }
  5690. #u32718 {
  5691. border-width:0px;
  5692. position:absolute;
  5693. left:386px;
  5694. top:499px;
  5695. width:547px;
  5696. height:120px;
  5697. display:flex;
  5698. transition:none;
  5699. transform-origin:50% 50%;
  5700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5701. font-weight:400;
  5702. font-style:normal;
  5703. font-size:14px;
  5704. color:#D9001B;
  5705. }
  5706. #u32718 .text {
  5707. position:absolute;
  5708. align-self:flex-start;
  5709. padding:0px 0px 0px 0px;
  5710. box-sizing:border-box;
  5711. width:100%;
  5712. }
  5713. #u32718_text {
  5714. border-width:0px;
  5715. white-space:nowrap;
  5716. text-transform:none;
  5717. }
  5718. #u32719_div {
  5719. border-width:0px;
  5720. position:absolute;
  5721. left:0px;
  5722. top:0px;
  5723. width:610px;
  5724. height:20px;
  5725. background:inherit;
  5726. background-color:rgba(255, 255, 255, 0);
  5727. border-left:0px;
  5728. border-top:0px;
  5729. border-right:0px;
  5730. border-radius:0px;
  5731. border-bottom-right-radius:0px;
  5732. border-bottom-left-radius:0px;
  5733. filter:drop-shadow(none);
  5734. transition:none;
  5735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5736. font-weight:400;
  5737. font-style:normal;
  5738. font-size:14px;
  5739. }
  5740. #u32719 {
  5741. border-width:0px;
  5742. position:absolute;
  5743. left:352px;
  5744. top:100px;
  5745. width:610px;
  5746. height:20px;
  5747. display:flex;
  5748. transition:none;
  5749. transform-origin:50% 50%;
  5750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5751. font-weight:400;
  5752. font-style:normal;
  5753. font-size:14px;
  5754. }
  5755. #u32719 .text {
  5756. position:absolute;
  5757. align-self:center;
  5758. padding:0px 0px 0px 0px;
  5759. box-sizing:border-box;
  5760. width:100%;
  5761. }
  5762. #u32719_text {
  5763. border-width:0px;
  5764. white-space:nowrap;
  5765. text-transform:none;
  5766. }
  5767. #u32720 {
  5768. border-width:0px;
  5769. position:absolute;
  5770. left:0px;
  5771. top:0px;
  5772. width:0px;
  5773. height:0px;
  5774. }
  5775. #u32721 {
  5776. border-width:0px;
  5777. position:absolute;
  5778. left:0px;
  5779. top:0px;
  5780. width:0px;
  5781. height:0px;
  5782. }
  5783. #u32722 {
  5784. border-width:0px;
  5785. position:absolute;
  5786. left:0px;
  5787. top:0px;
  5788. width:0px;
  5789. height:0px;
  5790. }
  5791. #u32723_div {
  5792. border-width:0px;
  5793. position:absolute;
  5794. left:0px;
  5795. top:0px;
  5796. width:480px;
  5797. height:290px;
  5798. background:inherit;
  5799. background-color:rgba(255, 255, 255, 1);
  5800. box-sizing:border-box;
  5801. border-width:1px;
  5802. border-style:solid;
  5803. border-color:rgba(204, 204, 204, 1);
  5804. border-radius:4px;
  5805. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  5806. transition:none;
  5807. font-family:"Microsoft YaHei", sans-serif;
  5808. font-weight:400;
  5809. font-style:normal;
  5810. }
  5811. #u32723 {
  5812. border-width:0px;
  5813. position:absolute;
  5814. left:669px;
  5815. top:722px;
  5816. width:480px;
  5817. height:290px;
  5818. display:flex;
  5819. transition:none;
  5820. transform-origin:50% 50%;
  5821. font-family:"Microsoft YaHei", sans-serif;
  5822. font-weight:400;
  5823. font-style:normal;
  5824. }
  5825. #u32723 .text {
  5826. position:absolute;
  5827. align-self:center;
  5828. padding:2px 2px 2px 2px;
  5829. box-sizing:border-box;
  5830. width:100%;
  5831. }
  5832. #u32723_text {
  5833. border-width:0px;
  5834. word-wrap:break-word;
  5835. text-transform:none;
  5836. visibility:hidden;
  5837. }
  5838. #u32724_div {
  5839. border-width:0px;
  5840. position:absolute;
  5841. left:0px;
  5842. top:0px;
  5843. width:64px;
  5844. height:22px;
  5845. background:inherit;
  5846. background-color:rgba(255, 255, 255, 0);
  5847. border-radius:0px;
  5848. filter:drop-shadow(none);
  5849. transition:none;
  5850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5851. font-weight:400;
  5852. font-style:normal;
  5853. font-size:14px;
  5854. color:#666666;
  5855. line-height:22px;
  5856. }
  5857. #u32724 {
  5858. border-width:0px;
  5859. position:absolute;
  5860. left:696px;
  5861. top:785px;
  5862. width:64px;
  5863. height:22px;
  5864. display:flex;
  5865. transition:none;
  5866. transform-origin:50% 50%;
  5867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5868. font-weight:400;
  5869. font-style:normal;
  5870. font-size:14px;
  5871. color:#666666;
  5872. line-height:22px;
  5873. }
  5874. #u32724 .text {
  5875. position:absolute;
  5876. align-self:flex-start;
  5877. padding:0px 0px 0px 0px;
  5878. box-sizing:border-box;
  5879. width:100%;
  5880. }
  5881. #u32724_text {
  5882. border-width:0px;
  5883. white-space:nowrap;
  5884. text-transform:none;
  5885. }
  5886. #u32725_div {
  5887. border-width:0px;
  5888. position:absolute;
  5889. left:0px;
  5890. top:0px;
  5891. width:109px;
  5892. height:21px;
  5893. background:inherit;
  5894. background-color:rgba(255, 255, 255, 0);
  5895. border-radius:0px;
  5896. filter:drop-shadow(none);
  5897. transition:none;
  5898. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5899. font-weight:650;
  5900. font-style:normal;
  5901. font-size:18px;
  5902. color:#000000;
  5903. line-height:22px;
  5904. }
  5905. #u32725 {
  5906. border-width:0px;
  5907. position:absolute;
  5908. left:696px;
  5909. top:743px;
  5910. width:109px;
  5911. height:21px;
  5912. display:flex;
  5913. transition:none;
  5914. transform-origin:50% 50%;
  5915. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5916. font-weight:650;
  5917. font-style:normal;
  5918. font-size:18px;
  5919. color:#000000;
  5920. line-height:22px;
  5921. }
  5922. #u32725 .text {
  5923. position:absolute;
  5924. align-self:flex-start;
  5925. padding:0px 0px 0px 0px;
  5926. box-sizing:border-box;
  5927. width:100%;
  5928. }
  5929. #u32725_text {
  5930. border-width:0px;
  5931. white-space:nowrap;
  5932. text-transform:none;
  5933. }
  5934. #u32726 label {
  5935. left:0px;
  5936. width:100%;
  5937. height:100%;
  5938. }
  5939. #u32726_img {
  5940. border-width:0px;
  5941. position:absolute;
  5942. left:0px;
  5943. top:3px;
  5944. width:12px;
  5945. height:12px;
  5946. }
  5947. #u32726 {
  5948. border-width:0px;
  5949. position:absolute;
  5950. left:773px;
  5951. top:788px;
  5952. width:202px;
  5953. height:18px;
  5954. display:flex;
  5955. transition:none;
  5956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5957. font-weight:400;
  5958. font-style:normal;
  5959. }
  5960. #u32726 .text {
  5961. position:absolute;
  5962. align-self:center;
  5963. padding:0px 2px 0px 2px;
  5964. box-sizing:border-box;
  5965. }
  5966. #u32726_img.selected {
  5967. }
  5968. #u32726.selected {
  5969. }
  5970. #u32726_img.disabled {
  5971. }
  5972. #u32726.disabled {
  5973. }
  5974. #u32726_img.selected.error {
  5975. }
  5976. #u32726.selected.error {
  5977. }
  5978. #u32726_img.selected.hint {
  5979. }
  5980. #u32726.selected.hint {
  5981. }
  5982. #u32726_img.selected.error.hint {
  5983. }
  5984. #u32726.selected.error.hint {
  5985. }
  5986. #u32726_img.mouseOver.selected {
  5987. }
  5988. #u32726.mouseOver.selected {
  5989. }
  5990. #u32726_img.mouseOver.selected.error {
  5991. }
  5992. #u32726.mouseOver.selected.error {
  5993. }
  5994. #u32726_img.mouseOver.selected.hint {
  5995. }
  5996. #u32726.mouseOver.selected.hint {
  5997. }
  5998. #u32726_img.mouseOver.selected.error.hint {
  5999. }
  6000. #u32726.mouseOver.selected.error.hint {
  6001. }
  6002. #u32726_img.mouseDown.selected {
  6003. }
  6004. #u32726.mouseDown.selected {
  6005. }
  6006. #u32726_img.mouseDown.selected.error {
  6007. }
  6008. #u32726.mouseDown.selected.error {
  6009. }
  6010. #u32726_img.mouseDown.selected.hint {
  6011. }
  6012. #u32726.mouseDown.selected.hint {
  6013. }
  6014. #u32726_img.mouseDown.selected.error.hint {
  6015. }
  6016. #u32726.mouseDown.selected.error.hint {
  6017. }
  6018. #u32726_img.mouseOver.mouseDown.selected {
  6019. }
  6020. #u32726.mouseOver.mouseDown.selected {
  6021. }
  6022. #u32726_img.mouseOver.mouseDown.selected.error {
  6023. }
  6024. #u32726.mouseOver.mouseDown.selected.error {
  6025. }
  6026. #u32726_img.mouseOver.mouseDown.selected.hint {
  6027. }
  6028. #u32726.mouseOver.mouseDown.selected.hint {
  6029. }
  6030. #u32726_img.mouseOver.mouseDown.selected.error.hint {
  6031. }
  6032. #u32726.mouseOver.mouseDown.selected.error.hint {
  6033. }
  6034. #u32726_img.focused.selected {
  6035. }
  6036. #u32726.focused.selected {
  6037. }
  6038. #u32726_img.focused.selected.error {
  6039. }
  6040. #u32726.focused.selected.error {
  6041. }
  6042. #u32726_img.focused.selected.hint {
  6043. }
  6044. #u32726.focused.selected.hint {
  6045. }
  6046. #u32726_img.focused.selected.error.hint {
  6047. }
  6048. #u32726.focused.selected.error.hint {
  6049. }
  6050. #u32726_img.selected.disabled {
  6051. }
  6052. #u32726.selected.disabled {
  6053. }
  6054. #u32726_img.selected.hint.disabled {
  6055. }
  6056. #u32726.selected.hint.disabled {
  6057. }
  6058. #u32726_img.selected.error.disabled {
  6059. }
  6060. #u32726.selected.error.disabled {
  6061. }
  6062. #u32726_img.selected.error.hint.disabled {
  6063. }
  6064. #u32726.selected.error.hint.disabled {
  6065. }
  6066. #u32726_text {
  6067. border-width:0px;
  6068. position:absolute;
  6069. left:12px;
  6070. top:0px;
  6071. width:190px;
  6072. word-wrap:break-word;
  6073. text-transform:none;
  6074. }
  6075. #u32726_input {
  6076. border-width:0px;
  6077. position:absolute;
  6078. left:0px;
  6079. top:0px;
  6080. width:0px;
  6081. height:0px;
  6082. opacity:0;
  6083. }
  6084. #u32727 label {
  6085. left:0px;
  6086. width:100%;
  6087. height:100%;
  6088. }
  6089. #u32727_img {
  6090. border-width:0px;
  6091. position:absolute;
  6092. left:0px;
  6093. top:3px;
  6094. width:12px;
  6095. height:12px;
  6096. }
  6097. #u32727 {
  6098. border-width:0px;
  6099. position:absolute;
  6100. left:773px;
  6101. top:821px;
  6102. width:100px;
  6103. height:18px;
  6104. display:flex;
  6105. transition:none;
  6106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6107. font-weight:400;
  6108. font-style:normal;
  6109. }
  6110. #u32727 .text {
  6111. position:absolute;
  6112. align-self:center;
  6113. padding:0px 2px 0px 2px;
  6114. box-sizing:border-box;
  6115. }
  6116. #u32727_img.selected {
  6117. }
  6118. #u32727.selected {
  6119. }
  6120. #u32727_img.disabled {
  6121. }
  6122. #u32727.disabled {
  6123. }
  6124. #u32727_img.selected.error {
  6125. }
  6126. #u32727.selected.error {
  6127. }
  6128. #u32727_img.selected.hint {
  6129. }
  6130. #u32727.selected.hint {
  6131. }
  6132. #u32727_img.selected.error.hint {
  6133. }
  6134. #u32727.selected.error.hint {
  6135. }
  6136. #u32727_img.mouseOver.selected {
  6137. }
  6138. #u32727.mouseOver.selected {
  6139. }
  6140. #u32727_img.mouseOver.selected.error {
  6141. }
  6142. #u32727.mouseOver.selected.error {
  6143. }
  6144. #u32727_img.mouseOver.selected.hint {
  6145. }
  6146. #u32727.mouseOver.selected.hint {
  6147. }
  6148. #u32727_img.mouseOver.selected.error.hint {
  6149. }
  6150. #u32727.mouseOver.selected.error.hint {
  6151. }
  6152. #u32727_img.mouseDown.selected {
  6153. }
  6154. #u32727.mouseDown.selected {
  6155. }
  6156. #u32727_img.mouseDown.selected.error {
  6157. }
  6158. #u32727.mouseDown.selected.error {
  6159. }
  6160. #u32727_img.mouseDown.selected.hint {
  6161. }
  6162. #u32727.mouseDown.selected.hint {
  6163. }
  6164. #u32727_img.mouseDown.selected.error.hint {
  6165. }
  6166. #u32727.mouseDown.selected.error.hint {
  6167. }
  6168. #u32727_img.mouseOver.mouseDown.selected {
  6169. }
  6170. #u32727.mouseOver.mouseDown.selected {
  6171. }
  6172. #u32727_img.mouseOver.mouseDown.selected.error {
  6173. }
  6174. #u32727.mouseOver.mouseDown.selected.error {
  6175. }
  6176. #u32727_img.mouseOver.mouseDown.selected.hint {
  6177. }
  6178. #u32727.mouseOver.mouseDown.selected.hint {
  6179. }
  6180. #u32727_img.mouseOver.mouseDown.selected.error.hint {
  6181. }
  6182. #u32727.mouseOver.mouseDown.selected.error.hint {
  6183. }
  6184. #u32727_img.focused.selected {
  6185. }
  6186. #u32727.focused.selected {
  6187. }
  6188. #u32727_img.focused.selected.error {
  6189. }
  6190. #u32727.focused.selected.error {
  6191. }
  6192. #u32727_img.focused.selected.hint {
  6193. }
  6194. #u32727.focused.selected.hint {
  6195. }
  6196. #u32727_img.focused.selected.error.hint {
  6197. }
  6198. #u32727.focused.selected.error.hint {
  6199. }
  6200. #u32727_img.selected.disabled {
  6201. }
  6202. #u32727.selected.disabled {
  6203. }
  6204. #u32727_img.selected.hint.disabled {
  6205. }
  6206. #u32727.selected.hint.disabled {
  6207. }
  6208. #u32727_img.selected.error.disabled {
  6209. }
  6210. #u32727.selected.error.disabled {
  6211. }
  6212. #u32727_img.selected.error.hint.disabled {
  6213. }
  6214. #u32727.selected.error.hint.disabled {
  6215. }
  6216. #u32727_text {
  6217. border-width:0px;
  6218. position:absolute;
  6219. left:12px;
  6220. top:0px;
  6221. width:88px;
  6222. word-wrap:break-word;
  6223. text-transform:none;
  6224. }
  6225. #u32727_input {
  6226. border-width:0px;
  6227. position:absolute;
  6228. left:0px;
  6229. top:0px;
  6230. width:0px;
  6231. height:0px;
  6232. opacity:0;
  6233. }
  6234. #u32728 label {
  6235. left:0px;
  6236. width:100%;
  6237. height:100%;
  6238. }
  6239. #u32728_img {
  6240. border-width:0px;
  6241. position:absolute;
  6242. left:0px;
  6243. top:3px;
  6244. width:12px;
  6245. height:12px;
  6246. }
  6247. #u32728 {
  6248. border-width:0px;
  6249. position:absolute;
  6250. left:773px;
  6251. top:854px;
  6252. width:100px;
  6253. height:18px;
  6254. display:flex;
  6255. transition:none;
  6256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6257. font-weight:400;
  6258. font-style:normal;
  6259. }
  6260. #u32728 .text {
  6261. position:absolute;
  6262. align-self:center;
  6263. padding:0px 2px 0px 2px;
  6264. box-sizing:border-box;
  6265. }
  6266. #u32728_img.selected {
  6267. }
  6268. #u32728.selected {
  6269. }
  6270. #u32728_img.disabled {
  6271. }
  6272. #u32728.disabled {
  6273. }
  6274. #u32728_img.selected.error {
  6275. }
  6276. #u32728.selected.error {
  6277. }
  6278. #u32728_img.selected.hint {
  6279. }
  6280. #u32728.selected.hint {
  6281. }
  6282. #u32728_img.selected.error.hint {
  6283. }
  6284. #u32728.selected.error.hint {
  6285. }
  6286. #u32728_img.mouseOver.selected {
  6287. }
  6288. #u32728.mouseOver.selected {
  6289. }
  6290. #u32728_img.mouseOver.selected.error {
  6291. }
  6292. #u32728.mouseOver.selected.error {
  6293. }
  6294. #u32728_img.mouseOver.selected.hint {
  6295. }
  6296. #u32728.mouseOver.selected.hint {
  6297. }
  6298. #u32728_img.mouseOver.selected.error.hint {
  6299. }
  6300. #u32728.mouseOver.selected.error.hint {
  6301. }
  6302. #u32728_img.mouseDown.selected {
  6303. }
  6304. #u32728.mouseDown.selected {
  6305. }
  6306. #u32728_img.mouseDown.selected.error {
  6307. }
  6308. #u32728.mouseDown.selected.error {
  6309. }
  6310. #u32728_img.mouseDown.selected.hint {
  6311. }
  6312. #u32728.mouseDown.selected.hint {
  6313. }
  6314. #u32728_img.mouseDown.selected.error.hint {
  6315. }
  6316. #u32728.mouseDown.selected.error.hint {
  6317. }
  6318. #u32728_img.mouseOver.mouseDown.selected {
  6319. }
  6320. #u32728.mouseOver.mouseDown.selected {
  6321. }
  6322. #u32728_img.mouseOver.mouseDown.selected.error {
  6323. }
  6324. #u32728.mouseOver.mouseDown.selected.error {
  6325. }
  6326. #u32728_img.mouseOver.mouseDown.selected.hint {
  6327. }
  6328. #u32728.mouseOver.mouseDown.selected.hint {
  6329. }
  6330. #u32728_img.mouseOver.mouseDown.selected.error.hint {
  6331. }
  6332. #u32728.mouseOver.mouseDown.selected.error.hint {
  6333. }
  6334. #u32728_img.focused.selected {
  6335. }
  6336. #u32728.focused.selected {
  6337. }
  6338. #u32728_img.focused.selected.error {
  6339. }
  6340. #u32728.focused.selected.error {
  6341. }
  6342. #u32728_img.focused.selected.hint {
  6343. }
  6344. #u32728.focused.selected.hint {
  6345. }
  6346. #u32728_img.focused.selected.error.hint {
  6347. }
  6348. #u32728.focused.selected.error.hint {
  6349. }
  6350. #u32728_img.selected.disabled {
  6351. }
  6352. #u32728.selected.disabled {
  6353. }
  6354. #u32728_img.selected.hint.disabled {
  6355. }
  6356. #u32728.selected.hint.disabled {
  6357. }
  6358. #u32728_img.selected.error.disabled {
  6359. }
  6360. #u32728.selected.error.disabled {
  6361. }
  6362. #u32728_img.selected.error.hint.disabled {
  6363. }
  6364. #u32728.selected.error.hint.disabled {
  6365. }
  6366. #u32728_text {
  6367. border-width:0px;
  6368. position:absolute;
  6369. left:12px;
  6370. top:0px;
  6371. width:88px;
  6372. word-wrap:break-word;
  6373. text-transform:none;
  6374. }
  6375. #u32728_input {
  6376. border-width:0px;
  6377. position:absolute;
  6378. left:0px;
  6379. top:0px;
  6380. width:0px;
  6381. height:0px;
  6382. opacity:0;
  6383. }
  6384. #u32729 {
  6385. border-width:0px;
  6386. position:absolute;
  6387. left:0px;
  6388. top:0px;
  6389. width:0px;
  6390. height:0px;
  6391. }
  6392. #u32730_div {
  6393. border-width:0px;
  6394. position:absolute;
  6395. left:0px;
  6396. top:0px;
  6397. width:347px;
  6398. height:60px;
  6399. background:inherit;
  6400. background-color:rgba(255, 255, 255, 1);
  6401. box-sizing:border-box;
  6402. border-width:1px;
  6403. border-style:solid;
  6404. border-color:rgba(41, 143, 255, 1);
  6405. border-radius:4px;
  6406. filter:drop-shadow(0px 0px 1.5px rgba(0, 0, 0, 0.34901960784313724));
  6407. transition:none;
  6408. font-family:"Microsoft YaHei", sans-serif;
  6409. font-weight:400;
  6410. font-style:normal;
  6411. font-size:14px;
  6412. color:#CCCCCC;
  6413. text-align:left;
  6414. }
  6415. #u32730 {
  6416. border-width:0px;
  6417. position:absolute;
  6418. left:773px;
  6419. top:882px;
  6420. width:347px;
  6421. height:60px;
  6422. display:flex;
  6423. transition:none;
  6424. transform-origin:50% 50%;
  6425. font-family:"Microsoft YaHei", sans-serif;
  6426. font-weight:400;
  6427. font-style:normal;
  6428. font-size:14px;
  6429. color:#CCCCCC;
  6430. text-align:left;
  6431. }
  6432. #u32730 .text {
  6433. position:absolute;
  6434. align-self:center;
  6435. padding:2px 8px 2px 8px;
  6436. box-sizing:border-box;
  6437. width:100%;
  6438. }
  6439. #u32730_text {
  6440. border-width:0px;
  6441. word-wrap:break-word;
  6442. text-transform:none;
  6443. visibility:hidden;
  6444. }
  6445. #u32731_input {
  6446. position:absolute;
  6447. left:0px;
  6448. top:0px;
  6449. width:330px;
  6450. height:38px;
  6451. padding:2px 2px 2px 2px;
  6452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6453. font-weight:400;
  6454. font-style:normal;
  6455. font-size:14px;
  6456. letter-spacing:normal;
  6457. color:#000000;
  6458. vertical-align:none;
  6459. text-align:left;
  6460. text-transform:none;
  6461. background-color:transparent;
  6462. border-color:transparent;
  6463. }
  6464. #u32731_input.hint {
  6465. position:absolute;
  6466. left:0px;
  6467. top:0px;
  6468. width:330px;
  6469. height:38px;
  6470. padding:2px 2px 2px 2px;
  6471. font-family:"Microsoft YaHei", sans-serif;
  6472. font-weight:400;
  6473. font-style:normal;
  6474. font-size:12px;
  6475. letter-spacing:normal;
  6476. color:#AAAAAA;
  6477. vertical-align:none;
  6478. text-align:left;
  6479. text-transform:none;
  6480. background-color:transparent;
  6481. border-color:transparent;
  6482. }
  6483. #u32731_input.disabled {
  6484. position:absolute;
  6485. left:0px;
  6486. top:0px;
  6487. width:330px;
  6488. height:38px;
  6489. padding:2px 2px 2px 2px;
  6490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6491. font-weight:400;
  6492. font-style:normal;
  6493. font-size:14px;
  6494. letter-spacing:normal;
  6495. color:#000000;
  6496. vertical-align:none;
  6497. text-align:left;
  6498. text-transform:none;
  6499. background-color:transparent;
  6500. border-color:transparent;
  6501. }
  6502. #u32731_input.hint.disabled {
  6503. position:absolute;
  6504. left:0px;
  6505. top:0px;
  6506. width:330px;
  6507. height:38px;
  6508. padding:2px 2px 2px 2px;
  6509. font-family:"Microsoft YaHei", sans-serif;
  6510. font-weight:400;
  6511. font-style:normal;
  6512. font-size:12px;
  6513. letter-spacing:normal;
  6514. color:#AAAAAA;
  6515. vertical-align:none;
  6516. text-align:left;
  6517. text-transform:none;
  6518. background-color:transparent;
  6519. border-color:transparent;
  6520. }
  6521. #u32731_div {
  6522. border-width:0px;
  6523. position:absolute;
  6524. left:0px;
  6525. top:0px;
  6526. width:330px;
  6527. height:38px;
  6528. background:inherit;
  6529. background-color:rgba(255, 255, 255, 1);
  6530. border-radius:0px;
  6531. filter:drop-shadow(none);
  6532. transition:none;
  6533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6534. font-weight:400;
  6535. font-style:normal;
  6536. font-size:14px;
  6537. }
  6538. #u32731 {
  6539. border-width:0px;
  6540. position:absolute;
  6541. left:782px;
  6542. top:883px;
  6543. width:330px;
  6544. height:38px;
  6545. display:flex;
  6546. transition:none;
  6547. transform-origin:50% 50%;
  6548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6549. font-weight:400;
  6550. font-style:normal;
  6551. font-size:14px;
  6552. }
  6553. #u32731 .text {
  6554. position:absolute;
  6555. align-self:center;
  6556. padding:2px 2px 2px 2px;
  6557. box-sizing:border-box;
  6558. width:100%;
  6559. }
  6560. #u32731_div.hint {
  6561. border-width:0px;
  6562. position:absolute;
  6563. left:0px;
  6564. top:0px;
  6565. width:330px;
  6566. height:38px;
  6567. background:inherit;
  6568. background-color:rgba(255, 255, 255, 1);
  6569. border-radius:0px;
  6570. filter:drop-shadow(none);
  6571. transition:none;
  6572. font-family:"Microsoft YaHei", sans-serif;
  6573. font-weight:400;
  6574. font-style:normal;
  6575. font-size:14px;
  6576. }
  6577. #u32731.hint {
  6578. }
  6579. #u32731_div.disabled {
  6580. border-width:0px;
  6581. position:absolute;
  6582. left:0px;
  6583. top:0px;
  6584. width:330px;
  6585. height:38px;
  6586. background:inherit;
  6587. background-color:rgba(240, 240, 240, 1);
  6588. border-radius:0px;
  6589. filter:drop-shadow(none);
  6590. transition:none;
  6591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6592. font-weight:400;
  6593. font-style:normal;
  6594. font-size:14px;
  6595. }
  6596. #u32731.disabled {
  6597. }
  6598. #u32731_div.hint.disabled {
  6599. border-width:0px;
  6600. position:absolute;
  6601. left:0px;
  6602. top:0px;
  6603. width:330px;
  6604. height:38px;
  6605. background:inherit;
  6606. background-color:rgba(240, 240, 240, 1);
  6607. border-radius:0px;
  6608. filter:drop-shadow(none);
  6609. transition:none;
  6610. font-family:"Microsoft YaHei", sans-serif;
  6611. font-weight:400;
  6612. font-style:normal;
  6613. font-size:14px;
  6614. }
  6615. #u32731.hint.disabled {
  6616. }
  6617. #u32732 {
  6618. border-width:0px;
  6619. position:absolute;
  6620. left:0px;
  6621. top:0px;
  6622. width:0px;
  6623. height:0px;
  6624. }
  6625. #u32733_div {
  6626. border-width:0px;
  6627. position:absolute;
  6628. left:0px;
  6629. top:0px;
  6630. width:80px;
  6631. height:30px;
  6632. background:inherit;
  6633. background-color:rgba(24, 144, 255, 1);
  6634. border-radius:4px;
  6635. filter:drop-shadow(none);
  6636. transition:none;
  6637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6638. font-weight:400;
  6639. font-style:normal;
  6640. font-size:14px;
  6641. color:#FFFFFF;
  6642. }
  6643. #u32733 {
  6644. border-width:0px;
  6645. position:absolute;
  6646. left:1040px;
  6647. top:962px;
  6648. width:80px;
  6649. height:30px;
  6650. display:flex;
  6651. transition:none;
  6652. transform-origin:50% 50%;
  6653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6654. font-weight:400;
  6655. font-style:normal;
  6656. font-size:14px;
  6657. color:#FFFFFF;
  6658. }
  6659. #u32733 .text {
  6660. position:absolute;
  6661. align-self:center;
  6662. padding:2px 2px 2px 2px;
  6663. box-sizing:border-box;
  6664. width:100%;
  6665. }
  6666. #u32733_text {
  6667. border-width:0px;
  6668. word-wrap:break-word;
  6669. text-transform:none;
  6670. }
  6671. #u32734_div {
  6672. border-width:0px;
  6673. position:absolute;
  6674. left:0px;
  6675. top:0px;
  6676. width:80px;
  6677. height:30px;
  6678. background:inherit;
  6679. background-color:rgba(255, 255, 255, 1);
  6680. box-sizing:border-box;
  6681. border-width:1px;
  6682. border-style:solid;
  6683. border-color:rgba(170, 170, 170, 1);
  6684. border-radius:4px;
  6685. filter:drop-shadow(none);
  6686. transition:none;
  6687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6688. font-weight:400;
  6689. font-style:normal;
  6690. font-size:14px;
  6691. }
  6692. #u32734 {
  6693. border-width:0px;
  6694. position:absolute;
  6695. left:941px;
  6696. top:962px;
  6697. width:80px;
  6698. height:30px;
  6699. display:flex;
  6700. transition:none;
  6701. transform-origin:50% 50%;
  6702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6703. font-weight:400;
  6704. font-style:normal;
  6705. font-size:14px;
  6706. }
  6707. #u32734 .text {
  6708. position:absolute;
  6709. align-self:center;
  6710. padding:2px 2px 2px 2px;
  6711. box-sizing:border-box;
  6712. width:100%;
  6713. }
  6714. #u32734_text {
  6715. border-width:0px;
  6716. word-wrap:break-word;
  6717. text-transform:none;
  6718. }
  6719. #u32735_div {
  6720. border-width:0px;
  6721. position:absolute;
  6722. left:0px;
  6723. top:0px;
  6724. width:329px;
  6725. height:20px;
  6726. background:inherit;
  6727. background-color:rgba(255, 255, 255, 0);
  6728. border-left:0px;
  6729. border-top:0px;
  6730. border-right:0px;
  6731. border-radius:0px;
  6732. border-bottom-right-radius:0px;
  6733. border-bottom-left-radius:0px;
  6734. filter:drop-shadow(none);
  6735. transition:none;
  6736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6737. font-weight:400;
  6738. font-style:normal;
  6739. font-size:14px;
  6740. color:#D9001B;
  6741. }
  6742. #u32735 {
  6743. border-width:0px;
  6744. position:absolute;
  6745. left:1169px;
  6746. top:815px;
  6747. width:329px;
  6748. height:20px;
  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. color:#D9001B;
  6757. }
  6758. #u32735 .text {
  6759. position:absolute;
  6760. align-self:center;
  6761. padding:0px 0px 0px 0px;
  6762. box-sizing:border-box;
  6763. width:100%;
  6764. }
  6765. #u32735_text {
  6766. border-width:0px;
  6767. white-space:nowrap;
  6768. text-transform:none;
  6769. }
  6770. #u32736 {
  6771. border-width:0px;
  6772. position:absolute;
  6773. left:0px;
  6774. top:0px;
  6775. width:0px;
  6776. height:0px;
  6777. }
  6778. #u32737 {
  6779. border-width:0px;
  6780. position:absolute;
  6781. left:0px;
  6782. top:0px;
  6783. width:0px;
  6784. height:0px;
  6785. }
  6786. #u32738_div {
  6787. border-width:0px;
  6788. position:absolute;
  6789. left:0px;
  6790. top:0px;
  6791. width:380px;
  6792. height:164px;
  6793. background:inherit;
  6794. background-color:rgba(255, 255, 255, 1);
  6795. border-radius:4px;
  6796. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  6797. transition:none;
  6798. font-family:"Microsoft YaHei", sans-serif;
  6799. font-weight:400;
  6800. font-style:normal;
  6801. }
  6802. #u32738 {
  6803. border-width:0px;
  6804. position:absolute;
  6805. left:1169px;
  6806. top:848px;
  6807. width:380px;
  6808. height:164px;
  6809. display:flex;
  6810. transition:none;
  6811. transform-origin:50% 50%;
  6812. font-family:"Microsoft YaHei", sans-serif;
  6813. font-weight:400;
  6814. font-style:normal;
  6815. }
  6816. #u32738 .text {
  6817. position:absolute;
  6818. align-self:center;
  6819. padding:2px 2px 2px 2px;
  6820. box-sizing:border-box;
  6821. width:100%;
  6822. }
  6823. #u32738_text {
  6824. border-width:0px;
  6825. word-wrap:break-word;
  6826. text-transform:none;
  6827. visibility:hidden;
  6828. }
  6829. #u32739_div {
  6830. border-width:0px;
  6831. position:absolute;
  6832. left:0px;
  6833. top:0px;
  6834. width:299px;
  6835. height:44px;
  6836. background:inherit;
  6837. background-color:rgba(255, 255, 255, 0);
  6838. border-radius:0px;
  6839. filter:drop-shadow(none);
  6840. transition:none;
  6841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6842. font-weight:400;
  6843. font-style:normal;
  6844. font-size:14px;
  6845. color:#666666;
  6846. line-height:22px;
  6847. }
  6848. #u32739 {
  6849. border-width:0px;
  6850. position:absolute;
  6851. left:1229px;
  6852. top:903px;
  6853. width:299px;
  6854. height:44px;
  6855. display:flex;
  6856. transition:none;
  6857. transform-origin:50% 50%;
  6858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6859. font-weight:400;
  6860. font-style:normal;
  6861. font-size:14px;
  6862. color:#666666;
  6863. line-height:22px;
  6864. }
  6865. #u32739 .text {
  6866. position:absolute;
  6867. align-self:flex-start;
  6868. padding:0px 0px 0px 0px;
  6869. box-sizing:border-box;
  6870. width:100%;
  6871. }
  6872. #u32739_text {
  6873. border-width:0px;
  6874. word-wrap:break-word;
  6875. text-transform:none;
  6876. }
  6877. #u32740_div {
  6878. border-width:0px;
  6879. position:absolute;
  6880. left:0px;
  6881. top:0px;
  6882. width:127px;
  6883. height:21px;
  6884. background:inherit;
  6885. background-color:rgba(255, 255, 255, 0);
  6886. border-radius:0px;
  6887. filter:drop-shadow(none);
  6888. transition:none;
  6889. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6890. font-weight:650;
  6891. font-style:normal;
  6892. font-size:18px;
  6893. color:#000000;
  6894. line-height:22px;
  6895. }
  6896. #u32740 {
  6897. border-width:0px;
  6898. position:absolute;
  6899. left:1229px;
  6900. top:873px;
  6901. width:127px;
  6902. height:21px;
  6903. display:flex;
  6904. transition:none;
  6905. transform-origin:50% 50%;
  6906. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6907. font-weight:650;
  6908. font-style:normal;
  6909. font-size:18px;
  6910. color:#000000;
  6911. line-height:22px;
  6912. }
  6913. #u32740 .text {
  6914. position:absolute;
  6915. align-self:flex-start;
  6916. padding:0px 0px 0px 0px;
  6917. box-sizing:border-box;
  6918. width:100%;
  6919. }
  6920. #u32740_text {
  6921. border-width:0px;
  6922. white-space:nowrap;
  6923. text-transform:none;
  6924. }
  6925. #u32741_div {
  6926. border-width:0px;
  6927. position:absolute;
  6928. left:0px;
  6929. top:0px;
  6930. width:61px;
  6931. height:30px;
  6932. background:inherit;
  6933. background-color:rgba(24, 144, 255, 1);
  6934. border-radius:4px;
  6935. filter:drop-shadow(none);
  6936. transition:none;
  6937. font-family:"Microsoft YaHei", sans-serif;
  6938. font-weight:400;
  6939. font-style:normal;
  6940. font-size:14px;
  6941. color:#FFFFFF;
  6942. }
  6943. #u32741 {
  6944. border-width:0px;
  6945. position:absolute;
  6946. left:1471px;
  6947. top:963px;
  6948. width:61px;
  6949. height:30px;
  6950. display:flex;
  6951. transition:none;
  6952. transform-origin:50% 50%;
  6953. font-family:"Microsoft YaHei", sans-serif;
  6954. font-weight:400;
  6955. font-style:normal;
  6956. font-size:14px;
  6957. color:#FFFFFF;
  6958. }
  6959. #u32741 .text {
  6960. position:absolute;
  6961. align-self:center;
  6962. padding:2px 16px 2px 16px;
  6963. box-sizing:border-box;
  6964. width:100%;
  6965. }
  6966. #u32741_text {
  6967. border-width:0px;
  6968. white-space:nowrap;
  6969. text-transform:none;
  6970. }
  6971. #u32742_div {
  6972. border-width:0px;
  6973. position:absolute;
  6974. left:0px;
  6975. top:0px;
  6976. width:66px;
  6977. height:30px;
  6978. background:inherit;
  6979. background-color:rgba(255, 255, 255, 1);
  6980. box-sizing:border-box;
  6981. border-width:1px;
  6982. border-style:solid;
  6983. border-color:rgba(217, 217, 217, 1);
  6984. border-radius:4px;
  6985. filter:drop-shadow(none);
  6986. transition:none;
  6987. font-family:"Microsoft YaHei", sans-serif;
  6988. font-weight:400;
  6989. font-style:normal;
  6990. font-size:14px;
  6991. color:rgba(0, 0, 0, 0.6470588235294118);
  6992. line-height:21px;
  6993. }
  6994. #u32742 {
  6995. border-width:0px;
  6996. position:absolute;
  6997. left:1389px;
  6998. top:963px;
  6999. width:66px;
  7000. height:30px;
  7001. display:flex;
  7002. transition:none;
  7003. transform-origin:50% 50%;
  7004. font-family:"Microsoft YaHei", sans-serif;
  7005. font-weight:400;
  7006. font-style:normal;
  7007. font-size:14px;
  7008. color:rgba(0, 0, 0, 0.6470588235294118);
  7009. line-height:21px;
  7010. }
  7011. #u32742 .text {
  7012. position:absolute;
  7013. align-self:center;
  7014. padding:2px 16px 2px 16px;
  7015. box-sizing:border-box;
  7016. width:100%;
  7017. }
  7018. #u32742_text {
  7019. border-width:0px;
  7020. white-space:nowrap;
  7021. text-transform:none;
  7022. }
  7023. #u32743 {
  7024. border-width:0px;
  7025. position:absolute;
  7026. left:1198px;
  7027. top:877px;
  7028. width:20px;
  7029. height:20px;
  7030. display:flex;
  7031. transition:none;
  7032. }
  7033. #u32743 .text {
  7034. position:absolute;
  7035. align-self:center;
  7036. padding:2px 2px 2px 2px;
  7037. box-sizing:border-box;
  7038. width:100%;
  7039. }
  7040. #u32743_img {
  7041. border-width:0px;
  7042. position:absolute;
  7043. left:0px;
  7044. top:0px;
  7045. width:20px;
  7046. height:20px;
  7047. }
  7048. #u32743_text {
  7049. border-width:0px;
  7050. word-wrap:break-word;
  7051. text-transform:none;
  7052. visibility:hidden;
  7053. }