styles.css 113 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393
  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. #u5163 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1600px;
  25. height:1250px;
  26. }
  27. #u5164_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. #u5164 {
  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. #u5164 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:2px 2px 2px 2px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u5164_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. visibility:hidden;
  63. }
  64. #u5165_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. #u5165 {
  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. #u5165 .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. #u5165_text {
  100. border-width:0px;
  101. white-space:nowrap;
  102. text-transform:none;
  103. }
  104. #u5166_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. #u5166 {
  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. #u5166 .text {
  131. position:absolute;
  132. align-self:center;
  133. padding:2px 2px 2px 2px;
  134. box-sizing:border-box;
  135. width:100%;
  136. }
  137. #u5166_text {
  138. border-width:0px;
  139. word-wrap:break-word;
  140. text-transform:none;
  141. visibility:hidden;
  142. }
  143. #u5167 {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:0px;
  149. height:0px;
  150. }
  151. #u5168 {
  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. #u5168 .text {
  162. position:absolute;
  163. align-self:center;
  164. padding:2px 2px 2px 2px;
  165. box-sizing:border-box;
  166. width:100%;
  167. }
  168. #u5168_img {
  169. border-width:0px;
  170. position:absolute;
  171. left:0px;
  172. top:0px;
  173. width:31px;
  174. height:31px;
  175. }
  176. #u5168_text {
  177. border-width:0px;
  178. word-wrap:break-word;
  179. text-transform:none;
  180. }
  181. #u5169_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. #u5169 {
  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. #u5169 .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. #u5169_text {
  223. border-width:0px;
  224. white-space:nowrap;
  225. text-transform:none;
  226. }
  227. #u5170_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. #u5170 {
  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. #u5170 .text {
  254. position:absolute;
  255. align-self:center;
  256. padding:2px 2px 2px 2px;
  257. box-sizing:border-box;
  258. width:100%;
  259. }
  260. #u5170_text {
  261. border-width:0px;
  262. word-wrap:break-word;
  263. text-transform:none;
  264. visibility:hidden;
  265. }
  266. #u5171 {
  267. border-width:0px;
  268. position:absolute;
  269. left:0px;
  270. top:0px;
  271. width:0px;
  272. height:0px;
  273. }
  274. #u5172_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. #u5172 {
  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. #u5172 .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. #u5172_text {
  316. border-width:0px;
  317. white-space:nowrap;
  318. text-transform:none;
  319. }
  320. #u5173 {
  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. #u5173 .text {
  331. position:absolute;
  332. align-self:center;
  333. padding:2px 2px 2px 2px;
  334. box-sizing:border-box;
  335. width:100%;
  336. }
  337. #u5173_img {
  338. border-width:0px;
  339. position:absolute;
  340. left:0px;
  341. top:0px;
  342. width:14px;
  343. height:14px;
  344. }
  345. #u5173_text {
  346. border-width:0px;
  347. word-wrap:break-word;
  348. text-transform:none;
  349. visibility:hidden;
  350. }
  351. #u5174 {
  352. border-width:0px;
  353. position:absolute;
  354. left:0px;
  355. top:0px;
  356. width:0px;
  357. height:0px;
  358. }
  359. #u5175_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. #u5175 {
  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. #u5175 .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. #u5175_text {
  401. border-width:0px;
  402. white-space:nowrap;
  403. text-transform:none;
  404. }
  405. #u5176 {
  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. #u5176 .text {
  416. position:absolute;
  417. align-self:center;
  418. padding:2px 2px 2px 2px;
  419. box-sizing:border-box;
  420. width:100%;
  421. }
  422. #u5176_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:14px;
  428. height:14px;
  429. }
  430. #u5176_text {
  431. border-width:0px;
  432. word-wrap:break-word;
  433. text-transform:none;
  434. visibility:hidden;
  435. }
  436. #u5177 {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:0px;
  442. height:0px;
  443. }
  444. #u5178_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. #u5178 {
  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. #u5178 .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. #u5178_text {
  486. border-width:0px;
  487. white-space:nowrap;
  488. text-transform:none;
  489. }
  490. #u5179 {
  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. #u5179 .text {
  501. position:absolute;
  502. align-self:center;
  503. padding:2px 2px 2px 2px;
  504. box-sizing:border-box;
  505. width:100%;
  506. }
  507. #u5179_img {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:14px;
  513. height:14px;
  514. }
  515. #u5179_text {
  516. border-width:0px;
  517. word-wrap:break-word;
  518. text-transform:none;
  519. visibility:hidden;
  520. }
  521. #u5180 {
  522. border-width:0px;
  523. position:absolute;
  524. left:0px;
  525. top:0px;
  526. width:0px;
  527. height:0px;
  528. }
  529. #u5181_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. #u5181 {
  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. #u5181 .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. #u5181_text {
  571. border-width:0px;
  572. white-space:nowrap;
  573. text-transform:none;
  574. }
  575. #u5182 {
  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. #u5182 .text {
  586. position:absolute;
  587. align-self:center;
  588. padding:2px 2px 2px 2px;
  589. box-sizing:border-box;
  590. width:100%;
  591. }
  592. #u5182_img {
  593. border-width:0px;
  594. position:absolute;
  595. left:0px;
  596. top:0px;
  597. width:14px;
  598. height:14px;
  599. }
  600. #u5182_text {
  601. border-width:0px;
  602. word-wrap:break-word;
  603. text-transform:none;
  604. visibility:hidden;
  605. }
  606. #u5183 {
  607. border-width:0px;
  608. position:absolute;
  609. left:0px;
  610. top:0px;
  611. width:0px;
  612. height:0px;
  613. }
  614. #u5184_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. #u5184 {
  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. #u5184 .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. #u5184_text {
  656. border-width:0px;
  657. white-space:nowrap;
  658. text-transform:none;
  659. }
  660. #u5185 {
  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. #u5185 .text {
  671. position:absolute;
  672. align-self:center;
  673. padding:2px 2px 2px 2px;
  674. box-sizing:border-box;
  675. width:100%;
  676. }
  677. #u5185_img {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:14px;
  683. height:14px;
  684. }
  685. #u5185_text {
  686. border-width:0px;
  687. word-wrap:break-word;
  688. text-transform:none;
  689. visibility:hidden;
  690. }
  691. #u5186 {
  692. border-width:0px;
  693. position:absolute;
  694. left:0px;
  695. top:0px;
  696. width:0px;
  697. height:0px;
  698. }
  699. #u5187_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. #u5187 {
  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. #u5187 .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. #u5187_text {
  741. border-width:0px;
  742. white-space:nowrap;
  743. text-transform:none;
  744. }
  745. #u5188 {
  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. #u5188 .text {
  756. position:absolute;
  757. align-self:center;
  758. padding:2px 2px 2px 2px;
  759. box-sizing:border-box;
  760. width:100%;
  761. }
  762. #u5188_img {
  763. border-width:0px;
  764. position:absolute;
  765. left:0px;
  766. top:0px;
  767. width:14px;
  768. height:14px;
  769. }
  770. #u5188_text {
  771. border-width:0px;
  772. word-wrap:break-word;
  773. text-transform:none;
  774. visibility:hidden;
  775. }
  776. #u5189 {
  777. border-width:0px;
  778. position:absolute;
  779. left:0px;
  780. top:0px;
  781. width:0px;
  782. height:0px;
  783. }
  784. #u5190_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. #u5190 {
  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. #u5190 .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. #u5190_text {
  826. border-width:0px;
  827. white-space:nowrap;
  828. text-transform:none;
  829. }
  830. #u5191 {
  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. #u5191 .text {
  841. position:absolute;
  842. align-self:center;
  843. padding:2px 2px 2px 2px;
  844. box-sizing:border-box;
  845. width:100%;
  846. }
  847. #u5191_img {
  848. border-width:0px;
  849. position:absolute;
  850. left:0px;
  851. top:0px;
  852. width:14px;
  853. height:14px;
  854. }
  855. #u5191_text {
  856. border-width:0px;
  857. word-wrap:break-word;
  858. text-transform:none;
  859. visibility:hidden;
  860. }
  861. #u5192 {
  862. border-width:0px;
  863. position:absolute;
  864. left:0px;
  865. top:0px;
  866. width:0px;
  867. height:0px;
  868. }
  869. #u5193_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. #u5193 {
  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. #u5193 .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. #u5193_text {
  911. border-width:0px;
  912. white-space:nowrap;
  913. text-transform:none;
  914. }
  915. #u5194 {
  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. #u5194 .text {
  926. position:absolute;
  927. align-self:center;
  928. padding:2px 2px 2px 2px;
  929. box-sizing:border-box;
  930. width:100%;
  931. }
  932. #u5194_img {
  933. border-width:0px;
  934. position:absolute;
  935. left:0px;
  936. top:0px;
  937. width:14px;
  938. height:14px;
  939. }
  940. #u5194_text {
  941. border-width:0px;
  942. word-wrap:break-word;
  943. text-transform:none;
  944. visibility:hidden;
  945. }
  946. #u5195 {
  947. border-width:0px;
  948. position:absolute;
  949. left:0px;
  950. top:0px;
  951. width:0px;
  952. height:0px;
  953. }
  954. #u5196_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. #u5196 {
  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. #u5196 .text {
  987. position:absolute;
  988. align-self:center;
  989. padding:0px 0px 0px 0px;
  990. box-sizing:border-box;
  991. width:100%;
  992. }
  993. #u5196_text {
  994. border-width:0px;
  995. white-space:nowrap;
  996. text-transform:none;
  997. }
  998. #u5197 {
  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. #u5197 .text {
  1009. position:absolute;
  1010. align-self:center;
  1011. padding:2px 2px 2px 2px;
  1012. box-sizing:border-box;
  1013. width:100%;
  1014. }
  1015. #u5197_img {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:0px;
  1019. top:0px;
  1020. width:22px;
  1021. height:22px;
  1022. }
  1023. #u5197_text {
  1024. border-width:0px;
  1025. word-wrap:break-word;
  1026. text-transform:none;
  1027. visibility:hidden;
  1028. }
  1029. #u5198 {
  1030. border-width:0px;
  1031. position:absolute;
  1032. left:0px;
  1033. top:0px;
  1034. width:0px;
  1035. height:0px;
  1036. }
  1037. #u5199_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. #u5199 {
  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. #u5199 .text {
  1070. position:absolute;
  1071. align-self:center;
  1072. padding:0px 0px 0px 0px;
  1073. box-sizing:border-box;
  1074. width:100%;
  1075. }
  1076. #u5199_text {
  1077. border-width:0px;
  1078. white-space:nowrap;
  1079. text-transform:none;
  1080. }
  1081. #u5200 {
  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. #u5200 .text {
  1092. position:absolute;
  1093. align-self:center;
  1094. padding:2px 2px 2px 2px;
  1095. box-sizing:border-box;
  1096. width:100%;
  1097. }
  1098. #u5200_img {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:0px;
  1102. top:0px;
  1103. width:22px;
  1104. height:22px;
  1105. }
  1106. #u5200_text {
  1107. border-width:0px;
  1108. word-wrap:break-word;
  1109. text-transform:none;
  1110. visibility:hidden;
  1111. }
  1112. #u5201 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:0px;
  1116. top:0px;
  1117. width:0px;
  1118. height:0px;
  1119. }
  1120. #u5202_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. #u5202 {
  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. #u5202 .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. #u5202_text {
  1162. border-width:0px;
  1163. white-space:nowrap;
  1164. text-transform:none;
  1165. }
  1166. #u5203 {
  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. #u5203 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:2px 2px 2px 2px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u5203_img {
  1184. border-width:0px;
  1185. position:absolute;
  1186. left:0px;
  1187. top:0px;
  1188. width:14px;
  1189. height:14px;
  1190. }
  1191. #u5203_text {
  1192. border-width:0px;
  1193. word-wrap:break-word;
  1194. text-transform:none;
  1195. visibility:hidden;
  1196. }
  1197. #u5204 {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:0px;
  1201. top:0px;
  1202. width:0px;
  1203. height:0px;
  1204. }
  1205. #u5205_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. #u5205_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. #u5205_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. #u5205 {
  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. #u5205 .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. #u5205_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. #u5205.disabled {
  1294. }
  1295. .u5205_input_option {
  1296. font-size:14px;
  1297. }
  1298. #u5206 {
  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. #u5206 .text {
  1309. position:absolute;
  1310. align-self:center;
  1311. padding:2px 2px 2px 2px;
  1312. box-sizing:border-box;
  1313. width:100%;
  1314. }
  1315. #u5206_img {
  1316. border-width:0px;
  1317. position:absolute;
  1318. left:0px;
  1319. top:0px;
  1320. width:22px;
  1321. height:22px;
  1322. }
  1323. #u5206_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u5207_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. #u5207 {
  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. #u5207 .text {
  1364. position:absolute;
  1365. align-self:center;
  1366. padding:0px 0px 0px 0px;
  1367. box-sizing:border-box;
  1368. width:100%;
  1369. }
  1370. #u5207_text {
  1371. border-width:0px;
  1372. word-wrap:break-word;
  1373. text-transform:none;
  1374. }
  1375. #u5208 {
  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. #u5208 .text {
  1386. position:absolute;
  1387. align-self:center;
  1388. padding:2px 2px 2px 2px;
  1389. box-sizing:border-box;
  1390. width:100%;
  1391. }
  1392. #u5208_img {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:0px;
  1396. top:0px;
  1397. width:2px;
  1398. height:12px;
  1399. }
  1400. #u5208_text {
  1401. border-width:0px;
  1402. word-wrap:break-word;
  1403. text-transform:none;
  1404. visibility:hidden;
  1405. }
  1406. #u5209 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:0px;
  1410. top:0px;
  1411. width:0px;
  1412. height:0px;
  1413. }
  1414. #u5210_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. #u5210 {
  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. #u5210 .text {
  1447. position:absolute;
  1448. align-self:center;
  1449. padding:0px 0px 0px 0px;
  1450. box-sizing:border-box;
  1451. width:100%;
  1452. }
  1453. #u5210_text {
  1454. border-width:0px;
  1455. white-space:nowrap;
  1456. text-transform:none;
  1457. }
  1458. #u5211 {
  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. #u5211 .text {
  1469. position:absolute;
  1470. align-self:center;
  1471. padding:2px 2px 2px 2px;
  1472. box-sizing:border-box;
  1473. width:100%;
  1474. }
  1475. #u5211_img {
  1476. border-width:0px;
  1477. position:absolute;
  1478. left:0px;
  1479. top:0px;
  1480. width:22px;
  1481. height:22px;
  1482. }
  1483. #u5211_text {
  1484. border-width:0px;
  1485. word-wrap:break-word;
  1486. text-transform:none;
  1487. visibility:hidden;
  1488. }
  1489. #u5212 {
  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. #u5212 .text {
  1500. position:absolute;
  1501. align-self:center;
  1502. padding:2px 2px 2px 2px;
  1503. box-sizing:border-box;
  1504. width:100%;
  1505. }
  1506. #u5212_img {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:0px;
  1510. top:0px;
  1511. width:69px;
  1512. height:2px;
  1513. }
  1514. #u5212_text {
  1515. border-width:0px;
  1516. word-wrap:break-word;
  1517. text-transform:none;
  1518. visibility:hidden;
  1519. }
  1520. #u5213 {
  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. #u5213 .text {
  1531. position:absolute;
  1532. align-self:center;
  1533. padding:2px 2px 2px 2px;
  1534. box-sizing:border-box;
  1535. width:100%;
  1536. }
  1537. #u5213_img {
  1538. border-width:0px;
  1539. position:absolute;
  1540. left:0px;
  1541. top:0px;
  1542. width:69px;
  1543. height:2px;
  1544. }
  1545. #u5213_text {
  1546. border-width:0px;
  1547. word-wrap:break-word;
  1548. text-transform:none;
  1549. visibility:hidden;
  1550. }
  1551. #u5214 {
  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. #u5214 .text {
  1562. position:absolute;
  1563. align-self:center;
  1564. padding:2px 2px 2px 2px;
  1565. box-sizing:border-box;
  1566. width:100%;
  1567. }
  1568. #u5214_img {
  1569. border-width:0px;
  1570. position:absolute;
  1571. left:0px;
  1572. top:0px;
  1573. width:57px;
  1574. height:2px;
  1575. }
  1576. #u5214_text {
  1577. border-width:0px;
  1578. word-wrap:break-word;
  1579. text-transform:none;
  1580. visibility:hidden;
  1581. }
  1582. #u5215 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:0px;
  1586. top:0px;
  1587. width:0px;
  1588. height:0px;
  1589. }
  1590. #u5216_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. #u5216 {
  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. #u5216 .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. #u5216_text {
  1632. border-width:0px;
  1633. white-space:nowrap;
  1634. text-transform:none;
  1635. }
  1636. #u5217 {
  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. #u5217 .text {
  1647. position:absolute;
  1648. align-self:center;
  1649. padding:2px 2px 2px 2px;
  1650. box-sizing:border-box;
  1651. width:100%;
  1652. }
  1653. #u5217_img {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:0px;
  1657. top:0px;
  1658. width:18px;
  1659. height:14px;
  1660. }
  1661. #u5217_text {
  1662. border-width:0px;
  1663. word-wrap:break-word;
  1664. text-transform:none;
  1665. visibility:hidden;
  1666. }
  1667. #u5218 {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:1245px;
  1671. top:18px;
  1672. width:1px;
  1673. height:11px;
  1674. display:flex;
  1675. transition:none;
  1676. }
  1677. #u5218 .text {
  1678. position:absolute;
  1679. align-self:center;
  1680. padding:2px 2px 2px 2px;
  1681. box-sizing:border-box;
  1682. width:100%;
  1683. }
  1684. #u5218_img {
  1685. border-width:0px;
  1686. position:absolute;
  1687. left:0px;
  1688. top:0px;
  1689. width:2px;
  1690. height:12px;
  1691. }
  1692. #u5218_text {
  1693. border-width:0px;
  1694. word-wrap:break-word;
  1695. text-transform:none;
  1696. visibility:hidden;
  1697. }
  1698. #u5219_div {
  1699. border-width:0px;
  1700. position:absolute;
  1701. left:0px;
  1702. top:0px;
  1703. width:1257px;
  1704. height:1190px;
  1705. background:inherit;
  1706. background-color:rgba(255, 255, 255, 1);
  1707. border-radius:0px;
  1708. filter:drop-shadow(0px 0px 1.5px rgba(0, 0, 0, 0.34901960784313724));
  1709. transition:none;
  1710. }
  1711. #u5219 {
  1712. border-width:0px;
  1713. position:absolute;
  1714. left:331px;
  1715. top:50px;
  1716. width:1257px;
  1717. height:1190px;
  1718. display:flex;
  1719. transition:none;
  1720. transform-origin:50% 50%;
  1721. }
  1722. #u5219 .text {
  1723. position:absolute;
  1724. align-self:center;
  1725. padding:2px 2px 2px 2px;
  1726. box-sizing:border-box;
  1727. width:100%;
  1728. }
  1729. #u5219_text {
  1730. border-width:0px;
  1731. word-wrap:break-word;
  1732. text-transform:none;
  1733. visibility:hidden;
  1734. }
  1735. #u5220 {
  1736. border-width:0px;
  1737. position:absolute;
  1738. left:350px;
  1739. top:237px;
  1740. width:1219px;
  1741. height:128px;
  1742. }
  1743. #u5221 {
  1744. border-width:0px;
  1745. position:absolute;
  1746. left:0px;
  1747. top:0px;
  1748. width:139px;
  1749. height:34px;
  1750. display:flex;
  1751. transition:none;
  1752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1753. font-weight:400;
  1754. font-style:normal;
  1755. font-size:14px;
  1756. color:#FFFFFF;
  1757. text-align:left;
  1758. line-height:30px;
  1759. }
  1760. #u5221 .text {
  1761. position:absolute;
  1762. align-self:center;
  1763. padding:2px 10px 2px 10px;
  1764. box-sizing:border-box;
  1765. width:100%;
  1766. }
  1767. #u5221_img {
  1768. border-width:0px;
  1769. position:absolute;
  1770. left:0px;
  1771. top:0px;
  1772. width:139px;
  1773. height:34px;
  1774. }
  1775. #u5221_text {
  1776. border-width:0px;
  1777. word-wrap:break-word;
  1778. text-transform:none;
  1779. }
  1780. #u5222 {
  1781. border-width:0px;
  1782. position:absolute;
  1783. left:139px;
  1784. top:0px;
  1785. width:139px;
  1786. height:34px;
  1787. display:flex;
  1788. transition:none;
  1789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1790. font-weight:400;
  1791. font-style:normal;
  1792. font-size:14px;
  1793. color:#FFFFFF;
  1794. text-align:left;
  1795. line-height:30px;
  1796. }
  1797. #u5222 .text {
  1798. position:absolute;
  1799. align-self:center;
  1800. padding:2px 10px 2px 10px;
  1801. box-sizing:border-box;
  1802. width:100%;
  1803. }
  1804. #u5222_img {
  1805. border-width:0px;
  1806. position:absolute;
  1807. left:0px;
  1808. top:0px;
  1809. width:139px;
  1810. height:34px;
  1811. }
  1812. #u5222_text {
  1813. border-width:0px;
  1814. word-wrap:break-word;
  1815. text-transform:none;
  1816. }
  1817. #u5223 {
  1818. border-width:0px;
  1819. position:absolute;
  1820. left:278px;
  1821. top:0px;
  1822. width:139px;
  1823. height:34px;
  1824. display:flex;
  1825. transition:none;
  1826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1827. font-weight:400;
  1828. font-style:normal;
  1829. font-size:14px;
  1830. color:#FFFFFF;
  1831. text-align:left;
  1832. line-height:30px;
  1833. }
  1834. #u5223 .text {
  1835. position:absolute;
  1836. align-self:center;
  1837. padding:2px 10px 2px 10px;
  1838. box-sizing:border-box;
  1839. width:100%;
  1840. }
  1841. #u5223_img {
  1842. border-width:0px;
  1843. position:absolute;
  1844. left:0px;
  1845. top:0px;
  1846. width:139px;
  1847. height:34px;
  1848. }
  1849. #u5223_text {
  1850. border-width:0px;
  1851. word-wrap:break-word;
  1852. text-transform:none;
  1853. }
  1854. #u5224 {
  1855. border-width:0px;
  1856. position:absolute;
  1857. left:417px;
  1858. top:0px;
  1859. width:139px;
  1860. height:34px;
  1861. display:flex;
  1862. transition:none;
  1863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1864. font-weight:400;
  1865. font-style:normal;
  1866. font-size:14px;
  1867. color:#FFFFFF;
  1868. text-align:left;
  1869. line-height:30px;
  1870. }
  1871. #u5224 .text {
  1872. position:absolute;
  1873. align-self:center;
  1874. padding:2px 10px 2px 10px;
  1875. box-sizing:border-box;
  1876. width:100%;
  1877. }
  1878. #u5224_img {
  1879. border-width:0px;
  1880. position:absolute;
  1881. left:0px;
  1882. top:0px;
  1883. width:139px;
  1884. height:34px;
  1885. }
  1886. #u5224_text {
  1887. border-width:0px;
  1888. word-wrap:break-word;
  1889. text-transform:none;
  1890. }
  1891. #u5225 {
  1892. border-width:0px;
  1893. position:absolute;
  1894. left:556px;
  1895. top:0px;
  1896. width:139px;
  1897. height:34px;
  1898. display:flex;
  1899. transition:none;
  1900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1901. font-weight:400;
  1902. font-style:normal;
  1903. font-size:14px;
  1904. color:#FFFFFF;
  1905. text-align:left;
  1906. line-height:30px;
  1907. }
  1908. #u5225 .text {
  1909. position:absolute;
  1910. align-self:center;
  1911. padding:2px 10px 2px 10px;
  1912. box-sizing:border-box;
  1913. width:100%;
  1914. }
  1915. #u5225_img {
  1916. border-width:0px;
  1917. position:absolute;
  1918. left:0px;
  1919. top:0px;
  1920. width:139px;
  1921. height:34px;
  1922. }
  1923. #u5225_text {
  1924. border-width:0px;
  1925. word-wrap:break-word;
  1926. text-transform:none;
  1927. }
  1928. #u5226 {
  1929. border-width:0px;
  1930. position:absolute;
  1931. left:695px;
  1932. top:0px;
  1933. width:139px;
  1934. height:34px;
  1935. display:flex;
  1936. transition:none;
  1937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1938. font-weight:400;
  1939. font-style:normal;
  1940. font-size:14px;
  1941. color:#FFFFFF;
  1942. text-align:left;
  1943. line-height:30px;
  1944. }
  1945. #u5226 .text {
  1946. position:absolute;
  1947. align-self:center;
  1948. padding:2px 10px 2px 10px;
  1949. box-sizing:border-box;
  1950. width:100%;
  1951. }
  1952. #u5226_img {
  1953. border-width:0px;
  1954. position:absolute;
  1955. left:0px;
  1956. top:0px;
  1957. width:139px;
  1958. height:34px;
  1959. }
  1960. #u5226_text {
  1961. border-width:0px;
  1962. word-wrap:break-word;
  1963. text-transform:none;
  1964. }
  1965. #u5227 {
  1966. border-width:0px;
  1967. position:absolute;
  1968. left:834px;
  1969. top:0px;
  1970. width:150px;
  1971. height:34px;
  1972. display:flex;
  1973. transition:none;
  1974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1975. font-weight:400;
  1976. font-style:normal;
  1977. font-size:14px;
  1978. color:#FFFFFF;
  1979. text-align:left;
  1980. line-height:30px;
  1981. }
  1982. #u5227 .text {
  1983. position:absolute;
  1984. align-self:center;
  1985. padding:2px 10px 2px 10px;
  1986. box-sizing:border-box;
  1987. width:100%;
  1988. }
  1989. #u5227_img {
  1990. border-width:0px;
  1991. position:absolute;
  1992. left:0px;
  1993. top:0px;
  1994. width:150px;
  1995. height:34px;
  1996. }
  1997. #u5227_text {
  1998. border-width:0px;
  1999. word-wrap:break-word;
  2000. text-transform:none;
  2001. }
  2002. #u5228 {
  2003. border-width:0px;
  2004. position:absolute;
  2005. left:984px;
  2006. top:0px;
  2007. width:235px;
  2008. height:34px;
  2009. display:flex;
  2010. transition:none;
  2011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2012. font-weight:400;
  2013. font-style:normal;
  2014. font-size:14px;
  2015. color:#FFFFFF;
  2016. text-align:left;
  2017. line-height:30px;
  2018. }
  2019. #u5228 .text {
  2020. position:absolute;
  2021. align-self:center;
  2022. padding:2px 10px 2px 10px;
  2023. box-sizing:border-box;
  2024. width:100%;
  2025. }
  2026. #u5228_img {
  2027. border-width:0px;
  2028. position:absolute;
  2029. left:0px;
  2030. top:0px;
  2031. width:235px;
  2032. height:34px;
  2033. }
  2034. #u5228_text {
  2035. border-width:0px;
  2036. word-wrap:break-word;
  2037. text-transform:none;
  2038. }
  2039. #u5229 {
  2040. border-width:0px;
  2041. position:absolute;
  2042. left:0px;
  2043. top:34px;
  2044. width:139px;
  2045. height:34px;
  2046. display:flex;
  2047. transition:none;
  2048. font-size:14px;
  2049. text-align:left;
  2050. line-height:30px;
  2051. }
  2052. #u5229 .text {
  2053. position:absolute;
  2054. align-self:center;
  2055. padding:2px 10px 2px 10px;
  2056. box-sizing:border-box;
  2057. width:100%;
  2058. }
  2059. #u5229_img {
  2060. border-width:0px;
  2061. position:absolute;
  2062. left:0px;
  2063. top:0px;
  2064. width:139px;
  2065. height:34px;
  2066. }
  2067. #u5229_text {
  2068. border-width:0px;
  2069. word-wrap:break-word;
  2070. text-transform:none;
  2071. visibility:hidden;
  2072. }
  2073. #u5230 {
  2074. border-width:0px;
  2075. position:absolute;
  2076. left:139px;
  2077. top:34px;
  2078. width:139px;
  2079. height:34px;
  2080. display:flex;
  2081. transition:none;
  2082. font-size:14px;
  2083. text-align:left;
  2084. line-height:30px;
  2085. }
  2086. #u5230 .text {
  2087. position:absolute;
  2088. align-self:center;
  2089. padding:2px 10px 2px 10px;
  2090. box-sizing:border-box;
  2091. width:100%;
  2092. }
  2093. #u5230_img {
  2094. border-width:0px;
  2095. position:absolute;
  2096. left:0px;
  2097. top:0px;
  2098. width:139px;
  2099. height:34px;
  2100. }
  2101. #u5230_text {
  2102. border-width:0px;
  2103. word-wrap:break-word;
  2104. text-transform:none;
  2105. visibility:hidden;
  2106. }
  2107. #u5231 {
  2108. border-width:0px;
  2109. position:absolute;
  2110. left:278px;
  2111. top:34px;
  2112. width:139px;
  2113. height:34px;
  2114. display:flex;
  2115. transition:none;
  2116. font-size:14px;
  2117. text-align:left;
  2118. line-height:30px;
  2119. }
  2120. #u5231 .text {
  2121. position:absolute;
  2122. align-self:center;
  2123. padding:2px 10px 2px 10px;
  2124. box-sizing:border-box;
  2125. width:100%;
  2126. }
  2127. #u5231_img {
  2128. border-width:0px;
  2129. position:absolute;
  2130. left:0px;
  2131. top:0px;
  2132. width:139px;
  2133. height:34px;
  2134. }
  2135. #u5231_text {
  2136. border-width:0px;
  2137. word-wrap:break-word;
  2138. text-transform:none;
  2139. visibility:hidden;
  2140. }
  2141. #u5232 {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:417px;
  2145. top:34px;
  2146. width:139px;
  2147. height:34px;
  2148. display:flex;
  2149. transition:none;
  2150. font-size:14px;
  2151. text-align:left;
  2152. line-height:30px;
  2153. }
  2154. #u5232 .text {
  2155. position:absolute;
  2156. align-self:center;
  2157. padding:2px 10px 2px 10px;
  2158. box-sizing:border-box;
  2159. width:100%;
  2160. }
  2161. #u5232_img {
  2162. border-width:0px;
  2163. position:absolute;
  2164. left:0px;
  2165. top:0px;
  2166. width:139px;
  2167. height:34px;
  2168. }
  2169. #u5232_text {
  2170. border-width:0px;
  2171. word-wrap:break-word;
  2172. text-transform:none;
  2173. visibility:hidden;
  2174. }
  2175. #u5233 {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:556px;
  2179. top:34px;
  2180. width:139px;
  2181. height:34px;
  2182. display:flex;
  2183. transition:none;
  2184. font-size:14px;
  2185. text-align:left;
  2186. line-height:30px;
  2187. }
  2188. #u5233 .text {
  2189. position:absolute;
  2190. align-self:center;
  2191. padding:2px 10px 2px 10px;
  2192. box-sizing:border-box;
  2193. width:100%;
  2194. }
  2195. #u5233_img {
  2196. border-width:0px;
  2197. position:absolute;
  2198. left:0px;
  2199. top:0px;
  2200. width:139px;
  2201. height:34px;
  2202. }
  2203. #u5233_text {
  2204. border-width:0px;
  2205. word-wrap:break-word;
  2206. text-transform:none;
  2207. visibility:hidden;
  2208. }
  2209. #u5234 {
  2210. border-width:0px;
  2211. position:absolute;
  2212. left:695px;
  2213. top:34px;
  2214. width:139px;
  2215. height:34px;
  2216. display:flex;
  2217. transition:none;
  2218. font-size:14px;
  2219. text-align:left;
  2220. line-height:30px;
  2221. }
  2222. #u5234 .text {
  2223. position:absolute;
  2224. align-self:center;
  2225. padding:2px 10px 2px 10px;
  2226. box-sizing:border-box;
  2227. width:100%;
  2228. }
  2229. #u5234_img {
  2230. border-width:0px;
  2231. position:absolute;
  2232. left:0px;
  2233. top:0px;
  2234. width:139px;
  2235. height:34px;
  2236. }
  2237. #u5234_text {
  2238. border-width:0px;
  2239. word-wrap:break-word;
  2240. text-transform:none;
  2241. visibility:hidden;
  2242. }
  2243. #u5235 {
  2244. border-width:0px;
  2245. position:absolute;
  2246. left:834px;
  2247. top:34px;
  2248. width:150px;
  2249. height:34px;
  2250. display:flex;
  2251. transition:none;
  2252. font-size:14px;
  2253. text-align:left;
  2254. line-height:30px;
  2255. }
  2256. #u5235 .text {
  2257. position:absolute;
  2258. align-self:center;
  2259. padding:2px 10px 2px 10px;
  2260. box-sizing:border-box;
  2261. width:100%;
  2262. }
  2263. #u5235_img {
  2264. border-width:0px;
  2265. position:absolute;
  2266. left:0px;
  2267. top:0px;
  2268. width:150px;
  2269. height:34px;
  2270. }
  2271. #u5235_text {
  2272. border-width:0px;
  2273. word-wrap:break-word;
  2274. text-transform:none;
  2275. visibility:hidden;
  2276. }
  2277. #u5236 {
  2278. border-width:0px;
  2279. position:absolute;
  2280. left:984px;
  2281. top:34px;
  2282. width:235px;
  2283. height:34px;
  2284. display:flex;
  2285. transition:none;
  2286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2287. font-weight:400;
  2288. font-style:normal;
  2289. font-size:14px;
  2290. color:#1890FF;
  2291. text-align:left;
  2292. line-height:30px;
  2293. }
  2294. #u5236 .text {
  2295. position:absolute;
  2296. align-self:center;
  2297. padding:2px 10px 2px 10px;
  2298. box-sizing:border-box;
  2299. width:100%;
  2300. }
  2301. #u5236_img {
  2302. border-width:0px;
  2303. position:absolute;
  2304. left:0px;
  2305. top:0px;
  2306. width:235px;
  2307. height:34px;
  2308. }
  2309. #u5236_text {
  2310. border-width:0px;
  2311. word-wrap:break-word;
  2312. text-transform:none;
  2313. }
  2314. #u5237 {
  2315. border-width:0px;
  2316. position:absolute;
  2317. left:0px;
  2318. top:68px;
  2319. width:139px;
  2320. height:30px;
  2321. display:flex;
  2322. transition:none;
  2323. font-size:14px;
  2324. text-align:left;
  2325. line-height:30px;
  2326. }
  2327. #u5237 .text {
  2328. position:absolute;
  2329. align-self:center;
  2330. padding:2px 10px 2px 10px;
  2331. box-sizing:border-box;
  2332. width:100%;
  2333. }
  2334. #u5237_img {
  2335. border-width:0px;
  2336. position:absolute;
  2337. left:0px;
  2338. top:0px;
  2339. width:139px;
  2340. height:30px;
  2341. }
  2342. #u5237_text {
  2343. border-width:0px;
  2344. word-wrap:break-word;
  2345. text-transform:none;
  2346. visibility:hidden;
  2347. }
  2348. #u5238 {
  2349. border-width:0px;
  2350. position:absolute;
  2351. left:139px;
  2352. top:68px;
  2353. width:139px;
  2354. height:30px;
  2355. display:flex;
  2356. transition:none;
  2357. font-size:14px;
  2358. text-align:left;
  2359. line-height:30px;
  2360. }
  2361. #u5238 .text {
  2362. position:absolute;
  2363. align-self:center;
  2364. padding:2px 10px 2px 10px;
  2365. box-sizing:border-box;
  2366. width:100%;
  2367. }
  2368. #u5238_img {
  2369. border-width:0px;
  2370. position:absolute;
  2371. left:0px;
  2372. top:0px;
  2373. width:139px;
  2374. height:30px;
  2375. }
  2376. #u5238_text {
  2377. border-width:0px;
  2378. word-wrap:break-word;
  2379. text-transform:none;
  2380. visibility:hidden;
  2381. }
  2382. #u5239 {
  2383. border-width:0px;
  2384. position:absolute;
  2385. left:278px;
  2386. top:68px;
  2387. width:139px;
  2388. height:30px;
  2389. display:flex;
  2390. transition:none;
  2391. font-size:14px;
  2392. text-align:left;
  2393. line-height:30px;
  2394. }
  2395. #u5239 .text {
  2396. position:absolute;
  2397. align-self:center;
  2398. padding:2px 10px 2px 10px;
  2399. box-sizing:border-box;
  2400. width:100%;
  2401. }
  2402. #u5239_img {
  2403. border-width:0px;
  2404. position:absolute;
  2405. left:0px;
  2406. top:0px;
  2407. width:139px;
  2408. height:30px;
  2409. }
  2410. #u5239_text {
  2411. border-width:0px;
  2412. word-wrap:break-word;
  2413. text-transform:none;
  2414. visibility:hidden;
  2415. }
  2416. #u5240 {
  2417. border-width:0px;
  2418. position:absolute;
  2419. left:417px;
  2420. top:68px;
  2421. width:139px;
  2422. height:30px;
  2423. display:flex;
  2424. transition:none;
  2425. font-size:14px;
  2426. text-align:left;
  2427. line-height:30px;
  2428. }
  2429. #u5240 .text {
  2430. position:absolute;
  2431. align-self:center;
  2432. padding:2px 10px 2px 10px;
  2433. box-sizing:border-box;
  2434. width:100%;
  2435. }
  2436. #u5240_img {
  2437. border-width:0px;
  2438. position:absolute;
  2439. left:0px;
  2440. top:0px;
  2441. width:139px;
  2442. height:30px;
  2443. }
  2444. #u5240_text {
  2445. border-width:0px;
  2446. word-wrap:break-word;
  2447. text-transform:none;
  2448. visibility:hidden;
  2449. }
  2450. #u5241 {
  2451. border-width:0px;
  2452. position:absolute;
  2453. left:556px;
  2454. top:68px;
  2455. width:139px;
  2456. height:30px;
  2457. display:flex;
  2458. transition:none;
  2459. font-size:14px;
  2460. text-align:left;
  2461. line-height:30px;
  2462. }
  2463. #u5241 .text {
  2464. position:absolute;
  2465. align-self:center;
  2466. padding:2px 10px 2px 10px;
  2467. box-sizing:border-box;
  2468. width:100%;
  2469. }
  2470. #u5241_img {
  2471. border-width:0px;
  2472. position:absolute;
  2473. left:0px;
  2474. top:0px;
  2475. width:139px;
  2476. height:30px;
  2477. }
  2478. #u5241_text {
  2479. border-width:0px;
  2480. word-wrap:break-word;
  2481. text-transform:none;
  2482. visibility:hidden;
  2483. }
  2484. #u5242 {
  2485. border-width:0px;
  2486. position:absolute;
  2487. left:695px;
  2488. top:68px;
  2489. width:139px;
  2490. height:30px;
  2491. display:flex;
  2492. transition:none;
  2493. font-size:14px;
  2494. text-align:left;
  2495. line-height:30px;
  2496. }
  2497. #u5242 .text {
  2498. position:absolute;
  2499. align-self:center;
  2500. padding:2px 10px 2px 10px;
  2501. box-sizing:border-box;
  2502. width:100%;
  2503. }
  2504. #u5242_img {
  2505. border-width:0px;
  2506. position:absolute;
  2507. left:0px;
  2508. top:0px;
  2509. width:139px;
  2510. height:30px;
  2511. }
  2512. #u5242_text {
  2513. border-width:0px;
  2514. word-wrap:break-word;
  2515. text-transform:none;
  2516. visibility:hidden;
  2517. }
  2518. #u5243 {
  2519. border-width:0px;
  2520. position:absolute;
  2521. left:834px;
  2522. top:68px;
  2523. width:150px;
  2524. height:30px;
  2525. display:flex;
  2526. transition:none;
  2527. font-size:14px;
  2528. text-align:left;
  2529. line-height:30px;
  2530. }
  2531. #u5243 .text {
  2532. position:absolute;
  2533. align-self:center;
  2534. padding:2px 10px 2px 10px;
  2535. box-sizing:border-box;
  2536. width:100%;
  2537. }
  2538. #u5243_img {
  2539. border-width:0px;
  2540. position:absolute;
  2541. left:0px;
  2542. top:0px;
  2543. width:150px;
  2544. height:30px;
  2545. }
  2546. #u5243_text {
  2547. border-width:0px;
  2548. word-wrap:break-word;
  2549. text-transform:none;
  2550. visibility:hidden;
  2551. }
  2552. #u5244 {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:984px;
  2556. top:68px;
  2557. width:235px;
  2558. height:30px;
  2559. display:flex;
  2560. transition:none;
  2561. font-size:14px;
  2562. color:#1890FF;
  2563. text-align:left;
  2564. line-height:30px;
  2565. }
  2566. #u5244 .text {
  2567. position:absolute;
  2568. align-self:center;
  2569. padding:2px 10px 2px 10px;
  2570. box-sizing:border-box;
  2571. width:100%;
  2572. }
  2573. #u5244_img {
  2574. border-width:0px;
  2575. position:absolute;
  2576. left:0px;
  2577. top:0px;
  2578. width:235px;
  2579. height:30px;
  2580. }
  2581. #u5244_text {
  2582. border-width:0px;
  2583. word-wrap:break-word;
  2584. text-transform:none;
  2585. visibility:hidden;
  2586. }
  2587. #u5245 {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:0px;
  2591. top:98px;
  2592. width:139px;
  2593. height:30px;
  2594. display:flex;
  2595. transition:none;
  2596. font-size:14px;
  2597. text-align:left;
  2598. line-height:30px;
  2599. }
  2600. #u5245 .text {
  2601. position:absolute;
  2602. align-self:center;
  2603. padding:2px 10px 2px 10px;
  2604. box-sizing:border-box;
  2605. width:100%;
  2606. }
  2607. #u5245_img {
  2608. border-width:0px;
  2609. position:absolute;
  2610. left:0px;
  2611. top:0px;
  2612. width:139px;
  2613. height:30px;
  2614. }
  2615. #u5245_text {
  2616. border-width:0px;
  2617. word-wrap:break-word;
  2618. text-transform:none;
  2619. visibility:hidden;
  2620. }
  2621. #u5246 {
  2622. border-width:0px;
  2623. position:absolute;
  2624. left:139px;
  2625. top:98px;
  2626. width:139px;
  2627. height:30px;
  2628. display:flex;
  2629. transition:none;
  2630. font-size:14px;
  2631. text-align:left;
  2632. line-height:30px;
  2633. }
  2634. #u5246 .text {
  2635. position:absolute;
  2636. align-self:center;
  2637. padding:2px 10px 2px 10px;
  2638. box-sizing:border-box;
  2639. width:100%;
  2640. }
  2641. #u5246_img {
  2642. border-width:0px;
  2643. position:absolute;
  2644. left:0px;
  2645. top:0px;
  2646. width:139px;
  2647. height:30px;
  2648. }
  2649. #u5246_text {
  2650. border-width:0px;
  2651. word-wrap:break-word;
  2652. text-transform:none;
  2653. visibility:hidden;
  2654. }
  2655. #u5247 {
  2656. border-width:0px;
  2657. position:absolute;
  2658. left:278px;
  2659. top:98px;
  2660. width:139px;
  2661. height:30px;
  2662. display:flex;
  2663. transition:none;
  2664. font-size:14px;
  2665. text-align:left;
  2666. line-height:30px;
  2667. }
  2668. #u5247 .text {
  2669. position:absolute;
  2670. align-self:center;
  2671. padding:2px 10px 2px 10px;
  2672. box-sizing:border-box;
  2673. width:100%;
  2674. }
  2675. #u5247_img {
  2676. border-width:0px;
  2677. position:absolute;
  2678. left:0px;
  2679. top:0px;
  2680. width:139px;
  2681. height:30px;
  2682. }
  2683. #u5247_text {
  2684. border-width:0px;
  2685. word-wrap:break-word;
  2686. text-transform:none;
  2687. visibility:hidden;
  2688. }
  2689. #u5248 {
  2690. border-width:0px;
  2691. position:absolute;
  2692. left:417px;
  2693. top:98px;
  2694. width:139px;
  2695. height:30px;
  2696. display:flex;
  2697. transition:none;
  2698. font-size:14px;
  2699. text-align:left;
  2700. line-height:30px;
  2701. }
  2702. #u5248 .text {
  2703. position:absolute;
  2704. align-self:center;
  2705. padding:2px 10px 2px 10px;
  2706. box-sizing:border-box;
  2707. width:100%;
  2708. }
  2709. #u5248_img {
  2710. border-width:0px;
  2711. position:absolute;
  2712. left:0px;
  2713. top:0px;
  2714. width:139px;
  2715. height:30px;
  2716. }
  2717. #u5248_text {
  2718. border-width:0px;
  2719. word-wrap:break-word;
  2720. text-transform:none;
  2721. visibility:hidden;
  2722. }
  2723. #u5249 {
  2724. border-width:0px;
  2725. position:absolute;
  2726. left:556px;
  2727. top:98px;
  2728. width:139px;
  2729. height:30px;
  2730. display:flex;
  2731. transition:none;
  2732. font-size:14px;
  2733. text-align:left;
  2734. line-height:30px;
  2735. }
  2736. #u5249 .text {
  2737. position:absolute;
  2738. align-self:center;
  2739. padding:2px 10px 2px 10px;
  2740. box-sizing:border-box;
  2741. width:100%;
  2742. }
  2743. #u5249_img {
  2744. border-width:0px;
  2745. position:absolute;
  2746. left:0px;
  2747. top:0px;
  2748. width:139px;
  2749. height:30px;
  2750. }
  2751. #u5249_text {
  2752. border-width:0px;
  2753. word-wrap:break-word;
  2754. text-transform:none;
  2755. visibility:hidden;
  2756. }
  2757. #u5250 {
  2758. border-width:0px;
  2759. position:absolute;
  2760. left:695px;
  2761. top:98px;
  2762. width:139px;
  2763. height:30px;
  2764. display:flex;
  2765. transition:none;
  2766. font-size:14px;
  2767. text-align:left;
  2768. line-height:30px;
  2769. }
  2770. #u5250 .text {
  2771. position:absolute;
  2772. align-self:center;
  2773. padding:2px 10px 2px 10px;
  2774. box-sizing:border-box;
  2775. width:100%;
  2776. }
  2777. #u5250_img {
  2778. border-width:0px;
  2779. position:absolute;
  2780. left:0px;
  2781. top:0px;
  2782. width:139px;
  2783. height:30px;
  2784. }
  2785. #u5250_text {
  2786. border-width:0px;
  2787. word-wrap:break-word;
  2788. text-transform:none;
  2789. visibility:hidden;
  2790. }
  2791. #u5251 {
  2792. border-width:0px;
  2793. position:absolute;
  2794. left:834px;
  2795. top:98px;
  2796. width:150px;
  2797. height:30px;
  2798. display:flex;
  2799. transition:none;
  2800. font-size:14px;
  2801. text-align:left;
  2802. line-height:30px;
  2803. }
  2804. #u5251 .text {
  2805. position:absolute;
  2806. align-self:center;
  2807. padding:2px 10px 2px 10px;
  2808. box-sizing:border-box;
  2809. width:100%;
  2810. }
  2811. #u5251_img {
  2812. border-width:0px;
  2813. position:absolute;
  2814. left:0px;
  2815. top:0px;
  2816. width:150px;
  2817. height:30px;
  2818. }
  2819. #u5251_text {
  2820. border-width:0px;
  2821. word-wrap:break-word;
  2822. text-transform:none;
  2823. visibility:hidden;
  2824. }
  2825. #u5252 {
  2826. border-width:0px;
  2827. position:absolute;
  2828. left:984px;
  2829. top:98px;
  2830. width:235px;
  2831. height:30px;
  2832. display:flex;
  2833. transition:none;
  2834. font-size:14px;
  2835. color:#1890FF;
  2836. text-align:left;
  2837. line-height:30px;
  2838. }
  2839. #u5252 .text {
  2840. position:absolute;
  2841. align-self:center;
  2842. padding:2px 10px 2px 10px;
  2843. box-sizing:border-box;
  2844. width:100%;
  2845. }
  2846. #u5252_img {
  2847. border-width:0px;
  2848. position:absolute;
  2849. left:0px;
  2850. top:0px;
  2851. width:235px;
  2852. height:30px;
  2853. }
  2854. #u5252_text {
  2855. border-width:0px;
  2856. word-wrap:break-word;
  2857. text-transform:none;
  2858. visibility:hidden;
  2859. }
  2860. #u5253 {
  2861. border-width:0px;
  2862. position:absolute;
  2863. left:0px;
  2864. top:0px;
  2865. width:0px;
  2866. height:0px;
  2867. }
  2868. #u5254_div {
  2869. border-width:0px;
  2870. position:absolute;
  2871. left:0px;
  2872. top:0px;
  2873. width:59px;
  2874. height:30px;
  2875. background:inherit;
  2876. background-color:rgba(41, 143, 255, 1);
  2877. border-radius:4px;
  2878. filter:drop-shadow(none);
  2879. transition:none;
  2880. font-family:"Microsoft YaHei", sans-serif;
  2881. font-weight:400;
  2882. font-style:normal;
  2883. font-size:14px;
  2884. color:#FFFFFF;
  2885. }
  2886. #u5254 {
  2887. border-width:0px;
  2888. position:absolute;
  2889. left:1100px;
  2890. top:142px;
  2891. width:59px;
  2892. height:30px;
  2893. display:flex;
  2894. transition:none;
  2895. transform-origin:50% 50%;
  2896. font-family:"Microsoft YaHei", sans-serif;
  2897. font-weight:400;
  2898. font-style:normal;
  2899. font-size:14px;
  2900. color:#FFFFFF;
  2901. }
  2902. #u5254 .text {
  2903. position:absolute;
  2904. align-self:center;
  2905. padding:5px 15px 5px 15px;
  2906. box-sizing:border-box;
  2907. width:100%;
  2908. }
  2909. #u5254_text {
  2910. border-width:0px;
  2911. white-space:nowrap;
  2912. text-transform:none;
  2913. }
  2914. #u5255_div {
  2915. border-width:0px;
  2916. position:absolute;
  2917. left:0px;
  2918. top:0px;
  2919. width:55px;
  2920. height:30px;
  2921. background:inherit;
  2922. background-color:rgba(255, 255, 255, 1);
  2923. box-sizing:border-box;
  2924. border-width:1px;
  2925. border-style:solid;
  2926. border-color:rgba(170, 170, 170, 1);
  2927. border-radius:4px;
  2928. filter:drop-shadow(none);
  2929. transition:none;
  2930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2931. font-weight:400;
  2932. font-style:normal;
  2933. font-size:12px;
  2934. color:#555555;
  2935. }
  2936. #u5255 {
  2937. border-width:0px;
  2938. position:absolute;
  2939. left:1169px;
  2940. top:142px;
  2941. width:55px;
  2942. height:30px;
  2943. display:flex;
  2944. transition:none;
  2945. transform-origin:50% 50%;
  2946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2947. font-weight:400;
  2948. font-style:normal;
  2949. font-size:12px;
  2950. color:#555555;
  2951. }
  2952. #u5255 .text {
  2953. position:absolute;
  2954. align-self:center;
  2955. padding:5px 15px 5px 15px;
  2956. box-sizing:border-box;
  2957. width:100%;
  2958. }
  2959. #u5255_text {
  2960. border-width:0px;
  2961. white-space:nowrap;
  2962. text-transform:none;
  2963. }
  2964. #u5256 {
  2965. border-width:0px;
  2966. position:absolute;
  2967. left:0px;
  2968. top:0px;
  2969. width:0px;
  2970. height:0px;
  2971. }
  2972. #u5257_div {
  2973. border-width:0px;
  2974. position:absolute;
  2975. left:0px;
  2976. top:0px;
  2977. width:140px;
  2978. height:30px;
  2979. background:inherit;
  2980. background-color:rgba(255, 255, 255, 1);
  2981. box-sizing:border-box;
  2982. border-width:1px;
  2983. border-style:solid;
  2984. border-color:rgba(215, 215, 215, 1);
  2985. border-radius:4px;
  2986. filter:drop-shadow(none);
  2987. transition:none;
  2988. font-size:11px;
  2989. }
  2990. #u5257 {
  2991. border-width:0px;
  2992. position:absolute;
  2993. left:350px;
  2994. top:142px;
  2995. width:140px;
  2996. height:30px;
  2997. display:flex;
  2998. transition:none;
  2999. transform-origin:50% 50%;
  3000. font-size:11px;
  3001. }
  3002. #u5257 .text {
  3003. position:absolute;
  3004. align-self:center;
  3005. padding:2px 2px 2px 2px;
  3006. box-sizing:border-box;
  3007. width:100%;
  3008. }
  3009. #u5257_text {
  3010. border-width:0px;
  3011. word-wrap:break-word;
  3012. text-transform:none;
  3013. visibility:hidden;
  3014. }
  3015. #u5258_input {
  3016. position:absolute;
  3017. left:0px;
  3018. top:0px;
  3019. width:120px;
  3020. height:23px;
  3021. padding:2px 2px 2px 2px;
  3022. font-family:'ArialMT', 'Arial', sans-serif;
  3023. font-weight:400;
  3024. font-style:normal;
  3025. font-size:11px;
  3026. letter-spacing:normal;
  3027. color:#AAAAAA;
  3028. vertical-align:none;
  3029. text-align:left;
  3030. text-transform:none;
  3031. background-color:transparent;
  3032. border-color:transparent;
  3033. }
  3034. #u5258_input.disabled {
  3035. position:absolute;
  3036. left:0px;
  3037. top:0px;
  3038. width:120px;
  3039. height:23px;
  3040. padding:2px 2px 2px 2px;
  3041. font-family:'ArialMT', 'Arial', sans-serif;
  3042. font-weight:400;
  3043. font-style:normal;
  3044. font-size:11px;
  3045. letter-spacing:normal;
  3046. color:#AAAAAA;
  3047. vertical-align:none;
  3048. text-align:left;
  3049. text-transform:none;
  3050. background-color:transparent;
  3051. border-color:transparent;
  3052. }
  3053. #u5258_div {
  3054. border-width:0px;
  3055. position:absolute;
  3056. left:0px;
  3057. top:0px;
  3058. width:120px;
  3059. height:23px;
  3060. background:inherit;
  3061. background-color:rgba(255, 255, 255, 1);
  3062. border-radius:0px;
  3063. filter:drop-shadow(none);
  3064. transition:none;
  3065. font-size:11px;
  3066. color:#AAAAAA;
  3067. }
  3068. #u5258 {
  3069. border-width:0px;
  3070. position:absolute;
  3071. left:357px;
  3072. top:144px;
  3073. width:120px;
  3074. height:23px;
  3075. display:flex;
  3076. transition:none;
  3077. transform-origin:50% 50%;
  3078. font-size:11px;
  3079. color:#AAAAAA;
  3080. }
  3081. #u5258 .text {
  3082. position:absolute;
  3083. align-self:flex-start;
  3084. padding:2px 2px 2px 2px;
  3085. box-sizing:border-box;
  3086. width:100%;
  3087. }
  3088. #u5258_div.disabled {
  3089. border-width:0px;
  3090. position:absolute;
  3091. left:0px;
  3092. top:0px;
  3093. width:120px;
  3094. height:23px;
  3095. background:inherit;
  3096. background-color:rgba(240, 240, 240, 1);
  3097. border-radius:0px;
  3098. filter:drop-shadow(none);
  3099. transition:none;
  3100. font-size:11px;
  3101. color:#AAAAAA;
  3102. }
  3103. #u5258.disabled {
  3104. }
  3105. .u5258_input_option {
  3106. font-size:11px;
  3107. }
  3108. #u5259 {
  3109. border-width:0px;
  3110. position:absolute;
  3111. left:0px;
  3112. top:0px;
  3113. width:0px;
  3114. height:0px;
  3115. }
  3116. #u5260_div {
  3117. border-width:0px;
  3118. position:absolute;
  3119. left:0px;
  3120. top:0px;
  3121. width:140px;
  3122. height:30px;
  3123. background:inherit;
  3124. background-color:rgba(255, 255, 255, 1);
  3125. box-sizing:border-box;
  3126. border-width:1px;
  3127. border-style:solid;
  3128. border-color:rgba(201, 201, 201, 1);
  3129. border-radius:4px;
  3130. filter:drop-shadow(none);
  3131. transition:none;
  3132. font-family:"Microsoft YaHei", sans-serif;
  3133. font-weight:400;
  3134. font-style:normal;
  3135. font-size:14px;
  3136. color:#CCCCCC;
  3137. text-align:left;
  3138. }
  3139. #u5260 {
  3140. border-width:0px;
  3141. position:absolute;
  3142. left:650px;
  3143. top:142px;
  3144. width:140px;
  3145. height:30px;
  3146. display:flex;
  3147. transition:none;
  3148. transform-origin:50% 50%;
  3149. font-family:"Microsoft YaHei", sans-serif;
  3150. font-weight:400;
  3151. font-style:normal;
  3152. font-size:14px;
  3153. color:#CCCCCC;
  3154. text-align:left;
  3155. }
  3156. #u5260 .text {
  3157. position:absolute;
  3158. align-self:center;
  3159. padding:2px 8px 2px 8px;
  3160. box-sizing:border-box;
  3161. width:100%;
  3162. }
  3163. #u5260_text {
  3164. border-width:0px;
  3165. word-wrap:break-word;
  3166. text-transform:none;
  3167. visibility:hidden;
  3168. }
  3169. #u5261_input {
  3170. position:absolute;
  3171. left:0px;
  3172. top:0px;
  3173. width:127px;
  3174. height:25px;
  3175. padding:2px 2px 2px 2px;
  3176. font-family:"Microsoft YaHei", sans-serif;
  3177. font-weight:400;
  3178. font-style:normal;
  3179. font-size:10px;
  3180. letter-spacing:normal;
  3181. color:#000000;
  3182. vertical-align:none;
  3183. text-align:left;
  3184. text-transform:none;
  3185. background-color:transparent;
  3186. border-color:transparent;
  3187. }
  3188. #u5261_input.hint {
  3189. position:absolute;
  3190. left:0px;
  3191. top:0px;
  3192. width:127px;
  3193. height:25px;
  3194. padding:2px 2px 2px 2px;
  3195. font-family:"Microsoft YaHei", sans-serif;
  3196. font-weight:400;
  3197. font-style:normal;
  3198. font-size:12px;
  3199. letter-spacing:normal;
  3200. color:#AAAAAA;
  3201. vertical-align:none;
  3202. text-align:left;
  3203. text-transform:none;
  3204. background-color:transparent;
  3205. border-color:transparent;
  3206. }
  3207. #u5261_input.disabled {
  3208. position:absolute;
  3209. left:0px;
  3210. top:0px;
  3211. width:127px;
  3212. height:25px;
  3213. padding:2px 2px 2px 2px;
  3214. font-family:"Microsoft YaHei", sans-serif;
  3215. font-weight:400;
  3216. font-style:normal;
  3217. font-size:10px;
  3218. letter-spacing:normal;
  3219. color:#000000;
  3220. vertical-align:none;
  3221. text-align:left;
  3222. text-transform:none;
  3223. background-color:transparent;
  3224. border-color:transparent;
  3225. }
  3226. #u5261_input.hint.disabled {
  3227. position:absolute;
  3228. left:0px;
  3229. top:0px;
  3230. width:127px;
  3231. height:25px;
  3232. padding:2px 2px 2px 2px;
  3233. font-family:"Microsoft YaHei", sans-serif;
  3234. font-weight:400;
  3235. font-style:normal;
  3236. font-size:12px;
  3237. letter-spacing:normal;
  3238. color:#AAAAAA;
  3239. vertical-align:none;
  3240. text-align:left;
  3241. text-transform:none;
  3242. background-color:transparent;
  3243. border-color:transparent;
  3244. }
  3245. #u5261_div {
  3246. border-width:0px;
  3247. position:absolute;
  3248. left:0px;
  3249. top:0px;
  3250. width:127px;
  3251. height:25px;
  3252. background:inherit;
  3253. background-color:rgba(255, 255, 255, 1);
  3254. border-radius:0px;
  3255. filter:drop-shadow(none);
  3256. transition:none;
  3257. font-family:"Microsoft YaHei", sans-serif;
  3258. font-weight:400;
  3259. font-style:normal;
  3260. font-size:10px;
  3261. }
  3262. #u5261 {
  3263. border-width:0px;
  3264. position:absolute;
  3265. left:658px;
  3266. top:143px;
  3267. width:127px;
  3268. height:25px;
  3269. display:flex;
  3270. transition:none;
  3271. transform-origin:50% 50%;
  3272. font-family:"Microsoft YaHei", sans-serif;
  3273. font-weight:400;
  3274. font-style:normal;
  3275. font-size:10px;
  3276. }
  3277. #u5261 .text {
  3278. position:absolute;
  3279. align-self:center;
  3280. padding:2px 2px 2px 2px;
  3281. box-sizing:border-box;
  3282. width:100%;
  3283. }
  3284. #u5261_div.hint {
  3285. border-width:0px;
  3286. position:absolute;
  3287. left:0px;
  3288. top:0px;
  3289. width:127px;
  3290. height:25px;
  3291. background:inherit;
  3292. background-color:rgba(255, 255, 255, 1);
  3293. border-radius:0px;
  3294. filter:drop-shadow(none);
  3295. transition:none;
  3296. font-family:"Microsoft YaHei", sans-serif;
  3297. font-weight:400;
  3298. font-style:normal;
  3299. font-size:10px;
  3300. }
  3301. #u5261.hint {
  3302. }
  3303. #u5261_div.disabled {
  3304. border-width:0px;
  3305. position:absolute;
  3306. left:0px;
  3307. top:0px;
  3308. width:127px;
  3309. height:25px;
  3310. background:inherit;
  3311. background-color:rgba(240, 240, 240, 1);
  3312. border-radius:0px;
  3313. filter:drop-shadow(none);
  3314. transition:none;
  3315. font-family:"Microsoft YaHei", sans-serif;
  3316. font-weight:400;
  3317. font-style:normal;
  3318. font-size:10px;
  3319. }
  3320. #u5261.disabled {
  3321. }
  3322. #u5261_div.hint.disabled {
  3323. border-width:0px;
  3324. position:absolute;
  3325. left:0px;
  3326. top:0px;
  3327. width:127px;
  3328. height:25px;
  3329. background:inherit;
  3330. background-color:rgba(240, 240, 240, 1);
  3331. border-radius:0px;
  3332. filter:drop-shadow(none);
  3333. transition:none;
  3334. font-family:"Microsoft YaHei", sans-serif;
  3335. font-weight:400;
  3336. font-style:normal;
  3337. font-size:10px;
  3338. }
  3339. #u5261.hint.disabled {
  3340. }
  3341. #u5262 {
  3342. border-width:0px;
  3343. position:absolute;
  3344. left:0px;
  3345. top:0px;
  3346. width:0px;
  3347. height:0px;
  3348. }
  3349. #u5263_div {
  3350. border-width:0px;
  3351. position:absolute;
  3352. left:0px;
  3353. top:0px;
  3354. width:140px;
  3355. height:30px;
  3356. background:inherit;
  3357. background-color:rgba(255, 255, 255, 1);
  3358. box-sizing:border-box;
  3359. border-width:1px;
  3360. border-style:solid;
  3361. border-color:rgba(201, 201, 201, 1);
  3362. border-radius:4px;
  3363. filter:drop-shadow(none);
  3364. transition:none;
  3365. font-family:"Microsoft YaHei", sans-serif;
  3366. font-weight:400;
  3367. font-style:normal;
  3368. font-size:14px;
  3369. color:#CCCCCC;
  3370. text-align:left;
  3371. }
  3372. #u5263 {
  3373. border-width:0px;
  3374. position:absolute;
  3375. left:500px;
  3376. top:142px;
  3377. width:140px;
  3378. height:30px;
  3379. display:flex;
  3380. transition:none;
  3381. transform-origin:50% 50%;
  3382. font-family:"Microsoft YaHei", sans-serif;
  3383. font-weight:400;
  3384. font-style:normal;
  3385. font-size:14px;
  3386. color:#CCCCCC;
  3387. text-align:left;
  3388. }
  3389. #u5263 .text {
  3390. position:absolute;
  3391. align-self:center;
  3392. padding:2px 8px 2px 8px;
  3393. box-sizing:border-box;
  3394. width:100%;
  3395. }
  3396. #u5263_text {
  3397. border-width:0px;
  3398. word-wrap:break-word;
  3399. text-transform:none;
  3400. visibility:hidden;
  3401. }
  3402. #u5264_input {
  3403. position:absolute;
  3404. left:0px;
  3405. top:0px;
  3406. width:127px;
  3407. height:25px;
  3408. padding:2px 2px 2px 2px;
  3409. font-family:"Microsoft YaHei", sans-serif;
  3410. font-weight:400;
  3411. font-style:normal;
  3412. font-size:10px;
  3413. letter-spacing:normal;
  3414. color:#000000;
  3415. vertical-align:none;
  3416. text-align:left;
  3417. text-transform:none;
  3418. background-color:transparent;
  3419. border-color:transparent;
  3420. }
  3421. #u5264_input.hint {
  3422. position:absolute;
  3423. left:0px;
  3424. top:0px;
  3425. width:127px;
  3426. height:25px;
  3427. padding:2px 2px 2px 2px;
  3428. font-family:"Microsoft YaHei", sans-serif;
  3429. font-weight:400;
  3430. font-style:normal;
  3431. font-size:12px;
  3432. letter-spacing:normal;
  3433. color:#AAAAAA;
  3434. vertical-align:none;
  3435. text-align:left;
  3436. text-transform:none;
  3437. background-color:transparent;
  3438. border-color:transparent;
  3439. }
  3440. #u5264_input.disabled {
  3441. position:absolute;
  3442. left:0px;
  3443. top:0px;
  3444. width:127px;
  3445. height:25px;
  3446. padding:2px 2px 2px 2px;
  3447. font-family:"Microsoft YaHei", sans-serif;
  3448. font-weight:400;
  3449. font-style:normal;
  3450. font-size:10px;
  3451. letter-spacing:normal;
  3452. color:#000000;
  3453. vertical-align:none;
  3454. text-align:left;
  3455. text-transform:none;
  3456. background-color:transparent;
  3457. border-color:transparent;
  3458. }
  3459. #u5264_input.hint.disabled {
  3460. position:absolute;
  3461. left:0px;
  3462. top:0px;
  3463. width:127px;
  3464. height:25px;
  3465. padding:2px 2px 2px 2px;
  3466. font-family:"Microsoft YaHei", sans-serif;
  3467. font-weight:400;
  3468. font-style:normal;
  3469. font-size:12px;
  3470. letter-spacing:normal;
  3471. color:#AAAAAA;
  3472. vertical-align:none;
  3473. text-align:left;
  3474. text-transform:none;
  3475. background-color:transparent;
  3476. border-color:transparent;
  3477. }
  3478. #u5264_div {
  3479. border-width:0px;
  3480. position:absolute;
  3481. left:0px;
  3482. top:0px;
  3483. width:127px;
  3484. height:25px;
  3485. background:inherit;
  3486. background-color:rgba(255, 255, 255, 1);
  3487. border-radius:0px;
  3488. filter:drop-shadow(none);
  3489. transition:none;
  3490. font-family:"Microsoft YaHei", sans-serif;
  3491. font-weight:400;
  3492. font-style:normal;
  3493. font-size:10px;
  3494. }
  3495. #u5264 {
  3496. border-width:0px;
  3497. position:absolute;
  3498. left:508px;
  3499. top:143px;
  3500. width:127px;
  3501. height:25px;
  3502. display:flex;
  3503. transition:none;
  3504. transform-origin:50% 50%;
  3505. font-family:"Microsoft YaHei", sans-serif;
  3506. font-weight:400;
  3507. font-style:normal;
  3508. font-size:10px;
  3509. }
  3510. #u5264 .text {
  3511. position:absolute;
  3512. align-self:center;
  3513. padding:2px 2px 2px 2px;
  3514. box-sizing:border-box;
  3515. width:100%;
  3516. }
  3517. #u5264_div.hint {
  3518. border-width:0px;
  3519. position:absolute;
  3520. left:0px;
  3521. top:0px;
  3522. width:127px;
  3523. height:25px;
  3524. background:inherit;
  3525. background-color:rgba(255, 255, 255, 1);
  3526. border-radius:0px;
  3527. filter:drop-shadow(none);
  3528. transition:none;
  3529. font-family:"Microsoft YaHei", sans-serif;
  3530. font-weight:400;
  3531. font-style:normal;
  3532. font-size:10px;
  3533. }
  3534. #u5264.hint {
  3535. }
  3536. #u5264_div.disabled {
  3537. border-width:0px;
  3538. position:absolute;
  3539. left:0px;
  3540. top:0px;
  3541. width:127px;
  3542. height:25px;
  3543. background:inherit;
  3544. background-color:rgba(240, 240, 240, 1);
  3545. border-radius:0px;
  3546. filter:drop-shadow(none);
  3547. transition:none;
  3548. font-family:"Microsoft YaHei", sans-serif;
  3549. font-weight:400;
  3550. font-style:normal;
  3551. font-size:10px;
  3552. }
  3553. #u5264.disabled {
  3554. }
  3555. #u5264_div.hint.disabled {
  3556. border-width:0px;
  3557. position:absolute;
  3558. left:0px;
  3559. top:0px;
  3560. width:127px;
  3561. height:25px;
  3562. background:inherit;
  3563. background-color:rgba(240, 240, 240, 1);
  3564. border-radius:0px;
  3565. filter:drop-shadow(none);
  3566. transition:none;
  3567. font-family:"Microsoft YaHei", sans-serif;
  3568. font-weight:400;
  3569. font-style:normal;
  3570. font-size:10px;
  3571. }
  3572. #u5264.hint.disabled {
  3573. }
  3574. #u5265_div {
  3575. border-width:0px;
  3576. position:absolute;
  3577. left:0px;
  3578. top:0px;
  3579. width:1123px;
  3580. height:120px;
  3581. background:inherit;
  3582. background-color:rgba(255, 255, 255, 0);
  3583. border-left:0px;
  3584. border-top:0px;
  3585. border-right:0px;
  3586. border-radius:0px;
  3587. border-bottom-right-radius:0px;
  3588. border-bottom-left-radius:0px;
  3589. filter:drop-shadow(none);
  3590. transition:none;
  3591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3592. font-weight:400;
  3593. font-style:normal;
  3594. font-size:18px;
  3595. color:#1890FF;
  3596. line-height:40px;
  3597. }
  3598. #u5265 {
  3599. border-width:0px;
  3600. position:absolute;
  3601. left:374px;
  3602. top:393px;
  3603. width:1123px;
  3604. height:120px;
  3605. display:flex;
  3606. transition:none;
  3607. transform-origin:50% 50%;
  3608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3609. font-weight:400;
  3610. font-style:normal;
  3611. font-size:18px;
  3612. color:#1890FF;
  3613. line-height:40px;
  3614. }
  3615. #u5265 .text {
  3616. position:absolute;
  3617. align-self:center;
  3618. padding:0px 0px 0px 0px;
  3619. box-sizing:border-box;
  3620. width:100%;
  3621. }
  3622. #u5265_text {
  3623. border-width:0px;
  3624. word-wrap:break-word;
  3625. text-transform:none;
  3626. }
  3627. #u5266_div {
  3628. border-width:0px;
  3629. position:absolute;
  3630. left:0px;
  3631. top:0px;
  3632. width:1123px;
  3633. height:160px;
  3634. background:inherit;
  3635. background-color:rgba(255, 255, 255, 0);
  3636. border-left:0px;
  3637. border-top:0px;
  3638. border-right:0px;
  3639. border-radius:0px;
  3640. border-bottom-right-radius:0px;
  3641. border-bottom-left-radius:0px;
  3642. filter:drop-shadow(none);
  3643. transition:none;
  3644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3645. font-weight:400;
  3646. font-style:normal;
  3647. font-size:18px;
  3648. color:#D9001B;
  3649. line-height:40px;
  3650. }
  3651. #u5266 {
  3652. border-width:0px;
  3653. position:absolute;
  3654. left:374px;
  3655. top:570px;
  3656. width:1123px;
  3657. height:160px;
  3658. display:flex;
  3659. transition:none;
  3660. transform-origin:50% 50%;
  3661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3662. font-weight:400;
  3663. font-style:normal;
  3664. font-size:18px;
  3665. color:#D9001B;
  3666. line-height:40px;
  3667. }
  3668. #u5266 .text {
  3669. position:absolute;
  3670. align-self:center;
  3671. padding:0px 0px 0px 0px;
  3672. box-sizing:border-box;
  3673. width:100%;
  3674. }
  3675. #u5266_text {
  3676. border-width:0px;
  3677. word-wrap:break-word;
  3678. text-transform:none;
  3679. }
  3680. #u5267 {
  3681. border-width:0px;
  3682. position:absolute;
  3683. left:120px;
  3684. top:50px;
  3685. width:201px;
  3686. height:1190px;
  3687. }
  3688. #u5268 {
  3689. border-width:0px;
  3690. position:absolute;
  3691. left:0px;
  3692. top:0px;
  3693. width:0px;
  3694. height:0px;
  3695. }
  3696. #u5269_div {
  3697. border-width:0px;
  3698. position:absolute;
  3699. left:0px;
  3700. top:0px;
  3701. width:200px;
  3702. height:1190px;
  3703. background:inherit;
  3704. background-color:rgba(255, 255, 255, 1);
  3705. border-radius:0px;
  3706. filter:drop-shadow(none);
  3707. transition:none;
  3708. }
  3709. #u5269 {
  3710. border-width:0px;
  3711. position:absolute;
  3712. left:0px;
  3713. top:0px;
  3714. width:200px;
  3715. height:1190px;
  3716. display:flex;
  3717. transition:none;
  3718. transform-origin:50% 50%;
  3719. }
  3720. #u5269 .text {
  3721. position:absolute;
  3722. align-self:center;
  3723. padding:2px 2px 2px 2px;
  3724. box-sizing:border-box;
  3725. width:100%;
  3726. }
  3727. #u5269_text {
  3728. border-width:0px;
  3729. word-wrap:break-word;
  3730. text-transform:none;
  3731. visibility:hidden;
  3732. }
  3733. #u5270_div {
  3734. border-width:0px;
  3735. position:absolute;
  3736. left:0px;
  3737. top:0px;
  3738. width:200px;
  3739. height:60px;
  3740. background:inherit;
  3741. background-color:rgba(224, 231, 247, 1);
  3742. border-radius:0px;
  3743. filter:drop-shadow(none);
  3744. transition:none;
  3745. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3746. font-weight:500;
  3747. font-style:normal;
  3748. font-size:18px;
  3749. }
  3750. #u5270 {
  3751. border-width:0px;
  3752. position:absolute;
  3753. left:0px;
  3754. top:0px;
  3755. width:200px;
  3756. height:60px;
  3757. display:flex;
  3758. transition:none;
  3759. transform-origin:50% 50%;
  3760. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3761. font-weight:500;
  3762. font-style:normal;
  3763. font-size:18px;
  3764. }
  3765. #u5270 .text {
  3766. position:absolute;
  3767. align-self:center;
  3768. padding:0px 0px 0px 20px;
  3769. box-sizing:border-box;
  3770. width:100%;
  3771. }
  3772. #u5270_text {
  3773. border-width:0px;
  3774. word-wrap:break-word;
  3775. text-transform:none;
  3776. }
  3777. #u5271_div {
  3778. border-width:0px;
  3779. position:absolute;
  3780. left:0px;
  3781. top:0px;
  3782. width:65px;
  3783. height:22px;
  3784. background:inherit;
  3785. background-color:rgba(255, 255, 255, 0);
  3786. border-radius:0px;
  3787. filter:drop-shadow(none);
  3788. transition:none;
  3789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3790. font-weight:400;
  3791. font-style:normal;
  3792. font-size:16px;
  3793. }
  3794. #u5271 {
  3795. border-width:0px;
  3796. position:absolute;
  3797. left:27px;
  3798. top:179px;
  3799. width:65px;
  3800. height:22px;
  3801. display:flex;
  3802. transition:none;
  3803. transform-origin:50% 50%;
  3804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3805. font-weight:400;
  3806. font-style:normal;
  3807. font-size:16px;
  3808. }
  3809. #u5271 .text {
  3810. position:absolute;
  3811. align-self:flex-start;
  3812. padding:0px 0px 0px 0px;
  3813. box-sizing:border-box;
  3814. width:100%;
  3815. }
  3816. #u5271_text {
  3817. border-width:0px;
  3818. white-space:nowrap;
  3819. text-transform:none;
  3820. }
  3821. #u5272 {
  3822. border-width:0px;
  3823. position:absolute;
  3824. left:1px;
  3825. top:122px;
  3826. width:200px;
  3827. height:1px;
  3828. display:flex;
  3829. transition:none;
  3830. }
  3831. #u5272 .text {
  3832. position:absolute;
  3833. align-self:center;
  3834. padding:2px 2px 2px 2px;
  3835. box-sizing:border-box;
  3836. width:100%;
  3837. }
  3838. #u5272_img {
  3839. border-width:0px;
  3840. position:absolute;
  3841. left:0px;
  3842. top:0px;
  3843. width:201px;
  3844. height:2px;
  3845. }
  3846. #u5272_text {
  3847. border-width:0px;
  3848. word-wrap:break-word;
  3849. text-transform:none;
  3850. visibility:hidden;
  3851. }
  3852. #u5273_div {
  3853. border-width:0px;
  3854. position:absolute;
  3855. left:0px;
  3856. top:0px;
  3857. width:33px;
  3858. height:22px;
  3859. background:inherit;
  3860. background-color:rgba(255, 255, 255, 0);
  3861. border-radius:0px;
  3862. filter:drop-shadow(none);
  3863. transition:none;
  3864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3865. font-weight:400;
  3866. font-style:normal;
  3867. font-size:16px;
  3868. }
  3869. #u5273 {
  3870. border-width:0px;
  3871. position:absolute;
  3872. left:27px;
  3873. top:80px;
  3874. width:33px;
  3875. height:22px;
  3876. display:flex;
  3877. transition:none;
  3878. transform-origin:50% 50%;
  3879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3880. font-weight:400;
  3881. font-style:normal;
  3882. font-size:16px;
  3883. }
  3884. #u5273 .text {
  3885. position:absolute;
  3886. align-self:flex-start;
  3887. padding:0px 0px 0px 0px;
  3888. box-sizing:border-box;
  3889. width:100%;
  3890. }
  3891. #u5273_text {
  3892. border-width:0px;
  3893. white-space:nowrap;
  3894. text-transform:none;
  3895. }
  3896. #u5274_div {
  3897. border-width:0px;
  3898. position:absolute;
  3899. left:0px;
  3900. top:0px;
  3901. width:49px;
  3902. height:17px;
  3903. background:inherit;
  3904. background-color:rgba(255, 255, 255, 0);
  3905. border-radius:0px;
  3906. filter:drop-shadow(none);
  3907. transition:none;
  3908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3909. font-weight:400;
  3910. font-style:normal;
  3911. font-size:12px;
  3912. color:#AAAAAA;
  3913. }
  3914. #u5274 {
  3915. border-width:0px;
  3916. position:absolute;
  3917. left:27px;
  3918. top:142px;
  3919. width:49px;
  3920. height:17px;
  3921. display:flex;
  3922. transition:none;
  3923. transform-origin:50% 50%;
  3924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3925. font-weight:400;
  3926. font-style:normal;
  3927. font-size:12px;
  3928. color:#AAAAAA;
  3929. }
  3930. #u5274 .text {
  3931. position:absolute;
  3932. align-self:flex-start;
  3933. padding:0px 0px 0px 0px;
  3934. box-sizing:border-box;
  3935. width:100%;
  3936. }
  3937. #u5274_text {
  3938. border-width:0px;
  3939. white-space:nowrap;
  3940. text-transform:none;
  3941. }
  3942. #u5275_div {
  3943. border-width:0px;
  3944. position:absolute;
  3945. left:0px;
  3946. top:0px;
  3947. width:65px;
  3948. height:22px;
  3949. background:inherit;
  3950. background-color:rgba(255, 255, 255, 0);
  3951. border-radius:0px;
  3952. filter:drop-shadow(none);
  3953. transition:none;
  3954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3955. font-weight:400;
  3956. font-style:normal;
  3957. font-size:16px;
  3958. }
  3959. #u5275 {
  3960. border-width:0px;
  3961. position:absolute;
  3962. left:27px;
  3963. top:221px;
  3964. width:65px;
  3965. height:22px;
  3966. display:flex;
  3967. transition:none;
  3968. transform-origin:50% 50%;
  3969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3970. font-weight:400;
  3971. font-style:normal;
  3972. font-size:16px;
  3973. }
  3974. #u5275 .text {
  3975. position:absolute;
  3976. align-self:flex-start;
  3977. padding:0px 0px 0px 0px;
  3978. box-sizing:border-box;
  3979. width:100%;
  3980. }
  3981. #u5275_text {
  3982. border-width:0px;
  3983. white-space:nowrap;
  3984. text-transform:none;
  3985. }
  3986. #u5276_div {
  3987. border-width:0px;
  3988. position:absolute;
  3989. left:0px;
  3990. top:0px;
  3991. width:65px;
  3992. height:22px;
  3993. background:inherit;
  3994. background-color:rgba(255, 255, 255, 0);
  3995. border-radius:0px;
  3996. filter:drop-shadow(none);
  3997. transition:none;
  3998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3999. font-weight:400;
  4000. font-style:normal;
  4001. font-size:16px;
  4002. }
  4003. #u5276 {
  4004. border-width:0px;
  4005. position:absolute;
  4006. left:27px;
  4007. top:263px;
  4008. width:65px;
  4009. height:22px;
  4010. display:flex;
  4011. transition:none;
  4012. transform-origin:50% 50%;
  4013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4014. font-weight:400;
  4015. font-style:normal;
  4016. font-size:16px;
  4017. }
  4018. #u5276 .text {
  4019. position:absolute;
  4020. align-self:flex-start;
  4021. padding:0px 0px 0px 0px;
  4022. box-sizing:border-box;
  4023. width:100%;
  4024. }
  4025. #u5276_text {
  4026. border-width:0px;
  4027. white-space:nowrap;
  4028. text-transform:none;
  4029. }
  4030. #u5277_div {
  4031. border-width:0px;
  4032. position:absolute;
  4033. left:0px;
  4034. top:0px;
  4035. width:49px;
  4036. height:22px;
  4037. background:inherit;
  4038. background-color:rgba(255, 255, 255, 0);
  4039. border-radius:0px;
  4040. filter:drop-shadow(none);
  4041. transition:none;
  4042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4043. font-weight:400;
  4044. font-style:normal;
  4045. font-size:16px;
  4046. }
  4047. #u5277 {
  4048. border-width:0px;
  4049. position:absolute;
  4050. left:27px;
  4051. top:305px;
  4052. width:49px;
  4053. height:22px;
  4054. display:flex;
  4055. transition:none;
  4056. transform-origin:50% 50%;
  4057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4058. font-weight:400;
  4059. font-style:normal;
  4060. font-size:16px;
  4061. }
  4062. #u5277 .text {
  4063. position:absolute;
  4064. align-self:flex-start;
  4065. padding:0px 0px 0px 0px;
  4066. box-sizing:border-box;
  4067. width:100%;
  4068. }
  4069. #u5277_text {
  4070. border-width:0px;
  4071. white-space:nowrap;
  4072. text-transform:none;
  4073. }
  4074. #u5278 {
  4075. border-width:0px;
  4076. position:absolute;
  4077. left:970px;
  4078. top:1189px;
  4079. width:600px;
  4080. height:30px;
  4081. }
  4082. #u5279 {
  4083. border-width:0px;
  4084. position:absolute;
  4085. left:0px;
  4086. top:0px;
  4087. width:0px;
  4088. height:0px;
  4089. }
  4090. #u5280_div {
  4091. border-width:0px;
  4092. position:absolute;
  4093. left:0px;
  4094. top:0px;
  4095. width:30px;
  4096. height:30px;
  4097. background:inherit;
  4098. background-color:rgba(255, 255, 255, 1);
  4099. box-sizing:border-box;
  4100. border-width:1px;
  4101. border-style:solid;
  4102. border-color:rgba(228, 228, 228, 1);
  4103. border-radius:4px;
  4104. filter:drop-shadow(none);
  4105. transition:none;
  4106. font-family:"Microsoft YaHei", sans-serif;
  4107. font-weight:400;
  4108. font-style:normal;
  4109. font-size:14px;
  4110. }
  4111. #u5280 {
  4112. border-width:0px;
  4113. position:absolute;
  4114. left:35px;
  4115. top:0px;
  4116. width:30px;
  4117. height:30px;
  4118. display:flex;
  4119. transition:none;
  4120. transform-origin:50% 50%;
  4121. font-family:"Microsoft YaHei", sans-serif;
  4122. font-weight:400;
  4123. font-style:normal;
  4124. font-size:14px;
  4125. }
  4126. #u5280 .text {
  4127. position:absolute;
  4128. align-self:center;
  4129. padding:2px 2px 2px 2px;
  4130. box-sizing:border-box;
  4131. width:100%;
  4132. }
  4133. #u5280_text {
  4134. border-width:0px;
  4135. word-wrap:break-word;
  4136. text-transform:none;
  4137. }
  4138. #u5281_div {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:0px;
  4142. top:0px;
  4143. width:49px;
  4144. height:30px;
  4145. background:inherit;
  4146. background-color:rgba(255, 255, 255, 0);
  4147. box-sizing:border-box;
  4148. border-width:1px;
  4149. border-style:solid;
  4150. border-color:rgba(188, 188, 188, 1);
  4151. border-radius:4px;
  4152. filter:drop-shadow(none);
  4153. transition:none;
  4154. font-family:"Microsoft YaHei", sans-serif;
  4155. font-weight:400;
  4156. font-style:normal;
  4157. font-size:14px;
  4158. color:#1E1E1E;
  4159. }
  4160. #u5281 {
  4161. border-width:0px;
  4162. position:absolute;
  4163. left:551px;
  4164. top:0px;
  4165. width:49px;
  4166. height:30px;
  4167. display:flex;
  4168. transition:none;
  4169. transform-origin:50% 50%;
  4170. font-family:"Microsoft YaHei", sans-serif;
  4171. font-weight:400;
  4172. font-style:normal;
  4173. font-size:14px;
  4174. color:#1E1E1E;
  4175. }
  4176. #u5281 .text {
  4177. position:absolute;
  4178. align-self:center;
  4179. padding:5px 10px 5px 10px;
  4180. box-sizing:border-box;
  4181. width:100%;
  4182. }
  4183. #u5281_text {
  4184. border-width:0px;
  4185. white-space:nowrap;
  4186. text-transform:none;
  4187. }
  4188. #u5282 {
  4189. border-width:0px;
  4190. position:absolute;
  4191. left:0px;
  4192. top:0px;
  4193. width:0px;
  4194. height:0px;
  4195. }
  4196. #u5283_div {
  4197. border-width:0px;
  4198. position:absolute;
  4199. left:0px;
  4200. top:0px;
  4201. width:33px;
  4202. height:24px;
  4203. background:inherit;
  4204. background-color:rgba(255, 255, 255, 1);
  4205. border-radius:0px;
  4206. filter:drop-shadow(none);
  4207. transition:none;
  4208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4209. font-weight:400;
  4210. font-style:normal;
  4211. font-size:14px;
  4212. color:#BCBCBC;
  4213. text-align:left;
  4214. }
  4215. #u5283 {
  4216. border-width:0px;
  4217. position:absolute;
  4218. left:319px;
  4219. top:3px;
  4220. width:33px;
  4221. height:24px;
  4222. display:flex;
  4223. transition:none;
  4224. transform-origin:50% 50%;
  4225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4226. font-weight:400;
  4227. font-style:normal;
  4228. font-size:14px;
  4229. color:#BCBCBC;
  4230. text-align:left;
  4231. }
  4232. #u5283 .text {
  4233. position:absolute;
  4234. align-self:center;
  4235. padding:2px 2px 2px 2px;
  4236. box-sizing:border-box;
  4237. width:100%;
  4238. }
  4239. #u5283_text {
  4240. border-width:0px;
  4241. white-space:nowrap;
  4242. text-transform:none;
  4243. }
  4244. #u5284_div {
  4245. border-width:0px;
  4246. position:absolute;
  4247. left:0px;
  4248. top:0px;
  4249. width:40px;
  4250. height:30px;
  4251. background:inherit;
  4252. background-color:rgba(255, 255, 255, 1);
  4253. box-sizing:border-box;
  4254. border-width:1px;
  4255. border-style:solid;
  4256. border-color:rgba(228, 228, 228, 1);
  4257. border-radius:4px;
  4258. filter:drop-shadow(none);
  4259. transition:none;
  4260. font-family:"Microsoft YaHei", sans-serif;
  4261. font-weight:400;
  4262. font-style:normal;
  4263. font-size:14px;
  4264. }
  4265. #u5284 {
  4266. border-width:0px;
  4267. position:absolute;
  4268. left:354px;
  4269. top:0px;
  4270. width:40px;
  4271. height:30px;
  4272. display:flex;
  4273. transition:none;
  4274. transform-origin:50% 50%;
  4275. font-family:"Microsoft YaHei", sans-serif;
  4276. font-weight:400;
  4277. font-style:normal;
  4278. font-size:14px;
  4279. }
  4280. #u5284 .text {
  4281. position:absolute;
  4282. align-self:center;
  4283. padding:2px 2px 2px 2px;
  4284. box-sizing:border-box;
  4285. width:100%;
  4286. }
  4287. #u5284_text {
  4288. border-width:0px;
  4289. word-wrap:break-word;
  4290. text-transform:none;
  4291. visibility:hidden;
  4292. }
  4293. #u5285_div {
  4294. border-width:0px;
  4295. position:absolute;
  4296. left:0px;
  4297. top:0px;
  4298. width:19px;
  4299. height:24px;
  4300. background:inherit;
  4301. background-color:rgba(255, 255, 255, 1);
  4302. border-radius:0px;
  4303. filter:drop-shadow(none);
  4304. transition:none;
  4305. font-family:"Microsoft YaHei", sans-serif;
  4306. font-weight:400;
  4307. font-style:normal;
  4308. font-size:14px;
  4309. color:#BCBCBC;
  4310. text-align:left;
  4311. }
  4312. #u5285 {
  4313. border-width:0px;
  4314. position:absolute;
  4315. left:396px;
  4316. top:4px;
  4317. width:19px;
  4318. height:24px;
  4319. display:flex;
  4320. transition:none;
  4321. transform-origin:50% 50%;
  4322. font-family:"Microsoft YaHei", sans-serif;
  4323. font-weight:400;
  4324. font-style:normal;
  4325. font-size:14px;
  4326. color:#BCBCBC;
  4327. text-align:left;
  4328. }
  4329. #u5285 .text {
  4330. position:absolute;
  4331. align-self:center;
  4332. padding:2px 2px 2px 2px;
  4333. box-sizing:border-box;
  4334. width:100%;
  4335. }
  4336. #u5285_text {
  4337. border-width:0px;
  4338. white-space:nowrap;
  4339. text-transform:none;
  4340. }
  4341. #u5286_input {
  4342. position:absolute;
  4343. left:0px;
  4344. top:0px;
  4345. width:34px;
  4346. height:25px;
  4347. padding:2px 2px 2px 2px;
  4348. font-family:"Microsoft YaHei", sans-serif;
  4349. font-weight:400;
  4350. font-style:normal;
  4351. font-size:13px;
  4352. letter-spacing:normal;
  4353. color:#000000;
  4354. vertical-align:none;
  4355. text-align:left;
  4356. text-transform:none;
  4357. background-color:transparent;
  4358. border-color:transparent;
  4359. }
  4360. #u5286_input.hint {
  4361. position:absolute;
  4362. left:0px;
  4363. top:0px;
  4364. width:34px;
  4365. height:25px;
  4366. padding:2px 2px 2px 2px;
  4367. font-family:"Microsoft YaHei", sans-serif;
  4368. font-weight:400;
  4369. font-style:normal;
  4370. font-size:13px;
  4371. letter-spacing:normal;
  4372. color:#999999;
  4373. vertical-align:none;
  4374. text-align:left;
  4375. text-transform:none;
  4376. background-color:transparent;
  4377. border-color:transparent;
  4378. }
  4379. #u5286_input.disabled {
  4380. position:absolute;
  4381. left:0px;
  4382. top:0px;
  4383. width:34px;
  4384. height:25px;
  4385. padding:2px 2px 2px 2px;
  4386. font-family:"Microsoft YaHei", sans-serif;
  4387. font-weight:400;
  4388. font-style:normal;
  4389. font-size:13px;
  4390. letter-spacing:normal;
  4391. color:#000000;
  4392. vertical-align:none;
  4393. text-align:left;
  4394. text-transform:none;
  4395. background-color:transparent;
  4396. border-color:transparent;
  4397. }
  4398. #u5286_input.hint.disabled {
  4399. position:absolute;
  4400. left:0px;
  4401. top:0px;
  4402. width:34px;
  4403. height:25px;
  4404. padding:2px 2px 2px 2px;
  4405. font-family:"Microsoft YaHei", sans-serif;
  4406. font-weight:400;
  4407. font-style:normal;
  4408. font-size:13px;
  4409. letter-spacing:normal;
  4410. color:#999999;
  4411. vertical-align:none;
  4412. text-align:left;
  4413. text-transform:none;
  4414. background-color:transparent;
  4415. border-color:transparent;
  4416. }
  4417. #u5286_div {
  4418. border-width:0px;
  4419. position:absolute;
  4420. left:0px;
  4421. top:0px;
  4422. width:34px;
  4423. height:25px;
  4424. background:inherit;
  4425. background-color:rgba(255, 255, 255, 1);
  4426. border-radius:0px;
  4427. filter:drop-shadow(none);
  4428. transition:none;
  4429. font-family:"Microsoft YaHei", sans-serif;
  4430. font-weight:400;
  4431. font-style:normal;
  4432. }
  4433. #u5286 {
  4434. border-width:0px;
  4435. position:absolute;
  4436. left:357px;
  4437. top:2px;
  4438. width:34px;
  4439. height:25px;
  4440. display:flex;
  4441. transition:none;
  4442. transform-origin:50% 50%;
  4443. font-family:"Microsoft YaHei", sans-serif;
  4444. font-weight:400;
  4445. font-style:normal;
  4446. }
  4447. #u5286 .text {
  4448. position:absolute;
  4449. align-self:center;
  4450. padding:2px 2px 2px 2px;
  4451. box-sizing:border-box;
  4452. width:100%;
  4453. }
  4454. #u5286_div.hint {
  4455. border-width:0px;
  4456. position:absolute;
  4457. left:0px;
  4458. top:0px;
  4459. width:34px;
  4460. height:25px;
  4461. background:inherit;
  4462. background-color:rgba(255, 255, 255, 1);
  4463. border-radius:0px;
  4464. filter:drop-shadow(none);
  4465. transition:none;
  4466. font-family:"Microsoft YaHei", sans-serif;
  4467. font-weight:400;
  4468. font-style:normal;
  4469. }
  4470. #u5286.hint {
  4471. }
  4472. #u5286_div.disabled {
  4473. border-width:0px;
  4474. position:absolute;
  4475. left:0px;
  4476. top:0px;
  4477. width:34px;
  4478. height:25px;
  4479. background:inherit;
  4480. background-color:rgba(240, 240, 240, 1);
  4481. border-radius:0px;
  4482. filter:drop-shadow(none);
  4483. transition:none;
  4484. font-family:"Microsoft YaHei", sans-serif;
  4485. font-weight:400;
  4486. font-style:normal;
  4487. }
  4488. #u5286.disabled {
  4489. }
  4490. #u5286_div.hint.disabled {
  4491. border-width:0px;
  4492. position:absolute;
  4493. left:0px;
  4494. top:0px;
  4495. width:34px;
  4496. height:25px;
  4497. background:inherit;
  4498. background-color:rgba(240, 240, 240, 1);
  4499. border-radius:0px;
  4500. filter:drop-shadow(none);
  4501. transition:none;
  4502. font-family:"Microsoft YaHei", sans-serif;
  4503. font-weight:400;
  4504. font-style:normal;
  4505. }
  4506. #u5286.hint.disabled {
  4507. }
  4508. #u5287_div {
  4509. border-width:0px;
  4510. position:absolute;
  4511. left:0px;
  4512. top:0px;
  4513. width:30px;
  4514. height:30px;
  4515. background:inherit;
  4516. background-color:rgba(41, 143, 255, 1);
  4517. border-radius:4px;
  4518. filter:drop-shadow(none);
  4519. transition:none;
  4520. font-family:"Microsoft YaHei", sans-serif;
  4521. font-weight:400;
  4522. font-style:normal;
  4523. font-size:14px;
  4524. color:#FFFFFF;
  4525. }
  4526. #u5287 {
  4527. border-width:0px;
  4528. position:absolute;
  4529. left:69px;
  4530. top:0px;
  4531. width:30px;
  4532. height:30px;
  4533. display:flex;
  4534. transition:none;
  4535. transform-origin:50% 50%;
  4536. font-family:"Microsoft YaHei", sans-serif;
  4537. font-weight:400;
  4538. font-style:normal;
  4539. font-size:14px;
  4540. color:#FFFFFF;
  4541. }
  4542. #u5287 .text {
  4543. position:absolute;
  4544. align-self:center;
  4545. padding:2px 2px 2px 2px;
  4546. box-sizing:border-box;
  4547. width:100%;
  4548. }
  4549. #u5287_text {
  4550. border-width:0px;
  4551. word-wrap:break-word;
  4552. text-transform:none;
  4553. }
  4554. #u5288_div {
  4555. border-width:0px;
  4556. position:absolute;
  4557. left:0px;
  4558. top:0px;
  4559. width:30px;
  4560. height:30px;
  4561. background:inherit;
  4562. background-color:rgba(255, 255, 255, 1);
  4563. box-sizing:border-box;
  4564. border-width:1px;
  4565. border-style:solid;
  4566. border-color:rgba(228, 228, 228, 1);
  4567. border-radius:4px;
  4568. filter:drop-shadow(none);
  4569. transition:none;
  4570. font-family:"Microsoft YaHei", sans-serif;
  4571. font-weight:400;
  4572. font-style:normal;
  4573. font-size:14px;
  4574. }
  4575. #u5288 {
  4576. border-width:0px;
  4577. position:absolute;
  4578. left:103px;
  4579. top:0px;
  4580. width:30px;
  4581. height:30px;
  4582. display:flex;
  4583. transition:none;
  4584. transform-origin:50% 50%;
  4585. font-family:"Microsoft YaHei", sans-serif;
  4586. font-weight:400;
  4587. font-style:normal;
  4588. font-size:14px;
  4589. }
  4590. #u5288 .text {
  4591. position:absolute;
  4592. align-self:center;
  4593. padding:2px 2px 2px 2px;
  4594. box-sizing:border-box;
  4595. width:100%;
  4596. }
  4597. #u5288_text {
  4598. border-width:0px;
  4599. word-wrap:break-word;
  4600. text-transform:none;
  4601. }
  4602. #u5289_div {
  4603. border-width:0px;
  4604. position:absolute;
  4605. left:0px;
  4606. top:0px;
  4607. width:30px;
  4608. height:30px;
  4609. background:inherit;
  4610. background-color:rgba(255, 255, 255, 1);
  4611. box-sizing:border-box;
  4612. border-width:1px;
  4613. border-style:solid;
  4614. border-color:rgba(228, 228, 228, 1);
  4615. border-radius:4px;
  4616. filter:drop-shadow(none);
  4617. transition:none;
  4618. font-family:"Microsoft YaHei", sans-serif;
  4619. font-weight:400;
  4620. font-style:normal;
  4621. font-size:14px;
  4622. }
  4623. #u5289 {
  4624. border-width:0px;
  4625. position:absolute;
  4626. left:137px;
  4627. top:0px;
  4628. width:30px;
  4629. height:30px;
  4630. display:flex;
  4631. transition:none;
  4632. transform-origin:50% 50%;
  4633. font-family:"Microsoft YaHei", sans-serif;
  4634. font-weight:400;
  4635. font-style:normal;
  4636. font-size:14px;
  4637. }
  4638. #u5289 .text {
  4639. position:absolute;
  4640. align-self:center;
  4641. padding:2px 2px 2px 2px;
  4642. box-sizing:border-box;
  4643. width:100%;
  4644. }
  4645. #u5289_text {
  4646. border-width:0px;
  4647. word-wrap:break-word;
  4648. text-transform:none;
  4649. }
  4650. #u5290_div {
  4651. border-width:0px;
  4652. position:absolute;
  4653. left:0px;
  4654. top:0px;
  4655. width:30px;
  4656. height:30px;
  4657. background:inherit;
  4658. background-color:rgba(255, 255, 255, 1);
  4659. border-radius:4px;
  4660. filter:drop-shadow(none);
  4661. transition:none;
  4662. font-family:"Microsoft YaHei", sans-serif;
  4663. font-weight:400;
  4664. font-style:normal;
  4665. font-size:14px;
  4666. }
  4667. #u5290 {
  4668. border-width:0px;
  4669. position:absolute;
  4670. left:167px;
  4671. top:0px;
  4672. width:30px;
  4673. height:30px;
  4674. display:flex;
  4675. transition:none;
  4676. transform-origin:50% 50%;
  4677. font-family:"Microsoft YaHei", sans-serif;
  4678. font-weight:400;
  4679. font-style:normal;
  4680. font-size:14px;
  4681. }
  4682. #u5290 .text {
  4683. position:absolute;
  4684. align-self:center;
  4685. padding:2px 2px 2px 2px;
  4686. box-sizing:border-box;
  4687. width:100%;
  4688. }
  4689. #u5290_text {
  4690. border-width:0px;
  4691. word-wrap:break-word;
  4692. text-transform:none;
  4693. }
  4694. #u5291_div {
  4695. border-width:0px;
  4696. position:absolute;
  4697. left:0px;
  4698. top:0px;
  4699. width:30px;
  4700. height:30px;
  4701. background:inherit;
  4702. background-color:rgba(255, 255, 255, 1);
  4703. box-sizing:border-box;
  4704. border-width:1px;
  4705. border-style:solid;
  4706. border-color:rgba(228, 228, 228, 1);
  4707. border-radius:4px;
  4708. filter:drop-shadow(none);
  4709. transition:none;
  4710. font-family:"Microsoft YaHei", sans-serif;
  4711. font-weight:400;
  4712. font-style:normal;
  4713. font-size:14px;
  4714. }
  4715. #u5291 {
  4716. border-width:0px;
  4717. position:absolute;
  4718. left:201px;
  4719. top:0px;
  4720. width:30px;
  4721. height:30px;
  4722. display:flex;
  4723. transition:none;
  4724. transform-origin:50% 50%;
  4725. font-family:"Microsoft YaHei", sans-serif;
  4726. font-weight:400;
  4727. font-style:normal;
  4728. font-size:14px;
  4729. }
  4730. #u5291 .text {
  4731. position:absolute;
  4732. align-self:center;
  4733. padding:2px 2px 2px 2px;
  4734. box-sizing:border-box;
  4735. width:100%;
  4736. }
  4737. #u5291_text {
  4738. border-width:0px;
  4739. word-wrap:break-word;
  4740. text-transform:none;
  4741. }
  4742. #u5292_div {
  4743. border-width:0px;
  4744. position:absolute;
  4745. left:0px;
  4746. top:0px;
  4747. width:32px;
  4748. height:21px;
  4749. background:inherit;
  4750. background-color:rgba(255, 255, 255, 1);
  4751. border-radius:15px;
  4752. filter:drop-shadow(none);
  4753. transition:none;
  4754. font-family:"Microsoft YaHei", sans-serif;
  4755. font-weight:400;
  4756. font-style:normal;
  4757. font-size:14px;
  4758. color:#1E1E1E;
  4759. }
  4760. #u5292 {
  4761. border-width:0px;
  4762. position:absolute;
  4763. left:275px;
  4764. top:5px;
  4765. width:32px;
  4766. height:21px;
  4767. display:flex;
  4768. transition:none;
  4769. transform-origin:50% 50%;
  4770. font-family:"Microsoft YaHei", sans-serif;
  4771. font-weight:400;
  4772. font-style:normal;
  4773. font-size:14px;
  4774. color:#1E1E1E;
  4775. }
  4776. #u5292 .text {
  4777. position:absolute;
  4778. align-self:center;
  4779. padding:2px 2px 2px 2px;
  4780. box-sizing:border-box;
  4781. width:100%;
  4782. }
  4783. #u5292_text {
  4784. border-width:0px;
  4785. white-space:nowrap;
  4786. text-transform:none;
  4787. }
  4788. #u5293 {
  4789. border-width:0px;
  4790. position:absolute;
  4791. left:0px;
  4792. top:0px;
  4793. width:0px;
  4794. height:0px;
  4795. }
  4796. #u5294_div {
  4797. border-width:0px;
  4798. position:absolute;
  4799. left:0px;
  4800. top:0px;
  4801. width:31px;
  4802. height:30px;
  4803. background:inherit;
  4804. background-color:rgba(255, 255, 255, 1);
  4805. box-sizing:border-box;
  4806. border-width:1px;
  4807. border-style:solid;
  4808. border-color:rgba(228, 228, 228, 1);
  4809. border-radius:4px;
  4810. filter:drop-shadow(none);
  4811. transition:none;
  4812. font-family:"Microsoft YaHei", sans-serif;
  4813. font-weight:400;
  4814. font-style:normal;
  4815. font-size:12px;
  4816. }
  4817. #u5294 {
  4818. border-width:0px;
  4819. position:absolute;
  4820. left:0px;
  4821. top:0px;
  4822. width:31px;
  4823. height:30px;
  4824. display:flex;
  4825. transition:none;
  4826. transform-origin:50% 50%;
  4827. font-family:"Microsoft YaHei", sans-serif;
  4828. font-weight:400;
  4829. font-style:normal;
  4830. font-size:12px;
  4831. }
  4832. #u5294 .text {
  4833. position:absolute;
  4834. align-self:center;
  4835. padding:2px 2px 2px 2px;
  4836. box-sizing:border-box;
  4837. width:100%;
  4838. }
  4839. #u5294_text {
  4840. border-width:0px;
  4841. word-wrap:break-word;
  4842. text-transform:none;
  4843. visibility:hidden;
  4844. }
  4845. #u5295 {
  4846. border-width:0px;
  4847. position:absolute;
  4848. left:12px;
  4849. top:8px;
  4850. width:8px;
  4851. height:14px;
  4852. display:flex;
  4853. transition:none;
  4854. font-family:"Microsoft YaHei", sans-serif;
  4855. font-weight:400;
  4856. font-style:normal;
  4857. font-size:12px;
  4858. }
  4859. #u5295 .text {
  4860. position:absolute;
  4861. align-self:center;
  4862. padding:2px 2px 2px 2px;
  4863. box-sizing:border-box;
  4864. width:100%;
  4865. }
  4866. #u5295_img {
  4867. border-width:0px;
  4868. position:absolute;
  4869. left:0px;
  4870. top:0px;
  4871. width:8px;
  4872. height:14px;
  4873. }
  4874. #u5295_text {
  4875. border-width:0px;
  4876. word-wrap:break-word;
  4877. text-transform:none;
  4878. visibility:hidden;
  4879. }
  4880. #u5296 {
  4881. border-width:0px;
  4882. position:absolute;
  4883. left:0px;
  4884. top:0px;
  4885. width:0px;
  4886. height:0px;
  4887. }
  4888. #u5297_div {
  4889. border-width:0px;
  4890. position:absolute;
  4891. left:0px;
  4892. top:0px;
  4893. width:31px;
  4894. height:30px;
  4895. background:inherit;
  4896. background-color:rgba(255, 255, 255, 1);
  4897. box-sizing:border-box;
  4898. border-width:1px;
  4899. border-style:solid;
  4900. border-color:rgba(228, 228, 228, 1);
  4901. border-radius:4px;
  4902. filter:drop-shadow(none);
  4903. transition:none;
  4904. font-family:"Microsoft YaHei", sans-serif;
  4905. font-weight:400;
  4906. font-style:normal;
  4907. font-size:12px;
  4908. }
  4909. #u5297 {
  4910. border-width:0px;
  4911. position:absolute;
  4912. left:234px;
  4913. top:0px;
  4914. width:31px;
  4915. height:30px;
  4916. display:flex;
  4917. transition:none;
  4918. transform-origin:50% 50%;
  4919. font-family:"Microsoft YaHei", sans-serif;
  4920. font-weight:400;
  4921. font-style:normal;
  4922. font-size:12px;
  4923. }
  4924. #u5297 .text {
  4925. position:absolute;
  4926. align-self:center;
  4927. padding:2px 2px 2px 2px;
  4928. box-sizing:border-box;
  4929. width:100%;
  4930. }
  4931. #u5297_text {
  4932. border-width:0px;
  4933. word-wrap:break-word;
  4934. text-transform:none;
  4935. visibility:hidden;
  4936. }
  4937. #u5298 {
  4938. border-width:0px;
  4939. position:absolute;
  4940. left:247px;
  4941. top:8px;
  4942. width:8px;
  4943. height:14px;
  4944. display:flex;
  4945. transition:none;
  4946. font-family:"Microsoft YaHei", sans-serif;
  4947. font-weight:400;
  4948. font-style:normal;
  4949. font-size:12px;
  4950. }
  4951. #u5298 .text {
  4952. position:absolute;
  4953. align-self:center;
  4954. padding:2px 2px 2px 2px;
  4955. box-sizing:border-box;
  4956. width:100%;
  4957. }
  4958. #u5298_img {
  4959. border-width:0px;
  4960. position:absolute;
  4961. left:0px;
  4962. top:0px;
  4963. width:8px;
  4964. height:14px;
  4965. }
  4966. #u5298_text {
  4967. border-width:0px;
  4968. word-wrap:break-word;
  4969. text-transform:none;
  4970. visibility:hidden;
  4971. }
  4972. #u5299 {
  4973. border-width:0px;
  4974. position:absolute;
  4975. left:0px;
  4976. top:0px;
  4977. width:0px;
  4978. height:0px;
  4979. }
  4980. #u5300_div {
  4981. border-width:0px;
  4982. position:absolute;
  4983. left:0px;
  4984. top:0px;
  4985. width:33px;
  4986. height:24px;
  4987. background:inherit;
  4988. background-color:rgba(255, 255, 255, 1);
  4989. border-radius:0px;
  4990. filter:drop-shadow(none);
  4991. transition:none;
  4992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4993. font-weight:400;
  4994. font-style:normal;
  4995. font-size:14px;
  4996. color:#BCBCBC;
  4997. text-align:left;
  4998. }
  4999. #u5300 {
  5000. border-width:0px;
  5001. position:absolute;
  5002. left:435px;
  5003. top:3px;
  5004. width:33px;
  5005. height:24px;
  5006. display:flex;
  5007. transition:none;
  5008. transform-origin:50% 50%;
  5009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5010. font-weight:400;
  5011. font-style:normal;
  5012. font-size:14px;
  5013. color:#BCBCBC;
  5014. text-align:left;
  5015. }
  5016. #u5300 .text {
  5017. position:absolute;
  5018. align-self:center;
  5019. padding:2px 2px 2px 2px;
  5020. box-sizing:border-box;
  5021. width:100%;
  5022. }
  5023. #u5300_text {
  5024. border-width:0px;
  5025. white-space:nowrap;
  5026. text-transform:none;
  5027. }
  5028. #u5301_div {
  5029. border-width:0px;
  5030. position:absolute;
  5031. left:0px;
  5032. top:0px;
  5033. width:40px;
  5034. height:30px;
  5035. background:inherit;
  5036. background-color:rgba(255, 255, 255, 1);
  5037. box-sizing:border-box;
  5038. border-width:1px;
  5039. border-style:solid;
  5040. border-color:rgba(228, 228, 228, 1);
  5041. border-radius:4px;
  5042. filter:drop-shadow(none);
  5043. transition:none;
  5044. font-family:"Microsoft YaHei", sans-serif;
  5045. font-weight:400;
  5046. font-style:normal;
  5047. font-size:14px;
  5048. }
  5049. #u5301 {
  5050. border-width:0px;
  5051. position:absolute;
  5052. left:470px;
  5053. top:0px;
  5054. width:40px;
  5055. height:30px;
  5056. display:flex;
  5057. transition:none;
  5058. transform-origin:50% 50%;
  5059. font-family:"Microsoft YaHei", sans-serif;
  5060. font-weight:400;
  5061. font-style:normal;
  5062. font-size:14px;
  5063. }
  5064. #u5301 .text {
  5065. position:absolute;
  5066. align-self:center;
  5067. padding:2px 2px 2px 2px;
  5068. box-sizing:border-box;
  5069. width:100%;
  5070. }
  5071. #u5301_text {
  5072. border-width:0px;
  5073. word-wrap:break-word;
  5074. text-transform:none;
  5075. visibility:hidden;
  5076. }
  5077. #u5302_div {
  5078. border-width:0px;
  5079. position:absolute;
  5080. left:0px;
  5081. top:0px;
  5082. width:19px;
  5083. height:24px;
  5084. background:inherit;
  5085. background-color:rgba(255, 255, 255, 1);
  5086. border-radius:0px;
  5087. filter:drop-shadow(none);
  5088. transition:none;
  5089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5090. font-weight:400;
  5091. font-style:normal;
  5092. font-size:14px;
  5093. color:#BCBCBC;
  5094. text-align:left;
  5095. }
  5096. #u5302 {
  5097. border-width:0px;
  5098. position:absolute;
  5099. left:512px;
  5100. top:4px;
  5101. width:19px;
  5102. height:24px;
  5103. display:flex;
  5104. transition:none;
  5105. transform-origin:50% 50%;
  5106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5107. font-weight:400;
  5108. font-style:normal;
  5109. font-size:14px;
  5110. color:#BCBCBC;
  5111. text-align:left;
  5112. }
  5113. #u5302 .text {
  5114. position:absolute;
  5115. align-self:center;
  5116. padding:2px 2px 2px 2px;
  5117. box-sizing:border-box;
  5118. width:100%;
  5119. }
  5120. #u5302_text {
  5121. border-width:0px;
  5122. white-space:nowrap;
  5123. text-transform:none;
  5124. }
  5125. #u5303_input {
  5126. position:absolute;
  5127. left:0px;
  5128. top:0px;
  5129. width:34px;
  5130. height:25px;
  5131. padding:2px 2px 2px 2px;
  5132. font-family:"Microsoft YaHei", sans-serif;
  5133. font-weight:400;
  5134. font-style:normal;
  5135. font-size:13px;
  5136. letter-spacing:normal;
  5137. color:#000000;
  5138. vertical-align:none;
  5139. text-align:left;
  5140. text-transform:none;
  5141. background-color:transparent;
  5142. border-color:transparent;
  5143. }
  5144. #u5303_input.hint {
  5145. position:absolute;
  5146. left:0px;
  5147. top:0px;
  5148. width:34px;
  5149. height:25px;
  5150. padding:2px 2px 2px 2px;
  5151. font-family:"Microsoft YaHei", sans-serif;
  5152. font-weight:400;
  5153. font-style:normal;
  5154. font-size:13px;
  5155. letter-spacing:normal;
  5156. color:#999999;
  5157. vertical-align:none;
  5158. text-align:left;
  5159. text-transform:none;
  5160. background-color:transparent;
  5161. border-color:transparent;
  5162. }
  5163. #u5303_input.disabled {
  5164. position:absolute;
  5165. left:0px;
  5166. top:0px;
  5167. width:34px;
  5168. height:25px;
  5169. padding:2px 2px 2px 2px;
  5170. font-family:"Microsoft YaHei", sans-serif;
  5171. font-weight:400;
  5172. font-style:normal;
  5173. font-size:13px;
  5174. letter-spacing:normal;
  5175. color:#000000;
  5176. vertical-align:none;
  5177. text-align:left;
  5178. text-transform:none;
  5179. background-color:transparent;
  5180. border-color:transparent;
  5181. }
  5182. #u5303_input.hint.disabled {
  5183. position:absolute;
  5184. left:0px;
  5185. top:0px;
  5186. width:34px;
  5187. height:25px;
  5188. padding:2px 2px 2px 2px;
  5189. font-family:"Microsoft YaHei", sans-serif;
  5190. font-weight:400;
  5191. font-style:normal;
  5192. font-size:13px;
  5193. letter-spacing:normal;
  5194. color:#999999;
  5195. vertical-align:none;
  5196. text-align:left;
  5197. text-transform:none;
  5198. background-color:transparent;
  5199. border-color:transparent;
  5200. }
  5201. #u5303_div {
  5202. border-width:0px;
  5203. position:absolute;
  5204. left:0px;
  5205. top:0px;
  5206. width:34px;
  5207. height:25px;
  5208. background:inherit;
  5209. background-color:rgba(255, 255, 255, 1);
  5210. border-radius:0px;
  5211. filter:drop-shadow(none);
  5212. transition:none;
  5213. font-family:"Microsoft YaHei", sans-serif;
  5214. font-weight:400;
  5215. font-style:normal;
  5216. }
  5217. #u5303 {
  5218. border-width:0px;
  5219. position:absolute;
  5220. left:473px;
  5221. top:2px;
  5222. width:34px;
  5223. height:25px;
  5224. display:flex;
  5225. transition:none;
  5226. transform-origin:50% 50%;
  5227. font-family:"Microsoft YaHei", sans-serif;
  5228. font-weight:400;
  5229. font-style:normal;
  5230. }
  5231. #u5303 .text {
  5232. position:absolute;
  5233. align-self:center;
  5234. padding:2px 2px 2px 2px;
  5235. box-sizing:border-box;
  5236. width:100%;
  5237. }
  5238. #u5303_div.hint {
  5239. border-width:0px;
  5240. position:absolute;
  5241. left:0px;
  5242. top:0px;
  5243. width:34px;
  5244. height:25px;
  5245. background:inherit;
  5246. background-color:rgba(255, 255, 255, 1);
  5247. border-radius:0px;
  5248. filter:drop-shadow(none);
  5249. transition:none;
  5250. font-family:"Microsoft YaHei", sans-serif;
  5251. font-weight:400;
  5252. font-style:normal;
  5253. }
  5254. #u5303.hint {
  5255. }
  5256. #u5303_div.disabled {
  5257. border-width:0px;
  5258. position:absolute;
  5259. left:0px;
  5260. top:0px;
  5261. width:34px;
  5262. height:25px;
  5263. background:inherit;
  5264. background-color:rgba(240, 240, 240, 1);
  5265. border-radius:0px;
  5266. filter:drop-shadow(none);
  5267. transition:none;
  5268. font-family:"Microsoft YaHei", sans-serif;
  5269. font-weight:400;
  5270. font-style:normal;
  5271. }
  5272. #u5303.disabled {
  5273. }
  5274. #u5303_div.hint.disabled {
  5275. border-width:0px;
  5276. position:absolute;
  5277. left:0px;
  5278. top:0px;
  5279. width:34px;
  5280. height:25px;
  5281. background:inherit;
  5282. background-color:rgba(240, 240, 240, 1);
  5283. border-radius:0px;
  5284. filter:drop-shadow(none);
  5285. transition:none;
  5286. font-family:"Microsoft YaHei", sans-serif;
  5287. font-weight:400;
  5288. font-style:normal;
  5289. }
  5290. #u5303.hint.disabled {
  5291. }
  5292. #u5304 {
  5293. border-width:0px;
  5294. position:absolute;
  5295. left:0px;
  5296. top:0px;
  5297. width:0px;
  5298. height:0px;
  5299. }
  5300. #u5305 {
  5301. border-width:0px;
  5302. position:absolute;
  5303. left:0px;
  5304. top:0px;
  5305. width:0px;
  5306. height:0px;
  5307. }
  5308. #u5306_div {
  5309. border-width:0px;
  5310. position:absolute;
  5311. left:0px;
  5312. top:0px;
  5313. width:380px;
  5314. height:140px;
  5315. background:inherit;
  5316. background-color:rgba(255, 255, 255, 1);
  5317. box-sizing:border-box;
  5318. border-width:1px;
  5319. border-style:solid;
  5320. border-color:rgba(204, 204, 204, 1);
  5321. border-radius:4px;
  5322. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  5323. transition:none;
  5324. font-family:"Microsoft YaHei", sans-serif;
  5325. font-weight:400;
  5326. font-style:normal;
  5327. }
  5328. #u5306 {
  5329. border-width:0px;
  5330. position:absolute;
  5331. left:1129px;
  5332. top:796px;
  5333. width:380px;
  5334. height:140px;
  5335. display:flex;
  5336. transition:none;
  5337. transform-origin:50% 50%;
  5338. font-family:"Microsoft YaHei", sans-serif;
  5339. font-weight:400;
  5340. font-style:normal;
  5341. }
  5342. #u5306 .text {
  5343. position:absolute;
  5344. align-self:center;
  5345. padding:2px 2px 2px 2px;
  5346. box-sizing:border-box;
  5347. width:100%;
  5348. }
  5349. #u5306_text {
  5350. border-width:0px;
  5351. word-wrap:break-word;
  5352. text-transform:none;
  5353. visibility:hidden;
  5354. }
  5355. #u5307_div {
  5356. border-width:0px;
  5357. position:absolute;
  5358. left:0px;
  5359. top:0px;
  5360. width:300px;
  5361. height:22px;
  5362. background:inherit;
  5363. background-color:rgba(255, 255, 255, 0);
  5364. border-radius:0px;
  5365. filter:drop-shadow(none);
  5366. transition:none;
  5367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5368. font-weight:400;
  5369. font-style:normal;
  5370. font-size:14px;
  5371. color:#666666;
  5372. line-height:22px;
  5373. }
  5374. #u5307 {
  5375. border-width:0px;
  5376. position:absolute;
  5377. left:1179px;
  5378. top:851px;
  5379. width:300px;
  5380. height:22px;
  5381. display:flex;
  5382. transition:none;
  5383. transform-origin:50% 50%;
  5384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5385. font-weight:400;
  5386. font-style:normal;
  5387. font-size:14px;
  5388. color:#666666;
  5389. line-height:22px;
  5390. }
  5391. #u5307 .text {
  5392. position:absolute;
  5393. align-self:flex-start;
  5394. padding:0px 0px 0px 0px;
  5395. box-sizing:border-box;
  5396. width:100%;
  5397. }
  5398. #u5307_text {
  5399. border-width:0px;
  5400. word-wrap:break-word;
  5401. text-transform:none;
  5402. }
  5403. #u5308_div {
  5404. border-width:0px;
  5405. position:absolute;
  5406. left:0px;
  5407. top:0px;
  5408. width:127px;
  5409. height:21px;
  5410. background:inherit;
  5411. background-color:rgba(255, 255, 255, 0);
  5412. border-radius:0px;
  5413. filter:drop-shadow(none);
  5414. transition:none;
  5415. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5416. font-weight:500;
  5417. font-style:normal;
  5418. font-size:18px;
  5419. color:#000000;
  5420. line-height:22px;
  5421. }
  5422. #u5308 {
  5423. border-width:0px;
  5424. position:absolute;
  5425. left:1179px;
  5426. top:821px;
  5427. width:127px;
  5428. height:21px;
  5429. display:flex;
  5430. transition:none;
  5431. transform-origin:50% 50%;
  5432. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5433. font-weight:500;
  5434. font-style:normal;
  5435. font-size:18px;
  5436. color:#000000;
  5437. line-height:22px;
  5438. }
  5439. #u5308 .text {
  5440. position:absolute;
  5441. align-self:flex-start;
  5442. padding:0px 0px 0px 0px;
  5443. box-sizing:border-box;
  5444. width:100%;
  5445. }
  5446. #u5308_text {
  5447. border-width:0px;
  5448. white-space:nowrap;
  5449. text-transform:none;
  5450. }
  5451. #u5309_div {
  5452. border-width:0px;
  5453. position:absolute;
  5454. left:0px;
  5455. top:0px;
  5456. width:61px;
  5457. height:32px;
  5458. background:inherit;
  5459. background-color:rgba(24, 144, 255, 1);
  5460. border-radius:4px;
  5461. filter:drop-shadow(none);
  5462. transition:none;
  5463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5464. font-weight:400;
  5465. font-style:normal;
  5466. font-size:14px;
  5467. color:#FFFFFF;
  5468. }
  5469. #u5309 {
  5470. border-width:0px;
  5471. position:absolute;
  5472. left:1431px;
  5473. top:884px;
  5474. width:61px;
  5475. height:32px;
  5476. display:flex;
  5477. transition:none;
  5478. transform-origin:50% 50%;
  5479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5480. font-weight:400;
  5481. font-style:normal;
  5482. font-size:14px;
  5483. color:#FFFFFF;
  5484. }
  5485. #u5309 .text {
  5486. position:absolute;
  5487. align-self:center;
  5488. padding:2px 16px 2px 16px;
  5489. box-sizing:border-box;
  5490. width:100%;
  5491. }
  5492. #u5309_text {
  5493. border-width:0px;
  5494. white-space:nowrap;
  5495. text-transform:none;
  5496. }
  5497. #u5310 {
  5498. border-width:0px;
  5499. position:absolute;
  5500. left:1148px;
  5501. top:821px;
  5502. width:20px;
  5503. height:20px;
  5504. display:flex;
  5505. transition:none;
  5506. }
  5507. #u5310 .text {
  5508. position:absolute;
  5509. align-self:center;
  5510. padding:2px 2px 2px 2px;
  5511. box-sizing:border-box;
  5512. width:100%;
  5513. }
  5514. #u5310_img {
  5515. border-width:0px;
  5516. position:absolute;
  5517. left:0px;
  5518. top:0px;
  5519. width:20px;
  5520. height:20px;
  5521. }
  5522. #u5310_text {
  5523. border-width:0px;
  5524. word-wrap:break-word;
  5525. text-transform:none;
  5526. visibility:hidden;
  5527. }
  5528. #u5311_div {
  5529. border-width:0px;
  5530. position:absolute;
  5531. left:0px;
  5532. top:0px;
  5533. width:66px;
  5534. height:32px;
  5535. background:inherit;
  5536. background-color:rgba(255, 255, 255, 1);
  5537. box-sizing:border-box;
  5538. border-width:1px;
  5539. border-style:solid;
  5540. border-color:rgba(217, 217, 217, 1);
  5541. border-radius:4px;
  5542. filter:drop-shadow(none);
  5543. transition:none;
  5544. font-family:"Microsoft YaHei", sans-serif;
  5545. font-weight:400;
  5546. font-style:normal;
  5547. font-size:14px;
  5548. color:rgba(0, 0, 0, 0.6470588235294118);
  5549. line-height:21px;
  5550. }
  5551. #u5311 {
  5552. border-width:0px;
  5553. position:absolute;
  5554. left:1355px;
  5555. top:884px;
  5556. width:66px;
  5557. height:32px;
  5558. display:flex;
  5559. transition:none;
  5560. transform-origin:50% 50%;
  5561. font-family:"Microsoft YaHei", sans-serif;
  5562. font-weight:400;
  5563. font-style:normal;
  5564. font-size:14px;
  5565. color:rgba(0, 0, 0, 0.6470588235294118);
  5566. line-height:21px;
  5567. }
  5568. #u5311 .text {
  5569. position:absolute;
  5570. align-self:center;
  5571. padding:2px 16px 2px 16px;
  5572. box-sizing:border-box;
  5573. width:100%;
  5574. }
  5575. #u5311_text {
  5576. border-width:0px;
  5577. white-space:nowrap;
  5578. text-transform:none;
  5579. }
  5580. #u5312 {
  5581. border-width:0px;
  5582. position:absolute;
  5583. left:0px;
  5584. top:0px;
  5585. width:0px;
  5586. height:0px;
  5587. }
  5588. #u5313_div {
  5589. border-width:0px;
  5590. position:absolute;
  5591. left:0px;
  5592. top:0px;
  5593. width:380px;
  5594. height:140px;
  5595. background:inherit;
  5596. background-color:rgba(255, 255, 255, 1);
  5597. box-sizing:border-box;
  5598. border-width:1px;
  5599. border-style:solid;
  5600. border-color:rgba(204, 204, 204, 1);
  5601. border-radius:4px;
  5602. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  5603. transition:none;
  5604. font-family:"Microsoft YaHei", sans-serif;
  5605. font-weight:400;
  5606. font-style:normal;
  5607. }
  5608. #u5313 {
  5609. border-width:0px;
  5610. position:absolute;
  5611. left:1129px;
  5612. top:960px;
  5613. width:380px;
  5614. height:140px;
  5615. display:flex;
  5616. transition:none;
  5617. transform-origin:50% 50%;
  5618. font-family:"Microsoft YaHei", sans-serif;
  5619. font-weight:400;
  5620. font-style:normal;
  5621. }
  5622. #u5313 .text {
  5623. position:absolute;
  5624. align-self:center;
  5625. padding:2px 2px 2px 2px;
  5626. box-sizing:border-box;
  5627. width:100%;
  5628. }
  5629. #u5313_text {
  5630. border-width:0px;
  5631. word-wrap:break-word;
  5632. text-transform:none;
  5633. visibility:hidden;
  5634. }
  5635. #u5314_div {
  5636. border-width:0px;
  5637. position:absolute;
  5638. left:0px;
  5639. top:0px;
  5640. width:288px;
  5641. height:22px;
  5642. background:inherit;
  5643. background-color:rgba(255, 255, 255, 0);
  5644. border-radius:0px;
  5645. filter:drop-shadow(none);
  5646. transition:none;
  5647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5648. font-weight:400;
  5649. font-style:normal;
  5650. font-size:14px;
  5651. color:#666666;
  5652. line-height:22px;
  5653. }
  5654. #u5314 {
  5655. border-width:0px;
  5656. position:absolute;
  5657. left:1189px;
  5658. top:1015px;
  5659. width:288px;
  5660. height:22px;
  5661. display:flex;
  5662. transition:none;
  5663. transform-origin:50% 50%;
  5664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5665. font-weight:400;
  5666. font-style:normal;
  5667. font-size:14px;
  5668. color:#666666;
  5669. line-height:22px;
  5670. }
  5671. #u5314 .text {
  5672. position:absolute;
  5673. align-self:flex-start;
  5674. padding:0px 0px 0px 0px;
  5675. box-sizing:border-box;
  5676. width:100%;
  5677. }
  5678. #u5314_text {
  5679. border-width:0px;
  5680. word-wrap:break-word;
  5681. text-transform:none;
  5682. }
  5683. #u5315_div {
  5684. border-width:0px;
  5685. position:absolute;
  5686. left:0px;
  5687. top:0px;
  5688. width:91px;
  5689. height:21px;
  5690. background:inherit;
  5691. background-color:rgba(255, 255, 255, 0);
  5692. border-radius:0px;
  5693. filter:drop-shadow(none);
  5694. transition:none;
  5695. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5696. font-weight:650;
  5697. font-style:normal;
  5698. font-size:18px;
  5699. color:#000000;
  5700. line-height:22px;
  5701. }
  5702. #u5315 {
  5703. border-width:0px;
  5704. position:absolute;
  5705. left:1189px;
  5706. top:985px;
  5707. width:91px;
  5708. height:21px;
  5709. display:flex;
  5710. transition:none;
  5711. transform-origin:50% 50%;
  5712. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5713. font-weight:650;
  5714. font-style:normal;
  5715. font-size:18px;
  5716. color:#000000;
  5717. line-height:22px;
  5718. }
  5719. #u5315 .text {
  5720. position:absolute;
  5721. align-self:flex-start;
  5722. padding:0px 0px 0px 0px;
  5723. box-sizing:border-box;
  5724. width:100%;
  5725. }
  5726. #u5315_text {
  5727. border-width:0px;
  5728. white-space:nowrap;
  5729. text-transform:none;
  5730. }
  5731. #u5316_div {
  5732. border-width:0px;
  5733. position:absolute;
  5734. left:0px;
  5735. top:0px;
  5736. width:61px;
  5737. height:32px;
  5738. background:inherit;
  5739. background-color:rgba(24, 144, 255, 1);
  5740. border-radius:4px;
  5741. filter:drop-shadow(none);
  5742. transition:none;
  5743. font-family:"Microsoft YaHei", sans-serif;
  5744. font-weight:400;
  5745. font-style:normal;
  5746. font-size:14px;
  5747. color:#FFFFFF;
  5748. }
  5749. #u5316 {
  5750. border-width:0px;
  5751. position:absolute;
  5752. left:1428px;
  5753. top:1047px;
  5754. width:61px;
  5755. height:32px;
  5756. display:flex;
  5757. transition:none;
  5758. transform-origin:50% 50%;
  5759. font-family:"Microsoft YaHei", sans-serif;
  5760. font-weight:400;
  5761. font-style:normal;
  5762. font-size:14px;
  5763. color:#FFFFFF;
  5764. }
  5765. #u5316 .text {
  5766. position:absolute;
  5767. align-self:center;
  5768. padding:2px 16px 2px 16px;
  5769. box-sizing:border-box;
  5770. width:100%;
  5771. }
  5772. #u5316_text {
  5773. border-width:0px;
  5774. white-space:nowrap;
  5775. text-transform:none;
  5776. }
  5777. #u5317_div {
  5778. border-width:0px;
  5779. position:absolute;
  5780. left:0px;
  5781. top:0px;
  5782. width:66px;
  5783. height:32px;
  5784. background:inherit;
  5785. background-color:rgba(255, 255, 255, 1);
  5786. box-sizing:border-box;
  5787. border-width:1px;
  5788. border-style:solid;
  5789. border-color:rgba(217, 217, 217, 1);
  5790. border-radius:4px;
  5791. filter:drop-shadow(none);
  5792. transition:none;
  5793. font-family:"Microsoft YaHei", sans-serif;
  5794. font-weight:400;
  5795. font-style:normal;
  5796. font-size:14px;
  5797. color:rgba(0, 0, 0, 0.6470588235294118);
  5798. line-height:21px;
  5799. }
  5800. #u5317 {
  5801. border-width:0px;
  5802. position:absolute;
  5803. left:1349px;
  5804. top:1047px;
  5805. width:66px;
  5806. height:32px;
  5807. display:flex;
  5808. transition:none;
  5809. transform-origin:50% 50%;
  5810. font-family:"Microsoft YaHei", sans-serif;
  5811. font-weight:400;
  5812. font-style:normal;
  5813. font-size:14px;
  5814. color:rgba(0, 0, 0, 0.6470588235294118);
  5815. line-height:21px;
  5816. }
  5817. #u5317 .text {
  5818. position:absolute;
  5819. align-self:center;
  5820. padding:2px 16px 2px 16px;
  5821. box-sizing:border-box;
  5822. width:100%;
  5823. }
  5824. #u5317_text {
  5825. border-width:0px;
  5826. white-space:nowrap;
  5827. text-transform:none;
  5828. }
  5829. #u5318 {
  5830. border-width:0px;
  5831. position:absolute;
  5832. left:1158px;
  5833. top:987px;
  5834. width:20px;
  5835. height:20px;
  5836. display:flex;
  5837. transition:none;
  5838. }
  5839. #u5318 .text {
  5840. position:absolute;
  5841. align-self:center;
  5842. padding:2px 2px 2px 2px;
  5843. box-sizing:border-box;
  5844. width:100%;
  5845. }
  5846. #u5318_img {
  5847. border-width:0px;
  5848. position:absolute;
  5849. left:0px;
  5850. top:0px;
  5851. width:20px;
  5852. height:20px;
  5853. }
  5854. #u5318_text {
  5855. border-width:0px;
  5856. word-wrap:break-word;
  5857. text-transform:none;
  5858. visibility:hidden;
  5859. }
  5860. #u5319_div {
  5861. border-width:0px;
  5862. position:absolute;
  5863. left:0px;
  5864. top:0px;
  5865. width:73px;
  5866. height:50px;
  5867. background:inherit;
  5868. background-color:rgba(255, 255, 255, 0);
  5869. border-left:0px;
  5870. border-top:0px;
  5871. border-right:0px;
  5872. border-radius:0px;
  5873. border-bottom-right-radius:0px;
  5874. border-bottom-left-radius:0px;
  5875. filter:drop-shadow(none);
  5876. transition:none;
  5877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5878. font-weight:400;
  5879. font-style:normal;
  5880. font-size:18px;
  5881. }
  5882. #u5319 {
  5883. border-width:0px;
  5884. position:absolute;
  5885. left:352px;
  5886. top:51px;
  5887. width:73px;
  5888. height:50px;
  5889. display:flex;
  5890. transition:none;
  5891. transform-origin:50% 50%;
  5892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5893. font-weight:400;
  5894. font-style:normal;
  5895. font-size:18px;
  5896. }
  5897. #u5319 .text {
  5898. position:absolute;
  5899. align-self:center;
  5900. padding:0px 0px 0px 0px;
  5901. box-sizing:border-box;
  5902. width:100%;
  5903. }
  5904. #u5319_text {
  5905. border-width:0px;
  5906. white-space:nowrap;
  5907. text-transform:none;
  5908. }
  5909. #u5320_div {
  5910. border-width:0px;
  5911. position:absolute;
  5912. left:0px;
  5913. top:0px;
  5914. width:274px;
  5915. height:20px;
  5916. background:inherit;
  5917. background-color:rgba(255, 255, 255, 0);
  5918. border-left:0px;
  5919. border-top:0px;
  5920. border-right:0px;
  5921. border-radius:0px;
  5922. border-bottom-right-radius:0px;
  5923. border-bottom-left-radius:0px;
  5924. filter:drop-shadow(none);
  5925. transition:none;
  5926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5927. font-weight:400;
  5928. font-style:normal;
  5929. font-size:14px;
  5930. color:#7F7F7F;
  5931. }
  5932. #u5320 {
  5933. border-width:0px;
  5934. position:absolute;
  5935. left:350px;
  5936. top:102px;
  5937. width:274px;
  5938. height:20px;
  5939. display:flex;
  5940. transition:none;
  5941. transform-origin:50% 50%;
  5942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5943. font-weight:400;
  5944. font-style:normal;
  5945. font-size:14px;
  5946. color:#7F7F7F;
  5947. }
  5948. #u5320 .text {
  5949. position:absolute;
  5950. align-self:center;
  5951. padding:0px 0px 0px 0px;
  5952. box-sizing:border-box;
  5953. width:100%;
  5954. }
  5955. #u5320_text {
  5956. border-width:0px;
  5957. white-space:nowrap;
  5958. text-transform:none;
  5959. }
  5960. #u5321_div {
  5961. border-width:0px;
  5962. position:absolute;
  5963. left:0px;
  5964. top:0px;
  5965. width:60px;
  5966. height:30px;
  5967. background:inherit;
  5968. background-color:rgba(41, 143, 255, 1);
  5969. border-radius:4px;
  5970. filter:drop-shadow(none);
  5971. transition:none;
  5972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5973. font-weight:400;
  5974. font-style:normal;
  5975. font-size:14px;
  5976. color:#FFFFFF;
  5977. }
  5978. #u5321 {
  5979. border-width:0px;
  5980. position:absolute;
  5981. left:354px;
  5982. top:191px;
  5983. width:60px;
  5984. height:30px;
  5985. display:flex;
  5986. transition:none;
  5987. transform-origin:50% 50%;
  5988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5989. font-weight:400;
  5990. font-style:normal;
  5991. font-size:14px;
  5992. color:#FFFFFF;
  5993. }
  5994. #u5321 .text {
  5995. position:absolute;
  5996. align-self:center;
  5997. padding:5px 0px 5px 0px;
  5998. box-sizing:border-box;
  5999. width:100%;
  6000. }
  6001. #u5321_text {
  6002. border-width:0px;
  6003. word-wrap:break-word;
  6004. text-transform:none;
  6005. }
  6006. #u5322_div {
  6007. border-width:0px;
  6008. position:absolute;
  6009. left:0px;
  6010. top:0px;
  6011. width:59px;
  6012. height:30px;
  6013. background:inherit;
  6014. background-color:rgba(255, 255, 255, 1);
  6015. box-sizing:border-box;
  6016. border-width:1px;
  6017. border-style:solid;
  6018. border-color:rgba(170, 170, 170, 1);
  6019. border-radius:4px;
  6020. filter:drop-shadow(none);
  6021. transition:none;
  6022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6023. font-weight:400;
  6024. font-style:normal;
  6025. font-size:14px;
  6026. color:#555555;
  6027. }
  6028. #u5322 {
  6029. border-width:0px;
  6030. position:absolute;
  6031. left:424px;
  6032. top:191px;
  6033. width:59px;
  6034. height:30px;
  6035. display:flex;
  6036. transition:none;
  6037. transform-origin:50% 50%;
  6038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6039. font-weight:400;
  6040. font-style:normal;
  6041. font-size:14px;
  6042. color:#555555;
  6043. }
  6044. #u5322 .text {
  6045. position:absolute;
  6046. align-self:center;
  6047. padding:5px 15px 5px 15px;
  6048. box-sizing:border-box;
  6049. width:100%;
  6050. }
  6051. #u5322_text {
  6052. border-width:0px;
  6053. white-space:nowrap;
  6054. text-transform:none;
  6055. }
  6056. #u5323_div {
  6057. border-width:0px;
  6058. position:absolute;
  6059. left:0px;
  6060. top:0px;
  6061. width:59px;
  6062. height:30px;
  6063. background:inherit;
  6064. background-color:rgba(255, 255, 255, 1);
  6065. box-sizing:border-box;
  6066. border-width:1px;
  6067. border-style:solid;
  6068. border-color:rgba(170, 170, 170, 1);
  6069. border-radius:4px;
  6070. filter:drop-shadow(none);
  6071. transition:none;
  6072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6073. font-weight:400;
  6074. font-style:normal;
  6075. font-size:14px;
  6076. color:#555555;
  6077. }
  6078. #u5323 {
  6079. border-width:0px;
  6080. position:absolute;
  6081. left:493px;
  6082. top:191px;
  6083. width:59px;
  6084. height:30px;
  6085. display:flex;
  6086. transition:none;
  6087. transform-origin:50% 50%;
  6088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6089. font-weight:400;
  6090. font-style:normal;
  6091. font-size:14px;
  6092. color:#555555;
  6093. }
  6094. #u5323 .text {
  6095. position:absolute;
  6096. align-self:center;
  6097. padding:5px 15px 5px 15px;
  6098. box-sizing:border-box;
  6099. width:100%;
  6100. }
  6101. #u5323_text {
  6102. border-width:0px;
  6103. white-space:nowrap;
  6104. text-transform:none;
  6105. }
  6106. #u5324 {
  6107. border-width:0px;
  6108. position:absolute;
  6109. left:0px;
  6110. top:0px;
  6111. width:0px;
  6112. height:0px;
  6113. }
  6114. #u5325_div {
  6115. border-width:0px;
  6116. position:absolute;
  6117. left:0px;
  6118. top:0px;
  6119. width:140px;
  6120. height:30px;
  6121. background:inherit;
  6122. background-color:rgba(255, 255, 255, 1);
  6123. box-sizing:border-box;
  6124. border-width:1px;
  6125. border-style:solid;
  6126. border-color:rgba(215, 215, 215, 1);
  6127. border-radius:4px;
  6128. filter:drop-shadow(none);
  6129. transition:none;
  6130. font-size:11px;
  6131. }
  6132. #u5325 {
  6133. border-width:0px;
  6134. position:absolute;
  6135. left:800px;
  6136. top:142px;
  6137. width:140px;
  6138. height:30px;
  6139. display:flex;
  6140. transition:none;
  6141. transform-origin:50% 50%;
  6142. font-size:11px;
  6143. }
  6144. #u5325 .text {
  6145. position:absolute;
  6146. align-self:center;
  6147. padding:2px 2px 2px 2px;
  6148. box-sizing:border-box;
  6149. width:100%;
  6150. }
  6151. #u5325_text {
  6152. border-width:0px;
  6153. word-wrap:break-word;
  6154. text-transform:none;
  6155. visibility:hidden;
  6156. }
  6157. #u5326_input {
  6158. position:absolute;
  6159. left:0px;
  6160. top:0px;
  6161. width:120px;
  6162. height:23px;
  6163. padding:2px 2px 2px 2px;
  6164. font-family:'ArialMT', 'Arial', sans-serif;
  6165. font-weight:400;
  6166. font-style:normal;
  6167. font-size:11px;
  6168. letter-spacing:normal;
  6169. color:#AAAAAA;
  6170. vertical-align:none;
  6171. text-align:left;
  6172. text-transform:none;
  6173. background-color:transparent;
  6174. border-color:transparent;
  6175. }
  6176. #u5326_input.disabled {
  6177. position:absolute;
  6178. left:0px;
  6179. top:0px;
  6180. width:120px;
  6181. height:23px;
  6182. padding:2px 2px 2px 2px;
  6183. font-family:'ArialMT', 'Arial', sans-serif;
  6184. font-weight:400;
  6185. font-style:normal;
  6186. font-size:11px;
  6187. letter-spacing:normal;
  6188. color:#AAAAAA;
  6189. vertical-align:none;
  6190. text-align:left;
  6191. text-transform:none;
  6192. background-color:transparent;
  6193. border-color:transparent;
  6194. }
  6195. #u5326_div {
  6196. border-width:0px;
  6197. position:absolute;
  6198. left:0px;
  6199. top:0px;
  6200. width:120px;
  6201. height:23px;
  6202. background:inherit;
  6203. background-color:rgba(255, 255, 255, 1);
  6204. border-radius:0px;
  6205. filter:drop-shadow(none);
  6206. transition:none;
  6207. font-size:11px;
  6208. color:#AAAAAA;
  6209. }
  6210. #u5326 {
  6211. border-width:0px;
  6212. position:absolute;
  6213. left:807px;
  6214. top:144px;
  6215. width:120px;
  6216. height:23px;
  6217. display:flex;
  6218. transition:none;
  6219. transform-origin:50% 50%;
  6220. font-size:11px;
  6221. color:#AAAAAA;
  6222. }
  6223. #u5326 .text {
  6224. position:absolute;
  6225. align-self:flex-start;
  6226. padding:2px 2px 2px 2px;
  6227. box-sizing:border-box;
  6228. width:100%;
  6229. }
  6230. #u5326_div.disabled {
  6231. border-width:0px;
  6232. position:absolute;
  6233. left:0px;
  6234. top:0px;
  6235. width:120px;
  6236. height:23px;
  6237. background:inherit;
  6238. background-color:rgba(240, 240, 240, 1);
  6239. border-radius:0px;
  6240. filter:drop-shadow(none);
  6241. transition:none;
  6242. font-size:11px;
  6243. color:#AAAAAA;
  6244. }
  6245. #u5326.disabled {
  6246. }
  6247. .u5326_input_option {
  6248. font-size:11px;
  6249. }
  6250. #u5327 {
  6251. border-width:0px;
  6252. position:absolute;
  6253. left:0px;
  6254. top:0px;
  6255. width:0px;
  6256. height:0px;
  6257. }
  6258. #u5328_div {
  6259. border-width:0px;
  6260. position:absolute;
  6261. left:0px;
  6262. top:0px;
  6263. width:140px;
  6264. height:30px;
  6265. background:inherit;
  6266. background-color:rgba(255, 255, 255, 1);
  6267. box-sizing:border-box;
  6268. border-width:1px;
  6269. border-style:solid;
  6270. border-color:rgba(215, 215, 215, 1);
  6271. border-radius:4px;
  6272. filter:drop-shadow(none);
  6273. transition:none;
  6274. font-size:11px;
  6275. }
  6276. #u5328 {
  6277. border-width:0px;
  6278. position:absolute;
  6279. left:950px;
  6280. top:142px;
  6281. width:140px;
  6282. height:30px;
  6283. display:flex;
  6284. transition:none;
  6285. transform-origin:50% 50%;
  6286. font-size:11px;
  6287. }
  6288. #u5328 .text {
  6289. position:absolute;
  6290. align-self:center;
  6291. padding:2px 2px 2px 2px;
  6292. box-sizing:border-box;
  6293. width:100%;
  6294. }
  6295. #u5328_text {
  6296. border-width:0px;
  6297. word-wrap:break-word;
  6298. text-transform:none;
  6299. visibility:hidden;
  6300. }
  6301. #u5329_input {
  6302. position:absolute;
  6303. left:0px;
  6304. top:0px;
  6305. width:120px;
  6306. height:23px;
  6307. padding:2px 2px 2px 2px;
  6308. font-family:'ArialMT', 'Arial', sans-serif;
  6309. font-weight:400;
  6310. font-style:normal;
  6311. font-size:11px;
  6312. letter-spacing:normal;
  6313. color:#AAAAAA;
  6314. vertical-align:none;
  6315. text-align:left;
  6316. text-transform:none;
  6317. background-color:transparent;
  6318. border-color:transparent;
  6319. }
  6320. #u5329_input.disabled {
  6321. position:absolute;
  6322. left:0px;
  6323. top:0px;
  6324. width:120px;
  6325. height:23px;
  6326. padding:2px 2px 2px 2px;
  6327. font-family:'ArialMT', 'Arial', sans-serif;
  6328. font-weight:400;
  6329. font-style:normal;
  6330. font-size:11px;
  6331. letter-spacing:normal;
  6332. color:#AAAAAA;
  6333. vertical-align:none;
  6334. text-align:left;
  6335. text-transform:none;
  6336. background-color:transparent;
  6337. border-color:transparent;
  6338. }
  6339. #u5329_div {
  6340. border-width:0px;
  6341. position:absolute;
  6342. left:0px;
  6343. top:0px;
  6344. width:120px;
  6345. height:23px;
  6346. background:inherit;
  6347. background-color:rgba(255, 255, 255, 1);
  6348. border-radius:0px;
  6349. filter:drop-shadow(none);
  6350. transition:none;
  6351. font-size:11px;
  6352. color:#AAAAAA;
  6353. }
  6354. #u5329 {
  6355. border-width:0px;
  6356. position:absolute;
  6357. left:957px;
  6358. top:144px;
  6359. width:120px;
  6360. height:23px;
  6361. display:flex;
  6362. transition:none;
  6363. transform-origin:50% 50%;
  6364. font-size:11px;
  6365. color:#AAAAAA;
  6366. }
  6367. #u5329 .text {
  6368. position:absolute;
  6369. align-self:flex-start;
  6370. padding:2px 2px 2px 2px;
  6371. box-sizing:border-box;
  6372. width:100%;
  6373. }
  6374. #u5329_div.disabled {
  6375. border-width:0px;
  6376. position:absolute;
  6377. left:0px;
  6378. top:0px;
  6379. width:120px;
  6380. height:23px;
  6381. background:inherit;
  6382. background-color:rgba(240, 240, 240, 1);
  6383. border-radius:0px;
  6384. filter:drop-shadow(none);
  6385. transition:none;
  6386. font-size:11px;
  6387. color:#AAAAAA;
  6388. }
  6389. #u5329.disabled {
  6390. }
  6391. .u5329_input_option {
  6392. font-size:11px;
  6393. }