styles.css 133 KB

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