styles.css 160 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288
  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. #u41690_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. #u41690 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u41690 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u41690_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u41691_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. #u41691 {
  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. #u41691 .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. #u41691_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u41692_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. #u41692 {
  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. #u41692 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u41692_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u41693 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u41694_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u41694 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u41694 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u41694_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u41695_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. #u41695 {
  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. #u41695 .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. #u41695_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u41696_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. #u41696 {
  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. #u41696 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u41696_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u41697 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u41698_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. #u41698 {
  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. #u41698 .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. #u41698_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u41699_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u41699 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u41699 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u41699_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u41700 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u41701_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. #u41701 {
  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. #u41701 .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. #u41701_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u41702_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u41702 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u41702 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u41702_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u41703 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u41704_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. #u41704 {
  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. #u41704 .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. #u41704_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u41705_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u41705 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u41705 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u41705_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u41706 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u41707_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. #u41707 {
  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. #u41707 .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. #u41707_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u41708_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u41708 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u41708 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u41708_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u41709 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u41710_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. #u41710 {
  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. #u41710 .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. #u41710_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u41711_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u41711 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u41711 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u41711_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u41712 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u41713_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. #u41713 {
  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. #u41713 .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. #u41713_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u41714_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u41714 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u41714 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u41714_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u41715 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u41716_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. #u41716 {
  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. #u41716 .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. #u41716_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u41717_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u41717 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u41717 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u41717_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u41718 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u41719_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. #u41719 {
  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. #u41719 .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. #u41719_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u41720_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u41720 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u41720 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u41720_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u41721 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u41722_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. #u41722 {
  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. #u41722 .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. #u41722_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u41723_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u41723 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u41723 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u41723_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u41724_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. #u41724 {
  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. #u41724 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u41724_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u41725_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u41725 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u41725 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u41725_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u41726_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. #u41726 {
  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. #u41726 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u41726_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u41727_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u41727 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u41727 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u41727_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u41728 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u41729_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. #u41729 {
  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. #u41729 .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. #u41729_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u41730_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u41730 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u41730 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u41730_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u41731 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u41732_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. #u41732 {
  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. #u41732 .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. #u41732_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u41733_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u41733 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u41733 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u41733_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u41734 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u41735_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. #u41735_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. #u41735_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. #u41735 {
  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. #u41735 .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. #u41735_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. #u41735.disabled {
  1428. }
  1429. .u41735_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u41736_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u41736 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u41736 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u41736_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u41737_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. #u41737 {
  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. #u41737 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u41737_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u41738_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u41738 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u41738 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u41738_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u41739_div {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:1263px;
  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. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1553. font-weight:400;
  1554. font-style:normal;
  1555. font-size:12px;
  1556. color:#FFFFFF;
  1557. text-align:left;
  1558. }
  1559. #u41739 {
  1560. border-width:0px;
  1561. position:absolute;
  1562. left:329px;
  1563. top:50px;
  1564. width:1263px;
  1565. height:1180px;
  1566. display:flex;
  1567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1568. font-weight:400;
  1569. font-style:normal;
  1570. font-size:12px;
  1571. color:#FFFFFF;
  1572. text-align:left;
  1573. }
  1574. #u41739 .text {
  1575. position:absolute;
  1576. align-self:center;
  1577. padding:2px 2px 2px 50px;
  1578. box-sizing:border-box;
  1579. width:100%;
  1580. }
  1581. #u41739_text {
  1582. border-width:0px;
  1583. word-wrap:break-word;
  1584. text-transform:none;
  1585. visibility:hidden;
  1586. }
  1587. #u41740 {
  1588. border-width:0px;
  1589. position:absolute;
  1590. left:349px;
  1591. top:204px;
  1592. width:1223px;
  1593. height:434px;
  1594. }
  1595. #u41741_img {
  1596. border-width:0px;
  1597. position:absolute;
  1598. left:0px;
  1599. top:0px;
  1600. width:174px;
  1601. height:38px;
  1602. }
  1603. #u41741 {
  1604. border-width:0px;
  1605. position:absolute;
  1606. left:0px;
  1607. top:0px;
  1608. width:174px;
  1609. height:38px;
  1610. display:flex;
  1611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1612. font-weight:400;
  1613. font-style:normal;
  1614. font-size:12px;
  1615. color:#FFFFFF;
  1616. }
  1617. #u41741 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 0px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u41741_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. }
  1629. #u41742_img {
  1630. border-width:0px;
  1631. position:absolute;
  1632. left:0px;
  1633. top:0px;
  1634. width:174px;
  1635. height:38px;
  1636. }
  1637. #u41742 {
  1638. border-width:0px;
  1639. position:absolute;
  1640. left:174px;
  1641. top:0px;
  1642. width:174px;
  1643. height:38px;
  1644. display:flex;
  1645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1646. font-weight:400;
  1647. font-style:normal;
  1648. font-size:12px;
  1649. color:#FFFFFF;
  1650. }
  1651. #u41742 .text {
  1652. position:absolute;
  1653. align-self:center;
  1654. padding:2px 2px 2px 0px;
  1655. box-sizing:border-box;
  1656. width:100%;
  1657. }
  1658. #u41742_text {
  1659. border-width:0px;
  1660. word-wrap:break-word;
  1661. text-transform:none;
  1662. }
  1663. #u41743_img {
  1664. border-width:0px;
  1665. position:absolute;
  1666. left:0px;
  1667. top:0px;
  1668. width:174px;
  1669. height:38px;
  1670. }
  1671. #u41743 {
  1672. border-width:0px;
  1673. position:absolute;
  1674. left:348px;
  1675. top:0px;
  1676. width:174px;
  1677. height:38px;
  1678. display:flex;
  1679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1680. font-weight:400;
  1681. font-style:normal;
  1682. font-size:12px;
  1683. color:#FFFFFF;
  1684. }
  1685. #u41743 .text {
  1686. position:absolute;
  1687. align-self:center;
  1688. padding:2px 2px 2px 0px;
  1689. box-sizing:border-box;
  1690. width:100%;
  1691. }
  1692. #u41743_text {
  1693. border-width:0px;
  1694. word-wrap:break-word;
  1695. text-transform:none;
  1696. }
  1697. #u41744_img {
  1698. border-width:0px;
  1699. position:absolute;
  1700. left:0px;
  1701. top:0px;
  1702. width:201px;
  1703. height:38px;
  1704. }
  1705. #u41744 {
  1706. border-width:0px;
  1707. position:absolute;
  1708. left:522px;
  1709. top:0px;
  1710. width:201px;
  1711. height:38px;
  1712. display:flex;
  1713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1714. font-weight:400;
  1715. font-style:normal;
  1716. font-size:12px;
  1717. color:#FFFFFF;
  1718. }
  1719. #u41744 .text {
  1720. position:absolute;
  1721. align-self:center;
  1722. padding:2px 2px 2px 0px;
  1723. box-sizing:border-box;
  1724. width:100%;
  1725. }
  1726. #u41744_text {
  1727. border-width:0px;
  1728. word-wrap:break-word;
  1729. text-transform:none;
  1730. }
  1731. #u41745_img {
  1732. border-width:0px;
  1733. position:absolute;
  1734. left:0px;
  1735. top:0px;
  1736. width:201px;
  1737. height:38px;
  1738. }
  1739. #u41745 {
  1740. border-width:0px;
  1741. position:absolute;
  1742. left:723px;
  1743. top:0px;
  1744. width:201px;
  1745. height:38px;
  1746. display:flex;
  1747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1748. font-weight:400;
  1749. font-style:normal;
  1750. font-size:12px;
  1751. color:#FFFFFF;
  1752. }
  1753. #u41745 .text {
  1754. position:absolute;
  1755. align-self:center;
  1756. padding:2px 2px 2px 0px;
  1757. box-sizing:border-box;
  1758. width:100%;
  1759. }
  1760. #u41745_text {
  1761. border-width:0px;
  1762. word-wrap:break-word;
  1763. text-transform:none;
  1764. }
  1765. #u41746_img {
  1766. border-width:0px;
  1767. position:absolute;
  1768. left:0px;
  1769. top:0px;
  1770. width:172px;
  1771. height:38px;
  1772. }
  1773. #u41746 {
  1774. border-width:0px;
  1775. position:absolute;
  1776. left:924px;
  1777. top:0px;
  1778. width:172px;
  1779. height:38px;
  1780. display:flex;
  1781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1782. font-weight:400;
  1783. font-style:normal;
  1784. font-size:12px;
  1785. color:#FFFFFF;
  1786. }
  1787. #u41746 .text {
  1788. position:absolute;
  1789. align-self:center;
  1790. padding:2px 2px 2px 0px;
  1791. box-sizing:border-box;
  1792. width:100%;
  1793. }
  1794. #u41746_text {
  1795. border-width:0px;
  1796. word-wrap:break-word;
  1797. text-transform:none;
  1798. }
  1799. #u41747_img {
  1800. border-width:0px;
  1801. position:absolute;
  1802. left:0px;
  1803. top:0px;
  1804. width:127px;
  1805. height:38px;
  1806. }
  1807. #u41747 {
  1808. border-width:0px;
  1809. position:absolute;
  1810. left:1096px;
  1811. top:0px;
  1812. width:127px;
  1813. height:38px;
  1814. display:flex;
  1815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1816. font-weight:400;
  1817. font-style:normal;
  1818. font-size:12px;
  1819. color:#FFFFFF;
  1820. }
  1821. #u41747 .text {
  1822. position:absolute;
  1823. align-self:center;
  1824. padding:2px 2px 2px 0px;
  1825. box-sizing:border-box;
  1826. width:100%;
  1827. }
  1828. #u41747_text {
  1829. border-width:0px;
  1830. word-wrap:break-word;
  1831. text-transform:none;
  1832. }
  1833. #u41748_img {
  1834. border-width:0px;
  1835. position:absolute;
  1836. left:0px;
  1837. top:0px;
  1838. width:174px;
  1839. height:39px;
  1840. }
  1841. #u41748 {
  1842. border-width:0px;
  1843. position:absolute;
  1844. left:0px;
  1845. top:38px;
  1846. width:174px;
  1847. height:39px;
  1848. display:flex;
  1849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1850. font-weight:400;
  1851. font-style:normal;
  1852. font-size:12px;
  1853. }
  1854. #u41748 .text {
  1855. position:absolute;
  1856. align-self:center;
  1857. padding:2px 2px 2px 0px;
  1858. box-sizing:border-box;
  1859. width:100%;
  1860. }
  1861. #u41748_text {
  1862. border-width:0px;
  1863. word-wrap:break-word;
  1864. text-transform:none;
  1865. visibility:hidden;
  1866. }
  1867. #u41749_img {
  1868. border-width:0px;
  1869. position:absolute;
  1870. left:0px;
  1871. top:0px;
  1872. width:174px;
  1873. height:39px;
  1874. }
  1875. #u41749 {
  1876. border-width:0px;
  1877. position:absolute;
  1878. left:174px;
  1879. top:38px;
  1880. width:174px;
  1881. height:39px;
  1882. display:flex;
  1883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1884. font-weight:400;
  1885. font-style:normal;
  1886. font-size:12px;
  1887. }
  1888. #u41749 .text {
  1889. position:absolute;
  1890. align-self:center;
  1891. padding:2px 2px 2px 0px;
  1892. box-sizing:border-box;
  1893. width:100%;
  1894. }
  1895. #u41749_text {
  1896. border-width:0px;
  1897. word-wrap:break-word;
  1898. text-transform:none;
  1899. visibility:hidden;
  1900. }
  1901. #u41750_img {
  1902. border-width:0px;
  1903. position:absolute;
  1904. left:0px;
  1905. top:0px;
  1906. width:174px;
  1907. height:39px;
  1908. }
  1909. #u41750 {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:348px;
  1913. top:38px;
  1914. width:174px;
  1915. height:39px;
  1916. display:flex;
  1917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1918. font-weight:400;
  1919. font-style:normal;
  1920. font-size:12px;
  1921. }
  1922. #u41750 .text {
  1923. position:absolute;
  1924. align-self:center;
  1925. padding:2px 2px 2px 0px;
  1926. box-sizing:border-box;
  1927. width:100%;
  1928. }
  1929. #u41750_text {
  1930. border-width:0px;
  1931. word-wrap:break-word;
  1932. text-transform:none;
  1933. visibility:hidden;
  1934. }
  1935. #u41751_img {
  1936. border-width:0px;
  1937. position:absolute;
  1938. left:0px;
  1939. top:0px;
  1940. width:201px;
  1941. height:39px;
  1942. }
  1943. #u41751 {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:522px;
  1947. top:38px;
  1948. width:201px;
  1949. height:39px;
  1950. display:flex;
  1951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1952. font-weight:400;
  1953. font-style:normal;
  1954. font-size:12px;
  1955. }
  1956. #u41751 .text {
  1957. position:absolute;
  1958. align-self:center;
  1959. padding:2px 2px 2px 0px;
  1960. box-sizing:border-box;
  1961. width:100%;
  1962. }
  1963. #u41751_text {
  1964. border-width:0px;
  1965. word-wrap:break-word;
  1966. text-transform:none;
  1967. visibility:hidden;
  1968. }
  1969. #u41752_img {
  1970. border-width:0px;
  1971. position:absolute;
  1972. left:0px;
  1973. top:0px;
  1974. width:201px;
  1975. height:39px;
  1976. }
  1977. #u41752 {
  1978. border-width:0px;
  1979. position:absolute;
  1980. left:723px;
  1981. top:38px;
  1982. width:201px;
  1983. height:39px;
  1984. display:flex;
  1985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1986. font-weight:400;
  1987. font-style:normal;
  1988. font-size:12px;
  1989. }
  1990. #u41752 .text {
  1991. position:absolute;
  1992. align-self:center;
  1993. padding:2px 2px 2px 0px;
  1994. box-sizing:border-box;
  1995. width:100%;
  1996. }
  1997. #u41752_text {
  1998. border-width:0px;
  1999. word-wrap:break-word;
  2000. text-transform:none;
  2001. }
  2002. #u41753_img {
  2003. border-width:0px;
  2004. position:absolute;
  2005. left:0px;
  2006. top:0px;
  2007. width:172px;
  2008. height:39px;
  2009. }
  2010. #u41753 {
  2011. border-width:0px;
  2012. position:absolute;
  2013. left:924px;
  2014. top:38px;
  2015. width:172px;
  2016. height:39px;
  2017. display:flex;
  2018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2019. font-weight:400;
  2020. font-style:normal;
  2021. font-size:12px;
  2022. }
  2023. #u41753 .text {
  2024. position:absolute;
  2025. align-self:center;
  2026. padding:2px 2px 2px 0px;
  2027. box-sizing:border-box;
  2028. width:100%;
  2029. }
  2030. #u41753_text {
  2031. border-width:0px;
  2032. word-wrap:break-word;
  2033. text-transform:none;
  2034. }
  2035. #u41754_img {
  2036. border-width:0px;
  2037. position:absolute;
  2038. left:0px;
  2039. top:0px;
  2040. width:127px;
  2041. height:39px;
  2042. }
  2043. #u41754 {
  2044. border-width:0px;
  2045. position:absolute;
  2046. left:1096px;
  2047. top:38px;
  2048. width:127px;
  2049. height:39px;
  2050. display:flex;
  2051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2052. font-weight:400;
  2053. font-style:normal;
  2054. font-size:12px;
  2055. color:#298FFF;
  2056. }
  2057. #u41754 .text {
  2058. position:absolute;
  2059. align-self:center;
  2060. padding:2px 2px 2px 0px;
  2061. box-sizing:border-box;
  2062. width:100%;
  2063. }
  2064. #u41754_text {
  2065. border-width:0px;
  2066. word-wrap:break-word;
  2067. text-transform:none;
  2068. }
  2069. #u41755_img {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:0px;
  2073. top:0px;
  2074. width:174px;
  2075. height:41px;
  2076. }
  2077. #u41755 {
  2078. border-width:0px;
  2079. position:absolute;
  2080. left:0px;
  2081. top:77px;
  2082. width:174px;
  2083. height:41px;
  2084. display:flex;
  2085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2086. font-weight:400;
  2087. font-style:normal;
  2088. font-size:12px;
  2089. }
  2090. #u41755 .text {
  2091. position:absolute;
  2092. align-self:center;
  2093. padding:2px 2px 2px 0px;
  2094. box-sizing:border-box;
  2095. width:100%;
  2096. }
  2097. #u41755_text {
  2098. border-width:0px;
  2099. word-wrap:break-word;
  2100. text-transform:none;
  2101. visibility:hidden;
  2102. }
  2103. #u41756_img {
  2104. border-width:0px;
  2105. position:absolute;
  2106. left:0px;
  2107. top:0px;
  2108. width:174px;
  2109. height:41px;
  2110. }
  2111. #u41756 {
  2112. border-width:0px;
  2113. position:absolute;
  2114. left:174px;
  2115. top:77px;
  2116. width:174px;
  2117. height:41px;
  2118. display:flex;
  2119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2120. font-weight:400;
  2121. font-style:normal;
  2122. font-size:12px;
  2123. }
  2124. #u41756 .text {
  2125. position:absolute;
  2126. align-self:center;
  2127. padding:2px 2px 2px 0px;
  2128. box-sizing:border-box;
  2129. width:100%;
  2130. }
  2131. #u41756_text {
  2132. border-width:0px;
  2133. word-wrap:break-word;
  2134. text-transform:none;
  2135. visibility:hidden;
  2136. }
  2137. #u41757_img {
  2138. border-width:0px;
  2139. position:absolute;
  2140. left:0px;
  2141. top:0px;
  2142. width:174px;
  2143. height:41px;
  2144. }
  2145. #u41757 {
  2146. border-width:0px;
  2147. position:absolute;
  2148. left:348px;
  2149. top:77px;
  2150. width:174px;
  2151. height:41px;
  2152. display:flex;
  2153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2154. font-weight:400;
  2155. font-style:normal;
  2156. font-size:12px;
  2157. }
  2158. #u41757 .text {
  2159. position:absolute;
  2160. align-self:center;
  2161. padding:2px 2px 2px 0px;
  2162. box-sizing:border-box;
  2163. width:100%;
  2164. }
  2165. #u41757_text {
  2166. border-width:0px;
  2167. word-wrap:break-word;
  2168. text-transform:none;
  2169. visibility:hidden;
  2170. }
  2171. #u41758_img {
  2172. border-width:0px;
  2173. position:absolute;
  2174. left:0px;
  2175. top:0px;
  2176. width:201px;
  2177. height:41px;
  2178. }
  2179. #u41758 {
  2180. border-width:0px;
  2181. position:absolute;
  2182. left:522px;
  2183. top:77px;
  2184. width:201px;
  2185. height:41px;
  2186. display:flex;
  2187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2188. font-weight:400;
  2189. font-style:normal;
  2190. font-size:12px;
  2191. }
  2192. #u41758 .text {
  2193. position:absolute;
  2194. align-self:center;
  2195. padding:2px 2px 2px 0px;
  2196. box-sizing:border-box;
  2197. width:100%;
  2198. }
  2199. #u41758_text {
  2200. border-width:0px;
  2201. word-wrap:break-word;
  2202. text-transform:none;
  2203. visibility:hidden;
  2204. }
  2205. #u41759_img {
  2206. border-width:0px;
  2207. position:absolute;
  2208. left:0px;
  2209. top:0px;
  2210. width:201px;
  2211. height:41px;
  2212. }
  2213. #u41759 {
  2214. border-width:0px;
  2215. position:absolute;
  2216. left:723px;
  2217. top:77px;
  2218. width:201px;
  2219. height:41px;
  2220. display:flex;
  2221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2222. font-weight:400;
  2223. font-style:normal;
  2224. font-size:12px;
  2225. }
  2226. #u41759 .text {
  2227. position:absolute;
  2228. align-self:center;
  2229. padding:2px 2px 2px 0px;
  2230. box-sizing:border-box;
  2231. width:100%;
  2232. }
  2233. #u41759_text {
  2234. border-width:0px;
  2235. word-wrap:break-word;
  2236. text-transform:none;
  2237. }
  2238. #u41760_img {
  2239. border-width:0px;
  2240. position:absolute;
  2241. left:0px;
  2242. top:0px;
  2243. width:172px;
  2244. height:41px;
  2245. }
  2246. #u41760 {
  2247. border-width:0px;
  2248. position:absolute;
  2249. left:924px;
  2250. top:77px;
  2251. width:172px;
  2252. height:41px;
  2253. display:flex;
  2254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2255. font-weight:400;
  2256. font-style:normal;
  2257. font-size:12px;
  2258. }
  2259. #u41760 .text {
  2260. position:absolute;
  2261. align-self:center;
  2262. padding:2px 2px 2px 0px;
  2263. box-sizing:border-box;
  2264. width:100%;
  2265. }
  2266. #u41760_text {
  2267. border-width:0px;
  2268. word-wrap:break-word;
  2269. text-transform:none;
  2270. }
  2271. #u41761_img {
  2272. border-width:0px;
  2273. position:absolute;
  2274. left:0px;
  2275. top:0px;
  2276. width:127px;
  2277. height:41px;
  2278. }
  2279. #u41761 {
  2280. border-width:0px;
  2281. position:absolute;
  2282. left:1096px;
  2283. top:77px;
  2284. width:127px;
  2285. height:41px;
  2286. display:flex;
  2287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2288. font-weight:400;
  2289. font-style:normal;
  2290. font-size:12px;
  2291. color:#1890FF;
  2292. }
  2293. #u41761 .text {
  2294. position:absolute;
  2295. align-self:center;
  2296. padding:2px 2px 2px 0px;
  2297. box-sizing:border-box;
  2298. width:100%;
  2299. }
  2300. #u41761_text {
  2301. border-width:0px;
  2302. word-wrap:break-word;
  2303. text-transform:none;
  2304. visibility:hidden;
  2305. }
  2306. #u41762_img {
  2307. border-width:0px;
  2308. position:absolute;
  2309. left:0px;
  2310. top:0px;
  2311. width:174px;
  2312. height:38px;
  2313. }
  2314. #u41762 {
  2315. border-width:0px;
  2316. position:absolute;
  2317. left:0px;
  2318. top:118px;
  2319. width:174px;
  2320. height:38px;
  2321. display:flex;
  2322. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2323. font-weight:400;
  2324. font-style:normal;
  2325. font-size:12px;
  2326. color:#606266;
  2327. }
  2328. #u41762 .text {
  2329. position:absolute;
  2330. align-self:center;
  2331. padding:2px 2px 2px 0px;
  2332. box-sizing:border-box;
  2333. width:100%;
  2334. }
  2335. #u41762_text {
  2336. border-width:0px;
  2337. word-wrap:break-word;
  2338. text-transform:none;
  2339. visibility:hidden;
  2340. }
  2341. #u41763_img {
  2342. border-width:0px;
  2343. position:absolute;
  2344. left:0px;
  2345. top:0px;
  2346. width:174px;
  2347. height:38px;
  2348. }
  2349. #u41763 {
  2350. border-width:0px;
  2351. position:absolute;
  2352. left:174px;
  2353. top:118px;
  2354. width:174px;
  2355. height:38px;
  2356. display:flex;
  2357. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2358. font-weight:400;
  2359. font-style:normal;
  2360. font-size:12px;
  2361. color:#606266;
  2362. }
  2363. #u41763 .text {
  2364. position:absolute;
  2365. align-self:center;
  2366. padding:2px 2px 2px 0px;
  2367. box-sizing:border-box;
  2368. width:100%;
  2369. }
  2370. #u41763_text {
  2371. border-width:0px;
  2372. word-wrap:break-word;
  2373. text-transform:none;
  2374. visibility:hidden;
  2375. }
  2376. #u41764_img {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:0px;
  2380. top:0px;
  2381. width:174px;
  2382. height:38px;
  2383. }
  2384. #u41764 {
  2385. border-width:0px;
  2386. position:absolute;
  2387. left:348px;
  2388. top:118px;
  2389. width:174px;
  2390. height:38px;
  2391. display:flex;
  2392. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2393. font-weight:400;
  2394. font-style:normal;
  2395. font-size:12px;
  2396. color:#606266;
  2397. }
  2398. #u41764 .text {
  2399. position:absolute;
  2400. align-self:center;
  2401. padding:2px 2px 2px 0px;
  2402. box-sizing:border-box;
  2403. width:100%;
  2404. }
  2405. #u41764_text {
  2406. border-width:0px;
  2407. word-wrap:break-word;
  2408. text-transform:none;
  2409. visibility:hidden;
  2410. }
  2411. #u41765_img {
  2412. border-width:0px;
  2413. position:absolute;
  2414. left:0px;
  2415. top:0px;
  2416. width:201px;
  2417. height:38px;
  2418. }
  2419. #u41765 {
  2420. border-width:0px;
  2421. position:absolute;
  2422. left:522px;
  2423. top:118px;
  2424. width:201px;
  2425. height:38px;
  2426. display:flex;
  2427. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2428. font-weight:400;
  2429. font-style:normal;
  2430. font-size:12px;
  2431. color:#606266;
  2432. }
  2433. #u41765 .text {
  2434. position:absolute;
  2435. align-self:center;
  2436. padding:2px 2px 2px 0px;
  2437. box-sizing:border-box;
  2438. width:100%;
  2439. }
  2440. #u41765_text {
  2441. border-width:0px;
  2442. word-wrap:break-word;
  2443. text-transform:none;
  2444. visibility:hidden;
  2445. }
  2446. #u41766_img {
  2447. border-width:0px;
  2448. position:absolute;
  2449. left:0px;
  2450. top:0px;
  2451. width:201px;
  2452. height:38px;
  2453. }
  2454. #u41766 {
  2455. border-width:0px;
  2456. position:absolute;
  2457. left:723px;
  2458. top:118px;
  2459. width:201px;
  2460. height:38px;
  2461. display:flex;
  2462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2463. font-weight:400;
  2464. font-style:normal;
  2465. font-size:12px;
  2466. color:#606266;
  2467. }
  2468. #u41766 .text {
  2469. position:absolute;
  2470. align-self:center;
  2471. padding:2px 2px 2px 0px;
  2472. box-sizing:border-box;
  2473. width:100%;
  2474. }
  2475. #u41766_text {
  2476. border-width:0px;
  2477. word-wrap:break-word;
  2478. text-transform:none;
  2479. }
  2480. #u41767_img {
  2481. border-width:0px;
  2482. position:absolute;
  2483. left:0px;
  2484. top:0px;
  2485. width:172px;
  2486. height:38px;
  2487. }
  2488. #u41767 {
  2489. border-width:0px;
  2490. position:absolute;
  2491. left:924px;
  2492. top:118px;
  2493. width:172px;
  2494. height:38px;
  2495. display:flex;
  2496. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2497. font-weight:400;
  2498. font-style:normal;
  2499. font-size:12px;
  2500. color:#606266;
  2501. }
  2502. #u41767 .text {
  2503. position:absolute;
  2504. align-self:center;
  2505. padding:2px 2px 2px 0px;
  2506. box-sizing:border-box;
  2507. width:100%;
  2508. }
  2509. #u41767_text {
  2510. border-width:0px;
  2511. word-wrap:break-word;
  2512. text-transform:none;
  2513. visibility:hidden;
  2514. }
  2515. #u41768_img {
  2516. border-width:0px;
  2517. position:absolute;
  2518. left:0px;
  2519. top:0px;
  2520. width:127px;
  2521. height:38px;
  2522. }
  2523. #u41768 {
  2524. border-width:0px;
  2525. position:absolute;
  2526. left:1096px;
  2527. top:118px;
  2528. width:127px;
  2529. height:38px;
  2530. display:flex;
  2531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2532. font-weight:400;
  2533. font-style:normal;
  2534. font-size:12px;
  2535. color:#1890FF;
  2536. }
  2537. #u41768 .text {
  2538. position:absolute;
  2539. align-self:center;
  2540. padding:2px 2px 2px 0px;
  2541. box-sizing:border-box;
  2542. width:100%;
  2543. }
  2544. #u41768_text {
  2545. border-width:0px;
  2546. word-wrap:break-word;
  2547. text-transform:none;
  2548. visibility:hidden;
  2549. }
  2550. #u41769_img {
  2551. border-width:0px;
  2552. position:absolute;
  2553. left:0px;
  2554. top:0px;
  2555. width:174px;
  2556. height:36px;
  2557. }
  2558. #u41769 {
  2559. border-width:0px;
  2560. position:absolute;
  2561. left:0px;
  2562. top:156px;
  2563. width:174px;
  2564. height:36px;
  2565. display:flex;
  2566. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2567. font-weight:400;
  2568. font-style:normal;
  2569. font-size:12px;
  2570. color:#606266;
  2571. }
  2572. #u41769 .text {
  2573. position:absolute;
  2574. align-self:center;
  2575. padding:2px 2px 2px 0px;
  2576. box-sizing:border-box;
  2577. width:100%;
  2578. }
  2579. #u41769_text {
  2580. border-width:0px;
  2581. word-wrap:break-word;
  2582. text-transform:none;
  2583. visibility:hidden;
  2584. }
  2585. #u41770_img {
  2586. border-width:0px;
  2587. position:absolute;
  2588. left:0px;
  2589. top:0px;
  2590. width:174px;
  2591. height:36px;
  2592. }
  2593. #u41770 {
  2594. border-width:0px;
  2595. position:absolute;
  2596. left:174px;
  2597. top:156px;
  2598. width:174px;
  2599. height:36px;
  2600. display:flex;
  2601. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2602. font-weight:400;
  2603. font-style:normal;
  2604. font-size:12px;
  2605. color:#606266;
  2606. }
  2607. #u41770 .text {
  2608. position:absolute;
  2609. align-self:center;
  2610. padding:2px 2px 2px 0px;
  2611. box-sizing:border-box;
  2612. width:100%;
  2613. }
  2614. #u41770_text {
  2615. border-width:0px;
  2616. word-wrap:break-word;
  2617. text-transform:none;
  2618. visibility:hidden;
  2619. }
  2620. #u41771_img {
  2621. border-width:0px;
  2622. position:absolute;
  2623. left:0px;
  2624. top:0px;
  2625. width:174px;
  2626. height:36px;
  2627. }
  2628. #u41771 {
  2629. border-width:0px;
  2630. position:absolute;
  2631. left:348px;
  2632. top:156px;
  2633. width:174px;
  2634. height:36px;
  2635. display:flex;
  2636. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2637. font-weight:400;
  2638. font-style:normal;
  2639. font-size:12px;
  2640. color:#606266;
  2641. }
  2642. #u41771 .text {
  2643. position:absolute;
  2644. align-self:center;
  2645. padding:2px 2px 2px 0px;
  2646. box-sizing:border-box;
  2647. width:100%;
  2648. }
  2649. #u41771_text {
  2650. border-width:0px;
  2651. word-wrap:break-word;
  2652. text-transform:none;
  2653. visibility:hidden;
  2654. }
  2655. #u41772_img {
  2656. border-width:0px;
  2657. position:absolute;
  2658. left:0px;
  2659. top:0px;
  2660. width:201px;
  2661. height:36px;
  2662. }
  2663. #u41772 {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:522px;
  2667. top:156px;
  2668. width:201px;
  2669. height:36px;
  2670. display:flex;
  2671. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2672. font-weight:400;
  2673. font-style:normal;
  2674. font-size:12px;
  2675. color:#606266;
  2676. }
  2677. #u41772 .text {
  2678. position:absolute;
  2679. align-self:center;
  2680. padding:2px 2px 2px 0px;
  2681. box-sizing:border-box;
  2682. width:100%;
  2683. }
  2684. #u41772_text {
  2685. border-width:0px;
  2686. word-wrap:break-word;
  2687. text-transform:none;
  2688. visibility:hidden;
  2689. }
  2690. #u41773_img {
  2691. border-width:0px;
  2692. position:absolute;
  2693. left:0px;
  2694. top:0px;
  2695. width:201px;
  2696. height:36px;
  2697. }
  2698. #u41773 {
  2699. border-width:0px;
  2700. position:absolute;
  2701. left:723px;
  2702. top:156px;
  2703. width:201px;
  2704. height:36px;
  2705. display:flex;
  2706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2707. font-weight:400;
  2708. font-style:normal;
  2709. font-size:12px;
  2710. color:#606266;
  2711. }
  2712. #u41773 .text {
  2713. position:absolute;
  2714. align-self:center;
  2715. padding:2px 2px 2px 0px;
  2716. box-sizing:border-box;
  2717. width:100%;
  2718. }
  2719. #u41773_text {
  2720. border-width:0px;
  2721. word-wrap:break-word;
  2722. text-transform:none;
  2723. }
  2724. #u41774_img {
  2725. border-width:0px;
  2726. position:absolute;
  2727. left:0px;
  2728. top:0px;
  2729. width:172px;
  2730. height:36px;
  2731. }
  2732. #u41774 {
  2733. border-width:0px;
  2734. position:absolute;
  2735. left:924px;
  2736. top:156px;
  2737. width:172px;
  2738. height:36px;
  2739. display:flex;
  2740. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2741. font-weight:400;
  2742. font-style:normal;
  2743. font-size:12px;
  2744. color:#606266;
  2745. }
  2746. #u41774 .text {
  2747. position:absolute;
  2748. align-self:center;
  2749. padding:2px 2px 2px 0px;
  2750. box-sizing:border-box;
  2751. width:100%;
  2752. }
  2753. #u41774_text {
  2754. border-width:0px;
  2755. word-wrap:break-word;
  2756. text-transform:none;
  2757. visibility:hidden;
  2758. }
  2759. #u41775_img {
  2760. border-width:0px;
  2761. position:absolute;
  2762. left:0px;
  2763. top:0px;
  2764. width:127px;
  2765. height:36px;
  2766. }
  2767. #u41775 {
  2768. border-width:0px;
  2769. position:absolute;
  2770. left:1096px;
  2771. top:156px;
  2772. width:127px;
  2773. height:36px;
  2774. display:flex;
  2775. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2776. font-weight:400;
  2777. font-style:normal;
  2778. font-size:12px;
  2779. color:#606266;
  2780. }
  2781. #u41775 .text {
  2782. position:absolute;
  2783. align-self:center;
  2784. padding:2px 2px 2px 0px;
  2785. box-sizing:border-box;
  2786. width:100%;
  2787. }
  2788. #u41775_text {
  2789. border-width:0px;
  2790. word-wrap:break-word;
  2791. text-transform:none;
  2792. visibility:hidden;
  2793. }
  2794. #u41776_img {
  2795. border-width:0px;
  2796. position:absolute;
  2797. left:0px;
  2798. top:0px;
  2799. width:174px;
  2800. height:35px;
  2801. }
  2802. #u41776 {
  2803. border-width:0px;
  2804. position:absolute;
  2805. left:0px;
  2806. top:192px;
  2807. width:174px;
  2808. height:35px;
  2809. display:flex;
  2810. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2811. font-weight:400;
  2812. font-style:normal;
  2813. font-size:12px;
  2814. color:#606266;
  2815. }
  2816. #u41776 .text {
  2817. position:absolute;
  2818. align-self:center;
  2819. padding:2px 2px 2px 0px;
  2820. box-sizing:border-box;
  2821. width:100%;
  2822. }
  2823. #u41776_text {
  2824. border-width:0px;
  2825. word-wrap:break-word;
  2826. text-transform:none;
  2827. visibility:hidden;
  2828. }
  2829. #u41777_img {
  2830. border-width:0px;
  2831. position:absolute;
  2832. left:0px;
  2833. top:0px;
  2834. width:174px;
  2835. height:35px;
  2836. }
  2837. #u41777 {
  2838. border-width:0px;
  2839. position:absolute;
  2840. left:174px;
  2841. top:192px;
  2842. width:174px;
  2843. height:35px;
  2844. display:flex;
  2845. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2846. font-weight:400;
  2847. font-style:normal;
  2848. font-size:12px;
  2849. color:#606266;
  2850. }
  2851. #u41777 .text {
  2852. position:absolute;
  2853. align-self:center;
  2854. padding:2px 2px 2px 0px;
  2855. box-sizing:border-box;
  2856. width:100%;
  2857. }
  2858. #u41777_text {
  2859. border-width:0px;
  2860. word-wrap:break-word;
  2861. text-transform:none;
  2862. visibility:hidden;
  2863. }
  2864. #u41778_img {
  2865. border-width:0px;
  2866. position:absolute;
  2867. left:0px;
  2868. top:0px;
  2869. width:174px;
  2870. height:35px;
  2871. }
  2872. #u41778 {
  2873. border-width:0px;
  2874. position:absolute;
  2875. left:348px;
  2876. top:192px;
  2877. width:174px;
  2878. height:35px;
  2879. display:flex;
  2880. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2881. font-weight:400;
  2882. font-style:normal;
  2883. font-size:12px;
  2884. color:#606266;
  2885. }
  2886. #u41778 .text {
  2887. position:absolute;
  2888. align-self:center;
  2889. padding:2px 2px 2px 0px;
  2890. box-sizing:border-box;
  2891. width:100%;
  2892. }
  2893. #u41778_text {
  2894. border-width:0px;
  2895. word-wrap:break-word;
  2896. text-transform:none;
  2897. visibility:hidden;
  2898. }
  2899. #u41779_img {
  2900. border-width:0px;
  2901. position:absolute;
  2902. left:0px;
  2903. top:0px;
  2904. width:201px;
  2905. height:35px;
  2906. }
  2907. #u41779 {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:522px;
  2911. top:192px;
  2912. width:201px;
  2913. height:35px;
  2914. display:flex;
  2915. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2916. font-weight:400;
  2917. font-style:normal;
  2918. font-size:12px;
  2919. color:#606266;
  2920. }
  2921. #u41779 .text {
  2922. position:absolute;
  2923. align-self:center;
  2924. padding:2px 2px 2px 0px;
  2925. box-sizing:border-box;
  2926. width:100%;
  2927. }
  2928. #u41779_text {
  2929. border-width:0px;
  2930. word-wrap:break-word;
  2931. text-transform:none;
  2932. visibility:hidden;
  2933. }
  2934. #u41780_img {
  2935. border-width:0px;
  2936. position:absolute;
  2937. left:0px;
  2938. top:0px;
  2939. width:201px;
  2940. height:35px;
  2941. }
  2942. #u41780 {
  2943. border-width:0px;
  2944. position:absolute;
  2945. left:723px;
  2946. top:192px;
  2947. width:201px;
  2948. height:35px;
  2949. display:flex;
  2950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2951. font-weight:400;
  2952. font-style:normal;
  2953. font-size:12px;
  2954. color:#606266;
  2955. }
  2956. #u41780 .text {
  2957. position:absolute;
  2958. align-self:center;
  2959. padding:2px 2px 2px 0px;
  2960. box-sizing:border-box;
  2961. width:100%;
  2962. }
  2963. #u41780_text {
  2964. border-width:0px;
  2965. word-wrap:break-word;
  2966. text-transform:none;
  2967. }
  2968. #u41781_img {
  2969. border-width:0px;
  2970. position:absolute;
  2971. left:0px;
  2972. top:0px;
  2973. width:172px;
  2974. height:35px;
  2975. }
  2976. #u41781 {
  2977. border-width:0px;
  2978. position:absolute;
  2979. left:924px;
  2980. top:192px;
  2981. width:172px;
  2982. height:35px;
  2983. display:flex;
  2984. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2985. font-weight:400;
  2986. font-style:normal;
  2987. font-size:12px;
  2988. color:#606266;
  2989. }
  2990. #u41781 .text {
  2991. position:absolute;
  2992. align-self:center;
  2993. padding:2px 2px 2px 0px;
  2994. box-sizing:border-box;
  2995. width:100%;
  2996. }
  2997. #u41781_text {
  2998. border-width:0px;
  2999. word-wrap:break-word;
  3000. text-transform:none;
  3001. visibility:hidden;
  3002. }
  3003. #u41782_img {
  3004. border-width:0px;
  3005. position:absolute;
  3006. left:0px;
  3007. top:0px;
  3008. width:127px;
  3009. height:35px;
  3010. }
  3011. #u41782 {
  3012. border-width:0px;
  3013. position:absolute;
  3014. left:1096px;
  3015. top:192px;
  3016. width:127px;
  3017. height:35px;
  3018. display:flex;
  3019. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3020. font-weight:400;
  3021. font-style:normal;
  3022. font-size:12px;
  3023. color:#606266;
  3024. }
  3025. #u41782 .text {
  3026. position:absolute;
  3027. align-self:center;
  3028. padding:2px 2px 2px 0px;
  3029. box-sizing:border-box;
  3030. width:100%;
  3031. }
  3032. #u41782_text {
  3033. border-width:0px;
  3034. word-wrap:break-word;
  3035. text-transform:none;
  3036. visibility:hidden;
  3037. }
  3038. #u41783_img {
  3039. border-width:0px;
  3040. position:absolute;
  3041. left:0px;
  3042. top:0px;
  3043. width:174px;
  3044. height:35px;
  3045. }
  3046. #u41783 {
  3047. border-width:0px;
  3048. position:absolute;
  3049. left:0px;
  3050. top:227px;
  3051. width:174px;
  3052. height:35px;
  3053. display:flex;
  3054. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3055. font-weight:400;
  3056. font-style:normal;
  3057. font-size:12px;
  3058. color:#606266;
  3059. }
  3060. #u41783 .text {
  3061. position:absolute;
  3062. align-self:center;
  3063. padding:2px 2px 2px 0px;
  3064. box-sizing:border-box;
  3065. width:100%;
  3066. }
  3067. #u41783_text {
  3068. border-width:0px;
  3069. word-wrap:break-word;
  3070. text-transform:none;
  3071. visibility:hidden;
  3072. }
  3073. #u41784_img {
  3074. border-width:0px;
  3075. position:absolute;
  3076. left:0px;
  3077. top:0px;
  3078. width:174px;
  3079. height:35px;
  3080. }
  3081. #u41784 {
  3082. border-width:0px;
  3083. position:absolute;
  3084. left:174px;
  3085. top:227px;
  3086. width:174px;
  3087. height:35px;
  3088. display:flex;
  3089. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3090. font-weight:400;
  3091. font-style:normal;
  3092. font-size:12px;
  3093. color:#606266;
  3094. }
  3095. #u41784 .text {
  3096. position:absolute;
  3097. align-self:center;
  3098. padding:2px 2px 2px 0px;
  3099. box-sizing:border-box;
  3100. width:100%;
  3101. }
  3102. #u41784_text {
  3103. border-width:0px;
  3104. word-wrap:break-word;
  3105. text-transform:none;
  3106. visibility:hidden;
  3107. }
  3108. #u41785_img {
  3109. border-width:0px;
  3110. position:absolute;
  3111. left:0px;
  3112. top:0px;
  3113. width:174px;
  3114. height:35px;
  3115. }
  3116. #u41785 {
  3117. border-width:0px;
  3118. position:absolute;
  3119. left:348px;
  3120. top:227px;
  3121. width:174px;
  3122. height:35px;
  3123. display:flex;
  3124. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3125. font-weight:400;
  3126. font-style:normal;
  3127. font-size:12px;
  3128. color:#606266;
  3129. }
  3130. #u41785 .text {
  3131. position:absolute;
  3132. align-self:center;
  3133. padding:2px 2px 2px 0px;
  3134. box-sizing:border-box;
  3135. width:100%;
  3136. }
  3137. #u41785_text {
  3138. border-width:0px;
  3139. word-wrap:break-word;
  3140. text-transform:none;
  3141. visibility:hidden;
  3142. }
  3143. #u41786_img {
  3144. border-width:0px;
  3145. position:absolute;
  3146. left:0px;
  3147. top:0px;
  3148. width:201px;
  3149. height:35px;
  3150. }
  3151. #u41786 {
  3152. border-width:0px;
  3153. position:absolute;
  3154. left:522px;
  3155. top:227px;
  3156. width:201px;
  3157. height:35px;
  3158. display:flex;
  3159. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3160. font-weight:400;
  3161. font-style:normal;
  3162. font-size:12px;
  3163. color:#606266;
  3164. }
  3165. #u41786 .text {
  3166. position:absolute;
  3167. align-self:center;
  3168. padding:2px 2px 2px 0px;
  3169. box-sizing:border-box;
  3170. width:100%;
  3171. }
  3172. #u41786_text {
  3173. border-width:0px;
  3174. word-wrap:break-word;
  3175. text-transform:none;
  3176. visibility:hidden;
  3177. }
  3178. #u41787_img {
  3179. border-width:0px;
  3180. position:absolute;
  3181. left:0px;
  3182. top:0px;
  3183. width:201px;
  3184. height:35px;
  3185. }
  3186. #u41787 {
  3187. border-width:0px;
  3188. position:absolute;
  3189. left:723px;
  3190. top:227px;
  3191. width:201px;
  3192. height:35px;
  3193. display:flex;
  3194. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3195. font-weight:400;
  3196. font-style:normal;
  3197. font-size:12px;
  3198. color:#606266;
  3199. }
  3200. #u41787 .text {
  3201. position:absolute;
  3202. align-self:center;
  3203. padding:2px 2px 2px 0px;
  3204. box-sizing:border-box;
  3205. width:100%;
  3206. }
  3207. #u41787_text {
  3208. border-width:0px;
  3209. word-wrap:break-word;
  3210. text-transform:none;
  3211. visibility:hidden;
  3212. }
  3213. #u41788_img {
  3214. border-width:0px;
  3215. position:absolute;
  3216. left:0px;
  3217. top:0px;
  3218. width:172px;
  3219. height:35px;
  3220. }
  3221. #u41788 {
  3222. border-width:0px;
  3223. position:absolute;
  3224. left:924px;
  3225. top:227px;
  3226. width:172px;
  3227. height:35px;
  3228. display:flex;
  3229. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3230. font-weight:400;
  3231. font-style:normal;
  3232. font-size:12px;
  3233. color:#606266;
  3234. }
  3235. #u41788 .text {
  3236. position:absolute;
  3237. align-self:center;
  3238. padding:2px 2px 2px 0px;
  3239. box-sizing:border-box;
  3240. width:100%;
  3241. }
  3242. #u41788_text {
  3243. border-width:0px;
  3244. word-wrap:break-word;
  3245. text-transform:none;
  3246. visibility:hidden;
  3247. }
  3248. #u41789_img {
  3249. border-width:0px;
  3250. position:absolute;
  3251. left:0px;
  3252. top:0px;
  3253. width:127px;
  3254. height:35px;
  3255. }
  3256. #u41789 {
  3257. border-width:0px;
  3258. position:absolute;
  3259. left:1096px;
  3260. top:227px;
  3261. width:127px;
  3262. height:35px;
  3263. display:flex;
  3264. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3265. font-weight:400;
  3266. font-style:normal;
  3267. font-size:12px;
  3268. color:#606266;
  3269. }
  3270. #u41789 .text {
  3271. position:absolute;
  3272. align-self:center;
  3273. padding:2px 2px 2px 0px;
  3274. box-sizing:border-box;
  3275. width:100%;
  3276. }
  3277. #u41789_text {
  3278. border-width:0px;
  3279. word-wrap:break-word;
  3280. text-transform:none;
  3281. visibility:hidden;
  3282. }
  3283. #u41790_img {
  3284. border-width:0px;
  3285. position:absolute;
  3286. left:0px;
  3287. top:0px;
  3288. width:174px;
  3289. height:35px;
  3290. }
  3291. #u41790 {
  3292. border-width:0px;
  3293. position:absolute;
  3294. left:0px;
  3295. top:262px;
  3296. width:174px;
  3297. height:35px;
  3298. display:flex;
  3299. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3300. font-weight:400;
  3301. font-style:normal;
  3302. font-size:12px;
  3303. color:#606266;
  3304. }
  3305. #u41790 .text {
  3306. position:absolute;
  3307. align-self:center;
  3308. padding:2px 2px 2px 0px;
  3309. box-sizing:border-box;
  3310. width:100%;
  3311. }
  3312. #u41790_text {
  3313. border-width:0px;
  3314. word-wrap:break-word;
  3315. text-transform:none;
  3316. visibility:hidden;
  3317. }
  3318. #u41791_img {
  3319. border-width:0px;
  3320. position:absolute;
  3321. left:0px;
  3322. top:0px;
  3323. width:174px;
  3324. height:35px;
  3325. }
  3326. #u41791 {
  3327. border-width:0px;
  3328. position:absolute;
  3329. left:174px;
  3330. top:262px;
  3331. width:174px;
  3332. height:35px;
  3333. display:flex;
  3334. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3335. font-weight:400;
  3336. font-style:normal;
  3337. font-size:12px;
  3338. color:#606266;
  3339. }
  3340. #u41791 .text {
  3341. position:absolute;
  3342. align-self:center;
  3343. padding:2px 2px 2px 0px;
  3344. box-sizing:border-box;
  3345. width:100%;
  3346. }
  3347. #u41791_text {
  3348. border-width:0px;
  3349. word-wrap:break-word;
  3350. text-transform:none;
  3351. visibility:hidden;
  3352. }
  3353. #u41792_img {
  3354. border-width:0px;
  3355. position:absolute;
  3356. left:0px;
  3357. top:0px;
  3358. width:174px;
  3359. height:35px;
  3360. }
  3361. #u41792 {
  3362. border-width:0px;
  3363. position:absolute;
  3364. left:348px;
  3365. top:262px;
  3366. width:174px;
  3367. height:35px;
  3368. display:flex;
  3369. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3370. font-weight:400;
  3371. font-style:normal;
  3372. font-size:12px;
  3373. color:#606266;
  3374. }
  3375. #u41792 .text {
  3376. position:absolute;
  3377. align-self:center;
  3378. padding:2px 2px 2px 0px;
  3379. box-sizing:border-box;
  3380. width:100%;
  3381. }
  3382. #u41792_text {
  3383. border-width:0px;
  3384. word-wrap:break-word;
  3385. text-transform:none;
  3386. visibility:hidden;
  3387. }
  3388. #u41793_img {
  3389. border-width:0px;
  3390. position:absolute;
  3391. left:0px;
  3392. top:0px;
  3393. width:201px;
  3394. height:35px;
  3395. }
  3396. #u41793 {
  3397. border-width:0px;
  3398. position:absolute;
  3399. left:522px;
  3400. top:262px;
  3401. width:201px;
  3402. height:35px;
  3403. display:flex;
  3404. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3405. font-weight:400;
  3406. font-style:normal;
  3407. font-size:12px;
  3408. color:#606266;
  3409. }
  3410. #u41793 .text {
  3411. position:absolute;
  3412. align-self:center;
  3413. padding:2px 2px 2px 0px;
  3414. box-sizing:border-box;
  3415. width:100%;
  3416. }
  3417. #u41793_text {
  3418. border-width:0px;
  3419. word-wrap:break-word;
  3420. text-transform:none;
  3421. visibility:hidden;
  3422. }
  3423. #u41794_img {
  3424. border-width:0px;
  3425. position:absolute;
  3426. left:0px;
  3427. top:0px;
  3428. width:201px;
  3429. height:35px;
  3430. }
  3431. #u41794 {
  3432. border-width:0px;
  3433. position:absolute;
  3434. left:723px;
  3435. top:262px;
  3436. width:201px;
  3437. height:35px;
  3438. display:flex;
  3439. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3440. font-weight:400;
  3441. font-style:normal;
  3442. font-size:12px;
  3443. color:#606266;
  3444. }
  3445. #u41794 .text {
  3446. position:absolute;
  3447. align-self:center;
  3448. padding:2px 2px 2px 0px;
  3449. box-sizing:border-box;
  3450. width:100%;
  3451. }
  3452. #u41794_text {
  3453. border-width:0px;
  3454. word-wrap:break-word;
  3455. text-transform:none;
  3456. visibility:hidden;
  3457. }
  3458. #u41795_img {
  3459. border-width:0px;
  3460. position:absolute;
  3461. left:0px;
  3462. top:0px;
  3463. width:172px;
  3464. height:35px;
  3465. }
  3466. #u41795 {
  3467. border-width:0px;
  3468. position:absolute;
  3469. left:924px;
  3470. top:262px;
  3471. width:172px;
  3472. height:35px;
  3473. display:flex;
  3474. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3475. font-weight:400;
  3476. font-style:normal;
  3477. font-size:12px;
  3478. color:#606266;
  3479. }
  3480. #u41795 .text {
  3481. position:absolute;
  3482. align-self:center;
  3483. padding:2px 2px 2px 0px;
  3484. box-sizing:border-box;
  3485. width:100%;
  3486. }
  3487. #u41795_text {
  3488. border-width:0px;
  3489. word-wrap:break-word;
  3490. text-transform:none;
  3491. visibility:hidden;
  3492. }
  3493. #u41796_img {
  3494. border-width:0px;
  3495. position:absolute;
  3496. left:0px;
  3497. top:0px;
  3498. width:127px;
  3499. height:35px;
  3500. }
  3501. #u41796 {
  3502. border-width:0px;
  3503. position:absolute;
  3504. left:1096px;
  3505. top:262px;
  3506. width:127px;
  3507. height:35px;
  3508. display:flex;
  3509. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3510. font-weight:400;
  3511. font-style:normal;
  3512. font-size:12px;
  3513. color:#606266;
  3514. }
  3515. #u41796 .text {
  3516. position:absolute;
  3517. align-self:center;
  3518. padding:2px 2px 2px 0px;
  3519. box-sizing:border-box;
  3520. width:100%;
  3521. }
  3522. #u41796_text {
  3523. border-width:0px;
  3524. word-wrap:break-word;
  3525. text-transform:none;
  3526. visibility:hidden;
  3527. }
  3528. #u41797_img {
  3529. border-width:0px;
  3530. position:absolute;
  3531. left:0px;
  3532. top:0px;
  3533. width:174px;
  3534. height:35px;
  3535. }
  3536. #u41797 {
  3537. border-width:0px;
  3538. position:absolute;
  3539. left:0px;
  3540. top:297px;
  3541. width:174px;
  3542. height:35px;
  3543. display:flex;
  3544. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3545. font-weight:400;
  3546. font-style:normal;
  3547. font-size:12px;
  3548. color:#606266;
  3549. }
  3550. #u41797 .text {
  3551. position:absolute;
  3552. align-self:center;
  3553. padding:2px 2px 2px 0px;
  3554. box-sizing:border-box;
  3555. width:100%;
  3556. }
  3557. #u41797_text {
  3558. border-width:0px;
  3559. word-wrap:break-word;
  3560. text-transform:none;
  3561. visibility:hidden;
  3562. }
  3563. #u41798_img {
  3564. border-width:0px;
  3565. position:absolute;
  3566. left:0px;
  3567. top:0px;
  3568. width:174px;
  3569. height:35px;
  3570. }
  3571. #u41798 {
  3572. border-width:0px;
  3573. position:absolute;
  3574. left:174px;
  3575. top:297px;
  3576. width:174px;
  3577. height:35px;
  3578. display:flex;
  3579. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3580. font-weight:400;
  3581. font-style:normal;
  3582. font-size:12px;
  3583. color:#606266;
  3584. }
  3585. #u41798 .text {
  3586. position:absolute;
  3587. align-self:center;
  3588. padding:2px 2px 2px 0px;
  3589. box-sizing:border-box;
  3590. width:100%;
  3591. }
  3592. #u41798_text {
  3593. border-width:0px;
  3594. word-wrap:break-word;
  3595. text-transform:none;
  3596. visibility:hidden;
  3597. }
  3598. #u41799_img {
  3599. border-width:0px;
  3600. position:absolute;
  3601. left:0px;
  3602. top:0px;
  3603. width:174px;
  3604. height:35px;
  3605. }
  3606. #u41799 {
  3607. border-width:0px;
  3608. position:absolute;
  3609. left:348px;
  3610. top:297px;
  3611. width:174px;
  3612. height:35px;
  3613. display:flex;
  3614. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3615. font-weight:400;
  3616. font-style:normal;
  3617. font-size:12px;
  3618. color:#606266;
  3619. }
  3620. #u41799 .text {
  3621. position:absolute;
  3622. align-self:center;
  3623. padding:2px 2px 2px 0px;
  3624. box-sizing:border-box;
  3625. width:100%;
  3626. }
  3627. #u41799_text {
  3628. border-width:0px;
  3629. word-wrap:break-word;
  3630. text-transform:none;
  3631. visibility:hidden;
  3632. }
  3633. #u41800_img {
  3634. border-width:0px;
  3635. position:absolute;
  3636. left:0px;
  3637. top:0px;
  3638. width:201px;
  3639. height:35px;
  3640. }
  3641. #u41800 {
  3642. border-width:0px;
  3643. position:absolute;
  3644. left:522px;
  3645. top:297px;
  3646. width:201px;
  3647. height:35px;
  3648. display:flex;
  3649. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3650. font-weight:400;
  3651. font-style:normal;
  3652. font-size:12px;
  3653. color:#606266;
  3654. }
  3655. #u41800 .text {
  3656. position:absolute;
  3657. align-self:center;
  3658. padding:2px 2px 2px 0px;
  3659. box-sizing:border-box;
  3660. width:100%;
  3661. }
  3662. #u41800_text {
  3663. border-width:0px;
  3664. word-wrap:break-word;
  3665. text-transform:none;
  3666. visibility:hidden;
  3667. }
  3668. #u41801_img {
  3669. border-width:0px;
  3670. position:absolute;
  3671. left:0px;
  3672. top:0px;
  3673. width:201px;
  3674. height:35px;
  3675. }
  3676. #u41801 {
  3677. border-width:0px;
  3678. position:absolute;
  3679. left:723px;
  3680. top:297px;
  3681. width:201px;
  3682. height:35px;
  3683. display:flex;
  3684. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3685. font-weight:400;
  3686. font-style:normal;
  3687. font-size:12px;
  3688. color:#606266;
  3689. }
  3690. #u41801 .text {
  3691. position:absolute;
  3692. align-self:center;
  3693. padding:2px 2px 2px 0px;
  3694. box-sizing:border-box;
  3695. width:100%;
  3696. }
  3697. #u41801_text {
  3698. border-width:0px;
  3699. word-wrap:break-word;
  3700. text-transform:none;
  3701. visibility:hidden;
  3702. }
  3703. #u41802_img {
  3704. border-width:0px;
  3705. position:absolute;
  3706. left:0px;
  3707. top:0px;
  3708. width:172px;
  3709. height:35px;
  3710. }
  3711. #u41802 {
  3712. border-width:0px;
  3713. position:absolute;
  3714. left:924px;
  3715. top:297px;
  3716. width:172px;
  3717. height:35px;
  3718. display:flex;
  3719. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3720. font-weight:400;
  3721. font-style:normal;
  3722. font-size:12px;
  3723. color:#606266;
  3724. }
  3725. #u41802 .text {
  3726. position:absolute;
  3727. align-self:center;
  3728. padding:2px 2px 2px 0px;
  3729. box-sizing:border-box;
  3730. width:100%;
  3731. }
  3732. #u41802_text {
  3733. border-width:0px;
  3734. word-wrap:break-word;
  3735. text-transform:none;
  3736. visibility:hidden;
  3737. }
  3738. #u41803_img {
  3739. border-width:0px;
  3740. position:absolute;
  3741. left:0px;
  3742. top:0px;
  3743. width:127px;
  3744. height:35px;
  3745. }
  3746. #u41803 {
  3747. border-width:0px;
  3748. position:absolute;
  3749. left:1096px;
  3750. top:297px;
  3751. width:127px;
  3752. height:35px;
  3753. display:flex;
  3754. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3755. font-weight:400;
  3756. font-style:normal;
  3757. font-size:12px;
  3758. color:#606266;
  3759. }
  3760. #u41803 .text {
  3761. position:absolute;
  3762. align-self:center;
  3763. padding:2px 2px 2px 0px;
  3764. box-sizing:border-box;
  3765. width:100%;
  3766. }
  3767. #u41803_text {
  3768. border-width:0px;
  3769. word-wrap:break-word;
  3770. text-transform:none;
  3771. visibility:hidden;
  3772. }
  3773. #u41804_img {
  3774. border-width:0px;
  3775. position:absolute;
  3776. left:0px;
  3777. top:0px;
  3778. width:174px;
  3779. height:35px;
  3780. }
  3781. #u41804 {
  3782. border-width:0px;
  3783. position:absolute;
  3784. left:0px;
  3785. top:332px;
  3786. width:174px;
  3787. height:35px;
  3788. display:flex;
  3789. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3790. font-weight:400;
  3791. font-style:normal;
  3792. font-size:12px;
  3793. color:#606266;
  3794. }
  3795. #u41804 .text {
  3796. position:absolute;
  3797. align-self:center;
  3798. padding:2px 2px 2px 0px;
  3799. box-sizing:border-box;
  3800. width:100%;
  3801. }
  3802. #u41804_text {
  3803. border-width:0px;
  3804. word-wrap:break-word;
  3805. text-transform:none;
  3806. visibility:hidden;
  3807. }
  3808. #u41805_img {
  3809. border-width:0px;
  3810. position:absolute;
  3811. left:0px;
  3812. top:0px;
  3813. width:174px;
  3814. height:35px;
  3815. }
  3816. #u41805 {
  3817. border-width:0px;
  3818. position:absolute;
  3819. left:174px;
  3820. top:332px;
  3821. width:174px;
  3822. height:35px;
  3823. display:flex;
  3824. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3825. font-weight:400;
  3826. font-style:normal;
  3827. font-size:12px;
  3828. color:#606266;
  3829. }
  3830. #u41805 .text {
  3831. position:absolute;
  3832. align-self:center;
  3833. padding:2px 2px 2px 0px;
  3834. box-sizing:border-box;
  3835. width:100%;
  3836. }
  3837. #u41805_text {
  3838. border-width:0px;
  3839. word-wrap:break-word;
  3840. text-transform:none;
  3841. visibility:hidden;
  3842. }
  3843. #u41806_img {
  3844. border-width:0px;
  3845. position:absolute;
  3846. left:0px;
  3847. top:0px;
  3848. width:174px;
  3849. height:35px;
  3850. }
  3851. #u41806 {
  3852. border-width:0px;
  3853. position:absolute;
  3854. left:348px;
  3855. top:332px;
  3856. width:174px;
  3857. height:35px;
  3858. display:flex;
  3859. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3860. font-weight:400;
  3861. font-style:normal;
  3862. font-size:12px;
  3863. color:#606266;
  3864. }
  3865. #u41806 .text {
  3866. position:absolute;
  3867. align-self:center;
  3868. padding:2px 2px 2px 0px;
  3869. box-sizing:border-box;
  3870. width:100%;
  3871. }
  3872. #u41806_text {
  3873. border-width:0px;
  3874. word-wrap:break-word;
  3875. text-transform:none;
  3876. visibility:hidden;
  3877. }
  3878. #u41807_img {
  3879. border-width:0px;
  3880. position:absolute;
  3881. left:0px;
  3882. top:0px;
  3883. width:201px;
  3884. height:35px;
  3885. }
  3886. #u41807 {
  3887. border-width:0px;
  3888. position:absolute;
  3889. left:522px;
  3890. top:332px;
  3891. width:201px;
  3892. height:35px;
  3893. display:flex;
  3894. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3895. font-weight:400;
  3896. font-style:normal;
  3897. font-size:12px;
  3898. color:#606266;
  3899. }
  3900. #u41807 .text {
  3901. position:absolute;
  3902. align-self:center;
  3903. padding:2px 2px 2px 0px;
  3904. box-sizing:border-box;
  3905. width:100%;
  3906. }
  3907. #u41807_text {
  3908. border-width:0px;
  3909. word-wrap:break-word;
  3910. text-transform:none;
  3911. visibility:hidden;
  3912. }
  3913. #u41808_img {
  3914. border-width:0px;
  3915. position:absolute;
  3916. left:0px;
  3917. top:0px;
  3918. width:201px;
  3919. height:35px;
  3920. }
  3921. #u41808 {
  3922. border-width:0px;
  3923. position:absolute;
  3924. left:723px;
  3925. top:332px;
  3926. width:201px;
  3927. height:35px;
  3928. display:flex;
  3929. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3930. font-weight:400;
  3931. font-style:normal;
  3932. font-size:12px;
  3933. color:#606266;
  3934. }
  3935. #u41808 .text {
  3936. position:absolute;
  3937. align-self:center;
  3938. padding:2px 2px 2px 0px;
  3939. box-sizing:border-box;
  3940. width:100%;
  3941. }
  3942. #u41808_text {
  3943. border-width:0px;
  3944. word-wrap:break-word;
  3945. text-transform:none;
  3946. visibility:hidden;
  3947. }
  3948. #u41809_img {
  3949. border-width:0px;
  3950. position:absolute;
  3951. left:0px;
  3952. top:0px;
  3953. width:172px;
  3954. height:35px;
  3955. }
  3956. #u41809 {
  3957. border-width:0px;
  3958. position:absolute;
  3959. left:924px;
  3960. top:332px;
  3961. width:172px;
  3962. height:35px;
  3963. display:flex;
  3964. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3965. font-weight:400;
  3966. font-style:normal;
  3967. font-size:12px;
  3968. color:#606266;
  3969. }
  3970. #u41809 .text {
  3971. position:absolute;
  3972. align-self:center;
  3973. padding:2px 2px 2px 0px;
  3974. box-sizing:border-box;
  3975. width:100%;
  3976. }
  3977. #u41809_text {
  3978. border-width:0px;
  3979. word-wrap:break-word;
  3980. text-transform:none;
  3981. visibility:hidden;
  3982. }
  3983. #u41810_img {
  3984. border-width:0px;
  3985. position:absolute;
  3986. left:0px;
  3987. top:0px;
  3988. width:127px;
  3989. height:35px;
  3990. }
  3991. #u41810 {
  3992. border-width:0px;
  3993. position:absolute;
  3994. left:1096px;
  3995. top:332px;
  3996. width:127px;
  3997. height:35px;
  3998. display:flex;
  3999. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4000. font-weight:400;
  4001. font-style:normal;
  4002. font-size:12px;
  4003. color:#606266;
  4004. }
  4005. #u41810 .text {
  4006. position:absolute;
  4007. align-self:center;
  4008. padding:2px 2px 2px 0px;
  4009. box-sizing:border-box;
  4010. width:100%;
  4011. }
  4012. #u41810_text {
  4013. border-width:0px;
  4014. word-wrap:break-word;
  4015. text-transform:none;
  4016. visibility:hidden;
  4017. }
  4018. #u41811_img {
  4019. border-width:0px;
  4020. position:absolute;
  4021. left:0px;
  4022. top:0px;
  4023. width:174px;
  4024. height:35px;
  4025. }
  4026. #u41811 {
  4027. border-width:0px;
  4028. position:absolute;
  4029. left:0px;
  4030. top:367px;
  4031. width:174px;
  4032. height:35px;
  4033. display:flex;
  4034. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4035. font-weight:400;
  4036. font-style:normal;
  4037. font-size:12px;
  4038. color:#606266;
  4039. }
  4040. #u41811 .text {
  4041. position:absolute;
  4042. align-self:center;
  4043. padding:2px 2px 2px 0px;
  4044. box-sizing:border-box;
  4045. width:100%;
  4046. }
  4047. #u41811_text {
  4048. border-width:0px;
  4049. word-wrap:break-word;
  4050. text-transform:none;
  4051. visibility:hidden;
  4052. }
  4053. #u41812_img {
  4054. border-width:0px;
  4055. position:absolute;
  4056. left:0px;
  4057. top:0px;
  4058. width:174px;
  4059. height:35px;
  4060. }
  4061. #u41812 {
  4062. border-width:0px;
  4063. position:absolute;
  4064. left:174px;
  4065. top:367px;
  4066. width:174px;
  4067. height:35px;
  4068. display:flex;
  4069. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4070. font-weight:400;
  4071. font-style:normal;
  4072. font-size:12px;
  4073. color:#606266;
  4074. }
  4075. #u41812 .text {
  4076. position:absolute;
  4077. align-self:center;
  4078. padding:2px 2px 2px 0px;
  4079. box-sizing:border-box;
  4080. width:100%;
  4081. }
  4082. #u41812_text {
  4083. border-width:0px;
  4084. word-wrap:break-word;
  4085. text-transform:none;
  4086. visibility:hidden;
  4087. }
  4088. #u41813_img {
  4089. border-width:0px;
  4090. position:absolute;
  4091. left:0px;
  4092. top:0px;
  4093. width:174px;
  4094. height:35px;
  4095. }
  4096. #u41813 {
  4097. border-width:0px;
  4098. position:absolute;
  4099. left:348px;
  4100. top:367px;
  4101. width:174px;
  4102. height:35px;
  4103. display:flex;
  4104. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4105. font-weight:400;
  4106. font-style:normal;
  4107. font-size:12px;
  4108. color:#606266;
  4109. }
  4110. #u41813 .text {
  4111. position:absolute;
  4112. align-self:center;
  4113. padding:2px 2px 2px 0px;
  4114. box-sizing:border-box;
  4115. width:100%;
  4116. }
  4117. #u41813_text {
  4118. border-width:0px;
  4119. word-wrap:break-word;
  4120. text-transform:none;
  4121. visibility:hidden;
  4122. }
  4123. #u41814_img {
  4124. border-width:0px;
  4125. position:absolute;
  4126. left:0px;
  4127. top:0px;
  4128. width:201px;
  4129. height:35px;
  4130. }
  4131. #u41814 {
  4132. border-width:0px;
  4133. position:absolute;
  4134. left:522px;
  4135. top:367px;
  4136. width:201px;
  4137. height:35px;
  4138. display:flex;
  4139. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4140. font-weight:400;
  4141. font-style:normal;
  4142. font-size:12px;
  4143. color:#606266;
  4144. }
  4145. #u41814 .text {
  4146. position:absolute;
  4147. align-self:center;
  4148. padding:2px 2px 2px 0px;
  4149. box-sizing:border-box;
  4150. width:100%;
  4151. }
  4152. #u41814_text {
  4153. border-width:0px;
  4154. word-wrap:break-word;
  4155. text-transform:none;
  4156. visibility:hidden;
  4157. }
  4158. #u41815_img {
  4159. border-width:0px;
  4160. position:absolute;
  4161. left:0px;
  4162. top:0px;
  4163. width:201px;
  4164. height:35px;
  4165. }
  4166. #u41815 {
  4167. border-width:0px;
  4168. position:absolute;
  4169. left:723px;
  4170. top:367px;
  4171. width:201px;
  4172. height:35px;
  4173. display:flex;
  4174. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4175. font-weight:400;
  4176. font-style:normal;
  4177. font-size:12px;
  4178. color:#606266;
  4179. }
  4180. #u41815 .text {
  4181. position:absolute;
  4182. align-self:center;
  4183. padding:2px 2px 2px 0px;
  4184. box-sizing:border-box;
  4185. width:100%;
  4186. }
  4187. #u41815_text {
  4188. border-width:0px;
  4189. word-wrap:break-word;
  4190. text-transform:none;
  4191. visibility:hidden;
  4192. }
  4193. #u41816_img {
  4194. border-width:0px;
  4195. position:absolute;
  4196. left:0px;
  4197. top:0px;
  4198. width:172px;
  4199. height:35px;
  4200. }
  4201. #u41816 {
  4202. border-width:0px;
  4203. position:absolute;
  4204. left:924px;
  4205. top:367px;
  4206. width:172px;
  4207. height:35px;
  4208. display:flex;
  4209. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4210. font-weight:400;
  4211. font-style:normal;
  4212. font-size:12px;
  4213. color:#606266;
  4214. }
  4215. #u41816 .text {
  4216. position:absolute;
  4217. align-self:center;
  4218. padding:2px 2px 2px 0px;
  4219. box-sizing:border-box;
  4220. width:100%;
  4221. }
  4222. #u41816_text {
  4223. border-width:0px;
  4224. word-wrap:break-word;
  4225. text-transform:none;
  4226. visibility:hidden;
  4227. }
  4228. #u41817_img {
  4229. border-width:0px;
  4230. position:absolute;
  4231. left:0px;
  4232. top:0px;
  4233. width:127px;
  4234. height:35px;
  4235. }
  4236. #u41817 {
  4237. border-width:0px;
  4238. position:absolute;
  4239. left:1096px;
  4240. top:367px;
  4241. width:127px;
  4242. height:35px;
  4243. display:flex;
  4244. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4245. font-weight:400;
  4246. font-style:normal;
  4247. font-size:12px;
  4248. color:#606266;
  4249. }
  4250. #u41817 .text {
  4251. position:absolute;
  4252. align-self:center;
  4253. padding:2px 2px 2px 0px;
  4254. box-sizing:border-box;
  4255. width:100%;
  4256. }
  4257. #u41817_text {
  4258. border-width:0px;
  4259. word-wrap:break-word;
  4260. text-transform:none;
  4261. visibility:hidden;
  4262. }
  4263. #u41818_img {
  4264. border-width:0px;
  4265. position:absolute;
  4266. left:0px;
  4267. top:0px;
  4268. width:174px;
  4269. height:32px;
  4270. }
  4271. #u41818 {
  4272. border-width:0px;
  4273. position:absolute;
  4274. left:0px;
  4275. top:402px;
  4276. width:174px;
  4277. height:32px;
  4278. display:flex;
  4279. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4280. font-weight:400;
  4281. font-style:normal;
  4282. font-size:12px;
  4283. color:#606266;
  4284. }
  4285. #u41818 .text {
  4286. position:absolute;
  4287. align-self:center;
  4288. padding:2px 2px 2px 0px;
  4289. box-sizing:border-box;
  4290. width:100%;
  4291. }
  4292. #u41818_text {
  4293. border-width:0px;
  4294. word-wrap:break-word;
  4295. text-transform:none;
  4296. visibility:hidden;
  4297. }
  4298. #u41819_img {
  4299. border-width:0px;
  4300. position:absolute;
  4301. left:0px;
  4302. top:0px;
  4303. width:174px;
  4304. height:32px;
  4305. }
  4306. #u41819 {
  4307. border-width:0px;
  4308. position:absolute;
  4309. left:174px;
  4310. top:402px;
  4311. width:174px;
  4312. height:32px;
  4313. display:flex;
  4314. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4315. font-weight:400;
  4316. font-style:normal;
  4317. font-size:12px;
  4318. color:#606266;
  4319. }
  4320. #u41819 .text {
  4321. position:absolute;
  4322. align-self:center;
  4323. padding:2px 2px 2px 0px;
  4324. box-sizing:border-box;
  4325. width:100%;
  4326. }
  4327. #u41819_text {
  4328. border-width:0px;
  4329. word-wrap:break-word;
  4330. text-transform:none;
  4331. visibility:hidden;
  4332. }
  4333. #u41820_img {
  4334. border-width:0px;
  4335. position:absolute;
  4336. left:0px;
  4337. top:0px;
  4338. width:174px;
  4339. height:32px;
  4340. }
  4341. #u41820 {
  4342. border-width:0px;
  4343. position:absolute;
  4344. left:348px;
  4345. top:402px;
  4346. width:174px;
  4347. height:32px;
  4348. display:flex;
  4349. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4350. font-weight:400;
  4351. font-style:normal;
  4352. font-size:12px;
  4353. color:#606266;
  4354. }
  4355. #u41820 .text {
  4356. position:absolute;
  4357. align-self:center;
  4358. padding:2px 2px 2px 0px;
  4359. box-sizing:border-box;
  4360. width:100%;
  4361. }
  4362. #u41820_text {
  4363. border-width:0px;
  4364. word-wrap:break-word;
  4365. text-transform:none;
  4366. visibility:hidden;
  4367. }
  4368. #u41821_img {
  4369. border-width:0px;
  4370. position:absolute;
  4371. left:0px;
  4372. top:0px;
  4373. width:201px;
  4374. height:32px;
  4375. }
  4376. #u41821 {
  4377. border-width:0px;
  4378. position:absolute;
  4379. left:522px;
  4380. top:402px;
  4381. width:201px;
  4382. height:32px;
  4383. display:flex;
  4384. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4385. font-weight:400;
  4386. font-style:normal;
  4387. font-size:12px;
  4388. color:#606266;
  4389. }
  4390. #u41821 .text {
  4391. position:absolute;
  4392. align-self:center;
  4393. padding:2px 2px 2px 0px;
  4394. box-sizing:border-box;
  4395. width:100%;
  4396. }
  4397. #u41821_text {
  4398. border-width:0px;
  4399. word-wrap:break-word;
  4400. text-transform:none;
  4401. visibility:hidden;
  4402. }
  4403. #u41822_img {
  4404. border-width:0px;
  4405. position:absolute;
  4406. left:0px;
  4407. top:0px;
  4408. width:201px;
  4409. height:32px;
  4410. }
  4411. #u41822 {
  4412. border-width:0px;
  4413. position:absolute;
  4414. left:723px;
  4415. top:402px;
  4416. width:201px;
  4417. height:32px;
  4418. display:flex;
  4419. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4420. font-weight:400;
  4421. font-style:normal;
  4422. font-size:12px;
  4423. color:#606266;
  4424. }
  4425. #u41822 .text {
  4426. position:absolute;
  4427. align-self:center;
  4428. padding:2px 2px 2px 0px;
  4429. box-sizing:border-box;
  4430. width:100%;
  4431. }
  4432. #u41822_text {
  4433. border-width:0px;
  4434. word-wrap:break-word;
  4435. text-transform:none;
  4436. visibility:hidden;
  4437. }
  4438. #u41823_img {
  4439. border-width:0px;
  4440. position:absolute;
  4441. left:0px;
  4442. top:0px;
  4443. width:172px;
  4444. height:32px;
  4445. }
  4446. #u41823 {
  4447. border-width:0px;
  4448. position:absolute;
  4449. left:924px;
  4450. top:402px;
  4451. width:172px;
  4452. height:32px;
  4453. display:flex;
  4454. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4455. font-weight:400;
  4456. font-style:normal;
  4457. font-size:12px;
  4458. color:#606266;
  4459. }
  4460. #u41823 .text {
  4461. position:absolute;
  4462. align-self:center;
  4463. padding:2px 2px 2px 0px;
  4464. box-sizing:border-box;
  4465. width:100%;
  4466. }
  4467. #u41823_text {
  4468. border-width:0px;
  4469. word-wrap:break-word;
  4470. text-transform:none;
  4471. visibility:hidden;
  4472. }
  4473. #u41824_img {
  4474. border-width:0px;
  4475. position:absolute;
  4476. left:0px;
  4477. top:0px;
  4478. width:127px;
  4479. height:32px;
  4480. }
  4481. #u41824 {
  4482. border-width:0px;
  4483. position:absolute;
  4484. left:1096px;
  4485. top:402px;
  4486. width:127px;
  4487. height:32px;
  4488. display:flex;
  4489. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4490. font-weight:400;
  4491. font-style:normal;
  4492. font-size:12px;
  4493. color:#606266;
  4494. }
  4495. #u41824 .text {
  4496. position:absolute;
  4497. align-self:center;
  4498. padding:2px 2px 2px 0px;
  4499. box-sizing:border-box;
  4500. width:100%;
  4501. }
  4502. #u41824_text {
  4503. border-width:0px;
  4504. word-wrap:break-word;
  4505. text-transform:none;
  4506. visibility:hidden;
  4507. }
  4508. #u41825 {
  4509. border-width:0px;
  4510. position:absolute;
  4511. left:0px;
  4512. top:0px;
  4513. width:0px;
  4514. height:0px;
  4515. }
  4516. #u41826_div {
  4517. border-width:0px;
  4518. position:absolute;
  4519. left:0px;
  4520. top:0px;
  4521. width:59px;
  4522. height:30px;
  4523. background:inherit;
  4524. background-color:rgba(41, 143, 255, 1);
  4525. border:none;
  4526. border-radius:4px;
  4527. -moz-box-shadow:none;
  4528. -webkit-box-shadow:none;
  4529. box-shadow:none;
  4530. font-family:'Microsoft YaHei', sans-serif;
  4531. font-weight:400;
  4532. font-style:normal;
  4533. font-size:14px;
  4534. color:#FFFFFF;
  4535. }
  4536. #u41826 {
  4537. border-width:0px;
  4538. position:absolute;
  4539. left:1099px;
  4540. top:110px;
  4541. width:59px;
  4542. height:30px;
  4543. display:flex;
  4544. font-family:'Microsoft YaHei', sans-serif;
  4545. font-weight:400;
  4546. font-style:normal;
  4547. font-size:14px;
  4548. color:#FFFFFF;
  4549. }
  4550. #u41826 .text {
  4551. position:absolute;
  4552. align-self:center;
  4553. padding:5px 15px 5px 15px;
  4554. box-sizing:border-box;
  4555. width:100%;
  4556. }
  4557. #u41826_text {
  4558. border-width:0px;
  4559. white-space:nowrap;
  4560. text-transform:none;
  4561. }
  4562. #u41827_div {
  4563. border-width:0px;
  4564. position:absolute;
  4565. left:0px;
  4566. top:0px;
  4567. width:55px;
  4568. height:30px;
  4569. background:inherit;
  4570. background-color:rgba(255, 255, 255, 1);
  4571. box-sizing:border-box;
  4572. border-width:1px;
  4573. border-style:solid;
  4574. border-color:rgba(170, 170, 170, 1);
  4575. border-radius:4px;
  4576. -moz-box-shadow:none;
  4577. -webkit-box-shadow:none;
  4578. box-shadow:none;
  4579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4580. font-weight:400;
  4581. font-style:normal;
  4582. font-size:12px;
  4583. color:#555555;
  4584. }
  4585. #u41827 {
  4586. border-width:0px;
  4587. position:absolute;
  4588. left:1168px;
  4589. top:110px;
  4590. width:55px;
  4591. height:30px;
  4592. display:flex;
  4593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4594. font-weight:400;
  4595. font-style:normal;
  4596. font-size:12px;
  4597. color:#555555;
  4598. }
  4599. #u41827 .text {
  4600. position:absolute;
  4601. align-self:center;
  4602. padding:5px 15px 5px 15px;
  4603. box-sizing:border-box;
  4604. width:100%;
  4605. }
  4606. #u41827_text {
  4607. border-width:0px;
  4608. white-space:nowrap;
  4609. text-transform:none;
  4610. }
  4611. #u41828_div {
  4612. border-width:0px;
  4613. position:absolute;
  4614. left:0px;
  4615. top:0px;
  4616. width:79px;
  4617. height:30px;
  4618. background:inherit;
  4619. background-color:rgba(24, 144, 255, 1);
  4620. border:none;
  4621. border-radius:4px;
  4622. -moz-box-shadow:none;
  4623. -webkit-box-shadow:none;
  4624. box-shadow:none;
  4625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4626. font-weight:400;
  4627. font-style:normal;
  4628. font-size:12px;
  4629. color:#FFFFFF;
  4630. }
  4631. #u41828 {
  4632. border-width:0px;
  4633. position:absolute;
  4634. left:349px;
  4635. top:160px;
  4636. width:79px;
  4637. height:30px;
  4638. display:flex;
  4639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4640. font-weight:400;
  4641. font-style:normal;
  4642. font-size:12px;
  4643. color:#FFFFFF;
  4644. }
  4645. #u41828 .text {
  4646. position:absolute;
  4647. align-self:center;
  4648. padding:5px 15px 5px 15px;
  4649. box-sizing:border-box;
  4650. width:100%;
  4651. }
  4652. #u41828_text {
  4653. border-width:0px;
  4654. white-space:nowrap;
  4655. text-transform:none;
  4656. }
  4657. #u41829 {
  4658. border-width:0px;
  4659. position:absolute;
  4660. left:0px;
  4661. top:0px;
  4662. width:0px;
  4663. height:0px;
  4664. }
  4665. #u41830_div {
  4666. border-width:0px;
  4667. position:absolute;
  4668. left:0px;
  4669. top:0px;
  4670. width:140px;
  4671. height:30px;
  4672. background:inherit;
  4673. background-color:rgba(255, 255, 255, 1);
  4674. box-sizing:border-box;
  4675. border-width:1px;
  4676. border-style:solid;
  4677. border-color:rgba(201, 201, 201, 1);
  4678. border-radius:4px;
  4679. -moz-box-shadow:none;
  4680. -webkit-box-shadow:none;
  4681. box-shadow:none;
  4682. font-family:'Microsoft YaHei', sans-serif;
  4683. font-weight:400;
  4684. font-style:normal;
  4685. font-size:14px;
  4686. color:#CCCCCC;
  4687. text-align:left;
  4688. }
  4689. #u41830 {
  4690. border-width:0px;
  4691. position:absolute;
  4692. left:349px;
  4693. top:110px;
  4694. width:140px;
  4695. height:30px;
  4696. display:flex;
  4697. font-family:'Microsoft YaHei', sans-serif;
  4698. font-weight:400;
  4699. font-style:normal;
  4700. font-size:14px;
  4701. color:#CCCCCC;
  4702. text-align:left;
  4703. }
  4704. #u41830 .text {
  4705. position:absolute;
  4706. align-self:center;
  4707. padding:2px 8px 2px 8px;
  4708. box-sizing:border-box;
  4709. width:100%;
  4710. }
  4711. #u41830_text {
  4712. border-width:0px;
  4713. word-wrap:break-word;
  4714. text-transform:none;
  4715. visibility:hidden;
  4716. }
  4717. #u41831_input {
  4718. position:absolute;
  4719. left:0px;
  4720. top:0px;
  4721. width:127px;
  4722. height:25px;
  4723. padding:2px 2px 2px 2px;
  4724. font-family:'Microsoft YaHei', sans-serif;
  4725. font-weight:400;
  4726. font-style:normal;
  4727. font-size:10px;
  4728. letter-spacing:normal;
  4729. color:#000000;
  4730. vertical-align:none;
  4731. text-align:left;
  4732. text-transform:none;
  4733. background-color:transparent;
  4734. border-color:transparent;
  4735. }
  4736. #u41831_input.disabled {
  4737. position:absolute;
  4738. left:0px;
  4739. top:0px;
  4740. width:127px;
  4741. height:25px;
  4742. padding:2px 2px 2px 2px;
  4743. font-family:'Microsoft YaHei', sans-serif;
  4744. font-weight:400;
  4745. font-style:normal;
  4746. font-size:10px;
  4747. letter-spacing:normal;
  4748. color:#000000;
  4749. vertical-align:none;
  4750. text-align:left;
  4751. text-transform:none;
  4752. background-color:transparent;
  4753. border-color:transparent;
  4754. }
  4755. #u41831_div {
  4756. border-width:0px;
  4757. position:absolute;
  4758. left:0px;
  4759. top:0px;
  4760. width:127px;
  4761. height:25px;
  4762. background:inherit;
  4763. background-color:rgba(255, 255, 255, 1);
  4764. border:none;
  4765. border-radius:0px;
  4766. -moz-box-shadow:none;
  4767. -webkit-box-shadow:none;
  4768. box-shadow:none;
  4769. font-family:'Microsoft YaHei', sans-serif;
  4770. font-weight:400;
  4771. font-style:normal;
  4772. font-size:10px;
  4773. }
  4774. #u41831 {
  4775. border-width:0px;
  4776. position:absolute;
  4777. left:357px;
  4778. top:111px;
  4779. width:127px;
  4780. height:25px;
  4781. display:flex;
  4782. font-family:'Microsoft YaHei', sans-serif;
  4783. font-weight:400;
  4784. font-style:normal;
  4785. font-size:10px;
  4786. }
  4787. #u41831 .text {
  4788. position:absolute;
  4789. align-self:center;
  4790. padding:2px 2px 2px 2px;
  4791. box-sizing:border-box;
  4792. width:100%;
  4793. }
  4794. #u41831_div.disabled {
  4795. border-width:0px;
  4796. position:absolute;
  4797. left:0px;
  4798. top:0px;
  4799. width:127px;
  4800. height:25px;
  4801. background:inherit;
  4802. background-color:rgba(240, 240, 240, 1);
  4803. border:none;
  4804. border-radius:0px;
  4805. -moz-box-shadow:none;
  4806. -webkit-box-shadow:none;
  4807. box-shadow:none;
  4808. font-family:'Microsoft YaHei', sans-serif;
  4809. font-weight:400;
  4810. font-style:normal;
  4811. font-size:10px;
  4812. }
  4813. #u41831.disabled {
  4814. }
  4815. #u41832 {
  4816. border-width:0px;
  4817. position:absolute;
  4818. left:0px;
  4819. top:0px;
  4820. width:0px;
  4821. height:0px;
  4822. }
  4823. #u41833_div {
  4824. border-width:0px;
  4825. position:absolute;
  4826. left:0px;
  4827. top:0px;
  4828. width:140px;
  4829. height:30px;
  4830. background:inherit;
  4831. background-color:rgba(255, 255, 255, 1);
  4832. box-sizing:border-box;
  4833. border-width:1px;
  4834. border-style:solid;
  4835. border-color:rgba(215, 215, 215, 1);
  4836. border-radius:4px;
  4837. -moz-box-shadow:none;
  4838. -webkit-box-shadow:none;
  4839. box-shadow:none;
  4840. font-size:11px;
  4841. }
  4842. #u41833 {
  4843. border-width:0px;
  4844. position:absolute;
  4845. left:499px;
  4846. top:110px;
  4847. width:140px;
  4848. height:30px;
  4849. display:flex;
  4850. font-size:11px;
  4851. }
  4852. #u41833 .text {
  4853. position:absolute;
  4854. align-self:center;
  4855. padding:2px 2px 2px 2px;
  4856. box-sizing:border-box;
  4857. width:100%;
  4858. }
  4859. #u41833_text {
  4860. border-width:0px;
  4861. word-wrap:break-word;
  4862. text-transform:none;
  4863. visibility:hidden;
  4864. }
  4865. #u41834_input {
  4866. position:absolute;
  4867. left:0px;
  4868. top:0px;
  4869. width:120px;
  4870. height:23px;
  4871. padding:2px 2px 2px 2px;
  4872. font-family:'ArialMT', 'Arial', sans-serif;
  4873. font-weight:400;
  4874. font-style:normal;
  4875. font-size:11px;
  4876. letter-spacing:normal;
  4877. color:#AAAAAA;
  4878. vertical-align:none;
  4879. text-align:left;
  4880. text-transform:none;
  4881. background-color:transparent;
  4882. border-color:transparent;
  4883. }
  4884. #u41834_input.disabled {
  4885. position:absolute;
  4886. left:0px;
  4887. top:0px;
  4888. width:120px;
  4889. height:23px;
  4890. padding:2px 2px 2px 2px;
  4891. font-family:'ArialMT', 'Arial', sans-serif;
  4892. font-weight:400;
  4893. font-style:normal;
  4894. font-size:11px;
  4895. letter-spacing:normal;
  4896. color:#AAAAAA;
  4897. vertical-align:none;
  4898. text-align:left;
  4899. text-transform:none;
  4900. background-color:transparent;
  4901. border-color:transparent;
  4902. }
  4903. #u41834_div {
  4904. border-width:0px;
  4905. position:absolute;
  4906. left:0px;
  4907. top:0px;
  4908. width:120px;
  4909. height:23px;
  4910. background:inherit;
  4911. background-color:rgba(255, 255, 255, 1);
  4912. border:none;
  4913. border-radius:0px;
  4914. -moz-box-shadow:none;
  4915. -webkit-box-shadow:none;
  4916. box-shadow:none;
  4917. font-size:11px;
  4918. color:#AAAAAA;
  4919. }
  4920. #u41834 {
  4921. border-width:0px;
  4922. position:absolute;
  4923. left:506px;
  4924. top:112px;
  4925. width:120px;
  4926. height:23px;
  4927. display:flex;
  4928. font-size:11px;
  4929. color:#AAAAAA;
  4930. }
  4931. #u41834 .text {
  4932. position:absolute;
  4933. align-self:flex-start;
  4934. padding:2px 2px 2px 2px;
  4935. box-sizing:border-box;
  4936. width:100%;
  4937. }
  4938. #u41834_div.disabled {
  4939. border-width:0px;
  4940. position:absolute;
  4941. left:0px;
  4942. top:0px;
  4943. width:120px;
  4944. height:23px;
  4945. background:inherit;
  4946. background-color:rgba(240, 240, 240, 1);
  4947. border:none;
  4948. border-radius:0px;
  4949. -moz-box-shadow:none;
  4950. -webkit-box-shadow:none;
  4951. box-shadow:none;
  4952. font-size:11px;
  4953. color:#AAAAAA;
  4954. }
  4955. #u41834.disabled {
  4956. }
  4957. .u41834_input_option {
  4958. font-size:11px;
  4959. }
  4960. #u41835 {
  4961. border-width:0px;
  4962. position:absolute;
  4963. left:0px;
  4964. top:0px;
  4965. width:0px;
  4966. height:0px;
  4967. }
  4968. #u41836_div {
  4969. border-width:0px;
  4970. position:absolute;
  4971. left:0px;
  4972. top:0px;
  4973. width:140px;
  4974. height:30px;
  4975. background:inherit;
  4976. background-color:rgba(255, 255, 255, 1);
  4977. box-sizing:border-box;
  4978. border-width:1px;
  4979. border-style:solid;
  4980. border-color:rgba(215, 215, 215, 1);
  4981. border-radius:4px;
  4982. -moz-box-shadow:none;
  4983. -webkit-box-shadow:none;
  4984. box-shadow:none;
  4985. font-size:11px;
  4986. }
  4987. #u41836 {
  4988. border-width:0px;
  4989. position:absolute;
  4990. left:649px;
  4991. top:110px;
  4992. width:140px;
  4993. height:30px;
  4994. display:flex;
  4995. font-size:11px;
  4996. }
  4997. #u41836 .text {
  4998. position:absolute;
  4999. align-self:center;
  5000. padding:2px 2px 2px 2px;
  5001. box-sizing:border-box;
  5002. width:100%;
  5003. }
  5004. #u41836_text {
  5005. border-width:0px;
  5006. word-wrap:break-word;
  5007. text-transform:none;
  5008. visibility:hidden;
  5009. }
  5010. #u41837_input {
  5011. position:absolute;
  5012. left:0px;
  5013. top:0px;
  5014. width:120px;
  5015. height:23px;
  5016. padding:2px 2px 2px 2px;
  5017. font-family:'ArialMT', 'Arial', sans-serif;
  5018. font-weight:400;
  5019. font-style:normal;
  5020. font-size:11px;
  5021. letter-spacing:normal;
  5022. color:#AAAAAA;
  5023. vertical-align:none;
  5024. text-align:left;
  5025. text-transform:none;
  5026. background-color:transparent;
  5027. border-color:transparent;
  5028. }
  5029. #u41837_input.disabled {
  5030. position:absolute;
  5031. left:0px;
  5032. top:0px;
  5033. width:120px;
  5034. height:23px;
  5035. padding:2px 2px 2px 2px;
  5036. font-family:'ArialMT', 'Arial', sans-serif;
  5037. font-weight:400;
  5038. font-style:normal;
  5039. font-size:11px;
  5040. letter-spacing:normal;
  5041. color:#AAAAAA;
  5042. vertical-align:none;
  5043. text-align:left;
  5044. text-transform:none;
  5045. background-color:transparent;
  5046. border-color:transparent;
  5047. }
  5048. #u41837_div {
  5049. border-width:0px;
  5050. position:absolute;
  5051. left:0px;
  5052. top:0px;
  5053. width:120px;
  5054. height:23px;
  5055. background:inherit;
  5056. background-color:rgba(255, 255, 255, 1);
  5057. border:none;
  5058. border-radius:0px;
  5059. -moz-box-shadow:none;
  5060. -webkit-box-shadow:none;
  5061. box-shadow:none;
  5062. font-size:11px;
  5063. color:#AAAAAA;
  5064. }
  5065. #u41837 {
  5066. border-width:0px;
  5067. position:absolute;
  5068. left:656px;
  5069. top:112px;
  5070. width:120px;
  5071. height:23px;
  5072. display:flex;
  5073. font-size:11px;
  5074. color:#AAAAAA;
  5075. }
  5076. #u41837 .text {
  5077. position:absolute;
  5078. align-self:flex-start;
  5079. padding:2px 2px 2px 2px;
  5080. box-sizing:border-box;
  5081. width:100%;
  5082. }
  5083. #u41837_div.disabled {
  5084. border-width:0px;
  5085. position:absolute;
  5086. left:0px;
  5087. top:0px;
  5088. width:120px;
  5089. height:23px;
  5090. background:inherit;
  5091. background-color:rgba(240, 240, 240, 1);
  5092. border:none;
  5093. border-radius:0px;
  5094. -moz-box-shadow:none;
  5095. -webkit-box-shadow:none;
  5096. box-shadow:none;
  5097. font-size:11px;
  5098. color:#AAAAAA;
  5099. }
  5100. #u41837.disabled {
  5101. }
  5102. .u41837_input_option {
  5103. font-size:11px;
  5104. }
  5105. #u41838_div {
  5106. border-width:0px;
  5107. position:absolute;
  5108. left:0px;
  5109. top:0px;
  5110. width:73px;
  5111. height:50px;
  5112. background:inherit;
  5113. background-color:rgba(255, 255, 255, 0);
  5114. border:none;
  5115. border-left:0px;
  5116. border-top:0px;
  5117. border-right:0px;
  5118. border-radius:0px;
  5119. border-bottom-right-radius:0px;
  5120. border-bottom-left-radius:0px;
  5121. -moz-box-shadow:none;
  5122. -webkit-box-shadow:none;
  5123. box-shadow:none;
  5124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5125. font-weight:400;
  5126. font-style:normal;
  5127. font-size:18px;
  5128. }
  5129. #u41838 {
  5130. border-width:0px;
  5131. position:absolute;
  5132. left:348px;
  5133. top:50px;
  5134. width:73px;
  5135. height:50px;
  5136. display:flex;
  5137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5138. font-weight:400;
  5139. font-style:normal;
  5140. font-size:18px;
  5141. }
  5142. #u41838 .text {
  5143. position:absolute;
  5144. align-self:center;
  5145. padding:0px 0px 0px 0px;
  5146. box-sizing:border-box;
  5147. width:100%;
  5148. }
  5149. #u41838_text {
  5150. border-width:0px;
  5151. white-space:nowrap;
  5152. text-transform:none;
  5153. }
  5154. #u41839 {
  5155. border-width:0px;
  5156. position:absolute;
  5157. left:0px;
  5158. top:0px;
  5159. width:0px;
  5160. height:0px;
  5161. }
  5162. #u41840_div {
  5163. border-width:0px;
  5164. position:absolute;
  5165. left:0px;
  5166. top:0px;
  5167. width:100px;
  5168. height:100px;
  5169. background:inherit;
  5170. background-color:rgba(255, 255, 255, 1);
  5171. box-sizing:border-box;
  5172. border-width:1px;
  5173. border-style:solid;
  5174. border-color:rgba(242, 242, 242, 1);
  5175. border-radius:4px;
  5176. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5177. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5178. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5180. font-weight:400;
  5181. font-style:normal;
  5182. font-size:14px;
  5183. text-align:left;
  5184. }
  5185. #u41840 {
  5186. border-width:0px;
  5187. position:absolute;
  5188. left:1440px;
  5189. top:272px;
  5190. width:100px;
  5191. height:100px;
  5192. display:flex;
  5193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5194. font-weight:400;
  5195. font-style:normal;
  5196. font-size:14px;
  5197. text-align:left;
  5198. }
  5199. #u41840 .text {
  5200. position:absolute;
  5201. align-self:center;
  5202. padding:2px 2px 2px 2px;
  5203. box-sizing:border-box;
  5204. width:100%;
  5205. }
  5206. #u41840_text {
  5207. border-width:0px;
  5208. word-wrap:break-word;
  5209. text-transform:none;
  5210. visibility:hidden;
  5211. }
  5212. #u41841_div {
  5213. border-width:0px;
  5214. position:absolute;
  5215. left:0px;
  5216. top:0px;
  5217. width:83px;
  5218. height:40px;
  5219. background:inherit;
  5220. background-color:rgba(255, 255, 255, 1);
  5221. border:none;
  5222. border-left:0px;
  5223. border-top:0px;
  5224. border-right:0px;
  5225. border-radius:0px;
  5226. border-bottom-right-radius:0px;
  5227. border-bottom-left-radius:0px;
  5228. -moz-box-shadow:none;
  5229. -webkit-box-shadow:none;
  5230. box-shadow:none;
  5231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5232. font-weight:400;
  5233. font-style:normal;
  5234. font-size:14px;
  5235. color:#D9001B;
  5236. }
  5237. #u41841 {
  5238. border-width:0px;
  5239. position:absolute;
  5240. left:1448px;
  5241. top:322px;
  5242. width:83px;
  5243. height:40px;
  5244. display:flex;
  5245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5246. font-weight:400;
  5247. font-style:normal;
  5248. font-size:14px;
  5249. color:#D9001B;
  5250. }
  5251. #u41841 .text {
  5252. position:absolute;
  5253. align-self:center;
  5254. padding:2px 2px 2px 2px;
  5255. box-sizing:border-box;
  5256. width:100%;
  5257. }
  5258. #u41841_text {
  5259. border-width:0px;
  5260. word-wrap:break-word;
  5261. text-transform:none;
  5262. }
  5263. #u41842_div {
  5264. border-width:0px;
  5265. position:absolute;
  5266. left:0px;
  5267. top:0px;
  5268. width:83px;
  5269. height:40px;
  5270. background:inherit;
  5271. background-color:rgba(255, 255, 255, 1);
  5272. box-sizing:border-box;
  5273. border-width:1px;
  5274. border-style:solid;
  5275. border-color:rgba(215, 215, 215, 1);
  5276. border-left:0px;
  5277. border-top:0px;
  5278. border-right:0px;
  5279. border-radius:0px;
  5280. border-bottom-right-radius:0px;
  5281. border-bottom-left-radius:0px;
  5282. -moz-box-shadow:none;
  5283. -webkit-box-shadow:none;
  5284. box-shadow:none;
  5285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5286. font-weight:400;
  5287. font-style:normal;
  5288. font-size:14px;
  5289. }
  5290. #u41842 {
  5291. border-width:0px;
  5292. position:absolute;
  5293. left:1448px;
  5294. top:282px;
  5295. width:83px;
  5296. height:40px;
  5297. display:flex;
  5298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5299. font-weight:400;
  5300. font-style:normal;
  5301. font-size:14px;
  5302. }
  5303. #u41842 .text {
  5304. position:absolute;
  5305. align-self:center;
  5306. padding:2px 2px 2px 2px;
  5307. box-sizing:border-box;
  5308. width:100%;
  5309. }
  5310. #u41842_text {
  5311. border-width:0px;
  5312. word-wrap:break-word;
  5313. text-transform:none;
  5314. }
  5315. #u41843_div {
  5316. border-width:0px;
  5317. position:absolute;
  5318. left:0px;
  5319. top:0px;
  5320. width:79px;
  5321. height:30px;
  5322. background:inherit;
  5323. background-color:rgba(24, 144, 255, 1);
  5324. border:none;
  5325. border-radius:4px;
  5326. -moz-box-shadow:none;
  5327. -webkit-box-shadow:none;
  5328. box-shadow:none;
  5329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5330. font-weight:400;
  5331. font-style:normal;
  5332. font-size:12px;
  5333. color:#FFFFFF;
  5334. }
  5335. #u41843 {
  5336. border-width:0px;
  5337. position:absolute;
  5338. left:438px;
  5339. top:160px;
  5340. width:79px;
  5341. height:30px;
  5342. display:flex;
  5343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5344. font-weight:400;
  5345. font-style:normal;
  5346. font-size:12px;
  5347. color:#FFFFFF;
  5348. }
  5349. #u41843 .text {
  5350. position:absolute;
  5351. align-self:center;
  5352. padding:5px 15px 5px 15px;
  5353. box-sizing:border-box;
  5354. width:100%;
  5355. }
  5356. #u41843_text {
  5357. border-width:0px;
  5358. white-space:nowrap;
  5359. text-transform:none;
  5360. }
  5361. #u41844 {
  5362. border-width:0px;
  5363. position:absolute;
  5364. left:252px;
  5365. top:-516px;
  5366. width:1340px;
  5367. height:186px;
  5368. }
  5369. #u41845_img {
  5370. border-width:0px;
  5371. position:absolute;
  5372. left:0px;
  5373. top:0px;
  5374. width:33px;
  5375. height:39px;
  5376. }
  5377. #u41845 {
  5378. border-width:0px;
  5379. position:absolute;
  5380. left:0px;
  5381. top:0px;
  5382. width:33px;
  5383. height:39px;
  5384. display:flex;
  5385. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5386. font-weight:400;
  5387. font-style:normal;
  5388. font-size:12px;
  5389. color:#FFFFFF;
  5390. }
  5391. #u41845 .text {
  5392. position:absolute;
  5393. align-self:center;
  5394. padding:2px 2px 2px 0px;
  5395. box-sizing:border-box;
  5396. width:100%;
  5397. }
  5398. #u41845_text {
  5399. border-width:0px;
  5400. word-wrap:break-word;
  5401. text-transform:none;
  5402. }
  5403. #u41846_img {
  5404. border-width:0px;
  5405. position:absolute;
  5406. left:0px;
  5407. top:0px;
  5408. width:33px;
  5409. height:39px;
  5410. }
  5411. #u41846 {
  5412. border-width:0px;
  5413. position:absolute;
  5414. left:33px;
  5415. top:0px;
  5416. width:33px;
  5417. height:39px;
  5418. display:flex;
  5419. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5420. font-weight:400;
  5421. font-style:normal;
  5422. font-size:12px;
  5423. color:#FFFFFF;
  5424. }
  5425. #u41846 .text {
  5426. position:absolute;
  5427. align-self:center;
  5428. padding:2px 2px 2px 0px;
  5429. box-sizing:border-box;
  5430. width:100%;
  5431. }
  5432. #u41846_text {
  5433. border-width:0px;
  5434. word-wrap:break-word;
  5435. text-transform:none;
  5436. visibility:hidden;
  5437. }
  5438. #u41847_img {
  5439. border-width:0px;
  5440. position:absolute;
  5441. left:0px;
  5442. top:0px;
  5443. width:73px;
  5444. height:39px;
  5445. }
  5446. #u41847 {
  5447. border-width:0px;
  5448. position:absolute;
  5449. left:66px;
  5450. top:0px;
  5451. width:73px;
  5452. height:39px;
  5453. display:flex;
  5454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5455. font-weight:400;
  5456. font-style:normal;
  5457. font-size:12px;
  5458. color:#FFFFFF;
  5459. }
  5460. #u41847 .text {
  5461. position:absolute;
  5462. align-self:center;
  5463. padding:2px 2px 2px 0px;
  5464. box-sizing:border-box;
  5465. width:100%;
  5466. }
  5467. #u41847_text {
  5468. border-width:0px;
  5469. word-wrap:break-word;
  5470. text-transform:none;
  5471. }
  5472. #u41848_img {
  5473. border-width:0px;
  5474. position:absolute;
  5475. left:0px;
  5476. top:0px;
  5477. width:73px;
  5478. height:39px;
  5479. }
  5480. #u41848 {
  5481. border-width:0px;
  5482. position:absolute;
  5483. left:139px;
  5484. top:0px;
  5485. width:73px;
  5486. height:39px;
  5487. display:flex;
  5488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5489. font-weight:400;
  5490. font-style:normal;
  5491. font-size:12px;
  5492. color:#FFFFFF;
  5493. }
  5494. #u41848 .text {
  5495. position:absolute;
  5496. align-self:center;
  5497. padding:2px 2px 2px 0px;
  5498. box-sizing:border-box;
  5499. width:100%;
  5500. }
  5501. #u41848_text {
  5502. border-width:0px;
  5503. word-wrap:break-word;
  5504. text-transform:none;
  5505. }
  5506. #u41849_img {
  5507. border-width:0px;
  5508. position:absolute;
  5509. left:0px;
  5510. top:0px;
  5511. width:73px;
  5512. height:39px;
  5513. }
  5514. #u41849 {
  5515. border-width:0px;
  5516. position:absolute;
  5517. left:212px;
  5518. top:0px;
  5519. width:73px;
  5520. height:39px;
  5521. display:flex;
  5522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5523. font-weight:400;
  5524. font-style:normal;
  5525. font-size:12px;
  5526. color:#FFFFFF;
  5527. }
  5528. #u41849 .text {
  5529. position:absolute;
  5530. align-self:center;
  5531. padding:2px 2px 2px 0px;
  5532. box-sizing:border-box;
  5533. width:100%;
  5534. }
  5535. #u41849_text {
  5536. border-width:0px;
  5537. word-wrap:break-word;
  5538. text-transform:none;
  5539. }
  5540. #u41850_img {
  5541. border-width:0px;
  5542. position:absolute;
  5543. left:0px;
  5544. top:0px;
  5545. width:73px;
  5546. height:39px;
  5547. }
  5548. #u41850 {
  5549. border-width:0px;
  5550. position:absolute;
  5551. left:285px;
  5552. top:0px;
  5553. width:73px;
  5554. height:39px;
  5555. display:flex;
  5556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5557. font-weight:400;
  5558. font-style:normal;
  5559. font-size:12px;
  5560. color:#FFFFFF;
  5561. }
  5562. #u41850 .text {
  5563. position:absolute;
  5564. align-self:center;
  5565. padding:2px 2px 2px 0px;
  5566. box-sizing:border-box;
  5567. width:100%;
  5568. }
  5569. #u41850_text {
  5570. border-width:0px;
  5571. word-wrap:break-word;
  5572. text-transform:none;
  5573. }
  5574. #u41851_img {
  5575. border-width:0px;
  5576. position:absolute;
  5577. left:0px;
  5578. top:0px;
  5579. width:73px;
  5580. height:39px;
  5581. }
  5582. #u41851 {
  5583. border-width:0px;
  5584. position:absolute;
  5585. left:358px;
  5586. top:0px;
  5587. width:73px;
  5588. height:39px;
  5589. display:flex;
  5590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5591. font-weight:400;
  5592. font-style:normal;
  5593. font-size:12px;
  5594. color:#FFFFFF;
  5595. }
  5596. #u41851 .text {
  5597. position:absolute;
  5598. align-self:center;
  5599. padding:2px 2px 2px 0px;
  5600. box-sizing:border-box;
  5601. width:100%;
  5602. }
  5603. #u41851_text {
  5604. border-width:0px;
  5605. word-wrap:break-word;
  5606. text-transform:none;
  5607. }
  5608. #u41852_img {
  5609. border-width:0px;
  5610. position:absolute;
  5611. left:0px;
  5612. top:0px;
  5613. width:73px;
  5614. height:39px;
  5615. }
  5616. #u41852 {
  5617. border-width:0px;
  5618. position:absolute;
  5619. left:431px;
  5620. top:0px;
  5621. width:73px;
  5622. height:39px;
  5623. display:flex;
  5624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5625. font-weight:400;
  5626. font-style:normal;
  5627. font-size:12px;
  5628. color:#FFFFFF;
  5629. }
  5630. #u41852 .text {
  5631. position:absolute;
  5632. align-self:center;
  5633. padding:2px 2px 2px 0px;
  5634. box-sizing:border-box;
  5635. width:100%;
  5636. }
  5637. #u41852_text {
  5638. border-width:0px;
  5639. word-wrap:break-word;
  5640. text-transform:none;
  5641. }
  5642. #u41853_img {
  5643. border-width:0px;
  5644. position:absolute;
  5645. left:0px;
  5646. top:0px;
  5647. width:90px;
  5648. height:39px;
  5649. }
  5650. #u41853 {
  5651. border-width:0px;
  5652. position:absolute;
  5653. left:504px;
  5654. top:0px;
  5655. width:90px;
  5656. height:39px;
  5657. display:flex;
  5658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5659. font-weight:400;
  5660. font-style:normal;
  5661. font-size:12px;
  5662. color:#FFFFFF;
  5663. }
  5664. #u41853 .text {
  5665. position:absolute;
  5666. align-self:center;
  5667. padding:2px 2px 2px 0px;
  5668. box-sizing:border-box;
  5669. width:100%;
  5670. }
  5671. #u41853_text {
  5672. border-width:0px;
  5673. word-wrap:break-word;
  5674. text-transform:none;
  5675. }
  5676. #u41854_img {
  5677. border-width:0px;
  5678. position:absolute;
  5679. left:0px;
  5680. top:0px;
  5681. width:73px;
  5682. height:39px;
  5683. }
  5684. #u41854 {
  5685. border-width:0px;
  5686. position:absolute;
  5687. left:594px;
  5688. top:0px;
  5689. width:73px;
  5690. height:39px;
  5691. display:flex;
  5692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5693. font-weight:400;
  5694. font-style:normal;
  5695. font-size:12px;
  5696. color:#FFFFFF;
  5697. }
  5698. #u41854 .text {
  5699. position:absolute;
  5700. align-self:center;
  5701. padding:2px 2px 2px 0px;
  5702. box-sizing:border-box;
  5703. width:100%;
  5704. }
  5705. #u41854_text {
  5706. border-width:0px;
  5707. word-wrap:break-word;
  5708. text-transform:none;
  5709. }
  5710. #u41855_img {
  5711. border-width:0px;
  5712. position:absolute;
  5713. left:0px;
  5714. top:0px;
  5715. width:73px;
  5716. height:39px;
  5717. }
  5718. #u41855 {
  5719. border-width:0px;
  5720. position:absolute;
  5721. left:667px;
  5722. top:0px;
  5723. width:73px;
  5724. height:39px;
  5725. display:flex;
  5726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5727. font-weight:400;
  5728. font-style:normal;
  5729. font-size:12px;
  5730. color:#FFFFFF;
  5731. }
  5732. #u41855 .text {
  5733. position:absolute;
  5734. align-self:center;
  5735. padding:2px 2px 2px 0px;
  5736. box-sizing:border-box;
  5737. width:100%;
  5738. }
  5739. #u41855_text {
  5740. border-width:0px;
  5741. word-wrap:break-word;
  5742. text-transform:none;
  5743. }
  5744. #u41856_img {
  5745. border-width:0px;
  5746. position:absolute;
  5747. left:0px;
  5748. top:0px;
  5749. width:73px;
  5750. height:39px;
  5751. }
  5752. #u41856 {
  5753. border-width:0px;
  5754. position:absolute;
  5755. left:740px;
  5756. top:0px;
  5757. width:73px;
  5758. height:39px;
  5759. display:flex;
  5760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5761. font-weight:400;
  5762. font-style:normal;
  5763. font-size:12px;
  5764. color:#FFFFFF;
  5765. }
  5766. #u41856 .text {
  5767. position:absolute;
  5768. align-self:center;
  5769. padding:2px 2px 2px 0px;
  5770. box-sizing:border-box;
  5771. width:100%;
  5772. }
  5773. #u41856_text {
  5774. border-width:0px;
  5775. word-wrap:break-word;
  5776. text-transform:none;
  5777. }
  5778. #u41857_img {
  5779. border-width:0px;
  5780. position:absolute;
  5781. left:0px;
  5782. top:0px;
  5783. width:73px;
  5784. height:39px;
  5785. }
  5786. #u41857 {
  5787. border-width:0px;
  5788. position:absolute;
  5789. left:813px;
  5790. top:0px;
  5791. width:73px;
  5792. height:39px;
  5793. display:flex;
  5794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5795. font-weight:400;
  5796. font-style:normal;
  5797. font-size:12px;
  5798. color:#FFFFFF;
  5799. }
  5800. #u41857 .text {
  5801. position:absolute;
  5802. align-self:center;
  5803. padding:2px 2px 2px 0px;
  5804. box-sizing:border-box;
  5805. width:100%;
  5806. }
  5807. #u41857_text {
  5808. border-width:0px;
  5809. word-wrap:break-word;
  5810. text-transform:none;
  5811. }
  5812. #u41858_img {
  5813. border-width:0px;
  5814. position:absolute;
  5815. left:0px;
  5816. top:0px;
  5817. width:73px;
  5818. height:39px;
  5819. }
  5820. #u41858 {
  5821. border-width:0px;
  5822. position:absolute;
  5823. left:886px;
  5824. top:0px;
  5825. width:73px;
  5826. height:39px;
  5827. display:flex;
  5828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5829. font-weight:400;
  5830. font-style:normal;
  5831. font-size:12px;
  5832. color:#FFFFFF;
  5833. }
  5834. #u41858 .text {
  5835. position:absolute;
  5836. align-self:center;
  5837. padding:2px 2px 2px 0px;
  5838. box-sizing:border-box;
  5839. width:100%;
  5840. }
  5841. #u41858_text {
  5842. border-width:0px;
  5843. word-wrap:break-word;
  5844. text-transform:none;
  5845. }
  5846. #u41859_img {
  5847. border-width:0px;
  5848. position:absolute;
  5849. left:0px;
  5850. top:0px;
  5851. width:79px;
  5852. height:39px;
  5853. }
  5854. #u41859 {
  5855. border-width:0px;
  5856. position:absolute;
  5857. left:959px;
  5858. top:0px;
  5859. width:79px;
  5860. height:39px;
  5861. display:flex;
  5862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5863. font-weight:400;
  5864. font-style:normal;
  5865. font-size:12px;
  5866. color:#FFFFFF;
  5867. }
  5868. #u41859 .text {
  5869. position:absolute;
  5870. align-self:center;
  5871. padding:2px 2px 2px 0px;
  5872. box-sizing:border-box;
  5873. width:100%;
  5874. }
  5875. #u41859_text {
  5876. border-width:0px;
  5877. word-wrap:break-word;
  5878. text-transform:none;
  5879. }
  5880. #u41860_img {
  5881. border-width:0px;
  5882. position:absolute;
  5883. left:0px;
  5884. top:0px;
  5885. width:79px;
  5886. height:39px;
  5887. }
  5888. #u41860 {
  5889. border-width:0px;
  5890. position:absolute;
  5891. left:1038px;
  5892. top:0px;
  5893. width:79px;
  5894. height:39px;
  5895. display:flex;
  5896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5897. font-weight:400;
  5898. font-style:normal;
  5899. font-size:12px;
  5900. color:#FFFFFF;
  5901. }
  5902. #u41860 .text {
  5903. position:absolute;
  5904. align-self:center;
  5905. padding:2px 2px 2px 0px;
  5906. box-sizing:border-box;
  5907. width:100%;
  5908. }
  5909. #u41860_text {
  5910. border-width:0px;
  5911. word-wrap:break-word;
  5912. text-transform:none;
  5913. }
  5914. #u41861_img {
  5915. border-width:0px;
  5916. position:absolute;
  5917. left:0px;
  5918. top:0px;
  5919. width:73px;
  5920. height:39px;
  5921. }
  5922. #u41861 {
  5923. border-width:0px;
  5924. position:absolute;
  5925. left:1117px;
  5926. top:0px;
  5927. width:73px;
  5928. height:39px;
  5929. display:flex;
  5930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5931. font-weight:400;
  5932. font-style:normal;
  5933. font-size:12px;
  5934. color:#FFFFFF;
  5935. }
  5936. #u41861 .text {
  5937. position:absolute;
  5938. align-self:center;
  5939. padding:2px 2px 2px 0px;
  5940. box-sizing:border-box;
  5941. width:100%;
  5942. }
  5943. #u41861_text {
  5944. border-width:0px;
  5945. word-wrap:break-word;
  5946. text-transform:none;
  5947. }
  5948. #u41862_img {
  5949. border-width:0px;
  5950. position:absolute;
  5951. left:0px;
  5952. top:0px;
  5953. width:73px;
  5954. height:39px;
  5955. }
  5956. #u41862 {
  5957. border-width:0px;
  5958. position:absolute;
  5959. left:1190px;
  5960. top:0px;
  5961. width:73px;
  5962. height:39px;
  5963. display:flex;
  5964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5965. font-weight:400;
  5966. font-style:normal;
  5967. font-size:12px;
  5968. color:#FFFFFF;
  5969. }
  5970. #u41862 .text {
  5971. position:absolute;
  5972. align-self:center;
  5973. padding:2px 2px 2px 0px;
  5974. box-sizing:border-box;
  5975. width:100%;
  5976. }
  5977. #u41862_text {
  5978. border-width:0px;
  5979. word-wrap:break-word;
  5980. text-transform:none;
  5981. }
  5982. #u41863_img {
  5983. border-width:0px;
  5984. position:absolute;
  5985. left:0px;
  5986. top:0px;
  5987. width:77px;
  5988. height:39px;
  5989. }
  5990. #u41863 {
  5991. border-width:0px;
  5992. position:absolute;
  5993. left:1263px;
  5994. top:0px;
  5995. width:77px;
  5996. height:39px;
  5997. display:flex;
  5998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5999. font-weight:400;
  6000. font-style:normal;
  6001. font-size:12px;
  6002. color:#FFFFFF;
  6003. }
  6004. #u41863 .text {
  6005. position:absolute;
  6006. align-self:center;
  6007. padding:2px 2px 2px 0px;
  6008. box-sizing:border-box;
  6009. width:100%;
  6010. }
  6011. #u41863_text {
  6012. border-width:0px;
  6013. word-wrap:break-word;
  6014. text-transform:none;
  6015. }
  6016. #u41864_img {
  6017. border-width:0px;
  6018. position:absolute;
  6019. left:0px;
  6020. top:0px;
  6021. width:33px;
  6022. height:36px;
  6023. }
  6024. #u41864 {
  6025. border-width:0px;
  6026. position:absolute;
  6027. left:0px;
  6028. top:39px;
  6029. width:33px;
  6030. height:36px;
  6031. display:flex;
  6032. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6033. font-weight:400;
  6034. font-style:normal;
  6035. font-size:12px;
  6036. }
  6037. #u41864 .text {
  6038. position:absolute;
  6039. align-self:center;
  6040. padding:2px 2px 2px 0px;
  6041. box-sizing:border-box;
  6042. width:100%;
  6043. }
  6044. #u41864_text {
  6045. border-width:0px;
  6046. word-wrap:break-word;
  6047. text-transform:none;
  6048. }
  6049. #u41865_img {
  6050. border-width:0px;
  6051. position:absolute;
  6052. left:0px;
  6053. top:0px;
  6054. width:33px;
  6055. height:36px;
  6056. }
  6057. #u41865 {
  6058. border-width:0px;
  6059. position:absolute;
  6060. left:33px;
  6061. top:39px;
  6062. width:33px;
  6063. height:36px;
  6064. display:flex;
  6065. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6066. font-weight:400;
  6067. font-style:normal;
  6068. font-size:12px;
  6069. }
  6070. #u41865 .text {
  6071. position:absolute;
  6072. align-self:center;
  6073. padding:2px 2px 2px 0px;
  6074. box-sizing:border-box;
  6075. width:100%;
  6076. }
  6077. #u41865_text {
  6078. border-width:0px;
  6079. word-wrap:break-word;
  6080. text-transform:none;
  6081. visibility:hidden;
  6082. }
  6083. #u41866_img {
  6084. border-width:0px;
  6085. position:absolute;
  6086. left:0px;
  6087. top:0px;
  6088. width:73px;
  6089. height:36px;
  6090. }
  6091. #u41866 {
  6092. border-width:0px;
  6093. position:absolute;
  6094. left:66px;
  6095. top:39px;
  6096. width:73px;
  6097. height:36px;
  6098. display:flex;
  6099. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6100. font-weight:400;
  6101. font-style:normal;
  6102. font-size:12px;
  6103. }
  6104. #u41866 .text {
  6105. position:absolute;
  6106. align-self:center;
  6107. padding:2px 2px 2px 0px;
  6108. box-sizing:border-box;
  6109. width:100%;
  6110. }
  6111. #u41866_text {
  6112. border-width:0px;
  6113. word-wrap:break-word;
  6114. text-transform:none;
  6115. visibility:hidden;
  6116. }
  6117. #u41867_img {
  6118. border-width:0px;
  6119. position:absolute;
  6120. left:0px;
  6121. top:0px;
  6122. width:73px;
  6123. height:36px;
  6124. }
  6125. #u41867 {
  6126. border-width:0px;
  6127. position:absolute;
  6128. left:139px;
  6129. top:39px;
  6130. width:73px;
  6131. height:36px;
  6132. display:flex;
  6133. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6134. font-weight:400;
  6135. font-style:normal;
  6136. font-size:12px;
  6137. }
  6138. #u41867 .text {
  6139. position:absolute;
  6140. align-self:center;
  6141. padding:2px 2px 2px 0px;
  6142. box-sizing:border-box;
  6143. width:100%;
  6144. }
  6145. #u41867_text {
  6146. border-width:0px;
  6147. word-wrap:break-word;
  6148. text-transform:none;
  6149. visibility:hidden;
  6150. }
  6151. #u41868_img {
  6152. border-width:0px;
  6153. position:absolute;
  6154. left:0px;
  6155. top:0px;
  6156. width:73px;
  6157. height:36px;
  6158. }
  6159. #u41868 {
  6160. border-width:0px;
  6161. position:absolute;
  6162. left:212px;
  6163. top:39px;
  6164. width:73px;
  6165. height:36px;
  6166. display:flex;
  6167. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6168. font-weight:400;
  6169. font-style:normal;
  6170. font-size:12px;
  6171. }
  6172. #u41868 .text {
  6173. position:absolute;
  6174. align-self:center;
  6175. padding:2px 2px 2px 0px;
  6176. box-sizing:border-box;
  6177. width:100%;
  6178. }
  6179. #u41868_text {
  6180. border-width:0px;
  6181. word-wrap:break-word;
  6182. text-transform:none;
  6183. visibility:hidden;
  6184. }
  6185. #u41869_img {
  6186. border-width:0px;
  6187. position:absolute;
  6188. left:0px;
  6189. top:0px;
  6190. width:73px;
  6191. height:36px;
  6192. }
  6193. #u41869 {
  6194. border-width:0px;
  6195. position:absolute;
  6196. left:285px;
  6197. top:39px;
  6198. width:73px;
  6199. height:36px;
  6200. display:flex;
  6201. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6202. font-weight:400;
  6203. font-style:normal;
  6204. font-size:12px;
  6205. }
  6206. #u41869 .text {
  6207. position:absolute;
  6208. align-self:center;
  6209. padding:2px 2px 2px 0px;
  6210. box-sizing:border-box;
  6211. width:100%;
  6212. }
  6213. #u41869_text {
  6214. border-width:0px;
  6215. word-wrap:break-word;
  6216. text-transform:none;
  6217. visibility:hidden;
  6218. }
  6219. #u41870_img {
  6220. border-width:0px;
  6221. position:absolute;
  6222. left:0px;
  6223. top:0px;
  6224. width:73px;
  6225. height:36px;
  6226. }
  6227. #u41870 {
  6228. border-width:0px;
  6229. position:absolute;
  6230. left:358px;
  6231. top:39px;
  6232. width:73px;
  6233. height:36px;
  6234. display:flex;
  6235. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6236. font-weight:400;
  6237. font-style:normal;
  6238. font-size:12px;
  6239. }
  6240. #u41870 .text {
  6241. position:absolute;
  6242. align-self:center;
  6243. padding:2px 2px 2px 0px;
  6244. box-sizing:border-box;
  6245. width:100%;
  6246. }
  6247. #u41870_text {
  6248. border-width:0px;
  6249. word-wrap:break-word;
  6250. text-transform:none;
  6251. visibility:hidden;
  6252. }
  6253. #u41871_img {
  6254. border-width:0px;
  6255. position:absolute;
  6256. left:0px;
  6257. top:0px;
  6258. width:73px;
  6259. height:36px;
  6260. }
  6261. #u41871 {
  6262. border-width:0px;
  6263. position:absolute;
  6264. left:431px;
  6265. top:39px;
  6266. width:73px;
  6267. height:36px;
  6268. display:flex;
  6269. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6270. font-weight:400;
  6271. font-style:normal;
  6272. font-size:12px;
  6273. }
  6274. #u41871 .text {
  6275. position:absolute;
  6276. align-self:center;
  6277. padding:2px 2px 2px 0px;
  6278. box-sizing:border-box;
  6279. width:100%;
  6280. }
  6281. #u41871_text {
  6282. border-width:0px;
  6283. word-wrap:break-word;
  6284. text-transform:none;
  6285. visibility:hidden;
  6286. }
  6287. #u41872_img {
  6288. border-width:0px;
  6289. position:absolute;
  6290. left:0px;
  6291. top:0px;
  6292. width:90px;
  6293. height:36px;
  6294. }
  6295. #u41872 {
  6296. border-width:0px;
  6297. position:absolute;
  6298. left:504px;
  6299. top:39px;
  6300. width:90px;
  6301. height:36px;
  6302. display:flex;
  6303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6304. font-weight:400;
  6305. font-style:normal;
  6306. font-size:12px;
  6307. }
  6308. #u41872 .text {
  6309. position:absolute;
  6310. align-self:center;
  6311. padding:2px 2px 2px 0px;
  6312. box-sizing:border-box;
  6313. width:100%;
  6314. }
  6315. #u41872_text {
  6316. border-width:0px;
  6317. word-wrap:break-word;
  6318. text-transform:none;
  6319. visibility:hidden;
  6320. }
  6321. #u41873_img {
  6322. border-width:0px;
  6323. position:absolute;
  6324. left:0px;
  6325. top:0px;
  6326. width:73px;
  6327. height:36px;
  6328. }
  6329. #u41873 {
  6330. border-width:0px;
  6331. position:absolute;
  6332. left:594px;
  6333. top:39px;
  6334. width:73px;
  6335. height:36px;
  6336. display:flex;
  6337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6338. font-weight:400;
  6339. font-style:normal;
  6340. font-size:12px;
  6341. }
  6342. #u41873 .text {
  6343. position:absolute;
  6344. align-self:center;
  6345. padding:2px 2px 2px 0px;
  6346. box-sizing:border-box;
  6347. width:100%;
  6348. }
  6349. #u41873_text {
  6350. border-width:0px;
  6351. word-wrap:break-word;
  6352. text-transform:none;
  6353. visibility:hidden;
  6354. }
  6355. #u41874_img {
  6356. border-width:0px;
  6357. position:absolute;
  6358. left:0px;
  6359. top:0px;
  6360. width:73px;
  6361. height:36px;
  6362. }
  6363. #u41874 {
  6364. border-width:0px;
  6365. position:absolute;
  6366. left:667px;
  6367. top:39px;
  6368. width:73px;
  6369. height:36px;
  6370. display:flex;
  6371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6372. font-weight:400;
  6373. font-style:normal;
  6374. font-size:12px;
  6375. }
  6376. #u41874 .text {
  6377. position:absolute;
  6378. align-self:center;
  6379. padding:2px 2px 2px 0px;
  6380. box-sizing:border-box;
  6381. width:100%;
  6382. }
  6383. #u41874_text {
  6384. border-width:0px;
  6385. word-wrap:break-word;
  6386. text-transform:none;
  6387. visibility:hidden;
  6388. }
  6389. #u41875_img {
  6390. border-width:0px;
  6391. position:absolute;
  6392. left:0px;
  6393. top:0px;
  6394. width:73px;
  6395. height:36px;
  6396. }
  6397. #u41875 {
  6398. border-width:0px;
  6399. position:absolute;
  6400. left:740px;
  6401. top:39px;
  6402. width:73px;
  6403. height:36px;
  6404. display:flex;
  6405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6406. font-weight:400;
  6407. font-style:normal;
  6408. font-size:12px;
  6409. }
  6410. #u41875 .text {
  6411. position:absolute;
  6412. align-self:center;
  6413. padding:2px 2px 2px 0px;
  6414. box-sizing:border-box;
  6415. width:100%;
  6416. }
  6417. #u41875_text {
  6418. border-width:0px;
  6419. word-wrap:break-word;
  6420. text-transform:none;
  6421. visibility:hidden;
  6422. }
  6423. #u41876_img {
  6424. border-width:0px;
  6425. position:absolute;
  6426. left:0px;
  6427. top:0px;
  6428. width:73px;
  6429. height:36px;
  6430. }
  6431. #u41876 {
  6432. border-width:0px;
  6433. position:absolute;
  6434. left:813px;
  6435. top:39px;
  6436. width:73px;
  6437. height:36px;
  6438. display:flex;
  6439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6440. font-weight:400;
  6441. font-style:normal;
  6442. font-size:12px;
  6443. }
  6444. #u41876 .text {
  6445. position:absolute;
  6446. align-self:center;
  6447. padding:2px 2px 2px 0px;
  6448. box-sizing:border-box;
  6449. width:100%;
  6450. }
  6451. #u41876_text {
  6452. border-width:0px;
  6453. word-wrap:break-word;
  6454. text-transform:none;
  6455. visibility:hidden;
  6456. }
  6457. #u41877_img {
  6458. border-width:0px;
  6459. position:absolute;
  6460. left:0px;
  6461. top:0px;
  6462. width:73px;
  6463. height:36px;
  6464. }
  6465. #u41877 {
  6466. border-width:0px;
  6467. position:absolute;
  6468. left:886px;
  6469. top:39px;
  6470. width:73px;
  6471. height:36px;
  6472. display:flex;
  6473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6474. font-weight:400;
  6475. font-style:normal;
  6476. font-size:12px;
  6477. }
  6478. #u41877 .text {
  6479. position:absolute;
  6480. align-self:center;
  6481. padding:2px 2px 2px 0px;
  6482. box-sizing:border-box;
  6483. width:100%;
  6484. }
  6485. #u41877_text {
  6486. border-width:0px;
  6487. word-wrap:break-word;
  6488. text-transform:none;
  6489. visibility:hidden;
  6490. }
  6491. #u41878_img {
  6492. border-width:0px;
  6493. position:absolute;
  6494. left:0px;
  6495. top:0px;
  6496. width:79px;
  6497. height:36px;
  6498. }
  6499. #u41878 {
  6500. border-width:0px;
  6501. position:absolute;
  6502. left:959px;
  6503. top:39px;
  6504. width:79px;
  6505. height:36px;
  6506. display:flex;
  6507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6508. font-weight:400;
  6509. font-style:normal;
  6510. font-size:12px;
  6511. }
  6512. #u41878 .text {
  6513. position:absolute;
  6514. align-self:center;
  6515. padding:2px 2px 2px 0px;
  6516. box-sizing:border-box;
  6517. width:100%;
  6518. }
  6519. #u41878_text {
  6520. border-width:0px;
  6521. word-wrap:break-word;
  6522. text-transform:none;
  6523. visibility:hidden;
  6524. }
  6525. #u41879_img {
  6526. border-width:0px;
  6527. position:absolute;
  6528. left:0px;
  6529. top:0px;
  6530. width:79px;
  6531. height:36px;
  6532. }
  6533. #u41879 {
  6534. border-width:0px;
  6535. position:absolute;
  6536. left:1038px;
  6537. top:39px;
  6538. width:79px;
  6539. height:36px;
  6540. display:flex;
  6541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6542. font-weight:400;
  6543. font-style:normal;
  6544. font-size:12px;
  6545. }
  6546. #u41879 .text {
  6547. position:absolute;
  6548. align-self:center;
  6549. padding:2px 2px 2px 0px;
  6550. box-sizing:border-box;
  6551. width:100%;
  6552. }
  6553. #u41879_text {
  6554. border-width:0px;
  6555. word-wrap:break-word;
  6556. text-transform:none;
  6557. visibility:hidden;
  6558. }
  6559. #u41880_img {
  6560. border-width:0px;
  6561. position:absolute;
  6562. left:0px;
  6563. top:0px;
  6564. width:73px;
  6565. height:36px;
  6566. }
  6567. #u41880 {
  6568. border-width:0px;
  6569. position:absolute;
  6570. left:1117px;
  6571. top:39px;
  6572. width:73px;
  6573. height:36px;
  6574. display:flex;
  6575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6576. font-weight:400;
  6577. font-style:normal;
  6578. font-size:12px;
  6579. color:#333333;
  6580. }
  6581. #u41880 .text {
  6582. position:absolute;
  6583. align-self:center;
  6584. padding:2px 2px 2px 0px;
  6585. box-sizing:border-box;
  6586. width:100%;
  6587. }
  6588. #u41880_text {
  6589. border-width:0px;
  6590. word-wrap:break-word;
  6591. text-transform:none;
  6592. visibility:hidden;
  6593. }
  6594. #u41881_img {
  6595. border-width:0px;
  6596. position:absolute;
  6597. left:0px;
  6598. top:0px;
  6599. width:73px;
  6600. height:36px;
  6601. }
  6602. #u41881 {
  6603. border-width:0px;
  6604. position:absolute;
  6605. left:1190px;
  6606. top:39px;
  6607. width:73px;
  6608. height:36px;
  6609. display:flex;
  6610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6611. font-weight:400;
  6612. font-style:normal;
  6613. font-size:12px;
  6614. color:#333333;
  6615. }
  6616. #u41881 .text {
  6617. position:absolute;
  6618. align-self:center;
  6619. padding:2px 2px 2px 0px;
  6620. box-sizing:border-box;
  6621. width:100%;
  6622. }
  6623. #u41881_text {
  6624. border-width:0px;
  6625. word-wrap:break-word;
  6626. text-transform:none;
  6627. visibility:hidden;
  6628. }
  6629. #u41882_img {
  6630. border-width:0px;
  6631. position:absolute;
  6632. left:0px;
  6633. top:0px;
  6634. width:77px;
  6635. height:36px;
  6636. }
  6637. #u41882 {
  6638. border-width:0px;
  6639. position:absolute;
  6640. left:1263px;
  6641. top:39px;
  6642. width:77px;
  6643. height:36px;
  6644. display:flex;
  6645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6646. font-weight:400;
  6647. font-style:normal;
  6648. font-size:12px;
  6649. color:#1890FF;
  6650. }
  6651. #u41882 .text {
  6652. position:absolute;
  6653. align-self:center;
  6654. padding:2px 2px 2px 0px;
  6655. box-sizing:border-box;
  6656. width:100%;
  6657. }
  6658. #u41882_text {
  6659. border-width:0px;
  6660. word-wrap:break-word;
  6661. text-transform:none;
  6662. }
  6663. #u41883_img {
  6664. border-width:0px;
  6665. position:absolute;
  6666. left:0px;
  6667. top:0px;
  6668. width:33px;
  6669. height:38px;
  6670. }
  6671. #u41883 {
  6672. border-width:0px;
  6673. position:absolute;
  6674. left:0px;
  6675. top:75px;
  6676. width:33px;
  6677. height:38px;
  6678. display:flex;
  6679. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6680. font-weight:400;
  6681. font-style:normal;
  6682. font-size:12px;
  6683. }
  6684. #u41883 .text {
  6685. position:absolute;
  6686. align-self:center;
  6687. padding:2px 2px 2px 0px;
  6688. box-sizing:border-box;
  6689. width:100%;
  6690. }
  6691. #u41883_text {
  6692. border-width:0px;
  6693. word-wrap:break-word;
  6694. text-transform:none;
  6695. visibility:hidden;
  6696. }
  6697. #u41884_img {
  6698. border-width:0px;
  6699. position:absolute;
  6700. left:0px;
  6701. top:0px;
  6702. width:33px;
  6703. height:38px;
  6704. }
  6705. #u41884 {
  6706. border-width:0px;
  6707. position:absolute;
  6708. left:33px;
  6709. top:75px;
  6710. width:33px;
  6711. height:38px;
  6712. display:flex;
  6713. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6714. font-weight:400;
  6715. font-style:normal;
  6716. font-size:12px;
  6717. }
  6718. #u41884 .text {
  6719. position:absolute;
  6720. align-self:center;
  6721. padding:2px 2px 2px 0px;
  6722. box-sizing:border-box;
  6723. width:100%;
  6724. }
  6725. #u41884_text {
  6726. border-width:0px;
  6727. word-wrap:break-word;
  6728. text-transform:none;
  6729. visibility:hidden;
  6730. }
  6731. #u41885_img {
  6732. border-width:0px;
  6733. position:absolute;
  6734. left:0px;
  6735. top:0px;
  6736. width:73px;
  6737. height:38px;
  6738. }
  6739. #u41885 {
  6740. border-width:0px;
  6741. position:absolute;
  6742. left:66px;
  6743. top:75px;
  6744. width:73px;
  6745. height:38px;
  6746. display:flex;
  6747. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6748. font-weight:400;
  6749. font-style:normal;
  6750. font-size:12px;
  6751. }
  6752. #u41885 .text {
  6753. position:absolute;
  6754. align-self:center;
  6755. padding:2px 2px 2px 0px;
  6756. box-sizing:border-box;
  6757. width:100%;
  6758. }
  6759. #u41885_text {
  6760. border-width:0px;
  6761. word-wrap:break-word;
  6762. text-transform:none;
  6763. visibility:hidden;
  6764. }
  6765. #u41886_img {
  6766. border-width:0px;
  6767. position:absolute;
  6768. left:0px;
  6769. top:0px;
  6770. width:73px;
  6771. height:38px;
  6772. }
  6773. #u41886 {
  6774. border-width:0px;
  6775. position:absolute;
  6776. left:139px;
  6777. top:75px;
  6778. width:73px;
  6779. height:38px;
  6780. display:flex;
  6781. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6782. font-weight:400;
  6783. font-style:normal;
  6784. font-size:12px;
  6785. }
  6786. #u41886 .text {
  6787. position:absolute;
  6788. align-self:center;
  6789. padding:2px 2px 2px 0px;
  6790. box-sizing:border-box;
  6791. width:100%;
  6792. }
  6793. #u41886_text {
  6794. border-width:0px;
  6795. word-wrap:break-word;
  6796. text-transform:none;
  6797. visibility:hidden;
  6798. }
  6799. #u41887_img {
  6800. border-width:0px;
  6801. position:absolute;
  6802. left:0px;
  6803. top:0px;
  6804. width:73px;
  6805. height:38px;
  6806. }
  6807. #u41887 {
  6808. border-width:0px;
  6809. position:absolute;
  6810. left:212px;
  6811. top:75px;
  6812. width:73px;
  6813. height:38px;
  6814. display:flex;
  6815. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6816. font-weight:400;
  6817. font-style:normal;
  6818. font-size:12px;
  6819. }
  6820. #u41887 .text {
  6821. position:absolute;
  6822. align-self:center;
  6823. padding:2px 2px 2px 0px;
  6824. box-sizing:border-box;
  6825. width:100%;
  6826. }
  6827. #u41887_text {
  6828. border-width:0px;
  6829. word-wrap:break-word;
  6830. text-transform:none;
  6831. visibility:hidden;
  6832. }
  6833. #u41888_img {
  6834. border-width:0px;
  6835. position:absolute;
  6836. left:0px;
  6837. top:0px;
  6838. width:73px;
  6839. height:38px;
  6840. }
  6841. #u41888 {
  6842. border-width:0px;
  6843. position:absolute;
  6844. left:285px;
  6845. top:75px;
  6846. width:73px;
  6847. height:38px;
  6848. display:flex;
  6849. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6850. font-weight:400;
  6851. font-style:normal;
  6852. font-size:12px;
  6853. }
  6854. #u41888 .text {
  6855. position:absolute;
  6856. align-self:center;
  6857. padding:2px 2px 2px 0px;
  6858. box-sizing:border-box;
  6859. width:100%;
  6860. }
  6861. #u41888_text {
  6862. border-width:0px;
  6863. word-wrap:break-word;
  6864. text-transform:none;
  6865. visibility:hidden;
  6866. }
  6867. #u41889_img {
  6868. border-width:0px;
  6869. position:absolute;
  6870. left:0px;
  6871. top:0px;
  6872. width:73px;
  6873. height:38px;
  6874. }
  6875. #u41889 {
  6876. border-width:0px;
  6877. position:absolute;
  6878. left:358px;
  6879. top:75px;
  6880. width:73px;
  6881. height:38px;
  6882. display:flex;
  6883. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6884. font-weight:400;
  6885. font-style:normal;
  6886. font-size:12px;
  6887. }
  6888. #u41889 .text {
  6889. position:absolute;
  6890. align-self:center;
  6891. padding:2px 2px 2px 0px;
  6892. box-sizing:border-box;
  6893. width:100%;
  6894. }
  6895. #u41889_text {
  6896. border-width:0px;
  6897. word-wrap:break-word;
  6898. text-transform:none;
  6899. visibility:hidden;
  6900. }
  6901. #u41890_img {
  6902. border-width:0px;
  6903. position:absolute;
  6904. left:0px;
  6905. top:0px;
  6906. width:73px;
  6907. height:38px;
  6908. }
  6909. #u41890 {
  6910. border-width:0px;
  6911. position:absolute;
  6912. left:431px;
  6913. top:75px;
  6914. width:73px;
  6915. height:38px;
  6916. display:flex;
  6917. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6918. font-weight:400;
  6919. font-style:normal;
  6920. font-size:12px;
  6921. }
  6922. #u41890 .text {
  6923. position:absolute;
  6924. align-self:center;
  6925. padding:2px 2px 2px 0px;
  6926. box-sizing:border-box;
  6927. width:100%;
  6928. }
  6929. #u41890_text {
  6930. border-width:0px;
  6931. word-wrap:break-word;
  6932. text-transform:none;
  6933. visibility:hidden;
  6934. }
  6935. #u41891_img {
  6936. border-width:0px;
  6937. position:absolute;
  6938. left:0px;
  6939. top:0px;
  6940. width:90px;
  6941. height:38px;
  6942. }
  6943. #u41891 {
  6944. border-width:0px;
  6945. position:absolute;
  6946. left:504px;
  6947. top:75px;
  6948. width:90px;
  6949. height:38px;
  6950. display:flex;
  6951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6952. font-weight:400;
  6953. font-style:normal;
  6954. font-size:12px;
  6955. }
  6956. #u41891 .text {
  6957. position:absolute;
  6958. align-self:center;
  6959. padding:2px 2px 2px 0px;
  6960. box-sizing:border-box;
  6961. width:100%;
  6962. }
  6963. #u41891_text {
  6964. border-width:0px;
  6965. word-wrap:break-word;
  6966. text-transform:none;
  6967. visibility:hidden;
  6968. }
  6969. #u41892_img {
  6970. border-width:0px;
  6971. position:absolute;
  6972. left:0px;
  6973. top:0px;
  6974. width:73px;
  6975. height:38px;
  6976. }
  6977. #u41892 {
  6978. border-width:0px;
  6979. position:absolute;
  6980. left:594px;
  6981. top:75px;
  6982. width:73px;
  6983. height:38px;
  6984. display:flex;
  6985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6986. font-weight:400;
  6987. font-style:normal;
  6988. font-size:12px;
  6989. }
  6990. #u41892 .text {
  6991. position:absolute;
  6992. align-self:center;
  6993. padding:2px 2px 2px 0px;
  6994. box-sizing:border-box;
  6995. width:100%;
  6996. }
  6997. #u41892_text {
  6998. border-width:0px;
  6999. word-wrap:break-word;
  7000. text-transform:none;
  7001. visibility:hidden;
  7002. }
  7003. #u41893_img {
  7004. border-width:0px;
  7005. position:absolute;
  7006. left:0px;
  7007. top:0px;
  7008. width:73px;
  7009. height:38px;
  7010. }
  7011. #u41893 {
  7012. border-width:0px;
  7013. position:absolute;
  7014. left:667px;
  7015. top:75px;
  7016. width:73px;
  7017. height:38px;
  7018. display:flex;
  7019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7020. font-weight:400;
  7021. font-style:normal;
  7022. font-size:12px;
  7023. }
  7024. #u41893 .text {
  7025. position:absolute;
  7026. align-self:center;
  7027. padding:2px 2px 2px 0px;
  7028. box-sizing:border-box;
  7029. width:100%;
  7030. }
  7031. #u41893_text {
  7032. border-width:0px;
  7033. word-wrap:break-word;
  7034. text-transform:none;
  7035. visibility:hidden;
  7036. }
  7037. #u41894_img {
  7038. border-width:0px;
  7039. position:absolute;
  7040. left:0px;
  7041. top:0px;
  7042. width:73px;
  7043. height:38px;
  7044. }
  7045. #u41894 {
  7046. border-width:0px;
  7047. position:absolute;
  7048. left:740px;
  7049. top:75px;
  7050. width:73px;
  7051. height:38px;
  7052. display:flex;
  7053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7054. font-weight:400;
  7055. font-style:normal;
  7056. font-size:12px;
  7057. }
  7058. #u41894 .text {
  7059. position:absolute;
  7060. align-self:center;
  7061. padding:2px 2px 2px 0px;
  7062. box-sizing:border-box;
  7063. width:100%;
  7064. }
  7065. #u41894_text {
  7066. border-width:0px;
  7067. word-wrap:break-word;
  7068. text-transform:none;
  7069. visibility:hidden;
  7070. }
  7071. #u41895_img {
  7072. border-width:0px;
  7073. position:absolute;
  7074. left:0px;
  7075. top:0px;
  7076. width:73px;
  7077. height:38px;
  7078. }
  7079. #u41895 {
  7080. border-width:0px;
  7081. position:absolute;
  7082. left:813px;
  7083. top:75px;
  7084. width:73px;
  7085. height:38px;
  7086. display:flex;
  7087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7088. font-weight:400;
  7089. font-style:normal;
  7090. font-size:12px;
  7091. }
  7092. #u41895 .text {
  7093. position:absolute;
  7094. align-self:center;
  7095. padding:2px 2px 2px 0px;
  7096. box-sizing:border-box;
  7097. width:100%;
  7098. }
  7099. #u41895_text {
  7100. border-width:0px;
  7101. word-wrap:break-word;
  7102. text-transform:none;
  7103. visibility:hidden;
  7104. }
  7105. #u41896_img {
  7106. border-width:0px;
  7107. position:absolute;
  7108. left:0px;
  7109. top:0px;
  7110. width:73px;
  7111. height:38px;
  7112. }
  7113. #u41896 {
  7114. border-width:0px;
  7115. position:absolute;
  7116. left:886px;
  7117. top:75px;
  7118. width:73px;
  7119. height:38px;
  7120. display:flex;
  7121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7122. font-weight:400;
  7123. font-style:normal;
  7124. font-size:12px;
  7125. }
  7126. #u41896 .text {
  7127. position:absolute;
  7128. align-self:center;
  7129. padding:2px 2px 2px 0px;
  7130. box-sizing:border-box;
  7131. width:100%;
  7132. }
  7133. #u41896_text {
  7134. border-width:0px;
  7135. word-wrap:break-word;
  7136. text-transform:none;
  7137. visibility:hidden;
  7138. }
  7139. #u41897_img {
  7140. border-width:0px;
  7141. position:absolute;
  7142. left:0px;
  7143. top:0px;
  7144. width:79px;
  7145. height:38px;
  7146. }
  7147. #u41897 {
  7148. border-width:0px;
  7149. position:absolute;
  7150. left:959px;
  7151. top:75px;
  7152. width:79px;
  7153. height:38px;
  7154. display:flex;
  7155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7156. font-weight:400;
  7157. font-style:normal;
  7158. font-size:12px;
  7159. }
  7160. #u41897 .text {
  7161. position:absolute;
  7162. align-self:center;
  7163. padding:2px 2px 2px 0px;
  7164. box-sizing:border-box;
  7165. width:100%;
  7166. }
  7167. #u41897_text {
  7168. border-width:0px;
  7169. word-wrap:break-word;
  7170. text-transform:none;
  7171. visibility:hidden;
  7172. }
  7173. #u41898_img {
  7174. border-width:0px;
  7175. position:absolute;
  7176. left:0px;
  7177. top:0px;
  7178. width:79px;
  7179. height:38px;
  7180. }
  7181. #u41898 {
  7182. border-width:0px;
  7183. position:absolute;
  7184. left:1038px;
  7185. top:75px;
  7186. width:79px;
  7187. height:38px;
  7188. display:flex;
  7189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7190. font-weight:400;
  7191. font-style:normal;
  7192. font-size:12px;
  7193. }
  7194. #u41898 .text {
  7195. position:absolute;
  7196. align-self:center;
  7197. padding:2px 2px 2px 0px;
  7198. box-sizing:border-box;
  7199. width:100%;
  7200. }
  7201. #u41898_text {
  7202. border-width:0px;
  7203. word-wrap:break-word;
  7204. text-transform:none;
  7205. visibility:hidden;
  7206. }
  7207. #u41899_img {
  7208. border-width:0px;
  7209. position:absolute;
  7210. left:0px;
  7211. top:0px;
  7212. width:73px;
  7213. height:38px;
  7214. }
  7215. #u41899 {
  7216. border-width:0px;
  7217. position:absolute;
  7218. left:1117px;
  7219. top:75px;
  7220. width:73px;
  7221. height:38px;
  7222. display:flex;
  7223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7224. font-weight:400;
  7225. font-style:normal;
  7226. font-size:12px;
  7227. color:#333333;
  7228. }
  7229. #u41899 .text {
  7230. position:absolute;
  7231. align-self:center;
  7232. padding:2px 2px 2px 0px;
  7233. box-sizing:border-box;
  7234. width:100%;
  7235. }
  7236. #u41899_text {
  7237. border-width:0px;
  7238. word-wrap:break-word;
  7239. text-transform:none;
  7240. visibility:hidden;
  7241. }
  7242. #u41900_img {
  7243. border-width:0px;
  7244. position:absolute;
  7245. left:0px;
  7246. top:0px;
  7247. width:73px;
  7248. height:38px;
  7249. }
  7250. #u41900 {
  7251. border-width:0px;
  7252. position:absolute;
  7253. left:1190px;
  7254. top:75px;
  7255. width:73px;
  7256. height:38px;
  7257. display:flex;
  7258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7259. font-weight:400;
  7260. font-style:normal;
  7261. font-size:12px;
  7262. color:#333333;
  7263. }
  7264. #u41900 .text {
  7265. position:absolute;
  7266. align-self:center;
  7267. padding:2px 2px 2px 0px;
  7268. box-sizing:border-box;
  7269. width:100%;
  7270. }
  7271. #u41900_text {
  7272. border-width:0px;
  7273. word-wrap:break-word;
  7274. text-transform:none;
  7275. visibility:hidden;
  7276. }
  7277. #u41901_img {
  7278. border-width:0px;
  7279. position:absolute;
  7280. left:0px;
  7281. top:0px;
  7282. width:77px;
  7283. height:38px;
  7284. }
  7285. #u41901 {
  7286. border-width:0px;
  7287. position:absolute;
  7288. left:1263px;
  7289. top:75px;
  7290. width:77px;
  7291. height:38px;
  7292. display:flex;
  7293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7294. font-weight:400;
  7295. font-style:normal;
  7296. font-size:12px;
  7297. color:#1890FF;
  7298. }
  7299. #u41901 .text {
  7300. position:absolute;
  7301. align-self:center;
  7302. padding:2px 2px 2px 0px;
  7303. box-sizing:border-box;
  7304. width:100%;
  7305. }
  7306. #u41901_text {
  7307. border-width:0px;
  7308. word-wrap:break-word;
  7309. text-transform:none;
  7310. visibility:hidden;
  7311. }
  7312. #u41902_img {
  7313. border-width:0px;
  7314. position:absolute;
  7315. left:0px;
  7316. top:0px;
  7317. width:33px;
  7318. height:38px;
  7319. }
  7320. #u41902 {
  7321. border-width:0px;
  7322. position:absolute;
  7323. left:0px;
  7324. top:113px;
  7325. width:33px;
  7326. height:38px;
  7327. display:flex;
  7328. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7329. font-weight:400;
  7330. font-style:normal;
  7331. font-size:12px;
  7332. }
  7333. #u41902 .text {
  7334. position:absolute;
  7335. align-self:center;
  7336. padding:2px 2px 2px 0px;
  7337. box-sizing:border-box;
  7338. width:100%;
  7339. }
  7340. #u41902_text {
  7341. border-width:0px;
  7342. word-wrap:break-word;
  7343. text-transform:none;
  7344. visibility:hidden;
  7345. }
  7346. #u41903_img {
  7347. border-width:0px;
  7348. position:absolute;
  7349. left:0px;
  7350. top:0px;
  7351. width:33px;
  7352. height:38px;
  7353. }
  7354. #u41903 {
  7355. border-width:0px;
  7356. position:absolute;
  7357. left:33px;
  7358. top:113px;
  7359. width:33px;
  7360. height:38px;
  7361. display:flex;
  7362. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7363. font-weight:400;
  7364. font-style:normal;
  7365. font-size:12px;
  7366. }
  7367. #u41903 .text {
  7368. position:absolute;
  7369. align-self:center;
  7370. padding:2px 2px 2px 0px;
  7371. box-sizing:border-box;
  7372. width:100%;
  7373. }
  7374. #u41903_text {
  7375. border-width:0px;
  7376. word-wrap:break-word;
  7377. text-transform:none;
  7378. visibility:hidden;
  7379. }
  7380. #u41904_img {
  7381. border-width:0px;
  7382. position:absolute;
  7383. left:0px;
  7384. top:0px;
  7385. width:73px;
  7386. height:38px;
  7387. }
  7388. #u41904 {
  7389. border-width:0px;
  7390. position:absolute;
  7391. left:66px;
  7392. top:113px;
  7393. width:73px;
  7394. height:38px;
  7395. display:flex;
  7396. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7397. font-weight:400;
  7398. font-style:normal;
  7399. font-size:12px;
  7400. }
  7401. #u41904 .text {
  7402. position:absolute;
  7403. align-self:center;
  7404. padding:2px 2px 2px 0px;
  7405. box-sizing:border-box;
  7406. width:100%;
  7407. }
  7408. #u41904_text {
  7409. border-width:0px;
  7410. word-wrap:break-word;
  7411. text-transform:none;
  7412. visibility:hidden;
  7413. }
  7414. #u41905_img {
  7415. border-width:0px;
  7416. position:absolute;
  7417. left:0px;
  7418. top:0px;
  7419. width:73px;
  7420. height:38px;
  7421. }
  7422. #u41905 {
  7423. border-width:0px;
  7424. position:absolute;
  7425. left:139px;
  7426. top:113px;
  7427. width:73px;
  7428. height:38px;
  7429. display:flex;
  7430. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7431. font-weight:400;
  7432. font-style:normal;
  7433. font-size:12px;
  7434. }
  7435. #u41905 .text {
  7436. position:absolute;
  7437. align-self:center;
  7438. padding:2px 2px 2px 0px;
  7439. box-sizing:border-box;
  7440. width:100%;
  7441. }
  7442. #u41905_text {
  7443. border-width:0px;
  7444. word-wrap:break-word;
  7445. text-transform:none;
  7446. visibility:hidden;
  7447. }
  7448. #u41906_img {
  7449. border-width:0px;
  7450. position:absolute;
  7451. left:0px;
  7452. top:0px;
  7453. width:73px;
  7454. height:38px;
  7455. }
  7456. #u41906 {
  7457. border-width:0px;
  7458. position:absolute;
  7459. left:212px;
  7460. top:113px;
  7461. width:73px;
  7462. height:38px;
  7463. display:flex;
  7464. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7465. font-weight:400;
  7466. font-style:normal;
  7467. font-size:12px;
  7468. }
  7469. #u41906 .text {
  7470. position:absolute;
  7471. align-self:center;
  7472. padding:2px 2px 2px 0px;
  7473. box-sizing:border-box;
  7474. width:100%;
  7475. }
  7476. #u41906_text {
  7477. border-width:0px;
  7478. word-wrap:break-word;
  7479. text-transform:none;
  7480. visibility:hidden;
  7481. }
  7482. #u41907_img {
  7483. border-width:0px;
  7484. position:absolute;
  7485. left:0px;
  7486. top:0px;
  7487. width:73px;
  7488. height:38px;
  7489. }
  7490. #u41907 {
  7491. border-width:0px;
  7492. position:absolute;
  7493. left:285px;
  7494. top:113px;
  7495. width:73px;
  7496. height:38px;
  7497. display:flex;
  7498. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7499. font-weight:400;
  7500. font-style:normal;
  7501. font-size:12px;
  7502. }
  7503. #u41907 .text {
  7504. position:absolute;
  7505. align-self:center;
  7506. padding:2px 2px 2px 0px;
  7507. box-sizing:border-box;
  7508. width:100%;
  7509. }
  7510. #u41907_text {
  7511. border-width:0px;
  7512. word-wrap:break-word;
  7513. text-transform:none;
  7514. visibility:hidden;
  7515. }
  7516. #u41908_img {
  7517. border-width:0px;
  7518. position:absolute;
  7519. left:0px;
  7520. top:0px;
  7521. width:73px;
  7522. height:38px;
  7523. }
  7524. #u41908 {
  7525. border-width:0px;
  7526. position:absolute;
  7527. left:358px;
  7528. top:113px;
  7529. width:73px;
  7530. height:38px;
  7531. display:flex;
  7532. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7533. font-weight:400;
  7534. font-style:normal;
  7535. font-size:12px;
  7536. }
  7537. #u41908 .text {
  7538. position:absolute;
  7539. align-self:center;
  7540. padding:2px 2px 2px 0px;
  7541. box-sizing:border-box;
  7542. width:100%;
  7543. }
  7544. #u41908_text {
  7545. border-width:0px;
  7546. word-wrap:break-word;
  7547. text-transform:none;
  7548. visibility:hidden;
  7549. }
  7550. #u41909_img {
  7551. border-width:0px;
  7552. position:absolute;
  7553. left:0px;
  7554. top:0px;
  7555. width:73px;
  7556. height:38px;
  7557. }
  7558. #u41909 {
  7559. border-width:0px;
  7560. position:absolute;
  7561. left:431px;
  7562. top:113px;
  7563. width:73px;
  7564. height:38px;
  7565. display:flex;
  7566. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7567. font-weight:400;
  7568. font-style:normal;
  7569. font-size:12px;
  7570. }
  7571. #u41909 .text {
  7572. position:absolute;
  7573. align-self:center;
  7574. padding:2px 2px 2px 0px;
  7575. box-sizing:border-box;
  7576. width:100%;
  7577. }
  7578. #u41909_text {
  7579. border-width:0px;
  7580. word-wrap:break-word;
  7581. text-transform:none;
  7582. visibility:hidden;
  7583. }
  7584. #u41910_img {
  7585. border-width:0px;
  7586. position:absolute;
  7587. left:0px;
  7588. top:0px;
  7589. width:90px;
  7590. height:38px;
  7591. }
  7592. #u41910 {
  7593. border-width:0px;
  7594. position:absolute;
  7595. left:504px;
  7596. top:113px;
  7597. width:90px;
  7598. height:38px;
  7599. display:flex;
  7600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7601. font-weight:400;
  7602. font-style:normal;
  7603. font-size:12px;
  7604. }
  7605. #u41910 .text {
  7606. position:absolute;
  7607. align-self:center;
  7608. padding:2px 2px 2px 0px;
  7609. box-sizing:border-box;
  7610. width:100%;
  7611. }
  7612. #u41910_text {
  7613. border-width:0px;
  7614. word-wrap:break-word;
  7615. text-transform:none;
  7616. visibility:hidden;
  7617. }
  7618. #u41911_img {
  7619. border-width:0px;
  7620. position:absolute;
  7621. left:0px;
  7622. top:0px;
  7623. width:73px;
  7624. height:38px;
  7625. }
  7626. #u41911 {
  7627. border-width:0px;
  7628. position:absolute;
  7629. left:594px;
  7630. top:113px;
  7631. width:73px;
  7632. height:38px;
  7633. display:flex;
  7634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7635. font-weight:400;
  7636. font-style:normal;
  7637. font-size:12px;
  7638. }
  7639. #u41911 .text {
  7640. position:absolute;
  7641. align-self:center;
  7642. padding:2px 2px 2px 0px;
  7643. box-sizing:border-box;
  7644. width:100%;
  7645. }
  7646. #u41911_text {
  7647. border-width:0px;
  7648. word-wrap:break-word;
  7649. text-transform:none;
  7650. visibility:hidden;
  7651. }
  7652. #u41912_img {
  7653. border-width:0px;
  7654. position:absolute;
  7655. left:0px;
  7656. top:0px;
  7657. width:73px;
  7658. height:38px;
  7659. }
  7660. #u41912 {
  7661. border-width:0px;
  7662. position:absolute;
  7663. left:667px;
  7664. top:113px;
  7665. width:73px;
  7666. height:38px;
  7667. display:flex;
  7668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7669. font-weight:400;
  7670. font-style:normal;
  7671. font-size:12px;
  7672. }
  7673. #u41912 .text {
  7674. position:absolute;
  7675. align-self:center;
  7676. padding:2px 2px 2px 0px;
  7677. box-sizing:border-box;
  7678. width:100%;
  7679. }
  7680. #u41912_text {
  7681. border-width:0px;
  7682. word-wrap:break-word;
  7683. text-transform:none;
  7684. visibility:hidden;
  7685. }
  7686. #u41913_img {
  7687. border-width:0px;
  7688. position:absolute;
  7689. left:0px;
  7690. top:0px;
  7691. width:73px;
  7692. height:38px;
  7693. }
  7694. #u41913 {
  7695. border-width:0px;
  7696. position:absolute;
  7697. left:740px;
  7698. top:113px;
  7699. width:73px;
  7700. height:38px;
  7701. display:flex;
  7702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7703. font-weight:400;
  7704. font-style:normal;
  7705. font-size:12px;
  7706. }
  7707. #u41913 .text {
  7708. position:absolute;
  7709. align-self:center;
  7710. padding:2px 2px 2px 0px;
  7711. box-sizing:border-box;
  7712. width:100%;
  7713. }
  7714. #u41913_text {
  7715. border-width:0px;
  7716. word-wrap:break-word;
  7717. text-transform:none;
  7718. visibility:hidden;
  7719. }
  7720. #u41914_img {
  7721. border-width:0px;
  7722. position:absolute;
  7723. left:0px;
  7724. top:0px;
  7725. width:73px;
  7726. height:38px;
  7727. }
  7728. #u41914 {
  7729. border-width:0px;
  7730. position:absolute;
  7731. left:813px;
  7732. top:113px;
  7733. width:73px;
  7734. height:38px;
  7735. display:flex;
  7736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7737. font-weight:400;
  7738. font-style:normal;
  7739. font-size:12px;
  7740. }
  7741. #u41914 .text {
  7742. position:absolute;
  7743. align-self:center;
  7744. padding:2px 2px 2px 0px;
  7745. box-sizing:border-box;
  7746. width:100%;
  7747. }
  7748. #u41914_text {
  7749. border-width:0px;
  7750. word-wrap:break-word;
  7751. text-transform:none;
  7752. visibility:hidden;
  7753. }
  7754. #u41915_img {
  7755. border-width:0px;
  7756. position:absolute;
  7757. left:0px;
  7758. top:0px;
  7759. width:73px;
  7760. height:38px;
  7761. }
  7762. #u41915 {
  7763. border-width:0px;
  7764. position:absolute;
  7765. left:886px;
  7766. top:113px;
  7767. width:73px;
  7768. height:38px;
  7769. display:flex;
  7770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7771. font-weight:400;
  7772. font-style:normal;
  7773. font-size:12px;
  7774. }
  7775. #u41915 .text {
  7776. position:absolute;
  7777. align-self:center;
  7778. padding:2px 2px 2px 0px;
  7779. box-sizing:border-box;
  7780. width:100%;
  7781. }
  7782. #u41915_text {
  7783. border-width:0px;
  7784. word-wrap:break-word;
  7785. text-transform:none;
  7786. visibility:hidden;
  7787. }
  7788. #u41916_img {
  7789. border-width:0px;
  7790. position:absolute;
  7791. left:0px;
  7792. top:0px;
  7793. width:79px;
  7794. height:38px;
  7795. }
  7796. #u41916 {
  7797. border-width:0px;
  7798. position:absolute;
  7799. left:959px;
  7800. top:113px;
  7801. width:79px;
  7802. height:38px;
  7803. display:flex;
  7804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7805. font-weight:400;
  7806. font-style:normal;
  7807. font-size:12px;
  7808. }
  7809. #u41916 .text {
  7810. position:absolute;
  7811. align-self:center;
  7812. padding:2px 2px 2px 0px;
  7813. box-sizing:border-box;
  7814. width:100%;
  7815. }
  7816. #u41916_text {
  7817. border-width:0px;
  7818. word-wrap:break-word;
  7819. text-transform:none;
  7820. visibility:hidden;
  7821. }
  7822. #u41917_img {
  7823. border-width:0px;
  7824. position:absolute;
  7825. left:0px;
  7826. top:0px;
  7827. width:79px;
  7828. height:38px;
  7829. }
  7830. #u41917 {
  7831. border-width:0px;
  7832. position:absolute;
  7833. left:1038px;
  7834. top:113px;
  7835. width:79px;
  7836. height:38px;
  7837. display:flex;
  7838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7839. font-weight:400;
  7840. font-style:normal;
  7841. font-size:12px;
  7842. }
  7843. #u41917 .text {
  7844. position:absolute;
  7845. align-self:center;
  7846. padding:2px 2px 2px 0px;
  7847. box-sizing:border-box;
  7848. width:100%;
  7849. }
  7850. #u41917_text {
  7851. border-width:0px;
  7852. word-wrap:break-word;
  7853. text-transform:none;
  7854. visibility:hidden;
  7855. }
  7856. #u41918_img {
  7857. border-width:0px;
  7858. position:absolute;
  7859. left:0px;
  7860. top:0px;
  7861. width:73px;
  7862. height:38px;
  7863. }
  7864. #u41918 {
  7865. border-width:0px;
  7866. position:absolute;
  7867. left:1117px;
  7868. top:113px;
  7869. width:73px;
  7870. height:38px;
  7871. display:flex;
  7872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7873. font-weight:400;
  7874. font-style:normal;
  7875. font-size:12px;
  7876. color:#333333;
  7877. }
  7878. #u41918 .text {
  7879. position:absolute;
  7880. align-self:center;
  7881. padding:2px 2px 2px 0px;
  7882. box-sizing:border-box;
  7883. width:100%;
  7884. }
  7885. #u41918_text {
  7886. border-width:0px;
  7887. word-wrap:break-word;
  7888. text-transform:none;
  7889. visibility:hidden;
  7890. }
  7891. #u41919_img {
  7892. border-width:0px;
  7893. position:absolute;
  7894. left:0px;
  7895. top:0px;
  7896. width:73px;
  7897. height:38px;
  7898. }
  7899. #u41919 {
  7900. border-width:0px;
  7901. position:absolute;
  7902. left:1190px;
  7903. top:113px;
  7904. width:73px;
  7905. height:38px;
  7906. display:flex;
  7907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7908. font-weight:400;
  7909. font-style:normal;
  7910. font-size:12px;
  7911. color:#333333;
  7912. }
  7913. #u41919 .text {
  7914. position:absolute;
  7915. align-self:center;
  7916. padding:2px 2px 2px 0px;
  7917. box-sizing:border-box;
  7918. width:100%;
  7919. }
  7920. #u41919_text {
  7921. border-width:0px;
  7922. word-wrap:break-word;
  7923. text-transform:none;
  7924. visibility:hidden;
  7925. }
  7926. #u41920_img {
  7927. border-width:0px;
  7928. position:absolute;
  7929. left:0px;
  7930. top:0px;
  7931. width:77px;
  7932. height:38px;
  7933. }
  7934. #u41920 {
  7935. border-width:0px;
  7936. position:absolute;
  7937. left:1263px;
  7938. top:113px;
  7939. width:77px;
  7940. height:38px;
  7941. display:flex;
  7942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7943. font-weight:400;
  7944. font-style:normal;
  7945. font-size:12px;
  7946. color:#1890FF;
  7947. }
  7948. #u41920 .text {
  7949. position:absolute;
  7950. align-self:center;
  7951. padding:2px 2px 2px 0px;
  7952. box-sizing:border-box;
  7953. width:100%;
  7954. }
  7955. #u41920_text {
  7956. border-width:0px;
  7957. word-wrap:break-word;
  7958. text-transform:none;
  7959. visibility:hidden;
  7960. }
  7961. #u41921_img {
  7962. border-width:0px;
  7963. position:absolute;
  7964. left:0px;
  7965. top:0px;
  7966. width:33px;
  7967. height:35px;
  7968. }
  7969. #u41921 {
  7970. border-width:0px;
  7971. position:absolute;
  7972. left:0px;
  7973. top:151px;
  7974. width:33px;
  7975. height:35px;
  7976. display:flex;
  7977. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7978. font-weight:400;
  7979. font-style:normal;
  7980. font-size:12px;
  7981. color:#606266;
  7982. }
  7983. #u41921 .text {
  7984. position:absolute;
  7985. align-self:center;
  7986. padding:2px 2px 2px 0px;
  7987. box-sizing:border-box;
  7988. width:100%;
  7989. }
  7990. #u41921_text {
  7991. border-width:0px;
  7992. word-wrap:break-word;
  7993. text-transform:none;
  7994. visibility:hidden;
  7995. }
  7996. #u41922_img {
  7997. border-width:0px;
  7998. position:absolute;
  7999. left:0px;
  8000. top:0px;
  8001. width:33px;
  8002. height:35px;
  8003. }
  8004. #u41922 {
  8005. border-width:0px;
  8006. position:absolute;
  8007. left:33px;
  8008. top:151px;
  8009. width:33px;
  8010. height:35px;
  8011. display:flex;
  8012. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8013. font-weight:400;
  8014. font-style:normal;
  8015. font-size:12px;
  8016. color:#606266;
  8017. }
  8018. #u41922 .text {
  8019. position:absolute;
  8020. align-self:center;
  8021. padding:2px 2px 2px 0px;
  8022. box-sizing:border-box;
  8023. width:100%;
  8024. }
  8025. #u41922_text {
  8026. border-width:0px;
  8027. word-wrap:break-word;
  8028. text-transform:none;
  8029. visibility:hidden;
  8030. }
  8031. #u41923_img {
  8032. border-width:0px;
  8033. position:absolute;
  8034. left:0px;
  8035. top:0px;
  8036. width:73px;
  8037. height:35px;
  8038. }
  8039. #u41923 {
  8040. border-width:0px;
  8041. position:absolute;
  8042. left:66px;
  8043. top:151px;
  8044. width:73px;
  8045. height:35px;
  8046. display:flex;
  8047. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8048. font-weight:400;
  8049. font-style:normal;
  8050. font-size:12px;
  8051. color:#606266;
  8052. }
  8053. #u41923 .text {
  8054. position:absolute;
  8055. align-self:center;
  8056. padding:2px 2px 2px 0px;
  8057. box-sizing:border-box;
  8058. width:100%;
  8059. }
  8060. #u41923_text {
  8061. border-width:0px;
  8062. word-wrap:break-word;
  8063. text-transform:none;
  8064. visibility:hidden;
  8065. }
  8066. #u41924_img {
  8067. border-width:0px;
  8068. position:absolute;
  8069. left:0px;
  8070. top:0px;
  8071. width:73px;
  8072. height:35px;
  8073. }
  8074. #u41924 {
  8075. border-width:0px;
  8076. position:absolute;
  8077. left:139px;
  8078. top:151px;
  8079. width:73px;
  8080. height:35px;
  8081. display:flex;
  8082. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8083. font-weight:400;
  8084. font-style:normal;
  8085. font-size:12px;
  8086. color:#606266;
  8087. }
  8088. #u41924 .text {
  8089. position:absolute;
  8090. align-self:center;
  8091. padding:2px 2px 2px 0px;
  8092. box-sizing:border-box;
  8093. width:100%;
  8094. }
  8095. #u41924_text {
  8096. border-width:0px;
  8097. word-wrap:break-word;
  8098. text-transform:none;
  8099. visibility:hidden;
  8100. }
  8101. #u41925_img {
  8102. border-width:0px;
  8103. position:absolute;
  8104. left:0px;
  8105. top:0px;
  8106. width:73px;
  8107. height:35px;
  8108. }
  8109. #u41925 {
  8110. border-width:0px;
  8111. position:absolute;
  8112. left:212px;
  8113. top:151px;
  8114. width:73px;
  8115. height:35px;
  8116. display:flex;
  8117. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8118. font-weight:400;
  8119. font-style:normal;
  8120. font-size:12px;
  8121. color:#606266;
  8122. }
  8123. #u41925 .text {
  8124. position:absolute;
  8125. align-self:center;
  8126. padding:2px 2px 2px 0px;
  8127. box-sizing:border-box;
  8128. width:100%;
  8129. }
  8130. #u41925_text {
  8131. border-width:0px;
  8132. word-wrap:break-word;
  8133. text-transform:none;
  8134. visibility:hidden;
  8135. }
  8136. #u41926_img {
  8137. border-width:0px;
  8138. position:absolute;
  8139. left:0px;
  8140. top:0px;
  8141. width:73px;
  8142. height:35px;
  8143. }
  8144. #u41926 {
  8145. border-width:0px;
  8146. position:absolute;
  8147. left:285px;
  8148. top:151px;
  8149. width:73px;
  8150. height:35px;
  8151. display:flex;
  8152. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8153. font-weight:400;
  8154. font-style:normal;
  8155. font-size:12px;
  8156. color:#606266;
  8157. }
  8158. #u41926 .text {
  8159. position:absolute;
  8160. align-self:center;
  8161. padding:2px 2px 2px 0px;
  8162. box-sizing:border-box;
  8163. width:100%;
  8164. }
  8165. #u41926_text {
  8166. border-width:0px;
  8167. word-wrap:break-word;
  8168. text-transform:none;
  8169. visibility:hidden;
  8170. }
  8171. #u41927_img {
  8172. border-width:0px;
  8173. position:absolute;
  8174. left:0px;
  8175. top:0px;
  8176. width:73px;
  8177. height:35px;
  8178. }
  8179. #u41927 {
  8180. border-width:0px;
  8181. position:absolute;
  8182. left:358px;
  8183. top:151px;
  8184. width:73px;
  8185. height:35px;
  8186. display:flex;
  8187. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8188. font-weight:400;
  8189. font-style:normal;
  8190. font-size:12px;
  8191. color:#606266;
  8192. }
  8193. #u41927 .text {
  8194. position:absolute;
  8195. align-self:center;
  8196. padding:2px 2px 2px 0px;
  8197. box-sizing:border-box;
  8198. width:100%;
  8199. }
  8200. #u41927_text {
  8201. border-width:0px;
  8202. word-wrap:break-word;
  8203. text-transform:none;
  8204. visibility:hidden;
  8205. }
  8206. #u41928_img {
  8207. border-width:0px;
  8208. position:absolute;
  8209. left:0px;
  8210. top:0px;
  8211. width:73px;
  8212. height:35px;
  8213. }
  8214. #u41928 {
  8215. border-width:0px;
  8216. position:absolute;
  8217. left:431px;
  8218. top:151px;
  8219. width:73px;
  8220. height:35px;
  8221. display:flex;
  8222. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8223. font-weight:400;
  8224. font-style:normal;
  8225. font-size:12px;
  8226. color:#606266;
  8227. }
  8228. #u41928 .text {
  8229. position:absolute;
  8230. align-self:center;
  8231. padding:2px 2px 2px 0px;
  8232. box-sizing:border-box;
  8233. width:100%;
  8234. }
  8235. #u41928_text {
  8236. border-width:0px;
  8237. word-wrap:break-word;
  8238. text-transform:none;
  8239. visibility:hidden;
  8240. }
  8241. #u41929_img {
  8242. border-width:0px;
  8243. position:absolute;
  8244. left:0px;
  8245. top:0px;
  8246. width:90px;
  8247. height:35px;
  8248. }
  8249. #u41929 {
  8250. border-width:0px;
  8251. position:absolute;
  8252. left:504px;
  8253. top:151px;
  8254. width:90px;
  8255. height:35px;
  8256. display:flex;
  8257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8258. font-weight:400;
  8259. font-style:normal;
  8260. font-size:12px;
  8261. color:#606266;
  8262. }
  8263. #u41929 .text {
  8264. position:absolute;
  8265. align-self:center;
  8266. padding:2px 2px 2px 0px;
  8267. box-sizing:border-box;
  8268. width:100%;
  8269. }
  8270. #u41929_text {
  8271. border-width:0px;
  8272. word-wrap:break-word;
  8273. text-transform:none;
  8274. visibility:hidden;
  8275. }
  8276. #u41930_img {
  8277. border-width:0px;
  8278. position:absolute;
  8279. left:0px;
  8280. top:0px;
  8281. width:73px;
  8282. height:35px;
  8283. }
  8284. #u41930 {
  8285. border-width:0px;
  8286. position:absolute;
  8287. left:594px;
  8288. top:151px;
  8289. width:73px;
  8290. height:35px;
  8291. display:flex;
  8292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8293. font-weight:400;
  8294. font-style:normal;
  8295. font-size:12px;
  8296. color:#606266;
  8297. }
  8298. #u41930 .text {
  8299. position:absolute;
  8300. align-self:center;
  8301. padding:2px 2px 2px 0px;
  8302. box-sizing:border-box;
  8303. width:100%;
  8304. }
  8305. #u41930_text {
  8306. border-width:0px;
  8307. word-wrap:break-word;
  8308. text-transform:none;
  8309. visibility:hidden;
  8310. }
  8311. #u41931_img {
  8312. border-width:0px;
  8313. position:absolute;
  8314. left:0px;
  8315. top:0px;
  8316. width:73px;
  8317. height:35px;
  8318. }
  8319. #u41931 {
  8320. border-width:0px;
  8321. position:absolute;
  8322. left:667px;
  8323. top:151px;
  8324. width:73px;
  8325. height:35px;
  8326. display:flex;
  8327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8328. font-weight:400;
  8329. font-style:normal;
  8330. font-size:12px;
  8331. color:#606266;
  8332. }
  8333. #u41931 .text {
  8334. position:absolute;
  8335. align-self:center;
  8336. padding:2px 2px 2px 0px;
  8337. box-sizing:border-box;
  8338. width:100%;
  8339. }
  8340. #u41931_text {
  8341. border-width:0px;
  8342. word-wrap:break-word;
  8343. text-transform:none;
  8344. visibility:hidden;
  8345. }
  8346. #u41932_img {
  8347. border-width:0px;
  8348. position:absolute;
  8349. left:0px;
  8350. top:0px;
  8351. width:73px;
  8352. height:35px;
  8353. }
  8354. #u41932 {
  8355. border-width:0px;
  8356. position:absolute;
  8357. left:740px;
  8358. top:151px;
  8359. width:73px;
  8360. height:35px;
  8361. display:flex;
  8362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8363. font-weight:400;
  8364. font-style:normal;
  8365. font-size:12px;
  8366. color:#606266;
  8367. }
  8368. #u41932 .text {
  8369. position:absolute;
  8370. align-self:center;
  8371. padding:2px 2px 2px 0px;
  8372. box-sizing:border-box;
  8373. width:100%;
  8374. }
  8375. #u41932_text {
  8376. border-width:0px;
  8377. word-wrap:break-word;
  8378. text-transform:none;
  8379. visibility:hidden;
  8380. }
  8381. #u41933_img {
  8382. border-width:0px;
  8383. position:absolute;
  8384. left:0px;
  8385. top:0px;
  8386. width:73px;
  8387. height:35px;
  8388. }
  8389. #u41933 {
  8390. border-width:0px;
  8391. position:absolute;
  8392. left:813px;
  8393. top:151px;
  8394. width:73px;
  8395. height:35px;
  8396. display:flex;
  8397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8398. font-weight:400;
  8399. font-style:normal;
  8400. font-size:12px;
  8401. color:#606266;
  8402. }
  8403. #u41933 .text {
  8404. position:absolute;
  8405. align-self:center;
  8406. padding:2px 2px 2px 0px;
  8407. box-sizing:border-box;
  8408. width:100%;
  8409. }
  8410. #u41933_text {
  8411. border-width:0px;
  8412. word-wrap:break-word;
  8413. text-transform:none;
  8414. visibility:hidden;
  8415. }
  8416. #u41934_img {
  8417. border-width:0px;
  8418. position:absolute;
  8419. left:0px;
  8420. top:0px;
  8421. width:73px;
  8422. height:35px;
  8423. }
  8424. #u41934 {
  8425. border-width:0px;
  8426. position:absolute;
  8427. left:886px;
  8428. top:151px;
  8429. width:73px;
  8430. height:35px;
  8431. display:flex;
  8432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8433. font-weight:400;
  8434. font-style:normal;
  8435. font-size:12px;
  8436. color:#606266;
  8437. }
  8438. #u41934 .text {
  8439. position:absolute;
  8440. align-self:center;
  8441. padding:2px 2px 2px 0px;
  8442. box-sizing:border-box;
  8443. width:100%;
  8444. }
  8445. #u41934_text {
  8446. border-width:0px;
  8447. word-wrap:break-word;
  8448. text-transform:none;
  8449. visibility:hidden;
  8450. }
  8451. #u41935_img {
  8452. border-width:0px;
  8453. position:absolute;
  8454. left:0px;
  8455. top:0px;
  8456. width:79px;
  8457. height:35px;
  8458. }
  8459. #u41935 {
  8460. border-width:0px;
  8461. position:absolute;
  8462. left:959px;
  8463. top:151px;
  8464. width:79px;
  8465. height:35px;
  8466. display:flex;
  8467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8468. font-weight:400;
  8469. font-style:normal;
  8470. font-size:12px;
  8471. color:#606266;
  8472. }
  8473. #u41935 .text {
  8474. position:absolute;
  8475. align-self:center;
  8476. padding:2px 2px 2px 0px;
  8477. box-sizing:border-box;
  8478. width:100%;
  8479. }
  8480. #u41935_text {
  8481. border-width:0px;
  8482. word-wrap:break-word;
  8483. text-transform:none;
  8484. visibility:hidden;
  8485. }
  8486. #u41936_img {
  8487. border-width:0px;
  8488. position:absolute;
  8489. left:0px;
  8490. top:0px;
  8491. width:79px;
  8492. height:35px;
  8493. }
  8494. #u41936 {
  8495. border-width:0px;
  8496. position:absolute;
  8497. left:1038px;
  8498. top:151px;
  8499. width:79px;
  8500. height:35px;
  8501. display:flex;
  8502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8503. font-weight:400;
  8504. font-style:normal;
  8505. font-size:12px;
  8506. color:#606266;
  8507. }
  8508. #u41936 .text {
  8509. position:absolute;
  8510. align-self:center;
  8511. padding:2px 2px 2px 0px;
  8512. box-sizing:border-box;
  8513. width:100%;
  8514. }
  8515. #u41936_text {
  8516. border-width:0px;
  8517. word-wrap:break-word;
  8518. text-transform:none;
  8519. visibility:hidden;
  8520. }
  8521. #u41937_img {
  8522. border-width:0px;
  8523. position:absolute;
  8524. left:0px;
  8525. top:0px;
  8526. width:73px;
  8527. height:35px;
  8528. }
  8529. #u41937 {
  8530. border-width:0px;
  8531. position:absolute;
  8532. left:1117px;
  8533. top:151px;
  8534. width:73px;
  8535. height:35px;
  8536. display:flex;
  8537. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8538. font-weight:400;
  8539. font-style:normal;
  8540. font-size:12px;
  8541. color:#606266;
  8542. }
  8543. #u41937 .text {
  8544. position:absolute;
  8545. align-self:center;
  8546. padding:2px 2px 2px 0px;
  8547. box-sizing:border-box;
  8548. width:100%;
  8549. }
  8550. #u41937_text {
  8551. border-width:0px;
  8552. word-wrap:break-word;
  8553. text-transform:none;
  8554. visibility:hidden;
  8555. }
  8556. #u41938_img {
  8557. border-width:0px;
  8558. position:absolute;
  8559. left:0px;
  8560. top:0px;
  8561. width:73px;
  8562. height:35px;
  8563. }
  8564. #u41938 {
  8565. border-width:0px;
  8566. position:absolute;
  8567. left:1190px;
  8568. top:151px;
  8569. width:73px;
  8570. height:35px;
  8571. display:flex;
  8572. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8573. font-weight:400;
  8574. font-style:normal;
  8575. font-size:12px;
  8576. color:#606266;
  8577. }
  8578. #u41938 .text {
  8579. position:absolute;
  8580. align-self:center;
  8581. padding:2px 2px 2px 0px;
  8582. box-sizing:border-box;
  8583. width:100%;
  8584. }
  8585. #u41938_text {
  8586. border-width:0px;
  8587. word-wrap:break-word;
  8588. text-transform:none;
  8589. visibility:hidden;
  8590. }
  8591. #u41939_img {
  8592. border-width:0px;
  8593. position:absolute;
  8594. left:0px;
  8595. top:0px;
  8596. width:77px;
  8597. height:35px;
  8598. }
  8599. #u41939 {
  8600. border-width:0px;
  8601. position:absolute;
  8602. left:1263px;
  8603. top:151px;
  8604. width:77px;
  8605. height:35px;
  8606. display:flex;
  8607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8608. font-weight:400;
  8609. font-style:normal;
  8610. font-size:12px;
  8611. color:#02A7F0;
  8612. }
  8613. #u41939 .text {
  8614. position:absolute;
  8615. align-self:center;
  8616. padding:2px 2px 2px 0px;
  8617. box-sizing:border-box;
  8618. width:100%;
  8619. }
  8620. #u41939_text {
  8621. border-width:0px;
  8622. word-wrap:break-word;
  8623. text-transform:none;
  8624. visibility:hidden;
  8625. }
  8626. #u41940_img {
  8627. border-width:0px;
  8628. position:absolute;
  8629. left:0px;
  8630. top:0px;
  8631. width:13px;
  8632. height:13px;
  8633. }
  8634. #u41940 {
  8635. border-width:0px;
  8636. position:absolute;
  8637. left:427px;
  8638. top:69px;
  8639. width:13px;
  8640. height:13px;
  8641. display:flex;
  8642. }
  8643. #u41940 .text {
  8644. position:absolute;
  8645. align-self:center;
  8646. padding:2px 2px 2px 2px;
  8647. box-sizing:border-box;
  8648. width:100%;
  8649. }
  8650. #u41940_text {
  8651. border-width:0px;
  8652. word-wrap:break-word;
  8653. text-transform:none;
  8654. visibility:hidden;
  8655. }
  8656. #u41941 {
  8657. border-width:0px;
  8658. position:absolute;
  8659. left:0px;
  8660. top:0px;
  8661. width:0px;
  8662. height:0px;
  8663. }
  8664. #u41942_div {
  8665. border-width:0px;
  8666. position:absolute;
  8667. left:0px;
  8668. top:0px;
  8669. width:140px;
  8670. height:30px;
  8671. background:inherit;
  8672. background-color:rgba(255, 255, 255, 1);
  8673. box-sizing:border-box;
  8674. border-width:1px;
  8675. border-style:solid;
  8676. border-color:rgba(215, 215, 215, 1);
  8677. border-radius:4px;
  8678. -moz-box-shadow:none;
  8679. -webkit-box-shadow:none;
  8680. box-shadow:none;
  8681. font-size:11px;
  8682. }
  8683. #u41942 {
  8684. border-width:0px;
  8685. position:absolute;
  8686. left:799px;
  8687. top:110px;
  8688. width:140px;
  8689. height:30px;
  8690. display:flex;
  8691. font-size:11px;
  8692. }
  8693. #u41942 .text {
  8694. position:absolute;
  8695. align-self:center;
  8696. padding:2px 2px 2px 2px;
  8697. box-sizing:border-box;
  8698. width:100%;
  8699. }
  8700. #u41942_text {
  8701. border-width:0px;
  8702. word-wrap:break-word;
  8703. text-transform:none;
  8704. visibility:hidden;
  8705. }
  8706. #u41943_input {
  8707. position:absolute;
  8708. left:0px;
  8709. top:0px;
  8710. width:120px;
  8711. height:23px;
  8712. padding:2px 2px 2px 2px;
  8713. font-family:'ArialMT', 'Arial', sans-serif;
  8714. font-weight:400;
  8715. font-style:normal;
  8716. font-size:11px;
  8717. letter-spacing:normal;
  8718. color:#AAAAAA;
  8719. vertical-align:none;
  8720. text-align:left;
  8721. text-transform:none;
  8722. background-color:transparent;
  8723. border-color:transparent;
  8724. }
  8725. #u41943_input.disabled {
  8726. position:absolute;
  8727. left:0px;
  8728. top:0px;
  8729. width:120px;
  8730. height:23px;
  8731. padding:2px 2px 2px 2px;
  8732. font-family:'ArialMT', 'Arial', sans-serif;
  8733. font-weight:400;
  8734. font-style:normal;
  8735. font-size:11px;
  8736. letter-spacing:normal;
  8737. color:#AAAAAA;
  8738. vertical-align:none;
  8739. text-align:left;
  8740. text-transform:none;
  8741. background-color:transparent;
  8742. border-color:transparent;
  8743. }
  8744. #u41943_div {
  8745. border-width:0px;
  8746. position:absolute;
  8747. left:0px;
  8748. top:0px;
  8749. width:120px;
  8750. height:23px;
  8751. background:inherit;
  8752. background-color:rgba(255, 255, 255, 1);
  8753. border:none;
  8754. border-radius:0px;
  8755. -moz-box-shadow:none;
  8756. -webkit-box-shadow:none;
  8757. box-shadow:none;
  8758. font-size:11px;
  8759. color:#AAAAAA;
  8760. }
  8761. #u41943 {
  8762. border-width:0px;
  8763. position:absolute;
  8764. left:806px;
  8765. top:112px;
  8766. width:120px;
  8767. height:23px;
  8768. display:flex;
  8769. font-size:11px;
  8770. color:#AAAAAA;
  8771. }
  8772. #u41943 .text {
  8773. position:absolute;
  8774. align-self:flex-start;
  8775. padding:2px 2px 2px 2px;
  8776. box-sizing:border-box;
  8777. width:100%;
  8778. }
  8779. #u41943_div.disabled {
  8780. border-width:0px;
  8781. position:absolute;
  8782. left:0px;
  8783. top:0px;
  8784. width:120px;
  8785. height:23px;
  8786. background:inherit;
  8787. background-color:rgba(240, 240, 240, 1);
  8788. border:none;
  8789. border-radius:0px;
  8790. -moz-box-shadow:none;
  8791. -webkit-box-shadow:none;
  8792. box-shadow:none;
  8793. font-size:11px;
  8794. color:#AAAAAA;
  8795. }
  8796. #u41943.disabled {
  8797. }
  8798. .u41943_input_option {
  8799. font-size:11px;
  8800. }
  8801. #u41944 {
  8802. border-width:0px;
  8803. position:absolute;
  8804. left:0px;
  8805. top:0px;
  8806. width:0px;
  8807. height:0px;
  8808. }
  8809. #u41945_div {
  8810. border-width:0px;
  8811. position:absolute;
  8812. left:0px;
  8813. top:0px;
  8814. width:140px;
  8815. height:30px;
  8816. background:inherit;
  8817. background-color:rgba(255, 255, 255, 1);
  8818. box-sizing:border-box;
  8819. border-width:1px;
  8820. border-style:solid;
  8821. border-color:rgba(215, 215, 215, 1);
  8822. border-radius:4px;
  8823. -moz-box-shadow:none;
  8824. -webkit-box-shadow:none;
  8825. box-shadow:none;
  8826. font-size:11px;
  8827. }
  8828. #u41945 {
  8829. border-width:0px;
  8830. position:absolute;
  8831. left:949px;
  8832. top:110px;
  8833. width:140px;
  8834. height:30px;
  8835. display:flex;
  8836. font-size:11px;
  8837. }
  8838. #u41945 .text {
  8839. position:absolute;
  8840. align-self:center;
  8841. padding:2px 2px 2px 2px;
  8842. box-sizing:border-box;
  8843. width:100%;
  8844. }
  8845. #u41945_text {
  8846. border-width:0px;
  8847. word-wrap:break-word;
  8848. text-transform:none;
  8849. visibility:hidden;
  8850. }
  8851. #u41946_input {
  8852. position:absolute;
  8853. left:0px;
  8854. top:0px;
  8855. width:120px;
  8856. height:23px;
  8857. padding:2px 2px 2px 2px;
  8858. font-family:'ArialMT', 'Arial', sans-serif;
  8859. font-weight:400;
  8860. font-style:normal;
  8861. font-size:11px;
  8862. letter-spacing:normal;
  8863. color:#AAAAAA;
  8864. vertical-align:none;
  8865. text-align:left;
  8866. text-transform:none;
  8867. background-color:transparent;
  8868. border-color:transparent;
  8869. }
  8870. #u41946_input.disabled {
  8871. position:absolute;
  8872. left:0px;
  8873. top:0px;
  8874. width:120px;
  8875. height:23px;
  8876. padding:2px 2px 2px 2px;
  8877. font-family:'ArialMT', 'Arial', sans-serif;
  8878. font-weight:400;
  8879. font-style:normal;
  8880. font-size:11px;
  8881. letter-spacing:normal;
  8882. color:#AAAAAA;
  8883. vertical-align:none;
  8884. text-align:left;
  8885. text-transform:none;
  8886. background-color:transparent;
  8887. border-color:transparent;
  8888. }
  8889. #u41946_div {
  8890. border-width:0px;
  8891. position:absolute;
  8892. left:0px;
  8893. top:0px;
  8894. width:120px;
  8895. height:23px;
  8896. background:inherit;
  8897. background-color:rgba(255, 255, 255, 1);
  8898. border:none;
  8899. border-radius:0px;
  8900. -moz-box-shadow:none;
  8901. -webkit-box-shadow:none;
  8902. box-shadow:none;
  8903. font-size:11px;
  8904. color:#AAAAAA;
  8905. }
  8906. #u41946 {
  8907. border-width:0px;
  8908. position:absolute;
  8909. left:956px;
  8910. top:112px;
  8911. width:120px;
  8912. height:23px;
  8913. display:flex;
  8914. font-size:11px;
  8915. color:#AAAAAA;
  8916. }
  8917. #u41946 .text {
  8918. position:absolute;
  8919. align-self:flex-start;
  8920. padding:2px 2px 2px 2px;
  8921. box-sizing:border-box;
  8922. width:100%;
  8923. }
  8924. #u41946_div.disabled {
  8925. border-width:0px;
  8926. position:absolute;
  8927. left:0px;
  8928. top:0px;
  8929. width:120px;
  8930. height:23px;
  8931. background:inherit;
  8932. background-color:rgba(240, 240, 240, 1);
  8933. border:none;
  8934. border-radius:0px;
  8935. -moz-box-shadow:none;
  8936. -webkit-box-shadow:none;
  8937. box-shadow:none;
  8938. font-size:11px;
  8939. color:#AAAAAA;
  8940. }
  8941. #u41946.disabled {
  8942. }
  8943. .u41946_input_option {
  8944. font-size:11px;
  8945. }
  8946. #u41947 {
  8947. border-width:0px;
  8948. position:absolute;
  8949. left:0px;
  8950. top:0px;
  8951. width:0px;
  8952. height:0px;
  8953. }
  8954. #u41948_div {
  8955. border-width:0px;
  8956. position:absolute;
  8957. left:0px;
  8958. top:0px;
  8959. width:200px;
  8960. height:1180px;
  8961. background:inherit;
  8962. background-color:rgba(255, 255, 255, 1);
  8963. border:none;
  8964. border-radius:0px;
  8965. -moz-box-shadow:none;
  8966. -webkit-box-shadow:none;
  8967. box-shadow:none;
  8968. }
  8969. #u41948 {
  8970. border-width:0px;
  8971. position:absolute;
  8972. left:119px;
  8973. top:50px;
  8974. width:200px;
  8975. height:1180px;
  8976. display:flex;
  8977. }
  8978. #u41948 .text {
  8979. position:absolute;
  8980. align-self:center;
  8981. padding:2px 2px 2px 2px;
  8982. box-sizing:border-box;
  8983. width:100%;
  8984. }
  8985. #u41948_text {
  8986. border-width:0px;
  8987. word-wrap:break-word;
  8988. text-transform:none;
  8989. visibility:hidden;
  8990. }
  8991. #u41949_div {
  8992. border-width:0px;
  8993. position:absolute;
  8994. left:0px;
  8995. top:0px;
  8996. width:200px;
  8997. height:60px;
  8998. background:inherit;
  8999. background-color:rgba(224, 231, 247, 1);
  9000. border:none;
  9001. border-radius:0px;
  9002. -moz-box-shadow:none;
  9003. -webkit-box-shadow:none;
  9004. box-shadow:none;
  9005. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9006. font-weight:500;
  9007. font-style:normal;
  9008. font-size:18px;
  9009. }
  9010. #u41949 {
  9011. border-width:0px;
  9012. position:absolute;
  9013. left:119px;
  9014. top:50px;
  9015. width:200px;
  9016. height:60px;
  9017. display:flex;
  9018. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9019. font-weight:500;
  9020. font-style:normal;
  9021. font-size:18px;
  9022. }
  9023. #u41949 .text {
  9024. position:absolute;
  9025. align-self:center;
  9026. padding:0px 0px 0px 20px;
  9027. box-sizing:border-box;
  9028. width:100%;
  9029. }
  9030. #u41949_text {
  9031. border-width:0px;
  9032. word-wrap:break-word;
  9033. text-transform:none;
  9034. }
  9035. #u41950_div {
  9036. border-width:0px;
  9037. position:absolute;
  9038. left:0px;
  9039. top:0px;
  9040. width:65px;
  9041. height:22px;
  9042. background:inherit;
  9043. background-color:rgba(255, 255, 255, 0);
  9044. border:none;
  9045. border-radius:0px;
  9046. -moz-box-shadow:none;
  9047. -webkit-box-shadow:none;
  9048. box-shadow:none;
  9049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9050. font-weight:400;
  9051. font-style:normal;
  9052. font-size:16px;
  9053. }
  9054. #u41950 {
  9055. border-width:0px;
  9056. position:absolute;
  9057. left:146px;
  9058. top:165px;
  9059. width:65px;
  9060. height:22px;
  9061. display:flex;
  9062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9063. font-weight:400;
  9064. font-style:normal;
  9065. font-size:16px;
  9066. }
  9067. #u41950 .text {
  9068. position:absolute;
  9069. align-self:flex-start;
  9070. padding:0px 0px 0px 0px;
  9071. box-sizing:border-box;
  9072. width:100%;
  9073. }
  9074. #u41950_text {
  9075. border-width:0px;
  9076. white-space:nowrap;
  9077. text-transform:none;
  9078. }
  9079. #u41951_div {
  9080. border-width:0px;
  9081. position:absolute;
  9082. left:0px;
  9083. top:0px;
  9084. width:65px;
  9085. height:22px;
  9086. background:inherit;
  9087. background-color:rgba(255, 255, 255, 0);
  9088. border:none;
  9089. border-radius:0px;
  9090. -moz-box-shadow:none;
  9091. -webkit-box-shadow:none;
  9092. box-shadow:none;
  9093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9094. font-weight:400;
  9095. font-style:normal;
  9096. font-size:16px;
  9097. }
  9098. #u41951 {
  9099. border-width:0px;
  9100. position:absolute;
  9101. left:146px;
  9102. top:207px;
  9103. width:65px;
  9104. height:22px;
  9105. display:flex;
  9106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9107. font-weight:400;
  9108. font-style:normal;
  9109. font-size:16px;
  9110. }
  9111. #u41951 .text {
  9112. position:absolute;
  9113. align-self:flex-start;
  9114. padding:0px 0px 0px 0px;
  9115. box-sizing:border-box;
  9116. width:100%;
  9117. }
  9118. #u41951_text {
  9119. border-width:0px;
  9120. white-space:nowrap;
  9121. text-transform:none;
  9122. }
  9123. #u41952_div {
  9124. border-width:0px;
  9125. position:absolute;
  9126. left:0px;
  9127. top:0px;
  9128. width:49px;
  9129. height:17px;
  9130. background:inherit;
  9131. background-color:rgba(255, 255, 255, 0);
  9132. border:none;
  9133. border-radius:0px;
  9134. -moz-box-shadow:none;
  9135. -webkit-box-shadow:none;
  9136. box-shadow:none;
  9137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9138. font-weight:400;
  9139. font-style:normal;
  9140. font-size:12px;
  9141. color:#AAAAAA;
  9142. }
  9143. #u41952 {
  9144. border-width:0px;
  9145. position:absolute;
  9146. left:146px;
  9147. top:129px;
  9148. width:49px;
  9149. height:17px;
  9150. display:flex;
  9151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9152. font-weight:400;
  9153. font-style:normal;
  9154. font-size:12px;
  9155. color:#AAAAAA;
  9156. }
  9157. #u41952 .text {
  9158. position:absolute;
  9159. align-self:flex-start;
  9160. padding:0px 0px 0px 0px;
  9161. box-sizing:border-box;
  9162. width:100%;
  9163. }
  9164. #u41952_text {
  9165. border-width:0px;
  9166. white-space:nowrap;
  9167. text-transform:none;
  9168. }
  9169. #u41953_div {
  9170. border-width:0px;
  9171. position:absolute;
  9172. left:0px;
  9173. top:0px;
  9174. width:65px;
  9175. height:22px;
  9176. background:inherit;
  9177. background-color:rgba(255, 255, 255, 0);
  9178. border:none;
  9179. border-radius:0px;
  9180. -moz-box-shadow:none;
  9181. -webkit-box-shadow:none;
  9182. box-shadow:none;
  9183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9184. font-weight:400;
  9185. font-style:normal;
  9186. font-size:16px;
  9187. }
  9188. #u41953 {
  9189. border-width:0px;
  9190. position:absolute;
  9191. left:146px;
  9192. top:307px;
  9193. width:65px;
  9194. height:22px;
  9195. display:flex;
  9196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9197. font-weight:400;
  9198. font-style:normal;
  9199. font-size:16px;
  9200. }
  9201. #u41953 .text {
  9202. position:absolute;
  9203. align-self:flex-start;
  9204. padding:0px 0px 0px 0px;
  9205. box-sizing:border-box;
  9206. width:100%;
  9207. }
  9208. #u41953_text {
  9209. border-width:0px;
  9210. white-space:nowrap;
  9211. text-transform:none;
  9212. }
  9213. #u41954_div {
  9214. border-width:0px;
  9215. position:absolute;
  9216. left:0px;
  9217. top:0px;
  9218. width:49px;
  9219. height:17px;
  9220. background:inherit;
  9221. background-color:rgba(255, 255, 255, 0);
  9222. border:none;
  9223. border-radius:0px;
  9224. -moz-box-shadow:none;
  9225. -webkit-box-shadow:none;
  9226. box-shadow:none;
  9227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9228. font-weight:400;
  9229. font-style:normal;
  9230. font-size:12px;
  9231. color:#AAAAAA;
  9232. }
  9233. #u41954 {
  9234. border-width:0px;
  9235. position:absolute;
  9236. left:146px;
  9237. top:271px;
  9238. width:49px;
  9239. height:17px;
  9240. display:flex;
  9241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9242. font-weight:400;
  9243. font-style:normal;
  9244. font-size:12px;
  9245. color:#AAAAAA;
  9246. }
  9247. #u41954 .text {
  9248. position:absolute;
  9249. align-self:flex-start;
  9250. padding:0px 0px 0px 0px;
  9251. box-sizing:border-box;
  9252. width:100%;
  9253. }
  9254. #u41954_text {
  9255. border-width:0px;
  9256. white-space:nowrap;
  9257. text-transform:none;
  9258. }
  9259. #u41955_img {
  9260. border-width:0px;
  9261. position:absolute;
  9262. left:0px;
  9263. top:0px;
  9264. width:201px;
  9265. height:2px;
  9266. }
  9267. #u41955 {
  9268. border-width:0px;
  9269. position:absolute;
  9270. left:119px;
  9271. top:249px;
  9272. width:200px;
  9273. height:1px;
  9274. display:flex;
  9275. }
  9276. #u41955 .text {
  9277. position:absolute;
  9278. align-self:center;
  9279. padding:2px 2px 2px 2px;
  9280. box-sizing:border-box;
  9281. width:100%;
  9282. }
  9283. #u41955_text {
  9284. border-width:0px;
  9285. word-wrap:break-word;
  9286. text-transform:none;
  9287. visibility:hidden;
  9288. }