styles.css 146 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411
  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. #u4867_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:129px;
  25. height:22px;
  26. background:inherit;
  27. background-color:rgba(255, 255, 255, 0);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. font-size:16px;
  34. color:#FFFFFF;
  35. }
  36. #u4867 {
  37. border-width:0px;
  38. position:absolute;
  39. left:49px;
  40. top:14px;
  41. width:129px;
  42. height:22px;
  43. display:flex;
  44. font-size:16px;
  45. color:#FFFFFF;
  46. }
  47. #u4867 .text {
  48. position:absolute;
  49. align-self:flex-start;
  50. padding:0px 0px 0px 0px;
  51. box-sizing:border-box;
  52. width:100%;
  53. }
  54. #u4867_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u4868_div {
  60. border-width:0px;
  61. position:absolute;
  62. left:0px;
  63. top:0px;
  64. width:1600px;
  65. height:50px;
  66. background:inherit;
  67. background-color:rgba(30, 42, 68, 1);
  68. border:none;
  69. border-radius:0px;
  70. -moz-box-shadow:none;
  71. -webkit-box-shadow:none;
  72. box-shadow:none;
  73. color:#AFB3B6;
  74. }
  75. #u4868 {
  76. border-width:0px;
  77. position:absolute;
  78. left:0px;
  79. top:0px;
  80. width:1600px;
  81. height:50px;
  82. display:flex;
  83. color:#AFB3B6;
  84. }
  85. #u4868 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u4868_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u4869 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u4870_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u4870 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u4870 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u4870_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u4871_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:161px;
  141. height:22px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 0);
  144. border:none;
  145. border-radius:0px;
  146. -moz-box-shadow:none;
  147. -webkit-box-shadow:none;
  148. box-shadow:none;
  149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  150. font-weight:400;
  151. font-style:normal;
  152. font-size:16px;
  153. color:#FFFFFF;
  154. }
  155. #u4871 {
  156. border-width:0px;
  157. position:absolute;
  158. left:62px;
  159. top:14px;
  160. width:161px;
  161. height:22px;
  162. display:flex;
  163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  164. font-weight:400;
  165. font-style:normal;
  166. font-size:16px;
  167. color:#FFFFFF;
  168. }
  169. #u4871 .text {
  170. position:absolute;
  171. align-self:flex-start;
  172. padding:0px 0px 0px 0px;
  173. box-sizing:border-box;
  174. width:100%;
  175. }
  176. #u4871_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u4872_div {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:120px;
  187. height:1200px;
  188. background:inherit;
  189. background-color:rgba(30, 42, 68, 1);
  190. border:none;
  191. border-radius:0px;
  192. -moz-box-shadow:none;
  193. -webkit-box-shadow:none;
  194. box-shadow:none;
  195. color:#AFB3B6;
  196. }
  197. #u4872 {
  198. border-width:0px;
  199. position:absolute;
  200. left:0px;
  201. top:47px;
  202. width:120px;
  203. height:1200px;
  204. display:flex;
  205. color:#AFB3B6;
  206. }
  207. #u4872 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u4872_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u4873_div {
  221. border-width:0px;
  222. position:absolute;
  223. left:0px;
  224. top:0px;
  225. width:1480px;
  226. height:1200px;
  227. background:inherit;
  228. background-color:rgba(242, 242, 242, 1);
  229. border:none;
  230. border-radius:0px;
  231. -moz-box-shadow:none;
  232. -webkit-box-shadow:none;
  233. box-shadow:none;
  234. }
  235. #u4873 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u4873 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u4873_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u4874 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u4875_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. #u4875 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:67px;
  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. #u4875 .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. #u4875_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u4876_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u4876 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u4876 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u4876_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u4877 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u4878_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. #u4878 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:109px;
  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. #u4878 .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. #u4878_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u4879_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u4879 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u4879 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u4879_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u4880 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u4881_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:29px;
  439. height:20px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:25px;
  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. color:#FFFFFF;
  451. }
  452. #u4881 {
  453. border-width:0px;
  454. position:absolute;
  455. left:59px;
  456. top:1141px;
  457. width:29px;
  458. height:20px;
  459. display:flex;
  460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  461. font-weight:400;
  462. font-style:normal;
  463. color:#FFFFFF;
  464. }
  465. #u4881 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u4881_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u4882_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u4882 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u4882 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u4882_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u4883 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u4884_div {
  516. border-width:0px;
  517. position:absolute;
  518. left:0px;
  519. top:0px;
  520. width:29px;
  521. height:20px;
  522. background:inherit;
  523. background-color:rgba(255, 255, 255, 0);
  524. border:none;
  525. border-radius:25px;
  526. -moz-box-shadow:none;
  527. -webkit-box-shadow:none;
  528. box-shadow:none;
  529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  530. font-weight:400;
  531. font-style:normal;
  532. color:#FFFFFF;
  533. }
  534. #u4884 {
  535. border-width:0px;
  536. position:absolute;
  537. left:59px;
  538. top:1183px;
  539. width:29px;
  540. height:20px;
  541. display:flex;
  542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  543. font-weight:400;
  544. font-style:normal;
  545. color:#FFFFFF;
  546. }
  547. #u4884 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u4884_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u4885_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u4885 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u4885 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u4885_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u4886 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u4887_div {
  598. border-width:0px;
  599. position:absolute;
  600. left:0px;
  601. top:0px;
  602. width:33px;
  603. height:22px;
  604. background:inherit;
  605. background-color:rgba(255, 255, 255, 0);
  606. border:none;
  607. border-radius:0px;
  608. -moz-box-shadow:none;
  609. -webkit-box-shadow:none;
  610. box-shadow:none;
  611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  612. font-weight:400;
  613. font-style:normal;
  614. font-size:16px;
  615. color:#FFFFFF;
  616. }
  617. #u4887 {
  618. border-width:0px;
  619. position:absolute;
  620. left:39px;
  621. top:277px;
  622. width:33px;
  623. height:22px;
  624. display:flex;
  625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  626. font-weight:400;
  627. font-style:normal;
  628. font-size:16px;
  629. color:#FFFFFF;
  630. }
  631. #u4887 .text {
  632. position:absolute;
  633. align-self:flex-start;
  634. padding:0px 0px 0px 0px;
  635. box-sizing:border-box;
  636. width:100%;
  637. }
  638. #u4887_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u4888_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u4888 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u4888 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u4888_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u4889 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u4890_div {
  682. border-width:0px;
  683. position:absolute;
  684. left:0px;
  685. top:0px;
  686. width:33px;
  687. height:22px;
  688. background:inherit;
  689. background-color:rgba(255, 255, 255, 0);
  690. border:none;
  691. border-radius:0px;
  692. -moz-box-shadow:none;
  693. -webkit-box-shadow:none;
  694. box-shadow:none;
  695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  696. font-weight:400;
  697. font-style:normal;
  698. font-size:16px;
  699. color:#FFFFFF;
  700. }
  701. #u4890 {
  702. border-width:0px;
  703. position:absolute;
  704. left:39px;
  705. top:235px;
  706. width:33px;
  707. height:22px;
  708. display:flex;
  709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  710. font-weight:400;
  711. font-style:normal;
  712. font-size:16px;
  713. color:#FFFFFF;
  714. }
  715. #u4890 .text {
  716. position:absolute;
  717. align-self:flex-start;
  718. padding:0px 0px 0px 0px;
  719. box-sizing:border-box;
  720. width:100%;
  721. }
  722. #u4890_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u4891_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u4891 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u4891 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u4891_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u4892 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u4893_div {
  766. border-width:0px;
  767. position:absolute;
  768. left:0px;
  769. top:0px;
  770. width:33px;
  771. height:22px;
  772. background:inherit;
  773. background-color:rgba(255, 255, 255, 0);
  774. border:none;
  775. border-radius:0px;
  776. -moz-box-shadow:none;
  777. -webkit-box-shadow:none;
  778. box-shadow:none;
  779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  780. font-weight:400;
  781. font-style:normal;
  782. font-size:16px;
  783. color:#FFFFFF;
  784. }
  785. #u4893 {
  786. border-width:0px;
  787. position:absolute;
  788. left:39px;
  789. top:403px;
  790. width:33px;
  791. height:22px;
  792. display:flex;
  793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  794. font-weight:400;
  795. font-style:normal;
  796. font-size:16px;
  797. color:#FFFFFF;
  798. }
  799. #u4893 .text {
  800. position:absolute;
  801. align-self:flex-start;
  802. padding:0px 0px 0px 0px;
  803. box-sizing:border-box;
  804. width:100%;
  805. }
  806. #u4893_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u4894_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u4894 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:407px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u4894 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u4894_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u4895 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u4896_div {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:33px;
  855. height:22px;
  856. background:inherit;
  857. background-color:rgba(255, 255, 255, 0);
  858. border:none;
  859. border-radius:0px;
  860. -moz-box-shadow:none;
  861. -webkit-box-shadow:none;
  862. box-shadow:none;
  863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  864. font-weight:400;
  865. font-style:normal;
  866. font-size:16px;
  867. color:#FFFFFF;
  868. }
  869. #u4896 {
  870. border-width:0px;
  871. position:absolute;
  872. left:39px;
  873. top:445px;
  874. width:33px;
  875. height:22px;
  876. display:flex;
  877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  878. font-weight:400;
  879. font-style:normal;
  880. font-size:16px;
  881. color:#FFFFFF;
  882. }
  883. #u4896 .text {
  884. position:absolute;
  885. align-self:flex-start;
  886. padding:0px 0px 0px 0px;
  887. box-sizing:border-box;
  888. width:100%;
  889. }
  890. #u4896_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u4897_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u4897 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:449px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u4897 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u4897_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u4898 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u4899_div {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:33px;
  939. height:22px;
  940. background:inherit;
  941. background-color:rgba(255, 255, 255, 0);
  942. border:none;
  943. border-radius:0px;
  944. -moz-box-shadow:none;
  945. -webkit-box-shadow:none;
  946. box-shadow:none;
  947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  948. font-weight:400;
  949. font-style:normal;
  950. font-size:16px;
  951. color:#FFFFFF;
  952. }
  953. #u4899 {
  954. border-width:0px;
  955. position:absolute;
  956. left:39px;
  957. top:529px;
  958. width:33px;
  959. height:22px;
  960. display:flex;
  961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  962. font-weight:400;
  963. font-style:normal;
  964. font-size:16px;
  965. color:#FFFFFF;
  966. }
  967. #u4899 .text {
  968. position:absolute;
  969. align-self:flex-start;
  970. padding:0px 0px 0px 0px;
  971. box-sizing:border-box;
  972. width:100%;
  973. }
  974. #u4899_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u4900_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u4900 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:533px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u4900 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u4900_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u4901_input {
  1010. position:absolute;
  1011. left:0px;
  1012. top:0px;
  1013. width:214px;
  1014. height:27px;
  1015. padding:2px 2px 2px 2px;
  1016. font-family:'ArialMT', 'Arial', sans-serif;
  1017. font-weight:400;
  1018. font-style:normal;
  1019. font-size:14px;
  1020. letter-spacing:normal;
  1021. color:#FFFFFF;
  1022. vertical-align:none;
  1023. text-align:left;
  1024. text-transform:none;
  1025. background-color:transparent;
  1026. border-color:transparent;
  1027. }
  1028. #u4901_input.disabled {
  1029. position:absolute;
  1030. left:0px;
  1031. top:0px;
  1032. width:214px;
  1033. height:27px;
  1034. padding:2px 2px 2px 2px;
  1035. font-family:'ArialMT', 'Arial', sans-serif;
  1036. font-weight:400;
  1037. font-style:normal;
  1038. font-size:14px;
  1039. letter-spacing:normal;
  1040. color:#FFFFFF;
  1041. vertical-align:none;
  1042. text-align:left;
  1043. text-transform:none;
  1044. background-color:transparent;
  1045. border-color:transparent;
  1046. }
  1047. #u4901_div {
  1048. border-width:0px;
  1049. position:absolute;
  1050. left:0px;
  1051. top:0px;
  1052. width:214px;
  1053. height:27px;
  1054. background:inherit;
  1055. background-color:rgba(255, 255, 255, 0);
  1056. border:none;
  1057. border-radius:0px;
  1058. -moz-box-shadow:none;
  1059. -webkit-box-shadow:none;
  1060. box-shadow:none;
  1061. font-size:14px;
  1062. color:#FFFFFF;
  1063. }
  1064. #u4901 {
  1065. border-width:0px;
  1066. position:absolute;
  1067. left:1221px;
  1068. top:10px;
  1069. width:214px;
  1070. height:27px;
  1071. display:flex;
  1072. font-size:14px;
  1073. color:#FFFFFF;
  1074. }
  1075. #u4901 .text {
  1076. position:absolute;
  1077. align-self:flex-start;
  1078. padding:2px 2px 2px 2px;
  1079. box-sizing:border-box;
  1080. width:100%;
  1081. }
  1082. #u4901_div.disabled {
  1083. border-width:0px;
  1084. position:absolute;
  1085. left:0px;
  1086. top:0px;
  1087. width:214px;
  1088. height:27px;
  1089. background:inherit;
  1090. background-color:rgba(240, 240, 240, 1);
  1091. border:none;
  1092. border-radius:0px;
  1093. -moz-box-shadow:none;
  1094. -webkit-box-shadow:none;
  1095. box-shadow:none;
  1096. font-size:14px;
  1097. color:#FFFFFF;
  1098. }
  1099. #u4901.disabled {
  1100. }
  1101. .u4901_input_option {
  1102. font-size:14px;
  1103. }
  1104. #u4902_img {
  1105. border-width:0px;
  1106. position:absolute;
  1107. left:0px;
  1108. top:0px;
  1109. width:22px;
  1110. height:22px;
  1111. }
  1112. #u4902 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:1194px;
  1116. top:15px;
  1117. width:22px;
  1118. height:22px;
  1119. display:flex;
  1120. }
  1121. #u4902 .text {
  1122. position:absolute;
  1123. align-self:center;
  1124. padding:2px 2px 2px 2px;
  1125. box-sizing:border-box;
  1126. width:100%;
  1127. }
  1128. #u4902_text {
  1129. border-width:0px;
  1130. word-wrap:break-word;
  1131. text-transform:none;
  1132. visibility:hidden;
  1133. }
  1134. #u4903_div {
  1135. border-width:0px;
  1136. position:absolute;
  1137. left:0px;
  1138. top:0px;
  1139. width:100px;
  1140. height:24px;
  1141. background:inherit;
  1142. background-color:rgba(242, 242, 242, 0.2);
  1143. border:none;
  1144. border-radius:25px;
  1145. -moz-box-shadow:none;
  1146. -webkit-box-shadow:none;
  1147. box-shadow:none;
  1148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1149. font-weight:400;
  1150. font-style:normal;
  1151. color:#FFFFFF;
  1152. text-align:center;
  1153. }
  1154. #u4903 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:1480px;
  1158. top:12px;
  1159. width:100px;
  1160. height:24px;
  1161. display:flex;
  1162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1163. font-weight:400;
  1164. font-style:normal;
  1165. color:#FFFFFF;
  1166. text-align:center;
  1167. }
  1168. #u4903 .text {
  1169. position:absolute;
  1170. align-self:center;
  1171. padding:0px 0px 0px 0px;
  1172. box-sizing:border-box;
  1173. width:100%;
  1174. }
  1175. #u4903_text {
  1176. border-width:0px;
  1177. word-wrap:break-word;
  1178. text-transform:none;
  1179. }
  1180. #u4904_img {
  1181. border-width:0px;
  1182. position:absolute;
  1183. left:0px;
  1184. top:0px;
  1185. width:2px;
  1186. height:12px;
  1187. }
  1188. #u4904 {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:1452px;
  1192. top:19px;
  1193. width:1px;
  1194. height:11px;
  1195. display:flex;
  1196. }
  1197. #u4904 .text {
  1198. position:absolute;
  1199. align-self:center;
  1200. padding:2px 2px 2px 2px;
  1201. box-sizing:border-box;
  1202. width:100%;
  1203. }
  1204. #u4904_text {
  1205. border-width:0px;
  1206. word-wrap:break-word;
  1207. text-transform:none;
  1208. visibility:hidden;
  1209. }
  1210. #u4905 {
  1211. border-width:0px;
  1212. position:absolute;
  1213. left:0px;
  1214. top:0px;
  1215. width:0px;
  1216. height:0px;
  1217. }
  1218. #u4906_div {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:33px;
  1224. height:22px;
  1225. background:inherit;
  1226. background-color:rgba(255, 255, 255, 0);
  1227. border:none;
  1228. border-radius:0px;
  1229. -moz-box-shadow:none;
  1230. -webkit-box-shadow:none;
  1231. box-shadow:none;
  1232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1233. font-weight:400;
  1234. font-style:normal;
  1235. font-size:16px;
  1236. color:#FFFFFF;
  1237. }
  1238. #u4906 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:39px;
  1242. top:319px;
  1243. width:33px;
  1244. height:22px;
  1245. display:flex;
  1246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1247. font-weight:400;
  1248. font-style:normal;
  1249. font-size:16px;
  1250. color:#FFFFFF;
  1251. }
  1252. #u4906 .text {
  1253. position:absolute;
  1254. align-self:flex-start;
  1255. padding:0px 0px 0px 0px;
  1256. box-sizing:border-box;
  1257. width:100%;
  1258. }
  1259. #u4906_text {
  1260. border-width:0px;
  1261. white-space:nowrap;
  1262. text-transform:none;
  1263. }
  1264. #u4907_img {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:14px;
  1270. height:14px;
  1271. }
  1272. #u4907 {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:20px;
  1276. top:323px;
  1277. width:14px;
  1278. height:14px;
  1279. display:flex;
  1280. }
  1281. #u4907 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:2px 2px 2px 2px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u4907_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. visibility:hidden;
  1293. }
  1294. #u4908 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:0px;
  1300. height:0px;
  1301. }
  1302. #u4909_div {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:33px;
  1308. height:22px;
  1309. background:inherit;
  1310. background-color:rgba(255, 255, 255, 0);
  1311. border:none;
  1312. border-radius:0px;
  1313. -moz-box-shadow:none;
  1314. -webkit-box-shadow:none;
  1315. box-shadow:none;
  1316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1317. font-weight:400;
  1318. font-style:normal;
  1319. font-size:16px;
  1320. color:#FFFFFF;
  1321. }
  1322. #u4909 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:39px;
  1326. top:361px;
  1327. width:33px;
  1328. height:22px;
  1329. display:flex;
  1330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1331. font-weight:400;
  1332. font-style:normal;
  1333. font-size:16px;
  1334. color:#FFFFFF;
  1335. }
  1336. #u4909 .text {
  1337. position:absolute;
  1338. align-self:flex-start;
  1339. padding:0px 0px 0px 0px;
  1340. box-sizing:border-box;
  1341. width:100%;
  1342. }
  1343. #u4909_text {
  1344. border-width:0px;
  1345. white-space:nowrap;
  1346. text-transform:none;
  1347. }
  1348. #u4910_img {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:0px;
  1352. top:0px;
  1353. width:14px;
  1354. height:14px;
  1355. }
  1356. #u4910 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:20px;
  1360. top:365px;
  1361. width:14px;
  1362. height:14px;
  1363. display:flex;
  1364. }
  1365. #u4910 .text {
  1366. position:absolute;
  1367. align-self:center;
  1368. padding:2px 2px 2px 2px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u4910_text {
  1373. border-width:0px;
  1374. word-wrap:break-word;
  1375. text-transform:none;
  1376. visibility:hidden;
  1377. }
  1378. #u4911 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:0px;
  1384. height:0px;
  1385. }
  1386. #u4912_div {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:33px;
  1392. height:22px;
  1393. background:inherit;
  1394. background-color:rgba(255, 255, 255, 0);
  1395. border:none;
  1396. border-radius:0px;
  1397. -moz-box-shadow:none;
  1398. -webkit-box-shadow:none;
  1399. box-shadow:none;
  1400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1401. font-weight:400;
  1402. font-style:normal;
  1403. font-size:16px;
  1404. color:#FFFFFF;
  1405. }
  1406. #u4912 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:39px;
  1410. top:151px;
  1411. width:33px;
  1412. height:22px;
  1413. display:flex;
  1414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1415. font-weight:400;
  1416. font-style:normal;
  1417. font-size:16px;
  1418. color:#FFFFFF;
  1419. }
  1420. #u4912 .text {
  1421. position:absolute;
  1422. align-self:flex-start;
  1423. padding:0px 0px 0px 0px;
  1424. box-sizing:border-box;
  1425. width:100%;
  1426. }
  1427. #u4912_text {
  1428. border-width:0px;
  1429. white-space:nowrap;
  1430. text-transform:none;
  1431. }
  1432. #u4913_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:14px;
  1438. height:14px;
  1439. }
  1440. #u4913 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:20px;
  1444. top:155px;
  1445. width:14px;
  1446. height:14px;
  1447. display:flex;
  1448. }
  1449. #u4913 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u4913_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u4914 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:0px;
  1468. height:0px;
  1469. }
  1470. #u4915_div {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:33px;
  1476. height:22px;
  1477. background:inherit;
  1478. background-color:rgba(255, 255, 255, 0);
  1479. border:none;
  1480. border-radius:0px;
  1481. -moz-box-shadow:none;
  1482. -webkit-box-shadow:none;
  1483. box-shadow:none;
  1484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1485. font-weight:400;
  1486. font-style:normal;
  1487. font-size:16px;
  1488. color:#FFFFFF;
  1489. }
  1490. #u4915 {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:39px;
  1494. top:487px;
  1495. width:33px;
  1496. height:22px;
  1497. display:flex;
  1498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1499. font-weight:400;
  1500. font-style:normal;
  1501. font-size:16px;
  1502. color:#FFFFFF;
  1503. }
  1504. #u4915 .text {
  1505. position:absolute;
  1506. align-self:flex-start;
  1507. padding:0px 0px 0px 0px;
  1508. box-sizing:border-box;
  1509. width:100%;
  1510. }
  1511. #u4915_text {
  1512. border-width:0px;
  1513. white-space:nowrap;
  1514. text-transform:none;
  1515. }
  1516. #u4916_img {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:14px;
  1522. height:14px;
  1523. }
  1524. #u4916 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:20px;
  1528. top:491px;
  1529. width:14px;
  1530. height:14px;
  1531. display:flex;
  1532. }
  1533. #u4916 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:2px 2px 2px 2px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u4916_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. visibility:hidden;
  1545. }
  1546. #u4917 {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:0px;
  1552. height:0px;
  1553. }
  1554. #u4918_div {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:33px;
  1560. height:22px;
  1561. background:inherit;
  1562. background-color:rgba(255, 255, 255, 0);
  1563. border:none;
  1564. border-radius:0px;
  1565. -moz-box-shadow:none;
  1566. -webkit-box-shadow:none;
  1567. box-shadow:none;
  1568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1569. font-weight:400;
  1570. font-style:normal;
  1571. font-size:16px;
  1572. color:#FFFFFF;
  1573. }
  1574. #u4918 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:39px;
  1578. top:193px;
  1579. width:33px;
  1580. height:22px;
  1581. display:flex;
  1582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1583. font-weight:400;
  1584. font-style:normal;
  1585. font-size:16px;
  1586. color:#FFFFFF;
  1587. }
  1588. #u4918 .text {
  1589. position:absolute;
  1590. align-self:flex-start;
  1591. padding:0px 0px 0px 0px;
  1592. box-sizing:border-box;
  1593. width:100%;
  1594. }
  1595. #u4918_text {
  1596. border-width:0px;
  1597. white-space:nowrap;
  1598. text-transform:none;
  1599. }
  1600. #u4919_img {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:14px;
  1606. height:14px;
  1607. }
  1608. #u4919 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:20px;
  1612. top:197px;
  1613. width:14px;
  1614. height:14px;
  1615. display:flex;
  1616. }
  1617. #u4919 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 2px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u4919_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. visibility:hidden;
  1629. }
  1630. #u4920_div {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:0px;
  1634. top:0px;
  1635. width:1258px;
  1636. height:1081px;
  1637. background:inherit;
  1638. background-color:rgba(255, 255, 255, 1);
  1639. border:none;
  1640. border-radius:0px;
  1641. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1642. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1643. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1644. }
  1645. #u4920 {
  1646. border-width:0px;
  1647. position:absolute;
  1648. left:333px;
  1649. top:161px;
  1650. width:1258px;
  1651. height:1081px;
  1652. display:flex;
  1653. }
  1654. #u4920 .text {
  1655. position:absolute;
  1656. align-self:center;
  1657. padding:2px 2px 2px 2px;
  1658. box-sizing:border-box;
  1659. width:100%;
  1660. }
  1661. #u4920_text {
  1662. border-width:0px;
  1663. word-wrap:break-word;
  1664. text-transform:none;
  1665. visibility:hidden;
  1666. }
  1667. #u4921_div {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:0px;
  1671. top:0px;
  1672. width:1258px;
  1673. height:100px;
  1674. background:inherit;
  1675. background-color:rgba(255, 255, 255, 1);
  1676. border:none;
  1677. border-radius:0px;
  1678. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1679. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1680. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1681. }
  1682. #u4921 {
  1683. border-width:0px;
  1684. position:absolute;
  1685. left:333px;
  1686. top:51px;
  1687. width:1258px;
  1688. height:100px;
  1689. display:flex;
  1690. }
  1691. #u4921 .text {
  1692. position:absolute;
  1693. align-self:center;
  1694. padding:2px 2px 2px 2px;
  1695. box-sizing:border-box;
  1696. width:100%;
  1697. }
  1698. #u4921_text {
  1699. border-width:0px;
  1700. word-wrap:break-word;
  1701. text-transform:none;
  1702. visibility:hidden;
  1703. }
  1704. #u4922_div {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:0px;
  1708. top:0px;
  1709. width:57px;
  1710. height:50px;
  1711. background:inherit;
  1712. background-color:rgba(255, 255, 255, 0);
  1713. border:none;
  1714. border-left:0px;
  1715. border-top:0px;
  1716. border-right:0px;
  1717. border-radius:0px;
  1718. border-bottom-right-radius:0px;
  1719. border-bottom-left-radius:0px;
  1720. -moz-box-shadow:none;
  1721. -webkit-box-shadow:none;
  1722. box-shadow:none;
  1723. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1724. font-weight:500;
  1725. font-style:normal;
  1726. }
  1727. #u4922 {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:353px;
  1731. top:51px;
  1732. width:57px;
  1733. height:50px;
  1734. display:flex;
  1735. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1736. font-weight:500;
  1737. font-style:normal;
  1738. }
  1739. #u4922 .text {
  1740. position:absolute;
  1741. align-self:center;
  1742. padding:0px 0px 0px 0px;
  1743. box-sizing:border-box;
  1744. width:100%;
  1745. }
  1746. #u4922_text {
  1747. border-width:0px;
  1748. white-space:nowrap;
  1749. text-transform:none;
  1750. }
  1751. #u4923 {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:353px;
  1755. top:232px;
  1756. width:1217px;
  1757. height:284px;
  1758. }
  1759. #u4924_img {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:0px;
  1763. top:0px;
  1764. width:30px;
  1765. height:38px;
  1766. }
  1767. #u4924 {
  1768. border-width:0px;
  1769. position:absolute;
  1770. left:0px;
  1771. top:0px;
  1772. width:30px;
  1773. height:38px;
  1774. display:flex;
  1775. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1776. font-weight:400;
  1777. font-style:normal;
  1778. font-size:12px;
  1779. color:#FFFFFF;
  1780. }
  1781. #u4924 .text {
  1782. position:absolute;
  1783. align-self:center;
  1784. padding:2px 2px 2px 0px;
  1785. box-sizing:border-box;
  1786. width:100%;
  1787. }
  1788. #u4924_text {
  1789. border-width:0px;
  1790. word-wrap:break-word;
  1791. text-transform:none;
  1792. }
  1793. #u4925_img {
  1794. border-width:0px;
  1795. position:absolute;
  1796. left:0px;
  1797. top:0px;
  1798. width:66px;
  1799. height:38px;
  1800. }
  1801. #u4925 {
  1802. border-width:0px;
  1803. position:absolute;
  1804. left:30px;
  1805. top:0px;
  1806. width:66px;
  1807. height:38px;
  1808. display:flex;
  1809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1810. font-weight:400;
  1811. font-style:normal;
  1812. font-size:12px;
  1813. color:#FFFFFF;
  1814. }
  1815. #u4925 .text {
  1816. position:absolute;
  1817. align-self:center;
  1818. padding:2px 2px 2px 0px;
  1819. box-sizing:border-box;
  1820. width:100%;
  1821. }
  1822. #u4925_text {
  1823. border-width:0px;
  1824. word-wrap:break-word;
  1825. text-transform:none;
  1826. }
  1827. #u4926_img {
  1828. border-width:0px;
  1829. position:absolute;
  1830. left:0px;
  1831. top:0px;
  1832. width:79px;
  1833. height:38px;
  1834. }
  1835. #u4926 {
  1836. border-width:0px;
  1837. position:absolute;
  1838. left:96px;
  1839. top:0px;
  1840. width:79px;
  1841. height:38px;
  1842. display:flex;
  1843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1844. font-weight:400;
  1845. font-style:normal;
  1846. font-size:12px;
  1847. color:#FFFFFF;
  1848. }
  1849. #u4926 .text {
  1850. position:absolute;
  1851. align-self:center;
  1852. padding:2px 2px 2px 0px;
  1853. box-sizing:border-box;
  1854. width:100%;
  1855. }
  1856. #u4926_text {
  1857. border-width:0px;
  1858. word-wrap:break-word;
  1859. text-transform:none;
  1860. }
  1861. #u4927_img {
  1862. border-width:0px;
  1863. position:absolute;
  1864. left:0px;
  1865. top:0px;
  1866. width:70px;
  1867. height:38px;
  1868. }
  1869. #u4927 {
  1870. border-width:0px;
  1871. position:absolute;
  1872. left:175px;
  1873. top:0px;
  1874. width:70px;
  1875. height:38px;
  1876. display:flex;
  1877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1878. font-weight:400;
  1879. font-style:normal;
  1880. font-size:12px;
  1881. color:#FFFFFF;
  1882. }
  1883. #u4927 .text {
  1884. position:absolute;
  1885. align-self:center;
  1886. padding:2px 2px 2px 0px;
  1887. box-sizing:border-box;
  1888. width:100%;
  1889. }
  1890. #u4927_text {
  1891. border-width:0px;
  1892. word-wrap:break-word;
  1893. text-transform:none;
  1894. }
  1895. #u4928_img {
  1896. border-width:0px;
  1897. position:absolute;
  1898. left:0px;
  1899. top:0px;
  1900. width:66px;
  1901. height:38px;
  1902. }
  1903. #u4928 {
  1904. border-width:0px;
  1905. position:absolute;
  1906. left:245px;
  1907. top:0px;
  1908. width:66px;
  1909. height:38px;
  1910. display:flex;
  1911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1912. font-weight:400;
  1913. font-style:normal;
  1914. font-size:12px;
  1915. color:#FFFFFF;
  1916. }
  1917. #u4928 .text {
  1918. position:absolute;
  1919. align-self:center;
  1920. padding:2px 2px 2px 0px;
  1921. box-sizing:border-box;
  1922. width:100%;
  1923. }
  1924. #u4928_text {
  1925. border-width:0px;
  1926. word-wrap:break-word;
  1927. text-transform:none;
  1928. }
  1929. #u4929_img {
  1930. border-width:0px;
  1931. position:absolute;
  1932. left:0px;
  1933. top:0px;
  1934. width:70px;
  1935. height:38px;
  1936. }
  1937. #u4929 {
  1938. border-width:0px;
  1939. position:absolute;
  1940. left:311px;
  1941. top:0px;
  1942. width:70px;
  1943. height:38px;
  1944. display:flex;
  1945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1946. font-weight:400;
  1947. font-style:normal;
  1948. font-size:12px;
  1949. color:#FFFFFF;
  1950. }
  1951. #u4929 .text {
  1952. position:absolute;
  1953. align-self:center;
  1954. padding:2px 2px 2px 0px;
  1955. box-sizing:border-box;
  1956. width:100%;
  1957. }
  1958. #u4929_text {
  1959. border-width:0px;
  1960. word-wrap:break-word;
  1961. text-transform:none;
  1962. }
  1963. #u4930_img {
  1964. border-width:0px;
  1965. position:absolute;
  1966. left:0px;
  1967. top:0px;
  1968. width:100px;
  1969. height:38px;
  1970. }
  1971. #u4930 {
  1972. border-width:0px;
  1973. position:absolute;
  1974. left:381px;
  1975. top:0px;
  1976. width:100px;
  1977. height:38px;
  1978. display:flex;
  1979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1980. font-weight:400;
  1981. font-style:normal;
  1982. font-size:12px;
  1983. color:#FFFFFF;
  1984. }
  1985. #u4930 .text {
  1986. position:absolute;
  1987. align-self:center;
  1988. padding:2px 2px 2px 0px;
  1989. box-sizing:border-box;
  1990. width:100%;
  1991. }
  1992. #u4930_text {
  1993. border-width:0px;
  1994. word-wrap:break-word;
  1995. text-transform:none;
  1996. }
  1997. #u4931_img {
  1998. border-width:0px;
  1999. position:absolute;
  2000. left:0px;
  2001. top:0px;
  2002. width:100px;
  2003. height:38px;
  2004. }
  2005. #u4931 {
  2006. border-width:0px;
  2007. position:absolute;
  2008. left:481px;
  2009. top:0px;
  2010. width:100px;
  2011. height:38px;
  2012. display:flex;
  2013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2014. font-weight:400;
  2015. font-style:normal;
  2016. font-size:12px;
  2017. color:#FFFFFF;
  2018. }
  2019. #u4931 .text {
  2020. position:absolute;
  2021. align-self:center;
  2022. padding:2px 2px 2px 0px;
  2023. box-sizing:border-box;
  2024. width:100%;
  2025. }
  2026. #u4931_text {
  2027. border-width:0px;
  2028. word-wrap:break-word;
  2029. text-transform:none;
  2030. }
  2031. #u4932_img {
  2032. border-width:0px;
  2033. position:absolute;
  2034. left:0px;
  2035. top:0px;
  2036. width:70px;
  2037. height:38px;
  2038. }
  2039. #u4932 {
  2040. border-width:0px;
  2041. position:absolute;
  2042. left:581px;
  2043. top:0px;
  2044. width:70px;
  2045. height:38px;
  2046. display:flex;
  2047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2048. font-weight:400;
  2049. font-style:normal;
  2050. font-size:12px;
  2051. color:#FFFFFF;
  2052. }
  2053. #u4932 .text {
  2054. position:absolute;
  2055. align-self:center;
  2056. padding:2px 2px 2px 0px;
  2057. box-sizing:border-box;
  2058. width:100%;
  2059. }
  2060. #u4932_text {
  2061. border-width:0px;
  2062. word-wrap:break-word;
  2063. text-transform:none;
  2064. }
  2065. #u4933_img {
  2066. border-width:0px;
  2067. position:absolute;
  2068. left:0px;
  2069. top:0px;
  2070. width:70px;
  2071. height:38px;
  2072. }
  2073. #u4933 {
  2074. border-width:0px;
  2075. position:absolute;
  2076. left:651px;
  2077. top:0px;
  2078. width:70px;
  2079. height:38px;
  2080. display:flex;
  2081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2082. font-weight:400;
  2083. font-style:normal;
  2084. font-size:12px;
  2085. color:#FFFFFF;
  2086. }
  2087. #u4933 .text {
  2088. position:absolute;
  2089. align-self:center;
  2090. padding:2px 2px 2px 0px;
  2091. box-sizing:border-box;
  2092. width:100%;
  2093. }
  2094. #u4933_text {
  2095. border-width:0px;
  2096. word-wrap:break-word;
  2097. text-transform:none;
  2098. }
  2099. #u4934_img {
  2100. border-width:0px;
  2101. position:absolute;
  2102. left:0px;
  2103. top:0px;
  2104. width:70px;
  2105. height:38px;
  2106. }
  2107. #u4934 {
  2108. border-width:0px;
  2109. position:absolute;
  2110. left:721px;
  2111. top:0px;
  2112. width:70px;
  2113. height:38px;
  2114. display:flex;
  2115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2116. font-weight:400;
  2117. font-style:normal;
  2118. font-size:12px;
  2119. color:#FFFFFF;
  2120. }
  2121. #u4934 .text {
  2122. position:absolute;
  2123. align-self:center;
  2124. padding:2px 2px 2px 0px;
  2125. box-sizing:border-box;
  2126. width:100%;
  2127. }
  2128. #u4934_text {
  2129. border-width:0px;
  2130. word-wrap:break-word;
  2131. text-transform:none;
  2132. }
  2133. #u4935_img {
  2134. border-width:0px;
  2135. position:absolute;
  2136. left:0px;
  2137. top:0px;
  2138. width:70px;
  2139. height:38px;
  2140. }
  2141. #u4935 {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:791px;
  2145. top:0px;
  2146. width:70px;
  2147. height:38px;
  2148. display:flex;
  2149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2150. font-weight:400;
  2151. font-style:normal;
  2152. font-size:12px;
  2153. color:#FFFFFF;
  2154. }
  2155. #u4935 .text {
  2156. position:absolute;
  2157. align-self:center;
  2158. padding:2px 2px 2px 0px;
  2159. box-sizing:border-box;
  2160. width:100%;
  2161. }
  2162. #u4935_text {
  2163. border-width:0px;
  2164. word-wrap:break-word;
  2165. text-transform:none;
  2166. }
  2167. #u4936_img {
  2168. border-width:0px;
  2169. position:absolute;
  2170. left:0px;
  2171. top:0px;
  2172. width:79px;
  2173. height:38px;
  2174. }
  2175. #u4936 {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:861px;
  2179. top:0px;
  2180. width:79px;
  2181. height:38px;
  2182. display:flex;
  2183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2184. font-weight:400;
  2185. font-style:normal;
  2186. font-size:12px;
  2187. color:#FFFFFF;
  2188. }
  2189. #u4936 .text {
  2190. position:absolute;
  2191. align-self:center;
  2192. padding:2px 2px 2px 0px;
  2193. box-sizing:border-box;
  2194. width:100%;
  2195. }
  2196. #u4936_text {
  2197. border-width:0px;
  2198. word-wrap:break-word;
  2199. text-transform:none;
  2200. }
  2201. #u4937_img {
  2202. border-width:0px;
  2203. position:absolute;
  2204. left:0px;
  2205. top:0px;
  2206. width:70px;
  2207. height:38px;
  2208. }
  2209. #u4937 {
  2210. border-width:0px;
  2211. position:absolute;
  2212. left:940px;
  2213. top:0px;
  2214. width:70px;
  2215. height:38px;
  2216. display:flex;
  2217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2218. font-weight:400;
  2219. font-style:normal;
  2220. font-size:12px;
  2221. color:#FFFFFF;
  2222. }
  2223. #u4937 .text {
  2224. position:absolute;
  2225. align-self:center;
  2226. padding:2px 2px 2px 0px;
  2227. box-sizing:border-box;
  2228. width:100%;
  2229. }
  2230. #u4937_text {
  2231. border-width:0px;
  2232. word-wrap:break-word;
  2233. text-transform:none;
  2234. }
  2235. #u4938_img {
  2236. border-width:0px;
  2237. position:absolute;
  2238. left:0px;
  2239. top:0px;
  2240. width:70px;
  2241. height:38px;
  2242. }
  2243. #u4938 {
  2244. border-width:0px;
  2245. position:absolute;
  2246. left:1010px;
  2247. top:0px;
  2248. width:70px;
  2249. height:38px;
  2250. display:flex;
  2251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2252. font-weight:400;
  2253. font-style:normal;
  2254. font-size:12px;
  2255. color:#FFFFFF;
  2256. }
  2257. #u4938 .text {
  2258. position:absolute;
  2259. align-self:center;
  2260. padding:2px 2px 2px 0px;
  2261. box-sizing:border-box;
  2262. width:100%;
  2263. }
  2264. #u4938_text {
  2265. border-width:0px;
  2266. word-wrap:break-word;
  2267. text-transform:none;
  2268. }
  2269. #u4939_img {
  2270. border-width:0px;
  2271. position:absolute;
  2272. left:0px;
  2273. top:0px;
  2274. width:139px;
  2275. height:38px;
  2276. }
  2277. #u4939 {
  2278. border-width:0px;
  2279. position:absolute;
  2280. left:1080px;
  2281. top:0px;
  2282. width:139px;
  2283. height:38px;
  2284. display:flex;
  2285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2286. font-weight:400;
  2287. font-style:normal;
  2288. font-size:12px;
  2289. color:#FFFFFF;
  2290. }
  2291. #u4939 .text {
  2292. position:absolute;
  2293. align-self:center;
  2294. padding:2px 2px 2px 0px;
  2295. box-sizing:border-box;
  2296. width:100%;
  2297. }
  2298. #u4939_text {
  2299. border-width:0px;
  2300. word-wrap:break-word;
  2301. text-transform:none;
  2302. }
  2303. #u4940_img {
  2304. border-width:0px;
  2305. position:absolute;
  2306. left:0px;
  2307. top:0px;
  2308. width:30px;
  2309. height:38px;
  2310. }
  2311. #u4940 {
  2312. border-width:0px;
  2313. position:absolute;
  2314. left:0px;
  2315. top:38px;
  2316. width:30px;
  2317. height:38px;
  2318. display:flex;
  2319. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2320. font-weight:400;
  2321. font-style:normal;
  2322. font-size:12px;
  2323. }
  2324. #u4940 .text {
  2325. position:absolute;
  2326. align-self:center;
  2327. padding:2px 2px 2px 0px;
  2328. box-sizing:border-box;
  2329. width:100%;
  2330. }
  2331. #u4940_text {
  2332. border-width:0px;
  2333. word-wrap:break-word;
  2334. text-transform:none;
  2335. }
  2336. #u4941_img {
  2337. border-width:0px;
  2338. position:absolute;
  2339. left:0px;
  2340. top:0px;
  2341. width:66px;
  2342. height:38px;
  2343. }
  2344. #u4941 {
  2345. border-width:0px;
  2346. position:absolute;
  2347. left:30px;
  2348. top:38px;
  2349. width:66px;
  2350. height:38px;
  2351. display:flex;
  2352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2353. font-weight:400;
  2354. font-style:normal;
  2355. font-size:12px;
  2356. color:#333333;
  2357. }
  2358. #u4941 .text {
  2359. position:absolute;
  2360. align-self:center;
  2361. padding:2px 2px 2px 0px;
  2362. box-sizing:border-box;
  2363. width:100%;
  2364. }
  2365. #u4941_text {
  2366. border-width:0px;
  2367. word-wrap:break-word;
  2368. text-transform:none;
  2369. visibility:hidden;
  2370. }
  2371. #u4942_img {
  2372. border-width:0px;
  2373. position:absolute;
  2374. left:0px;
  2375. top:0px;
  2376. width:79px;
  2377. height:38px;
  2378. }
  2379. #u4942 {
  2380. border-width:0px;
  2381. position:absolute;
  2382. left:96px;
  2383. top:38px;
  2384. width:79px;
  2385. height:38px;
  2386. display:flex;
  2387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2388. font-weight:400;
  2389. font-style:normal;
  2390. font-size:12px;
  2391. color:#333333;
  2392. }
  2393. #u4942 .text {
  2394. position:absolute;
  2395. align-self:center;
  2396. padding:2px 2px 2px 0px;
  2397. box-sizing:border-box;
  2398. width:100%;
  2399. }
  2400. #u4942_text {
  2401. border-width:0px;
  2402. word-wrap:break-word;
  2403. text-transform:none;
  2404. visibility:hidden;
  2405. }
  2406. #u4943_img {
  2407. border-width:0px;
  2408. position:absolute;
  2409. left:0px;
  2410. top:0px;
  2411. width:70px;
  2412. height:38px;
  2413. }
  2414. #u4943 {
  2415. border-width:0px;
  2416. position:absolute;
  2417. left:175px;
  2418. top:38px;
  2419. width:70px;
  2420. height:38px;
  2421. display:flex;
  2422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2423. font-weight:400;
  2424. font-style:normal;
  2425. font-size:12px;
  2426. color:#333333;
  2427. }
  2428. #u4943 .text {
  2429. position:absolute;
  2430. align-self:center;
  2431. padding:2px 2px 2px 0px;
  2432. box-sizing:border-box;
  2433. width:100%;
  2434. }
  2435. #u4943_text {
  2436. border-width:0px;
  2437. word-wrap:break-word;
  2438. text-transform:none;
  2439. visibility:hidden;
  2440. }
  2441. #u4944_img {
  2442. border-width:0px;
  2443. position:absolute;
  2444. left:0px;
  2445. top:0px;
  2446. width:66px;
  2447. height:38px;
  2448. }
  2449. #u4944 {
  2450. border-width:0px;
  2451. position:absolute;
  2452. left:245px;
  2453. top:38px;
  2454. width:66px;
  2455. height:38px;
  2456. display:flex;
  2457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2458. font-weight:400;
  2459. font-style:normal;
  2460. font-size:12px;
  2461. color:#333333;
  2462. }
  2463. #u4944 .text {
  2464. position:absolute;
  2465. align-self:center;
  2466. padding:2px 2px 2px 0px;
  2467. box-sizing:border-box;
  2468. width:100%;
  2469. }
  2470. #u4944_text {
  2471. border-width:0px;
  2472. word-wrap:break-word;
  2473. text-transform:none;
  2474. visibility:hidden;
  2475. }
  2476. #u4945_img {
  2477. border-width:0px;
  2478. position:absolute;
  2479. left:0px;
  2480. top:0px;
  2481. width:70px;
  2482. height:38px;
  2483. }
  2484. #u4945 {
  2485. border-width:0px;
  2486. position:absolute;
  2487. left:311px;
  2488. top:38px;
  2489. width:70px;
  2490. height:38px;
  2491. display:flex;
  2492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2493. font-weight:400;
  2494. font-style:normal;
  2495. font-size:12px;
  2496. color:#333333;
  2497. }
  2498. #u4945 .text {
  2499. position:absolute;
  2500. align-self:center;
  2501. padding:2px 2px 2px 0px;
  2502. box-sizing:border-box;
  2503. width:100%;
  2504. }
  2505. #u4945_text {
  2506. border-width:0px;
  2507. word-wrap:break-word;
  2508. text-transform:none;
  2509. visibility:hidden;
  2510. }
  2511. #u4946_img {
  2512. border-width:0px;
  2513. position:absolute;
  2514. left:0px;
  2515. top:0px;
  2516. width:100px;
  2517. height:38px;
  2518. }
  2519. #u4946 {
  2520. border-width:0px;
  2521. position:absolute;
  2522. left:381px;
  2523. top:38px;
  2524. width:100px;
  2525. height:38px;
  2526. display:flex;
  2527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2528. font-weight:400;
  2529. font-style:normal;
  2530. font-size:12px;
  2531. color:#333333;
  2532. }
  2533. #u4946 .text {
  2534. position:absolute;
  2535. align-self:center;
  2536. padding:2px 2px 2px 0px;
  2537. box-sizing:border-box;
  2538. width:100%;
  2539. }
  2540. #u4946_text {
  2541. border-width:0px;
  2542. word-wrap:break-word;
  2543. text-transform:none;
  2544. visibility:hidden;
  2545. }
  2546. #u4947_img {
  2547. border-width:0px;
  2548. position:absolute;
  2549. left:0px;
  2550. top:0px;
  2551. width:100px;
  2552. height:38px;
  2553. }
  2554. #u4947 {
  2555. border-width:0px;
  2556. position:absolute;
  2557. left:481px;
  2558. top:38px;
  2559. width:100px;
  2560. height:38px;
  2561. display:flex;
  2562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2563. font-weight:400;
  2564. font-style:normal;
  2565. font-size:12px;
  2566. color:#333333;
  2567. }
  2568. #u4947 .text {
  2569. position:absolute;
  2570. align-self:center;
  2571. padding:2px 2px 2px 0px;
  2572. box-sizing:border-box;
  2573. width:100%;
  2574. }
  2575. #u4947_text {
  2576. border-width:0px;
  2577. word-wrap:break-word;
  2578. text-transform:none;
  2579. visibility:hidden;
  2580. }
  2581. #u4948_img {
  2582. border-width:0px;
  2583. position:absolute;
  2584. left:0px;
  2585. top:0px;
  2586. width:70px;
  2587. height:38px;
  2588. }
  2589. #u4948 {
  2590. border-width:0px;
  2591. position:absolute;
  2592. left:581px;
  2593. top:38px;
  2594. width:70px;
  2595. height:38px;
  2596. display:flex;
  2597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2598. font-weight:400;
  2599. font-style:normal;
  2600. font-size:12px;
  2601. color:#333333;
  2602. }
  2603. #u4948 .text {
  2604. position:absolute;
  2605. align-self:center;
  2606. padding:2px 2px 2px 0px;
  2607. box-sizing:border-box;
  2608. width:100%;
  2609. }
  2610. #u4948_text {
  2611. border-width:0px;
  2612. word-wrap:break-word;
  2613. text-transform:none;
  2614. visibility:hidden;
  2615. }
  2616. #u4949_img {
  2617. border-width:0px;
  2618. position:absolute;
  2619. left:0px;
  2620. top:0px;
  2621. width:70px;
  2622. height:38px;
  2623. }
  2624. #u4949 {
  2625. border-width:0px;
  2626. position:absolute;
  2627. left:651px;
  2628. top:38px;
  2629. width:70px;
  2630. height:38px;
  2631. display:flex;
  2632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2633. font-weight:400;
  2634. font-style:normal;
  2635. font-size:12px;
  2636. color:#333333;
  2637. }
  2638. #u4949 .text {
  2639. position:absolute;
  2640. align-self:center;
  2641. padding:2px 2px 2px 0px;
  2642. box-sizing:border-box;
  2643. width:100%;
  2644. }
  2645. #u4949_text {
  2646. border-width:0px;
  2647. word-wrap:break-word;
  2648. text-transform:none;
  2649. visibility:hidden;
  2650. }
  2651. #u4950_img {
  2652. border-width:0px;
  2653. position:absolute;
  2654. left:0px;
  2655. top:0px;
  2656. width:70px;
  2657. height:38px;
  2658. }
  2659. #u4950 {
  2660. border-width:0px;
  2661. position:absolute;
  2662. left:721px;
  2663. top:38px;
  2664. width:70px;
  2665. height:38px;
  2666. display:flex;
  2667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2668. font-weight:400;
  2669. font-style:normal;
  2670. font-size:12px;
  2671. color:#333333;
  2672. }
  2673. #u4950 .text {
  2674. position:absolute;
  2675. align-self:center;
  2676. padding:2px 2px 2px 0px;
  2677. box-sizing:border-box;
  2678. width:100%;
  2679. }
  2680. #u4950_text {
  2681. border-width:0px;
  2682. word-wrap:break-word;
  2683. text-transform:none;
  2684. visibility:hidden;
  2685. }
  2686. #u4951_img {
  2687. border-width:0px;
  2688. position:absolute;
  2689. left:0px;
  2690. top:0px;
  2691. width:70px;
  2692. height:38px;
  2693. }
  2694. #u4951 {
  2695. border-width:0px;
  2696. position:absolute;
  2697. left:791px;
  2698. top:38px;
  2699. width:70px;
  2700. height:38px;
  2701. display:flex;
  2702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2703. font-weight:400;
  2704. font-style:normal;
  2705. font-size:12px;
  2706. color:#333333;
  2707. }
  2708. #u4951 .text {
  2709. position:absolute;
  2710. align-self:center;
  2711. padding:2px 2px 2px 0px;
  2712. box-sizing:border-box;
  2713. width:100%;
  2714. }
  2715. #u4951_text {
  2716. border-width:0px;
  2717. word-wrap:break-word;
  2718. text-transform:none;
  2719. visibility:hidden;
  2720. }
  2721. #u4952_img {
  2722. border-width:0px;
  2723. position:absolute;
  2724. left:0px;
  2725. top:0px;
  2726. width:79px;
  2727. height:38px;
  2728. }
  2729. #u4952 {
  2730. border-width:0px;
  2731. position:absolute;
  2732. left:861px;
  2733. top:38px;
  2734. width:79px;
  2735. height:38px;
  2736. display:flex;
  2737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2738. font-weight:400;
  2739. font-style:normal;
  2740. font-size:12px;
  2741. color:#333333;
  2742. }
  2743. #u4952 .text {
  2744. position:absolute;
  2745. align-self:center;
  2746. padding:2px 2px 2px 0px;
  2747. box-sizing:border-box;
  2748. width:100%;
  2749. }
  2750. #u4952_text {
  2751. border-width:0px;
  2752. word-wrap:break-word;
  2753. text-transform:none;
  2754. visibility:hidden;
  2755. }
  2756. #u4953_img {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:0px;
  2760. top:0px;
  2761. width:70px;
  2762. height:38px;
  2763. }
  2764. #u4953 {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:940px;
  2768. top:38px;
  2769. width:70px;
  2770. height:38px;
  2771. display:flex;
  2772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2773. font-weight:400;
  2774. font-style:normal;
  2775. font-size:12px;
  2776. color:#333333;
  2777. }
  2778. #u4953 .text {
  2779. position:absolute;
  2780. align-self:center;
  2781. padding:2px 2px 2px 0px;
  2782. box-sizing:border-box;
  2783. width:100%;
  2784. }
  2785. #u4953_text {
  2786. border-width:0px;
  2787. word-wrap:break-word;
  2788. text-transform:none;
  2789. visibility:hidden;
  2790. }
  2791. #u4954_img {
  2792. border-width:0px;
  2793. position:absolute;
  2794. left:0px;
  2795. top:0px;
  2796. width:70px;
  2797. height:38px;
  2798. }
  2799. #u4954 {
  2800. border-width:0px;
  2801. position:absolute;
  2802. left:1010px;
  2803. top:38px;
  2804. width:70px;
  2805. height:38px;
  2806. display:flex;
  2807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2808. font-weight:400;
  2809. font-style:normal;
  2810. font-size:12px;
  2811. color:#333333;
  2812. }
  2813. #u4954 .text {
  2814. position:absolute;
  2815. align-self:center;
  2816. padding:2px 2px 2px 0px;
  2817. box-sizing:border-box;
  2818. width:100%;
  2819. }
  2820. #u4954_text {
  2821. border-width:0px;
  2822. word-wrap:break-word;
  2823. text-transform:none;
  2824. }
  2825. #u4955_img {
  2826. border-width:0px;
  2827. position:absolute;
  2828. left:0px;
  2829. top:0px;
  2830. width:139px;
  2831. height:38px;
  2832. }
  2833. #u4955 {
  2834. border-width:0px;
  2835. position:absolute;
  2836. left:1080px;
  2837. top:38px;
  2838. width:139px;
  2839. height:38px;
  2840. display:flex;
  2841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2842. font-weight:400;
  2843. font-style:normal;
  2844. font-size:12px;
  2845. color:#1890FF;
  2846. }
  2847. #u4955 .text {
  2848. position:absolute;
  2849. align-self:center;
  2850. padding:2px 2px 2px 0px;
  2851. box-sizing:border-box;
  2852. width:100%;
  2853. }
  2854. #u4955_text {
  2855. border-width:0px;
  2856. word-wrap:break-word;
  2857. text-transform:none;
  2858. }
  2859. #u4956_img {
  2860. border-width:0px;
  2861. position:absolute;
  2862. left:0px;
  2863. top:0px;
  2864. width:30px;
  2865. height:36px;
  2866. }
  2867. #u4956 {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:0px;
  2871. top:76px;
  2872. width:30px;
  2873. height:36px;
  2874. display:flex;
  2875. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2876. font-weight:400;
  2877. font-style:normal;
  2878. font-size:12px;
  2879. color:#606266;
  2880. }
  2881. #u4956 .text {
  2882. position:absolute;
  2883. align-self:center;
  2884. padding:2px 2px 2px 0px;
  2885. box-sizing:border-box;
  2886. width:100%;
  2887. }
  2888. #u4956_text {
  2889. border-width:0px;
  2890. word-wrap:break-word;
  2891. text-transform:none;
  2892. }
  2893. #u4957_img {
  2894. border-width:0px;
  2895. position:absolute;
  2896. left:0px;
  2897. top:0px;
  2898. width:66px;
  2899. height:36px;
  2900. }
  2901. #u4957 {
  2902. border-width:0px;
  2903. position:absolute;
  2904. left:30px;
  2905. top:76px;
  2906. width:66px;
  2907. height:36px;
  2908. display:flex;
  2909. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2910. font-weight:400;
  2911. font-style:normal;
  2912. font-size:12px;
  2913. color:#606266;
  2914. }
  2915. #u4957 .text {
  2916. position:absolute;
  2917. align-self:center;
  2918. padding:2px 2px 2px 0px;
  2919. box-sizing:border-box;
  2920. width:100%;
  2921. }
  2922. #u4957_text {
  2923. border-width:0px;
  2924. word-wrap:break-word;
  2925. text-transform:none;
  2926. visibility:hidden;
  2927. }
  2928. #u4958_img {
  2929. border-width:0px;
  2930. position:absolute;
  2931. left:0px;
  2932. top:0px;
  2933. width:79px;
  2934. height:36px;
  2935. }
  2936. #u4958 {
  2937. border-width:0px;
  2938. position:absolute;
  2939. left:96px;
  2940. top:76px;
  2941. width:79px;
  2942. height:36px;
  2943. display:flex;
  2944. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2945. font-weight:400;
  2946. font-style:normal;
  2947. font-size:12px;
  2948. color:#606266;
  2949. }
  2950. #u4958 .text {
  2951. position:absolute;
  2952. align-self:center;
  2953. padding:2px 2px 2px 0px;
  2954. box-sizing:border-box;
  2955. width:100%;
  2956. }
  2957. #u4958_text {
  2958. border-width:0px;
  2959. word-wrap:break-word;
  2960. text-transform:none;
  2961. visibility:hidden;
  2962. }
  2963. #u4959_img {
  2964. border-width:0px;
  2965. position:absolute;
  2966. left:0px;
  2967. top:0px;
  2968. width:70px;
  2969. height:36px;
  2970. }
  2971. #u4959 {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:175px;
  2975. top:76px;
  2976. width:70px;
  2977. height:36px;
  2978. display:flex;
  2979. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2980. font-weight:400;
  2981. font-style:normal;
  2982. font-size:12px;
  2983. color:#606266;
  2984. }
  2985. #u4959 .text {
  2986. position:absolute;
  2987. align-self:center;
  2988. padding:2px 2px 2px 0px;
  2989. box-sizing:border-box;
  2990. width:100%;
  2991. }
  2992. #u4959_text {
  2993. border-width:0px;
  2994. word-wrap:break-word;
  2995. text-transform:none;
  2996. visibility:hidden;
  2997. }
  2998. #u4960_img {
  2999. border-width:0px;
  3000. position:absolute;
  3001. left:0px;
  3002. top:0px;
  3003. width:66px;
  3004. height:36px;
  3005. }
  3006. #u4960 {
  3007. border-width:0px;
  3008. position:absolute;
  3009. left:245px;
  3010. top:76px;
  3011. width:66px;
  3012. height:36px;
  3013. display:flex;
  3014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3015. font-weight:400;
  3016. font-style:normal;
  3017. font-size:12px;
  3018. color:#606266;
  3019. }
  3020. #u4960 .text {
  3021. position:absolute;
  3022. align-self:center;
  3023. padding:2px 2px 2px 0px;
  3024. box-sizing:border-box;
  3025. width:100%;
  3026. }
  3027. #u4960_text {
  3028. border-width:0px;
  3029. word-wrap:break-word;
  3030. text-transform:none;
  3031. visibility:hidden;
  3032. }
  3033. #u4961_img {
  3034. border-width:0px;
  3035. position:absolute;
  3036. left:0px;
  3037. top:0px;
  3038. width:70px;
  3039. height:36px;
  3040. }
  3041. #u4961 {
  3042. border-width:0px;
  3043. position:absolute;
  3044. left:311px;
  3045. top:76px;
  3046. width:70px;
  3047. height:36px;
  3048. display:flex;
  3049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3050. font-weight:400;
  3051. font-style:normal;
  3052. font-size:12px;
  3053. color:#606266;
  3054. }
  3055. #u4961 .text {
  3056. position:absolute;
  3057. align-self:center;
  3058. padding:2px 2px 2px 0px;
  3059. box-sizing:border-box;
  3060. width:100%;
  3061. }
  3062. #u4961_text {
  3063. border-width:0px;
  3064. word-wrap:break-word;
  3065. text-transform:none;
  3066. visibility:hidden;
  3067. }
  3068. #u4962_img {
  3069. border-width:0px;
  3070. position:absolute;
  3071. left:0px;
  3072. top:0px;
  3073. width:100px;
  3074. height:36px;
  3075. }
  3076. #u4962 {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:381px;
  3080. top:76px;
  3081. width:100px;
  3082. height:36px;
  3083. display:flex;
  3084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3085. font-weight:400;
  3086. font-style:normal;
  3087. font-size:12px;
  3088. color:#606266;
  3089. }
  3090. #u4962 .text {
  3091. position:absolute;
  3092. align-self:center;
  3093. padding:2px 2px 2px 0px;
  3094. box-sizing:border-box;
  3095. width:100%;
  3096. }
  3097. #u4962_text {
  3098. border-width:0px;
  3099. word-wrap:break-word;
  3100. text-transform:none;
  3101. visibility:hidden;
  3102. }
  3103. #u4963_img {
  3104. border-width:0px;
  3105. position:absolute;
  3106. left:0px;
  3107. top:0px;
  3108. width:100px;
  3109. height:36px;
  3110. }
  3111. #u4963 {
  3112. border-width:0px;
  3113. position:absolute;
  3114. left:481px;
  3115. top:76px;
  3116. width:100px;
  3117. height:36px;
  3118. display:flex;
  3119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3120. font-weight:400;
  3121. font-style:normal;
  3122. font-size:12px;
  3123. color:#606266;
  3124. }
  3125. #u4963 .text {
  3126. position:absolute;
  3127. align-self:center;
  3128. padding:2px 2px 2px 0px;
  3129. box-sizing:border-box;
  3130. width:100%;
  3131. }
  3132. #u4963_text {
  3133. border-width:0px;
  3134. word-wrap:break-word;
  3135. text-transform:none;
  3136. visibility:hidden;
  3137. }
  3138. #u4964_img {
  3139. border-width:0px;
  3140. position:absolute;
  3141. left:0px;
  3142. top:0px;
  3143. width:70px;
  3144. height:36px;
  3145. }
  3146. #u4964 {
  3147. border-width:0px;
  3148. position:absolute;
  3149. left:581px;
  3150. top:76px;
  3151. width:70px;
  3152. height:36px;
  3153. display:flex;
  3154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3155. font-weight:400;
  3156. font-style:normal;
  3157. font-size:12px;
  3158. color:#606266;
  3159. }
  3160. #u4964 .text {
  3161. position:absolute;
  3162. align-self:center;
  3163. padding:2px 2px 2px 0px;
  3164. box-sizing:border-box;
  3165. width:100%;
  3166. }
  3167. #u4964_text {
  3168. border-width:0px;
  3169. word-wrap:break-word;
  3170. text-transform:none;
  3171. visibility:hidden;
  3172. }
  3173. #u4965_img {
  3174. border-width:0px;
  3175. position:absolute;
  3176. left:0px;
  3177. top:0px;
  3178. width:70px;
  3179. height:36px;
  3180. }
  3181. #u4965 {
  3182. border-width:0px;
  3183. position:absolute;
  3184. left:651px;
  3185. top:76px;
  3186. width:70px;
  3187. height:36px;
  3188. display:flex;
  3189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3190. font-weight:400;
  3191. font-style:normal;
  3192. font-size:12px;
  3193. color:#606266;
  3194. }
  3195. #u4965 .text {
  3196. position:absolute;
  3197. align-self:center;
  3198. padding:2px 2px 2px 0px;
  3199. box-sizing:border-box;
  3200. width:100%;
  3201. }
  3202. #u4965_text {
  3203. border-width:0px;
  3204. word-wrap:break-word;
  3205. text-transform:none;
  3206. visibility:hidden;
  3207. }
  3208. #u4966_img {
  3209. border-width:0px;
  3210. position:absolute;
  3211. left:0px;
  3212. top:0px;
  3213. width:70px;
  3214. height:36px;
  3215. }
  3216. #u4966 {
  3217. border-width:0px;
  3218. position:absolute;
  3219. left:721px;
  3220. top:76px;
  3221. width:70px;
  3222. height:36px;
  3223. display:flex;
  3224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3225. font-weight:400;
  3226. font-style:normal;
  3227. font-size:12px;
  3228. color:#606266;
  3229. }
  3230. #u4966 .text {
  3231. position:absolute;
  3232. align-self:center;
  3233. padding:2px 2px 2px 0px;
  3234. box-sizing:border-box;
  3235. width:100%;
  3236. }
  3237. #u4966_text {
  3238. border-width:0px;
  3239. word-wrap:break-word;
  3240. text-transform:none;
  3241. visibility:hidden;
  3242. }
  3243. #u4967_img {
  3244. border-width:0px;
  3245. position:absolute;
  3246. left:0px;
  3247. top:0px;
  3248. width:70px;
  3249. height:36px;
  3250. }
  3251. #u4967 {
  3252. border-width:0px;
  3253. position:absolute;
  3254. left:791px;
  3255. top:76px;
  3256. width:70px;
  3257. height:36px;
  3258. display:flex;
  3259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3260. font-weight:400;
  3261. font-style:normal;
  3262. font-size:12px;
  3263. color:#606266;
  3264. }
  3265. #u4967 .text {
  3266. position:absolute;
  3267. align-self:center;
  3268. padding:2px 2px 2px 0px;
  3269. box-sizing:border-box;
  3270. width:100%;
  3271. }
  3272. #u4967_text {
  3273. border-width:0px;
  3274. word-wrap:break-word;
  3275. text-transform:none;
  3276. visibility:hidden;
  3277. }
  3278. #u4968_img {
  3279. border-width:0px;
  3280. position:absolute;
  3281. left:0px;
  3282. top:0px;
  3283. width:79px;
  3284. height:36px;
  3285. }
  3286. #u4968 {
  3287. border-width:0px;
  3288. position:absolute;
  3289. left:861px;
  3290. top:76px;
  3291. width:79px;
  3292. height:36px;
  3293. display:flex;
  3294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3295. font-weight:400;
  3296. font-style:normal;
  3297. font-size:12px;
  3298. color:#606266;
  3299. }
  3300. #u4968 .text {
  3301. position:absolute;
  3302. align-self:center;
  3303. padding:2px 2px 2px 0px;
  3304. box-sizing:border-box;
  3305. width:100%;
  3306. }
  3307. #u4968_text {
  3308. border-width:0px;
  3309. word-wrap:break-word;
  3310. text-transform:none;
  3311. visibility:hidden;
  3312. }
  3313. #u4969_img {
  3314. border-width:0px;
  3315. position:absolute;
  3316. left:0px;
  3317. top:0px;
  3318. width:70px;
  3319. height:36px;
  3320. }
  3321. #u4969 {
  3322. border-width:0px;
  3323. position:absolute;
  3324. left:940px;
  3325. top:76px;
  3326. width:70px;
  3327. height:36px;
  3328. display:flex;
  3329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3330. font-weight:400;
  3331. font-style:normal;
  3332. font-size:12px;
  3333. color:#606266;
  3334. }
  3335. #u4969 .text {
  3336. position:absolute;
  3337. align-self:center;
  3338. padding:2px 2px 2px 0px;
  3339. box-sizing:border-box;
  3340. width:100%;
  3341. }
  3342. #u4969_text {
  3343. border-width:0px;
  3344. word-wrap:break-word;
  3345. text-transform:none;
  3346. visibility:hidden;
  3347. }
  3348. #u4970_img {
  3349. border-width:0px;
  3350. position:absolute;
  3351. left:0px;
  3352. top:0px;
  3353. width:70px;
  3354. height:36px;
  3355. }
  3356. #u4970 {
  3357. border-width:0px;
  3358. position:absolute;
  3359. left:1010px;
  3360. top:76px;
  3361. width:70px;
  3362. height:36px;
  3363. display:flex;
  3364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3365. font-weight:400;
  3366. font-style:normal;
  3367. font-size:12px;
  3368. color:#606266;
  3369. }
  3370. #u4970 .text {
  3371. position:absolute;
  3372. align-self:center;
  3373. padding:2px 2px 2px 0px;
  3374. box-sizing:border-box;
  3375. width:100%;
  3376. }
  3377. #u4970_text {
  3378. border-width:0px;
  3379. word-wrap:break-word;
  3380. text-transform:none;
  3381. }
  3382. #u4971_img {
  3383. border-width:0px;
  3384. position:absolute;
  3385. left:0px;
  3386. top:0px;
  3387. width:139px;
  3388. height:36px;
  3389. }
  3390. #u4971 {
  3391. border-width:0px;
  3392. position:absolute;
  3393. left:1080px;
  3394. top:76px;
  3395. width:139px;
  3396. height:36px;
  3397. display:flex;
  3398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3399. font-weight:400;
  3400. font-style:normal;
  3401. font-size:12px;
  3402. }
  3403. #u4971 .text {
  3404. position:absolute;
  3405. align-self:center;
  3406. padding:2px 2px 2px 0px;
  3407. box-sizing:border-box;
  3408. width:100%;
  3409. }
  3410. #u4971_text {
  3411. border-width:0px;
  3412. word-wrap:break-word;
  3413. text-transform:none;
  3414. }
  3415. #u4972_img {
  3416. border-width:0px;
  3417. position:absolute;
  3418. left:0px;
  3419. top:0px;
  3420. width:30px;
  3421. height:35px;
  3422. }
  3423. #u4972 {
  3424. border-width:0px;
  3425. position:absolute;
  3426. left:0px;
  3427. top:112px;
  3428. width:30px;
  3429. height:35px;
  3430. display:flex;
  3431. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3432. font-weight:400;
  3433. font-style:normal;
  3434. font-size:12px;
  3435. color:#606266;
  3436. }
  3437. #u4972 .text {
  3438. position:absolute;
  3439. align-self:center;
  3440. padding:2px 2px 2px 0px;
  3441. box-sizing:border-box;
  3442. width:100%;
  3443. }
  3444. #u4972_text {
  3445. border-width:0px;
  3446. word-wrap:break-word;
  3447. text-transform:none;
  3448. }
  3449. #u4973_img {
  3450. border-width:0px;
  3451. position:absolute;
  3452. left:0px;
  3453. top:0px;
  3454. width:66px;
  3455. height:35px;
  3456. }
  3457. #u4973 {
  3458. border-width:0px;
  3459. position:absolute;
  3460. left:30px;
  3461. top:112px;
  3462. width:66px;
  3463. height:35px;
  3464. display:flex;
  3465. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3466. font-weight:400;
  3467. font-style:normal;
  3468. font-size:12px;
  3469. color:#606266;
  3470. }
  3471. #u4973 .text {
  3472. position:absolute;
  3473. align-self:center;
  3474. padding:2px 2px 2px 0px;
  3475. box-sizing:border-box;
  3476. width:100%;
  3477. }
  3478. #u4973_text {
  3479. border-width:0px;
  3480. word-wrap:break-word;
  3481. text-transform:none;
  3482. visibility:hidden;
  3483. }
  3484. #u4974_img {
  3485. border-width:0px;
  3486. position:absolute;
  3487. left:0px;
  3488. top:0px;
  3489. width:79px;
  3490. height:35px;
  3491. }
  3492. #u4974 {
  3493. border-width:0px;
  3494. position:absolute;
  3495. left:96px;
  3496. top:112px;
  3497. width:79px;
  3498. height:35px;
  3499. display:flex;
  3500. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3501. font-weight:400;
  3502. font-style:normal;
  3503. font-size:12px;
  3504. color:#606266;
  3505. }
  3506. #u4974 .text {
  3507. position:absolute;
  3508. align-self:center;
  3509. padding:2px 2px 2px 0px;
  3510. box-sizing:border-box;
  3511. width:100%;
  3512. }
  3513. #u4974_text {
  3514. border-width:0px;
  3515. word-wrap:break-word;
  3516. text-transform:none;
  3517. visibility:hidden;
  3518. }
  3519. #u4975_img {
  3520. border-width:0px;
  3521. position:absolute;
  3522. left:0px;
  3523. top:0px;
  3524. width:70px;
  3525. height:35px;
  3526. }
  3527. #u4975 {
  3528. border-width:0px;
  3529. position:absolute;
  3530. left:175px;
  3531. top:112px;
  3532. width:70px;
  3533. height:35px;
  3534. display:flex;
  3535. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3536. font-weight:400;
  3537. font-style:normal;
  3538. font-size:12px;
  3539. color:#606266;
  3540. }
  3541. #u4975 .text {
  3542. position:absolute;
  3543. align-self:center;
  3544. padding:2px 2px 2px 0px;
  3545. box-sizing:border-box;
  3546. width:100%;
  3547. }
  3548. #u4975_text {
  3549. border-width:0px;
  3550. word-wrap:break-word;
  3551. text-transform:none;
  3552. visibility:hidden;
  3553. }
  3554. #u4976_img {
  3555. border-width:0px;
  3556. position:absolute;
  3557. left:0px;
  3558. top:0px;
  3559. width:66px;
  3560. height:35px;
  3561. }
  3562. #u4976 {
  3563. border-width:0px;
  3564. position:absolute;
  3565. left:245px;
  3566. top:112px;
  3567. width:66px;
  3568. height:35px;
  3569. display:flex;
  3570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3571. font-weight:400;
  3572. font-style:normal;
  3573. font-size:12px;
  3574. color:#606266;
  3575. }
  3576. #u4976 .text {
  3577. position:absolute;
  3578. align-self:center;
  3579. padding:2px 2px 2px 0px;
  3580. box-sizing:border-box;
  3581. width:100%;
  3582. }
  3583. #u4976_text {
  3584. border-width:0px;
  3585. word-wrap:break-word;
  3586. text-transform:none;
  3587. visibility:hidden;
  3588. }
  3589. #u4977_img {
  3590. border-width:0px;
  3591. position:absolute;
  3592. left:0px;
  3593. top:0px;
  3594. width:70px;
  3595. height:35px;
  3596. }
  3597. #u4977 {
  3598. border-width:0px;
  3599. position:absolute;
  3600. left:311px;
  3601. top:112px;
  3602. width:70px;
  3603. height:35px;
  3604. display:flex;
  3605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3606. font-weight:400;
  3607. font-style:normal;
  3608. font-size:12px;
  3609. color:#606266;
  3610. }
  3611. #u4977 .text {
  3612. position:absolute;
  3613. align-self:center;
  3614. padding:2px 2px 2px 0px;
  3615. box-sizing:border-box;
  3616. width:100%;
  3617. }
  3618. #u4977_text {
  3619. border-width:0px;
  3620. word-wrap:break-word;
  3621. text-transform:none;
  3622. visibility:hidden;
  3623. }
  3624. #u4978_img {
  3625. border-width:0px;
  3626. position:absolute;
  3627. left:0px;
  3628. top:0px;
  3629. width:100px;
  3630. height:35px;
  3631. }
  3632. #u4978 {
  3633. border-width:0px;
  3634. position:absolute;
  3635. left:381px;
  3636. top:112px;
  3637. width:100px;
  3638. height:35px;
  3639. display:flex;
  3640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3641. font-weight:400;
  3642. font-style:normal;
  3643. font-size:12px;
  3644. color:#606266;
  3645. }
  3646. #u4978 .text {
  3647. position:absolute;
  3648. align-self:center;
  3649. padding:2px 2px 2px 0px;
  3650. box-sizing:border-box;
  3651. width:100%;
  3652. }
  3653. #u4978_text {
  3654. border-width:0px;
  3655. word-wrap:break-word;
  3656. text-transform:none;
  3657. visibility:hidden;
  3658. }
  3659. #u4979_img {
  3660. border-width:0px;
  3661. position:absolute;
  3662. left:0px;
  3663. top:0px;
  3664. width:100px;
  3665. height:35px;
  3666. }
  3667. #u4979 {
  3668. border-width:0px;
  3669. position:absolute;
  3670. left:481px;
  3671. top:112px;
  3672. width:100px;
  3673. height:35px;
  3674. display:flex;
  3675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3676. font-weight:400;
  3677. font-style:normal;
  3678. font-size:12px;
  3679. color:#606266;
  3680. }
  3681. #u4979 .text {
  3682. position:absolute;
  3683. align-self:center;
  3684. padding:2px 2px 2px 0px;
  3685. box-sizing:border-box;
  3686. width:100%;
  3687. }
  3688. #u4979_text {
  3689. border-width:0px;
  3690. word-wrap:break-word;
  3691. text-transform:none;
  3692. visibility:hidden;
  3693. }
  3694. #u4980_img {
  3695. border-width:0px;
  3696. position:absolute;
  3697. left:0px;
  3698. top:0px;
  3699. width:70px;
  3700. height:35px;
  3701. }
  3702. #u4980 {
  3703. border-width:0px;
  3704. position:absolute;
  3705. left:581px;
  3706. top:112px;
  3707. width:70px;
  3708. height:35px;
  3709. display:flex;
  3710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3711. font-weight:400;
  3712. font-style:normal;
  3713. font-size:12px;
  3714. color:#606266;
  3715. }
  3716. #u4980 .text {
  3717. position:absolute;
  3718. align-self:center;
  3719. padding:2px 2px 2px 0px;
  3720. box-sizing:border-box;
  3721. width:100%;
  3722. }
  3723. #u4980_text {
  3724. border-width:0px;
  3725. word-wrap:break-word;
  3726. text-transform:none;
  3727. visibility:hidden;
  3728. }
  3729. #u4981_img {
  3730. border-width:0px;
  3731. position:absolute;
  3732. left:0px;
  3733. top:0px;
  3734. width:70px;
  3735. height:35px;
  3736. }
  3737. #u4981 {
  3738. border-width:0px;
  3739. position:absolute;
  3740. left:651px;
  3741. top:112px;
  3742. width:70px;
  3743. height:35px;
  3744. display:flex;
  3745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3746. font-weight:400;
  3747. font-style:normal;
  3748. font-size:12px;
  3749. color:#606266;
  3750. }
  3751. #u4981 .text {
  3752. position:absolute;
  3753. align-self:center;
  3754. padding:2px 2px 2px 0px;
  3755. box-sizing:border-box;
  3756. width:100%;
  3757. }
  3758. #u4981_text {
  3759. border-width:0px;
  3760. word-wrap:break-word;
  3761. text-transform:none;
  3762. visibility:hidden;
  3763. }
  3764. #u4982_img {
  3765. border-width:0px;
  3766. position:absolute;
  3767. left:0px;
  3768. top:0px;
  3769. width:70px;
  3770. height:35px;
  3771. }
  3772. #u4982 {
  3773. border-width:0px;
  3774. position:absolute;
  3775. left:721px;
  3776. top:112px;
  3777. width:70px;
  3778. height:35px;
  3779. display:flex;
  3780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3781. font-weight:400;
  3782. font-style:normal;
  3783. font-size:12px;
  3784. color:#606266;
  3785. }
  3786. #u4982 .text {
  3787. position:absolute;
  3788. align-self:center;
  3789. padding:2px 2px 2px 0px;
  3790. box-sizing:border-box;
  3791. width:100%;
  3792. }
  3793. #u4982_text {
  3794. border-width:0px;
  3795. word-wrap:break-word;
  3796. text-transform:none;
  3797. visibility:hidden;
  3798. }
  3799. #u4983_img {
  3800. border-width:0px;
  3801. position:absolute;
  3802. left:0px;
  3803. top:0px;
  3804. width:70px;
  3805. height:35px;
  3806. }
  3807. #u4983 {
  3808. border-width:0px;
  3809. position:absolute;
  3810. left:791px;
  3811. top:112px;
  3812. width:70px;
  3813. height:35px;
  3814. display:flex;
  3815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3816. font-weight:400;
  3817. font-style:normal;
  3818. font-size:12px;
  3819. color:#606266;
  3820. }
  3821. #u4983 .text {
  3822. position:absolute;
  3823. align-self:center;
  3824. padding:2px 2px 2px 0px;
  3825. box-sizing:border-box;
  3826. width:100%;
  3827. }
  3828. #u4983_text {
  3829. border-width:0px;
  3830. word-wrap:break-word;
  3831. text-transform:none;
  3832. visibility:hidden;
  3833. }
  3834. #u4984_img {
  3835. border-width:0px;
  3836. position:absolute;
  3837. left:0px;
  3838. top:0px;
  3839. width:79px;
  3840. height:35px;
  3841. }
  3842. #u4984 {
  3843. border-width:0px;
  3844. position:absolute;
  3845. left:861px;
  3846. top:112px;
  3847. width:79px;
  3848. height:35px;
  3849. display:flex;
  3850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3851. font-weight:400;
  3852. font-style:normal;
  3853. font-size:12px;
  3854. color:#606266;
  3855. }
  3856. #u4984 .text {
  3857. position:absolute;
  3858. align-self:center;
  3859. padding:2px 2px 2px 0px;
  3860. box-sizing:border-box;
  3861. width:100%;
  3862. }
  3863. #u4984_text {
  3864. border-width:0px;
  3865. word-wrap:break-word;
  3866. text-transform:none;
  3867. visibility:hidden;
  3868. }
  3869. #u4985_img {
  3870. border-width:0px;
  3871. position:absolute;
  3872. left:0px;
  3873. top:0px;
  3874. width:70px;
  3875. height:35px;
  3876. }
  3877. #u4985 {
  3878. border-width:0px;
  3879. position:absolute;
  3880. left:940px;
  3881. top:112px;
  3882. width:70px;
  3883. height:35px;
  3884. display:flex;
  3885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3886. font-weight:400;
  3887. font-style:normal;
  3888. font-size:12px;
  3889. color:#606266;
  3890. }
  3891. #u4985 .text {
  3892. position:absolute;
  3893. align-self:center;
  3894. padding:2px 2px 2px 0px;
  3895. box-sizing:border-box;
  3896. width:100%;
  3897. }
  3898. #u4985_text {
  3899. border-width:0px;
  3900. word-wrap:break-word;
  3901. text-transform:none;
  3902. visibility:hidden;
  3903. }
  3904. #u4986_img {
  3905. border-width:0px;
  3906. position:absolute;
  3907. left:0px;
  3908. top:0px;
  3909. width:70px;
  3910. height:35px;
  3911. }
  3912. #u4986 {
  3913. border-width:0px;
  3914. position:absolute;
  3915. left:1010px;
  3916. top:112px;
  3917. width:70px;
  3918. height:35px;
  3919. display:flex;
  3920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3921. font-weight:400;
  3922. font-style:normal;
  3923. font-size:12px;
  3924. color:#606266;
  3925. }
  3926. #u4986 .text {
  3927. position:absolute;
  3928. align-self:center;
  3929. padding:2px 2px 2px 0px;
  3930. box-sizing:border-box;
  3931. width:100%;
  3932. }
  3933. #u4986_text {
  3934. border-width:0px;
  3935. word-wrap:break-word;
  3936. text-transform:none;
  3937. }
  3938. #u4987_img {
  3939. border-width:0px;
  3940. position:absolute;
  3941. left:0px;
  3942. top:0px;
  3943. width:139px;
  3944. height:35px;
  3945. }
  3946. #u4987 {
  3947. border-width:0px;
  3948. position:absolute;
  3949. left:1080px;
  3950. top:112px;
  3951. width:139px;
  3952. height:35px;
  3953. display:flex;
  3954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3955. font-weight:400;
  3956. font-style:normal;
  3957. font-size:12px;
  3958. color:#1890FF;
  3959. }
  3960. #u4987 .text {
  3961. position:absolute;
  3962. align-self:center;
  3963. padding:2px 2px 2px 0px;
  3964. box-sizing:border-box;
  3965. width:100%;
  3966. }
  3967. #u4987_text {
  3968. border-width:0px;
  3969. word-wrap:break-word;
  3970. text-transform:none;
  3971. }
  3972. #u4988_img {
  3973. border-width:0px;
  3974. position:absolute;
  3975. left:0px;
  3976. top:0px;
  3977. width:30px;
  3978. height:35px;
  3979. }
  3980. #u4988 {
  3981. border-width:0px;
  3982. position:absolute;
  3983. left:0px;
  3984. top:147px;
  3985. width:30px;
  3986. height:35px;
  3987. display:flex;
  3988. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3989. font-weight:400;
  3990. font-style:normal;
  3991. font-size:12px;
  3992. color:#606266;
  3993. }
  3994. #u4988 .text {
  3995. position:absolute;
  3996. align-self:center;
  3997. padding:2px 2px 2px 0px;
  3998. box-sizing:border-box;
  3999. width:100%;
  4000. }
  4001. #u4988_text {
  4002. border-width:0px;
  4003. word-wrap:break-word;
  4004. text-transform:none;
  4005. }
  4006. #u4989_img {
  4007. border-width:0px;
  4008. position:absolute;
  4009. left:0px;
  4010. top:0px;
  4011. width:66px;
  4012. height:35px;
  4013. }
  4014. #u4989 {
  4015. border-width:0px;
  4016. position:absolute;
  4017. left:30px;
  4018. top:147px;
  4019. width:66px;
  4020. height:35px;
  4021. display:flex;
  4022. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4023. font-weight:400;
  4024. font-style:normal;
  4025. font-size:12px;
  4026. color:#606266;
  4027. }
  4028. #u4989 .text {
  4029. position:absolute;
  4030. align-self:center;
  4031. padding:2px 2px 2px 0px;
  4032. box-sizing:border-box;
  4033. width:100%;
  4034. }
  4035. #u4989_text {
  4036. border-width:0px;
  4037. word-wrap:break-word;
  4038. text-transform:none;
  4039. visibility:hidden;
  4040. }
  4041. #u4990_img {
  4042. border-width:0px;
  4043. position:absolute;
  4044. left:0px;
  4045. top:0px;
  4046. width:79px;
  4047. height:35px;
  4048. }
  4049. #u4990 {
  4050. border-width:0px;
  4051. position:absolute;
  4052. left:96px;
  4053. top:147px;
  4054. width:79px;
  4055. height:35px;
  4056. display:flex;
  4057. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4058. font-weight:400;
  4059. font-style:normal;
  4060. font-size:12px;
  4061. color:#606266;
  4062. }
  4063. #u4990 .text {
  4064. position:absolute;
  4065. align-self:center;
  4066. padding:2px 2px 2px 0px;
  4067. box-sizing:border-box;
  4068. width:100%;
  4069. }
  4070. #u4990_text {
  4071. border-width:0px;
  4072. word-wrap:break-word;
  4073. text-transform:none;
  4074. visibility:hidden;
  4075. }
  4076. #u4991_img {
  4077. border-width:0px;
  4078. position:absolute;
  4079. left:0px;
  4080. top:0px;
  4081. width:70px;
  4082. height:35px;
  4083. }
  4084. #u4991 {
  4085. border-width:0px;
  4086. position:absolute;
  4087. left:175px;
  4088. top:147px;
  4089. width:70px;
  4090. height:35px;
  4091. display:flex;
  4092. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4093. font-weight:400;
  4094. font-style:normal;
  4095. font-size:12px;
  4096. color:#606266;
  4097. }
  4098. #u4991 .text {
  4099. position:absolute;
  4100. align-self:center;
  4101. padding:2px 2px 2px 0px;
  4102. box-sizing:border-box;
  4103. width:100%;
  4104. }
  4105. #u4991_text {
  4106. border-width:0px;
  4107. word-wrap:break-word;
  4108. text-transform:none;
  4109. visibility:hidden;
  4110. }
  4111. #u4992_img {
  4112. border-width:0px;
  4113. position:absolute;
  4114. left:0px;
  4115. top:0px;
  4116. width:66px;
  4117. height:35px;
  4118. }
  4119. #u4992 {
  4120. border-width:0px;
  4121. position:absolute;
  4122. left:245px;
  4123. top:147px;
  4124. width:66px;
  4125. height:35px;
  4126. display:flex;
  4127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4128. font-weight:400;
  4129. font-style:normal;
  4130. font-size:12px;
  4131. color:#606266;
  4132. }
  4133. #u4992 .text {
  4134. position:absolute;
  4135. align-self:center;
  4136. padding:2px 2px 2px 0px;
  4137. box-sizing:border-box;
  4138. width:100%;
  4139. }
  4140. #u4992_text {
  4141. border-width:0px;
  4142. word-wrap:break-word;
  4143. text-transform:none;
  4144. visibility:hidden;
  4145. }
  4146. #u4993_img {
  4147. border-width:0px;
  4148. position:absolute;
  4149. left:0px;
  4150. top:0px;
  4151. width:70px;
  4152. height:35px;
  4153. }
  4154. #u4993 {
  4155. border-width:0px;
  4156. position:absolute;
  4157. left:311px;
  4158. top:147px;
  4159. width:70px;
  4160. height:35px;
  4161. display:flex;
  4162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4163. font-weight:400;
  4164. font-style:normal;
  4165. font-size:12px;
  4166. color:#606266;
  4167. }
  4168. #u4993 .text {
  4169. position:absolute;
  4170. align-self:center;
  4171. padding:2px 2px 2px 0px;
  4172. box-sizing:border-box;
  4173. width:100%;
  4174. }
  4175. #u4993_text {
  4176. border-width:0px;
  4177. word-wrap:break-word;
  4178. text-transform:none;
  4179. visibility:hidden;
  4180. }
  4181. #u4994_img {
  4182. border-width:0px;
  4183. position:absolute;
  4184. left:0px;
  4185. top:0px;
  4186. width:100px;
  4187. height:35px;
  4188. }
  4189. #u4994 {
  4190. border-width:0px;
  4191. position:absolute;
  4192. left:381px;
  4193. top:147px;
  4194. width:100px;
  4195. height:35px;
  4196. display:flex;
  4197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4198. font-weight:400;
  4199. font-style:normal;
  4200. font-size:12px;
  4201. color:#606266;
  4202. }
  4203. #u4994 .text {
  4204. position:absolute;
  4205. align-self:center;
  4206. padding:2px 2px 2px 0px;
  4207. box-sizing:border-box;
  4208. width:100%;
  4209. }
  4210. #u4994_text {
  4211. border-width:0px;
  4212. word-wrap:break-word;
  4213. text-transform:none;
  4214. visibility:hidden;
  4215. }
  4216. #u4995_img {
  4217. border-width:0px;
  4218. position:absolute;
  4219. left:0px;
  4220. top:0px;
  4221. width:100px;
  4222. height:35px;
  4223. }
  4224. #u4995 {
  4225. border-width:0px;
  4226. position:absolute;
  4227. left:481px;
  4228. top:147px;
  4229. width:100px;
  4230. height:35px;
  4231. display:flex;
  4232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4233. font-weight:400;
  4234. font-style:normal;
  4235. font-size:12px;
  4236. color:#606266;
  4237. }
  4238. #u4995 .text {
  4239. position:absolute;
  4240. align-self:center;
  4241. padding:2px 2px 2px 0px;
  4242. box-sizing:border-box;
  4243. width:100%;
  4244. }
  4245. #u4995_text {
  4246. border-width:0px;
  4247. word-wrap:break-word;
  4248. text-transform:none;
  4249. visibility:hidden;
  4250. }
  4251. #u4996_img {
  4252. border-width:0px;
  4253. position:absolute;
  4254. left:0px;
  4255. top:0px;
  4256. width:70px;
  4257. height:35px;
  4258. }
  4259. #u4996 {
  4260. border-width:0px;
  4261. position:absolute;
  4262. left:581px;
  4263. top:147px;
  4264. width:70px;
  4265. height:35px;
  4266. display:flex;
  4267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4268. font-weight:400;
  4269. font-style:normal;
  4270. font-size:12px;
  4271. color:#606266;
  4272. }
  4273. #u4996 .text {
  4274. position:absolute;
  4275. align-self:center;
  4276. padding:2px 2px 2px 0px;
  4277. box-sizing:border-box;
  4278. width:100%;
  4279. }
  4280. #u4996_text {
  4281. border-width:0px;
  4282. word-wrap:break-word;
  4283. text-transform:none;
  4284. visibility:hidden;
  4285. }
  4286. #u4997_img {
  4287. border-width:0px;
  4288. position:absolute;
  4289. left:0px;
  4290. top:0px;
  4291. width:70px;
  4292. height:35px;
  4293. }
  4294. #u4997 {
  4295. border-width:0px;
  4296. position:absolute;
  4297. left:651px;
  4298. top:147px;
  4299. width:70px;
  4300. height:35px;
  4301. display:flex;
  4302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4303. font-weight:400;
  4304. font-style:normal;
  4305. font-size:12px;
  4306. color:#606266;
  4307. }
  4308. #u4997 .text {
  4309. position:absolute;
  4310. align-self:center;
  4311. padding:2px 2px 2px 0px;
  4312. box-sizing:border-box;
  4313. width:100%;
  4314. }
  4315. #u4997_text {
  4316. border-width:0px;
  4317. word-wrap:break-word;
  4318. text-transform:none;
  4319. visibility:hidden;
  4320. }
  4321. #u4998_img {
  4322. border-width:0px;
  4323. position:absolute;
  4324. left:0px;
  4325. top:0px;
  4326. width:70px;
  4327. height:35px;
  4328. }
  4329. #u4998 {
  4330. border-width:0px;
  4331. position:absolute;
  4332. left:721px;
  4333. top:147px;
  4334. width:70px;
  4335. height:35px;
  4336. display:flex;
  4337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4338. font-weight:400;
  4339. font-style:normal;
  4340. font-size:12px;
  4341. color:#606266;
  4342. }
  4343. #u4998 .text {
  4344. position:absolute;
  4345. align-self:center;
  4346. padding:2px 2px 2px 0px;
  4347. box-sizing:border-box;
  4348. width:100%;
  4349. }
  4350. #u4998_text {
  4351. border-width:0px;
  4352. word-wrap:break-word;
  4353. text-transform:none;
  4354. visibility:hidden;
  4355. }
  4356. #u4999_img {
  4357. border-width:0px;
  4358. position:absolute;
  4359. left:0px;
  4360. top:0px;
  4361. width:70px;
  4362. height:35px;
  4363. }
  4364. #u4999 {
  4365. border-width:0px;
  4366. position:absolute;
  4367. left:791px;
  4368. top:147px;
  4369. width:70px;
  4370. height:35px;
  4371. display:flex;
  4372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4373. font-weight:400;
  4374. font-style:normal;
  4375. font-size:12px;
  4376. color:#606266;
  4377. }
  4378. #u4999 .text {
  4379. position:absolute;
  4380. align-self:center;
  4381. padding:2px 2px 2px 0px;
  4382. box-sizing:border-box;
  4383. width:100%;
  4384. }
  4385. #u4999_text {
  4386. border-width:0px;
  4387. word-wrap:break-word;
  4388. text-transform:none;
  4389. visibility:hidden;
  4390. }
  4391. #u5000_img {
  4392. border-width:0px;
  4393. position:absolute;
  4394. left:0px;
  4395. top:0px;
  4396. width:79px;
  4397. height:35px;
  4398. }
  4399. #u5000 {
  4400. border-width:0px;
  4401. position:absolute;
  4402. left:861px;
  4403. top:147px;
  4404. width:79px;
  4405. height:35px;
  4406. display:flex;
  4407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4408. font-weight:400;
  4409. font-style:normal;
  4410. font-size:12px;
  4411. color:#606266;
  4412. }
  4413. #u5000 .text {
  4414. position:absolute;
  4415. align-self:center;
  4416. padding:2px 2px 2px 0px;
  4417. box-sizing:border-box;
  4418. width:100%;
  4419. }
  4420. #u5000_text {
  4421. border-width:0px;
  4422. word-wrap:break-word;
  4423. text-transform:none;
  4424. visibility:hidden;
  4425. }
  4426. #u5001_img {
  4427. border-width:0px;
  4428. position:absolute;
  4429. left:0px;
  4430. top:0px;
  4431. width:70px;
  4432. height:35px;
  4433. }
  4434. #u5001 {
  4435. border-width:0px;
  4436. position:absolute;
  4437. left:940px;
  4438. top:147px;
  4439. width:70px;
  4440. height:35px;
  4441. display:flex;
  4442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4443. font-weight:400;
  4444. font-style:normal;
  4445. font-size:12px;
  4446. color:#606266;
  4447. }
  4448. #u5001 .text {
  4449. position:absolute;
  4450. align-self:center;
  4451. padding:2px 2px 2px 0px;
  4452. box-sizing:border-box;
  4453. width:100%;
  4454. }
  4455. #u5001_text {
  4456. border-width:0px;
  4457. word-wrap:break-word;
  4458. text-transform:none;
  4459. visibility:hidden;
  4460. }
  4461. #u5002_img {
  4462. border-width:0px;
  4463. position:absolute;
  4464. left:0px;
  4465. top:0px;
  4466. width:70px;
  4467. height:35px;
  4468. }
  4469. #u5002 {
  4470. border-width:0px;
  4471. position:absolute;
  4472. left:1010px;
  4473. top:147px;
  4474. width:70px;
  4475. height:35px;
  4476. display:flex;
  4477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4478. font-weight:400;
  4479. font-style:normal;
  4480. font-size:12px;
  4481. color:#606266;
  4482. }
  4483. #u5002 .text {
  4484. position:absolute;
  4485. align-self:center;
  4486. padding:2px 2px 2px 0px;
  4487. box-sizing:border-box;
  4488. width:100%;
  4489. }
  4490. #u5002_text {
  4491. border-width:0px;
  4492. word-wrap:break-word;
  4493. text-transform:none;
  4494. }
  4495. #u5003_img {
  4496. border-width:0px;
  4497. position:absolute;
  4498. left:0px;
  4499. top:0px;
  4500. width:139px;
  4501. height:35px;
  4502. }
  4503. #u5003 {
  4504. border-width:0px;
  4505. position:absolute;
  4506. left:1080px;
  4507. top:147px;
  4508. width:139px;
  4509. height:35px;
  4510. display:flex;
  4511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4512. font-weight:400;
  4513. font-style:normal;
  4514. font-size:12px;
  4515. color:#1890FF;
  4516. }
  4517. #u5003 .text {
  4518. position:absolute;
  4519. align-self:center;
  4520. padding:2px 2px 2px 0px;
  4521. box-sizing:border-box;
  4522. width:100%;
  4523. }
  4524. #u5003_text {
  4525. border-width:0px;
  4526. word-wrap:break-word;
  4527. text-transform:none;
  4528. visibility:hidden;
  4529. }
  4530. #u5004_img {
  4531. border-width:0px;
  4532. position:absolute;
  4533. left:0px;
  4534. top:0px;
  4535. width:30px;
  4536. height:35px;
  4537. }
  4538. #u5004 {
  4539. border-width:0px;
  4540. position:absolute;
  4541. left:0px;
  4542. top:182px;
  4543. width:30px;
  4544. height:35px;
  4545. display:flex;
  4546. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4547. font-weight:400;
  4548. font-style:normal;
  4549. font-size:12px;
  4550. color:#606266;
  4551. }
  4552. #u5004 .text {
  4553. position:absolute;
  4554. align-self:center;
  4555. padding:2px 2px 2px 0px;
  4556. box-sizing:border-box;
  4557. width:100%;
  4558. }
  4559. #u5004_text {
  4560. border-width:0px;
  4561. word-wrap:break-word;
  4562. text-transform:none;
  4563. visibility:hidden;
  4564. }
  4565. #u5005_img {
  4566. border-width:0px;
  4567. position:absolute;
  4568. left:0px;
  4569. top:0px;
  4570. width:66px;
  4571. height:35px;
  4572. }
  4573. #u5005 {
  4574. border-width:0px;
  4575. position:absolute;
  4576. left:30px;
  4577. top:182px;
  4578. width:66px;
  4579. height:35px;
  4580. display:flex;
  4581. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4582. font-weight:400;
  4583. font-style:normal;
  4584. font-size:12px;
  4585. color:#606266;
  4586. }
  4587. #u5005 .text {
  4588. position:absolute;
  4589. align-self:center;
  4590. padding:2px 2px 2px 0px;
  4591. box-sizing:border-box;
  4592. width:100%;
  4593. }
  4594. #u5005_text {
  4595. border-width:0px;
  4596. word-wrap:break-word;
  4597. text-transform:none;
  4598. visibility:hidden;
  4599. }
  4600. #u5006_img {
  4601. border-width:0px;
  4602. position:absolute;
  4603. left:0px;
  4604. top:0px;
  4605. width:79px;
  4606. height:35px;
  4607. }
  4608. #u5006 {
  4609. border-width:0px;
  4610. position:absolute;
  4611. left:96px;
  4612. top:182px;
  4613. width:79px;
  4614. height:35px;
  4615. display:flex;
  4616. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4617. font-weight:400;
  4618. font-style:normal;
  4619. font-size:12px;
  4620. color:#606266;
  4621. }
  4622. #u5006 .text {
  4623. position:absolute;
  4624. align-self:center;
  4625. padding:2px 2px 2px 0px;
  4626. box-sizing:border-box;
  4627. width:100%;
  4628. }
  4629. #u5006_text {
  4630. border-width:0px;
  4631. word-wrap:break-word;
  4632. text-transform:none;
  4633. visibility:hidden;
  4634. }
  4635. #u5007_img {
  4636. border-width:0px;
  4637. position:absolute;
  4638. left:0px;
  4639. top:0px;
  4640. width:70px;
  4641. height:35px;
  4642. }
  4643. #u5007 {
  4644. border-width:0px;
  4645. position:absolute;
  4646. left:175px;
  4647. top:182px;
  4648. width:70px;
  4649. height:35px;
  4650. display:flex;
  4651. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4652. font-weight:400;
  4653. font-style:normal;
  4654. font-size:12px;
  4655. color:#606266;
  4656. }
  4657. #u5007 .text {
  4658. position:absolute;
  4659. align-self:center;
  4660. padding:2px 2px 2px 0px;
  4661. box-sizing:border-box;
  4662. width:100%;
  4663. }
  4664. #u5007_text {
  4665. border-width:0px;
  4666. word-wrap:break-word;
  4667. text-transform:none;
  4668. visibility:hidden;
  4669. }
  4670. #u5008_img {
  4671. border-width:0px;
  4672. position:absolute;
  4673. left:0px;
  4674. top:0px;
  4675. width:66px;
  4676. height:35px;
  4677. }
  4678. #u5008 {
  4679. border-width:0px;
  4680. position:absolute;
  4681. left:245px;
  4682. top:182px;
  4683. width:66px;
  4684. height:35px;
  4685. display:flex;
  4686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4687. font-weight:400;
  4688. font-style:normal;
  4689. font-size:12px;
  4690. color:#606266;
  4691. }
  4692. #u5008 .text {
  4693. position:absolute;
  4694. align-self:center;
  4695. padding:2px 2px 2px 0px;
  4696. box-sizing:border-box;
  4697. width:100%;
  4698. }
  4699. #u5008_text {
  4700. border-width:0px;
  4701. word-wrap:break-word;
  4702. text-transform:none;
  4703. visibility:hidden;
  4704. }
  4705. #u5009_img {
  4706. border-width:0px;
  4707. position:absolute;
  4708. left:0px;
  4709. top:0px;
  4710. width:70px;
  4711. height:35px;
  4712. }
  4713. #u5009 {
  4714. border-width:0px;
  4715. position:absolute;
  4716. left:311px;
  4717. top:182px;
  4718. width:70px;
  4719. height:35px;
  4720. display:flex;
  4721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4722. font-weight:400;
  4723. font-style:normal;
  4724. font-size:12px;
  4725. color:#606266;
  4726. }
  4727. #u5009 .text {
  4728. position:absolute;
  4729. align-self:center;
  4730. padding:2px 2px 2px 0px;
  4731. box-sizing:border-box;
  4732. width:100%;
  4733. }
  4734. #u5009_text {
  4735. border-width:0px;
  4736. word-wrap:break-word;
  4737. text-transform:none;
  4738. visibility:hidden;
  4739. }
  4740. #u5010_img {
  4741. border-width:0px;
  4742. position:absolute;
  4743. left:0px;
  4744. top:0px;
  4745. width:100px;
  4746. height:35px;
  4747. }
  4748. #u5010 {
  4749. border-width:0px;
  4750. position:absolute;
  4751. left:381px;
  4752. top:182px;
  4753. width:100px;
  4754. height:35px;
  4755. display:flex;
  4756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4757. font-weight:400;
  4758. font-style:normal;
  4759. font-size:12px;
  4760. color:#606266;
  4761. }
  4762. #u5010 .text {
  4763. position:absolute;
  4764. align-self:center;
  4765. padding:2px 2px 2px 0px;
  4766. box-sizing:border-box;
  4767. width:100%;
  4768. }
  4769. #u5010_text {
  4770. border-width:0px;
  4771. word-wrap:break-word;
  4772. text-transform:none;
  4773. visibility:hidden;
  4774. }
  4775. #u5011_img {
  4776. border-width:0px;
  4777. position:absolute;
  4778. left:0px;
  4779. top:0px;
  4780. width:100px;
  4781. height:35px;
  4782. }
  4783. #u5011 {
  4784. border-width:0px;
  4785. position:absolute;
  4786. left:481px;
  4787. top:182px;
  4788. width:100px;
  4789. height:35px;
  4790. display:flex;
  4791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4792. font-weight:400;
  4793. font-style:normal;
  4794. font-size:12px;
  4795. color:#606266;
  4796. }
  4797. #u5011 .text {
  4798. position:absolute;
  4799. align-self:center;
  4800. padding:2px 2px 2px 0px;
  4801. box-sizing:border-box;
  4802. width:100%;
  4803. }
  4804. #u5011_text {
  4805. border-width:0px;
  4806. word-wrap:break-word;
  4807. text-transform:none;
  4808. visibility:hidden;
  4809. }
  4810. #u5012_img {
  4811. border-width:0px;
  4812. position:absolute;
  4813. left:0px;
  4814. top:0px;
  4815. width:70px;
  4816. height:35px;
  4817. }
  4818. #u5012 {
  4819. border-width:0px;
  4820. position:absolute;
  4821. left:581px;
  4822. top:182px;
  4823. width:70px;
  4824. height:35px;
  4825. display:flex;
  4826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4827. font-weight:400;
  4828. font-style:normal;
  4829. font-size:12px;
  4830. color:#606266;
  4831. }
  4832. #u5012 .text {
  4833. position:absolute;
  4834. align-self:center;
  4835. padding:2px 2px 2px 0px;
  4836. box-sizing:border-box;
  4837. width:100%;
  4838. }
  4839. #u5012_text {
  4840. border-width:0px;
  4841. word-wrap:break-word;
  4842. text-transform:none;
  4843. visibility:hidden;
  4844. }
  4845. #u5013_img {
  4846. border-width:0px;
  4847. position:absolute;
  4848. left:0px;
  4849. top:0px;
  4850. width:70px;
  4851. height:35px;
  4852. }
  4853. #u5013 {
  4854. border-width:0px;
  4855. position:absolute;
  4856. left:651px;
  4857. top:182px;
  4858. width:70px;
  4859. height:35px;
  4860. display:flex;
  4861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4862. font-weight:400;
  4863. font-style:normal;
  4864. font-size:12px;
  4865. color:#606266;
  4866. }
  4867. #u5013 .text {
  4868. position:absolute;
  4869. align-self:center;
  4870. padding:2px 2px 2px 0px;
  4871. box-sizing:border-box;
  4872. width:100%;
  4873. }
  4874. #u5013_text {
  4875. border-width:0px;
  4876. word-wrap:break-word;
  4877. text-transform:none;
  4878. visibility:hidden;
  4879. }
  4880. #u5014_img {
  4881. border-width:0px;
  4882. position:absolute;
  4883. left:0px;
  4884. top:0px;
  4885. width:70px;
  4886. height:35px;
  4887. }
  4888. #u5014 {
  4889. border-width:0px;
  4890. position:absolute;
  4891. left:721px;
  4892. top:182px;
  4893. width:70px;
  4894. height:35px;
  4895. display:flex;
  4896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4897. font-weight:400;
  4898. font-style:normal;
  4899. font-size:12px;
  4900. color:#606266;
  4901. }
  4902. #u5014 .text {
  4903. position:absolute;
  4904. align-self:center;
  4905. padding:2px 2px 2px 0px;
  4906. box-sizing:border-box;
  4907. width:100%;
  4908. }
  4909. #u5014_text {
  4910. border-width:0px;
  4911. word-wrap:break-word;
  4912. text-transform:none;
  4913. visibility:hidden;
  4914. }
  4915. #u5015_img {
  4916. border-width:0px;
  4917. position:absolute;
  4918. left:0px;
  4919. top:0px;
  4920. width:70px;
  4921. height:35px;
  4922. }
  4923. #u5015 {
  4924. border-width:0px;
  4925. position:absolute;
  4926. left:791px;
  4927. top:182px;
  4928. width:70px;
  4929. height:35px;
  4930. display:flex;
  4931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4932. font-weight:400;
  4933. font-style:normal;
  4934. font-size:12px;
  4935. color:#606266;
  4936. }
  4937. #u5015 .text {
  4938. position:absolute;
  4939. align-self:center;
  4940. padding:2px 2px 2px 0px;
  4941. box-sizing:border-box;
  4942. width:100%;
  4943. }
  4944. #u5015_text {
  4945. border-width:0px;
  4946. word-wrap:break-word;
  4947. text-transform:none;
  4948. visibility:hidden;
  4949. }
  4950. #u5016_img {
  4951. border-width:0px;
  4952. position:absolute;
  4953. left:0px;
  4954. top:0px;
  4955. width:79px;
  4956. height:35px;
  4957. }
  4958. #u5016 {
  4959. border-width:0px;
  4960. position:absolute;
  4961. left:861px;
  4962. top:182px;
  4963. width:79px;
  4964. height:35px;
  4965. display:flex;
  4966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4967. font-weight:400;
  4968. font-style:normal;
  4969. font-size:12px;
  4970. color:#606266;
  4971. }
  4972. #u5016 .text {
  4973. position:absolute;
  4974. align-self:center;
  4975. padding:2px 2px 2px 0px;
  4976. box-sizing:border-box;
  4977. width:100%;
  4978. }
  4979. #u5016_text {
  4980. border-width:0px;
  4981. word-wrap:break-word;
  4982. text-transform:none;
  4983. visibility:hidden;
  4984. }
  4985. #u5017_img {
  4986. border-width:0px;
  4987. position:absolute;
  4988. left:0px;
  4989. top:0px;
  4990. width:70px;
  4991. height:35px;
  4992. }
  4993. #u5017 {
  4994. border-width:0px;
  4995. position:absolute;
  4996. left:940px;
  4997. top:182px;
  4998. width:70px;
  4999. height:35px;
  5000. display:flex;
  5001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5002. font-weight:400;
  5003. font-style:normal;
  5004. font-size:12px;
  5005. color:#606266;
  5006. }
  5007. #u5017 .text {
  5008. position:absolute;
  5009. align-self:center;
  5010. padding:2px 2px 2px 0px;
  5011. box-sizing:border-box;
  5012. width:100%;
  5013. }
  5014. #u5017_text {
  5015. border-width:0px;
  5016. word-wrap:break-word;
  5017. text-transform:none;
  5018. visibility:hidden;
  5019. }
  5020. #u5018_img {
  5021. border-width:0px;
  5022. position:absolute;
  5023. left:0px;
  5024. top:0px;
  5025. width:70px;
  5026. height:35px;
  5027. }
  5028. #u5018 {
  5029. border-width:0px;
  5030. position:absolute;
  5031. left:1010px;
  5032. top:182px;
  5033. width:70px;
  5034. height:35px;
  5035. display:flex;
  5036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5037. font-weight:400;
  5038. font-style:normal;
  5039. font-size:12px;
  5040. color:#606266;
  5041. }
  5042. #u5018 .text {
  5043. position:absolute;
  5044. align-self:center;
  5045. padding:2px 2px 2px 0px;
  5046. box-sizing:border-box;
  5047. width:100%;
  5048. }
  5049. #u5018_text {
  5050. border-width:0px;
  5051. word-wrap:break-word;
  5052. text-transform:none;
  5053. visibility:hidden;
  5054. }
  5055. #u5019_img {
  5056. border-width:0px;
  5057. position:absolute;
  5058. left:0px;
  5059. top:0px;
  5060. width:139px;
  5061. height:35px;
  5062. }
  5063. #u5019 {
  5064. border-width:0px;
  5065. position:absolute;
  5066. left:1080px;
  5067. top:182px;
  5068. width:139px;
  5069. height:35px;
  5070. display:flex;
  5071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5072. font-weight:400;
  5073. font-style:normal;
  5074. font-size:12px;
  5075. color:#1890FF;
  5076. }
  5077. #u5019 .text {
  5078. position:absolute;
  5079. align-self:center;
  5080. padding:2px 2px 2px 0px;
  5081. box-sizing:border-box;
  5082. width:100%;
  5083. }
  5084. #u5019_text {
  5085. border-width:0px;
  5086. word-wrap:break-word;
  5087. text-transform:none;
  5088. visibility:hidden;
  5089. }
  5090. #u5020_img {
  5091. border-width:0px;
  5092. position:absolute;
  5093. left:0px;
  5094. top:0px;
  5095. width:30px;
  5096. height:35px;
  5097. }
  5098. #u5020 {
  5099. border-width:0px;
  5100. position:absolute;
  5101. left:0px;
  5102. top:217px;
  5103. width:30px;
  5104. height:35px;
  5105. display:flex;
  5106. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5107. font-weight:400;
  5108. font-style:normal;
  5109. font-size:12px;
  5110. color:#606266;
  5111. }
  5112. #u5020 .text {
  5113. position:absolute;
  5114. align-self:center;
  5115. padding:2px 2px 2px 0px;
  5116. box-sizing:border-box;
  5117. width:100%;
  5118. }
  5119. #u5020_text {
  5120. border-width:0px;
  5121. word-wrap:break-word;
  5122. text-transform:none;
  5123. visibility:hidden;
  5124. }
  5125. #u5021_img {
  5126. border-width:0px;
  5127. position:absolute;
  5128. left:0px;
  5129. top:0px;
  5130. width:66px;
  5131. height:35px;
  5132. }
  5133. #u5021 {
  5134. border-width:0px;
  5135. position:absolute;
  5136. left:30px;
  5137. top:217px;
  5138. width:66px;
  5139. height:35px;
  5140. display:flex;
  5141. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5142. font-weight:400;
  5143. font-style:normal;
  5144. font-size:12px;
  5145. color:#606266;
  5146. }
  5147. #u5021 .text {
  5148. position:absolute;
  5149. align-self:center;
  5150. padding:2px 2px 2px 0px;
  5151. box-sizing:border-box;
  5152. width:100%;
  5153. }
  5154. #u5021_text {
  5155. border-width:0px;
  5156. word-wrap:break-word;
  5157. text-transform:none;
  5158. visibility:hidden;
  5159. }
  5160. #u5022_img {
  5161. border-width:0px;
  5162. position:absolute;
  5163. left:0px;
  5164. top:0px;
  5165. width:79px;
  5166. height:35px;
  5167. }
  5168. #u5022 {
  5169. border-width:0px;
  5170. position:absolute;
  5171. left:96px;
  5172. top:217px;
  5173. width:79px;
  5174. height:35px;
  5175. display:flex;
  5176. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5177. font-weight:400;
  5178. font-style:normal;
  5179. font-size:12px;
  5180. color:#606266;
  5181. }
  5182. #u5022 .text {
  5183. position:absolute;
  5184. align-self:center;
  5185. padding:2px 2px 2px 0px;
  5186. box-sizing:border-box;
  5187. width:100%;
  5188. }
  5189. #u5022_text {
  5190. border-width:0px;
  5191. word-wrap:break-word;
  5192. text-transform:none;
  5193. visibility:hidden;
  5194. }
  5195. #u5023_img {
  5196. border-width:0px;
  5197. position:absolute;
  5198. left:0px;
  5199. top:0px;
  5200. width:70px;
  5201. height:35px;
  5202. }
  5203. #u5023 {
  5204. border-width:0px;
  5205. position:absolute;
  5206. left:175px;
  5207. top:217px;
  5208. width:70px;
  5209. height:35px;
  5210. display:flex;
  5211. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5212. font-weight:400;
  5213. font-style:normal;
  5214. font-size:12px;
  5215. color:#606266;
  5216. }
  5217. #u5023 .text {
  5218. position:absolute;
  5219. align-self:center;
  5220. padding:2px 2px 2px 0px;
  5221. box-sizing:border-box;
  5222. width:100%;
  5223. }
  5224. #u5023_text {
  5225. border-width:0px;
  5226. word-wrap:break-word;
  5227. text-transform:none;
  5228. visibility:hidden;
  5229. }
  5230. #u5024_img {
  5231. border-width:0px;
  5232. position:absolute;
  5233. left:0px;
  5234. top:0px;
  5235. width:66px;
  5236. height:35px;
  5237. }
  5238. #u5024 {
  5239. border-width:0px;
  5240. position:absolute;
  5241. left:245px;
  5242. top:217px;
  5243. width:66px;
  5244. height:35px;
  5245. display:flex;
  5246. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5247. font-weight:400;
  5248. font-style:normal;
  5249. font-size:12px;
  5250. color:#606266;
  5251. }
  5252. #u5024 .text {
  5253. position:absolute;
  5254. align-self:center;
  5255. padding:2px 2px 2px 0px;
  5256. box-sizing:border-box;
  5257. width:100%;
  5258. }
  5259. #u5024_text {
  5260. border-width:0px;
  5261. word-wrap:break-word;
  5262. text-transform:none;
  5263. visibility:hidden;
  5264. }
  5265. #u5025_img {
  5266. border-width:0px;
  5267. position:absolute;
  5268. left:0px;
  5269. top:0px;
  5270. width:70px;
  5271. height:35px;
  5272. }
  5273. #u5025 {
  5274. border-width:0px;
  5275. position:absolute;
  5276. left:311px;
  5277. top:217px;
  5278. width:70px;
  5279. height:35px;
  5280. display:flex;
  5281. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5282. font-weight:400;
  5283. font-style:normal;
  5284. font-size:12px;
  5285. color:#606266;
  5286. }
  5287. #u5025 .text {
  5288. position:absolute;
  5289. align-self:center;
  5290. padding:2px 2px 2px 0px;
  5291. box-sizing:border-box;
  5292. width:100%;
  5293. }
  5294. #u5025_text {
  5295. border-width:0px;
  5296. word-wrap:break-word;
  5297. text-transform:none;
  5298. visibility:hidden;
  5299. }
  5300. #u5026_img {
  5301. border-width:0px;
  5302. position:absolute;
  5303. left:0px;
  5304. top:0px;
  5305. width:100px;
  5306. height:35px;
  5307. }
  5308. #u5026 {
  5309. border-width:0px;
  5310. position:absolute;
  5311. left:381px;
  5312. top:217px;
  5313. width:100px;
  5314. height:35px;
  5315. display:flex;
  5316. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5317. font-weight:400;
  5318. font-style:normal;
  5319. font-size:12px;
  5320. color:#606266;
  5321. }
  5322. #u5026 .text {
  5323. position:absolute;
  5324. align-self:center;
  5325. padding:2px 2px 2px 0px;
  5326. box-sizing:border-box;
  5327. width:100%;
  5328. }
  5329. #u5026_text {
  5330. border-width:0px;
  5331. word-wrap:break-word;
  5332. text-transform:none;
  5333. visibility:hidden;
  5334. }
  5335. #u5027_img {
  5336. border-width:0px;
  5337. position:absolute;
  5338. left:0px;
  5339. top:0px;
  5340. width:100px;
  5341. height:35px;
  5342. }
  5343. #u5027 {
  5344. border-width:0px;
  5345. position:absolute;
  5346. left:481px;
  5347. top:217px;
  5348. width:100px;
  5349. height:35px;
  5350. display:flex;
  5351. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5352. font-weight:400;
  5353. font-style:normal;
  5354. font-size:12px;
  5355. color:#606266;
  5356. }
  5357. #u5027 .text {
  5358. position:absolute;
  5359. align-self:center;
  5360. padding:2px 2px 2px 0px;
  5361. box-sizing:border-box;
  5362. width:100%;
  5363. }
  5364. #u5027_text {
  5365. border-width:0px;
  5366. word-wrap:break-word;
  5367. text-transform:none;
  5368. visibility:hidden;
  5369. }
  5370. #u5028_img {
  5371. border-width:0px;
  5372. position:absolute;
  5373. left:0px;
  5374. top:0px;
  5375. width:70px;
  5376. height:35px;
  5377. }
  5378. #u5028 {
  5379. border-width:0px;
  5380. position:absolute;
  5381. left:581px;
  5382. top:217px;
  5383. width:70px;
  5384. height:35px;
  5385. display:flex;
  5386. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5387. font-weight:400;
  5388. font-style:normal;
  5389. font-size:12px;
  5390. color:#606266;
  5391. }
  5392. #u5028 .text {
  5393. position:absolute;
  5394. align-self:center;
  5395. padding:2px 2px 2px 0px;
  5396. box-sizing:border-box;
  5397. width:100%;
  5398. }
  5399. #u5028_text {
  5400. border-width:0px;
  5401. word-wrap:break-word;
  5402. text-transform:none;
  5403. visibility:hidden;
  5404. }
  5405. #u5029_img {
  5406. border-width:0px;
  5407. position:absolute;
  5408. left:0px;
  5409. top:0px;
  5410. width:70px;
  5411. height:35px;
  5412. }
  5413. #u5029 {
  5414. border-width:0px;
  5415. position:absolute;
  5416. left:651px;
  5417. top:217px;
  5418. width:70px;
  5419. height:35px;
  5420. display:flex;
  5421. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5422. font-weight:400;
  5423. font-style:normal;
  5424. font-size:12px;
  5425. color:#606266;
  5426. }
  5427. #u5029 .text {
  5428. position:absolute;
  5429. align-self:center;
  5430. padding:2px 2px 2px 0px;
  5431. box-sizing:border-box;
  5432. width:100%;
  5433. }
  5434. #u5029_text {
  5435. border-width:0px;
  5436. word-wrap:break-word;
  5437. text-transform:none;
  5438. visibility:hidden;
  5439. }
  5440. #u5030_img {
  5441. border-width:0px;
  5442. position:absolute;
  5443. left:0px;
  5444. top:0px;
  5445. width:70px;
  5446. height:35px;
  5447. }
  5448. #u5030 {
  5449. border-width:0px;
  5450. position:absolute;
  5451. left:721px;
  5452. top:217px;
  5453. width:70px;
  5454. height:35px;
  5455. display:flex;
  5456. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5457. font-weight:400;
  5458. font-style:normal;
  5459. font-size:12px;
  5460. color:#606266;
  5461. }
  5462. #u5030 .text {
  5463. position:absolute;
  5464. align-self:center;
  5465. padding:2px 2px 2px 0px;
  5466. box-sizing:border-box;
  5467. width:100%;
  5468. }
  5469. #u5030_text {
  5470. border-width:0px;
  5471. word-wrap:break-word;
  5472. text-transform:none;
  5473. visibility:hidden;
  5474. }
  5475. #u5031_img {
  5476. border-width:0px;
  5477. position:absolute;
  5478. left:0px;
  5479. top:0px;
  5480. width:70px;
  5481. height:35px;
  5482. }
  5483. #u5031 {
  5484. border-width:0px;
  5485. position:absolute;
  5486. left:791px;
  5487. top:217px;
  5488. width:70px;
  5489. height:35px;
  5490. display:flex;
  5491. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5492. font-weight:400;
  5493. font-style:normal;
  5494. font-size:12px;
  5495. color:#606266;
  5496. }
  5497. #u5031 .text {
  5498. position:absolute;
  5499. align-self:center;
  5500. padding:2px 2px 2px 0px;
  5501. box-sizing:border-box;
  5502. width:100%;
  5503. }
  5504. #u5031_text {
  5505. border-width:0px;
  5506. word-wrap:break-word;
  5507. text-transform:none;
  5508. visibility:hidden;
  5509. }
  5510. #u5032_img {
  5511. border-width:0px;
  5512. position:absolute;
  5513. left:0px;
  5514. top:0px;
  5515. width:79px;
  5516. height:35px;
  5517. }
  5518. #u5032 {
  5519. border-width:0px;
  5520. position:absolute;
  5521. left:861px;
  5522. top:217px;
  5523. width:79px;
  5524. height:35px;
  5525. display:flex;
  5526. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5527. font-weight:400;
  5528. font-style:normal;
  5529. font-size:12px;
  5530. color:#606266;
  5531. }
  5532. #u5032 .text {
  5533. position:absolute;
  5534. align-self:center;
  5535. padding:2px 2px 2px 0px;
  5536. box-sizing:border-box;
  5537. width:100%;
  5538. }
  5539. #u5032_text {
  5540. border-width:0px;
  5541. word-wrap:break-word;
  5542. text-transform:none;
  5543. visibility:hidden;
  5544. }
  5545. #u5033_img {
  5546. border-width:0px;
  5547. position:absolute;
  5548. left:0px;
  5549. top:0px;
  5550. width:70px;
  5551. height:35px;
  5552. }
  5553. #u5033 {
  5554. border-width:0px;
  5555. position:absolute;
  5556. left:940px;
  5557. top:217px;
  5558. width:70px;
  5559. height:35px;
  5560. display:flex;
  5561. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5562. font-weight:400;
  5563. font-style:normal;
  5564. font-size:12px;
  5565. color:#606266;
  5566. }
  5567. #u5033 .text {
  5568. position:absolute;
  5569. align-self:center;
  5570. padding:2px 2px 2px 0px;
  5571. box-sizing:border-box;
  5572. width:100%;
  5573. }
  5574. #u5033_text {
  5575. border-width:0px;
  5576. word-wrap:break-word;
  5577. text-transform:none;
  5578. visibility:hidden;
  5579. }
  5580. #u5034_img {
  5581. border-width:0px;
  5582. position:absolute;
  5583. left:0px;
  5584. top:0px;
  5585. width:70px;
  5586. height:35px;
  5587. }
  5588. #u5034 {
  5589. border-width:0px;
  5590. position:absolute;
  5591. left:1010px;
  5592. top:217px;
  5593. width:70px;
  5594. height:35px;
  5595. display:flex;
  5596. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5597. font-weight:400;
  5598. font-style:normal;
  5599. font-size:12px;
  5600. color:#606266;
  5601. }
  5602. #u5034 .text {
  5603. position:absolute;
  5604. align-self:center;
  5605. padding:2px 2px 2px 0px;
  5606. box-sizing:border-box;
  5607. width:100%;
  5608. }
  5609. #u5034_text {
  5610. border-width:0px;
  5611. word-wrap:break-word;
  5612. text-transform:none;
  5613. visibility:hidden;
  5614. }
  5615. #u5035_img {
  5616. border-width:0px;
  5617. position:absolute;
  5618. left:0px;
  5619. top:0px;
  5620. width:139px;
  5621. height:35px;
  5622. }
  5623. #u5035 {
  5624. border-width:0px;
  5625. position:absolute;
  5626. left:1080px;
  5627. top:217px;
  5628. width:139px;
  5629. height:35px;
  5630. display:flex;
  5631. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5632. font-weight:400;
  5633. font-style:normal;
  5634. font-size:12px;
  5635. color:#606266;
  5636. }
  5637. #u5035 .text {
  5638. position:absolute;
  5639. align-self:center;
  5640. padding:2px 2px 2px 0px;
  5641. box-sizing:border-box;
  5642. width:100%;
  5643. }
  5644. #u5035_text {
  5645. border-width:0px;
  5646. word-wrap:break-word;
  5647. text-transform:none;
  5648. visibility:hidden;
  5649. }
  5650. #u5036_img {
  5651. border-width:0px;
  5652. position:absolute;
  5653. left:0px;
  5654. top:0px;
  5655. width:30px;
  5656. height:32px;
  5657. }
  5658. #u5036 {
  5659. border-width:0px;
  5660. position:absolute;
  5661. left:0px;
  5662. top:252px;
  5663. width:30px;
  5664. height:32px;
  5665. display:flex;
  5666. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5667. font-weight:400;
  5668. font-style:normal;
  5669. font-size:12px;
  5670. color:#606266;
  5671. }
  5672. #u5036 .text {
  5673. position:absolute;
  5674. align-self:center;
  5675. padding:2px 2px 2px 0px;
  5676. box-sizing:border-box;
  5677. width:100%;
  5678. }
  5679. #u5036_text {
  5680. border-width:0px;
  5681. word-wrap:break-word;
  5682. text-transform:none;
  5683. visibility:hidden;
  5684. }
  5685. #u5037_img {
  5686. border-width:0px;
  5687. position:absolute;
  5688. left:0px;
  5689. top:0px;
  5690. width:66px;
  5691. height:32px;
  5692. }
  5693. #u5037 {
  5694. border-width:0px;
  5695. position:absolute;
  5696. left:30px;
  5697. top:252px;
  5698. width:66px;
  5699. height:32px;
  5700. display:flex;
  5701. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5702. font-weight:400;
  5703. font-style:normal;
  5704. font-size:12px;
  5705. color:#606266;
  5706. }
  5707. #u5037 .text {
  5708. position:absolute;
  5709. align-self:center;
  5710. padding:2px 2px 2px 0px;
  5711. box-sizing:border-box;
  5712. width:100%;
  5713. }
  5714. #u5037_text {
  5715. border-width:0px;
  5716. word-wrap:break-word;
  5717. text-transform:none;
  5718. visibility:hidden;
  5719. }
  5720. #u5038_img {
  5721. border-width:0px;
  5722. position:absolute;
  5723. left:0px;
  5724. top:0px;
  5725. width:79px;
  5726. height:32px;
  5727. }
  5728. #u5038 {
  5729. border-width:0px;
  5730. position:absolute;
  5731. left:96px;
  5732. top:252px;
  5733. width:79px;
  5734. height:32px;
  5735. display:flex;
  5736. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5737. font-weight:400;
  5738. font-style:normal;
  5739. font-size:12px;
  5740. color:#606266;
  5741. }
  5742. #u5038 .text {
  5743. position:absolute;
  5744. align-self:center;
  5745. padding:2px 2px 2px 0px;
  5746. box-sizing:border-box;
  5747. width:100%;
  5748. }
  5749. #u5038_text {
  5750. border-width:0px;
  5751. word-wrap:break-word;
  5752. text-transform:none;
  5753. visibility:hidden;
  5754. }
  5755. #u5039_img {
  5756. border-width:0px;
  5757. position:absolute;
  5758. left:0px;
  5759. top:0px;
  5760. width:70px;
  5761. height:32px;
  5762. }
  5763. #u5039 {
  5764. border-width:0px;
  5765. position:absolute;
  5766. left:175px;
  5767. top:252px;
  5768. width:70px;
  5769. height:32px;
  5770. display:flex;
  5771. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5772. font-weight:400;
  5773. font-style:normal;
  5774. font-size:12px;
  5775. color:#606266;
  5776. }
  5777. #u5039 .text {
  5778. position:absolute;
  5779. align-self:center;
  5780. padding:2px 2px 2px 0px;
  5781. box-sizing:border-box;
  5782. width:100%;
  5783. }
  5784. #u5039_text {
  5785. border-width:0px;
  5786. word-wrap:break-word;
  5787. text-transform:none;
  5788. visibility:hidden;
  5789. }
  5790. #u5040_img {
  5791. border-width:0px;
  5792. position:absolute;
  5793. left:0px;
  5794. top:0px;
  5795. width:66px;
  5796. height:32px;
  5797. }
  5798. #u5040 {
  5799. border-width:0px;
  5800. position:absolute;
  5801. left:245px;
  5802. top:252px;
  5803. width:66px;
  5804. height:32px;
  5805. display:flex;
  5806. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5807. font-weight:400;
  5808. font-style:normal;
  5809. font-size:12px;
  5810. color:#606266;
  5811. }
  5812. #u5040 .text {
  5813. position:absolute;
  5814. align-self:center;
  5815. padding:2px 2px 2px 0px;
  5816. box-sizing:border-box;
  5817. width:100%;
  5818. }
  5819. #u5040_text {
  5820. border-width:0px;
  5821. word-wrap:break-word;
  5822. text-transform:none;
  5823. visibility:hidden;
  5824. }
  5825. #u5041_img {
  5826. border-width:0px;
  5827. position:absolute;
  5828. left:0px;
  5829. top:0px;
  5830. width:70px;
  5831. height:32px;
  5832. }
  5833. #u5041 {
  5834. border-width:0px;
  5835. position:absolute;
  5836. left:311px;
  5837. top:252px;
  5838. width:70px;
  5839. height:32px;
  5840. display:flex;
  5841. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5842. font-weight:400;
  5843. font-style:normal;
  5844. font-size:12px;
  5845. color:#606266;
  5846. }
  5847. #u5041 .text {
  5848. position:absolute;
  5849. align-self:center;
  5850. padding:2px 2px 2px 0px;
  5851. box-sizing:border-box;
  5852. width:100%;
  5853. }
  5854. #u5041_text {
  5855. border-width:0px;
  5856. word-wrap:break-word;
  5857. text-transform:none;
  5858. visibility:hidden;
  5859. }
  5860. #u5042_img {
  5861. border-width:0px;
  5862. position:absolute;
  5863. left:0px;
  5864. top:0px;
  5865. width:100px;
  5866. height:32px;
  5867. }
  5868. #u5042 {
  5869. border-width:0px;
  5870. position:absolute;
  5871. left:381px;
  5872. top:252px;
  5873. width:100px;
  5874. height:32px;
  5875. display:flex;
  5876. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5877. font-weight:400;
  5878. font-style:normal;
  5879. font-size:12px;
  5880. color:#606266;
  5881. }
  5882. #u5042 .text {
  5883. position:absolute;
  5884. align-self:center;
  5885. padding:2px 2px 2px 0px;
  5886. box-sizing:border-box;
  5887. width:100%;
  5888. }
  5889. #u5042_text {
  5890. border-width:0px;
  5891. word-wrap:break-word;
  5892. text-transform:none;
  5893. visibility:hidden;
  5894. }
  5895. #u5043_img {
  5896. border-width:0px;
  5897. position:absolute;
  5898. left:0px;
  5899. top:0px;
  5900. width:100px;
  5901. height:32px;
  5902. }
  5903. #u5043 {
  5904. border-width:0px;
  5905. position:absolute;
  5906. left:481px;
  5907. top:252px;
  5908. width:100px;
  5909. height:32px;
  5910. display:flex;
  5911. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5912. font-weight:400;
  5913. font-style:normal;
  5914. font-size:12px;
  5915. color:#606266;
  5916. }
  5917. #u5043 .text {
  5918. position:absolute;
  5919. align-self:center;
  5920. padding:2px 2px 2px 0px;
  5921. box-sizing:border-box;
  5922. width:100%;
  5923. }
  5924. #u5043_text {
  5925. border-width:0px;
  5926. word-wrap:break-word;
  5927. text-transform:none;
  5928. visibility:hidden;
  5929. }
  5930. #u5044_img {
  5931. border-width:0px;
  5932. position:absolute;
  5933. left:0px;
  5934. top:0px;
  5935. width:70px;
  5936. height:32px;
  5937. }
  5938. #u5044 {
  5939. border-width:0px;
  5940. position:absolute;
  5941. left:581px;
  5942. top:252px;
  5943. width:70px;
  5944. height:32px;
  5945. display:flex;
  5946. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5947. font-weight:400;
  5948. font-style:normal;
  5949. font-size:12px;
  5950. color:#606266;
  5951. }
  5952. #u5044 .text {
  5953. position:absolute;
  5954. align-self:center;
  5955. padding:2px 2px 2px 0px;
  5956. box-sizing:border-box;
  5957. width:100%;
  5958. }
  5959. #u5044_text {
  5960. border-width:0px;
  5961. word-wrap:break-word;
  5962. text-transform:none;
  5963. visibility:hidden;
  5964. }
  5965. #u5045_img {
  5966. border-width:0px;
  5967. position:absolute;
  5968. left:0px;
  5969. top:0px;
  5970. width:70px;
  5971. height:32px;
  5972. }
  5973. #u5045 {
  5974. border-width:0px;
  5975. position:absolute;
  5976. left:651px;
  5977. top:252px;
  5978. width:70px;
  5979. height:32px;
  5980. display:flex;
  5981. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5982. font-weight:400;
  5983. font-style:normal;
  5984. font-size:12px;
  5985. color:#606266;
  5986. }
  5987. #u5045 .text {
  5988. position:absolute;
  5989. align-self:center;
  5990. padding:2px 2px 2px 0px;
  5991. box-sizing:border-box;
  5992. width:100%;
  5993. }
  5994. #u5045_text {
  5995. border-width:0px;
  5996. word-wrap:break-word;
  5997. text-transform:none;
  5998. visibility:hidden;
  5999. }
  6000. #u5046_img {
  6001. border-width:0px;
  6002. position:absolute;
  6003. left:0px;
  6004. top:0px;
  6005. width:70px;
  6006. height:32px;
  6007. }
  6008. #u5046 {
  6009. border-width:0px;
  6010. position:absolute;
  6011. left:721px;
  6012. top:252px;
  6013. width:70px;
  6014. height:32px;
  6015. display:flex;
  6016. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6017. font-weight:400;
  6018. font-style:normal;
  6019. font-size:12px;
  6020. color:#606266;
  6021. }
  6022. #u5046 .text {
  6023. position:absolute;
  6024. align-self:center;
  6025. padding:2px 2px 2px 0px;
  6026. box-sizing:border-box;
  6027. width:100%;
  6028. }
  6029. #u5046_text {
  6030. border-width:0px;
  6031. word-wrap:break-word;
  6032. text-transform:none;
  6033. visibility:hidden;
  6034. }
  6035. #u5047_img {
  6036. border-width:0px;
  6037. position:absolute;
  6038. left:0px;
  6039. top:0px;
  6040. width:70px;
  6041. height:32px;
  6042. }
  6043. #u5047 {
  6044. border-width:0px;
  6045. position:absolute;
  6046. left:791px;
  6047. top:252px;
  6048. width:70px;
  6049. height:32px;
  6050. display:flex;
  6051. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6052. font-weight:400;
  6053. font-style:normal;
  6054. font-size:12px;
  6055. color:#606266;
  6056. }
  6057. #u5047 .text {
  6058. position:absolute;
  6059. align-self:center;
  6060. padding:2px 2px 2px 0px;
  6061. box-sizing:border-box;
  6062. width:100%;
  6063. }
  6064. #u5047_text {
  6065. border-width:0px;
  6066. word-wrap:break-word;
  6067. text-transform:none;
  6068. visibility:hidden;
  6069. }
  6070. #u5048_img {
  6071. border-width:0px;
  6072. position:absolute;
  6073. left:0px;
  6074. top:0px;
  6075. width:79px;
  6076. height:32px;
  6077. }
  6078. #u5048 {
  6079. border-width:0px;
  6080. position:absolute;
  6081. left:861px;
  6082. top:252px;
  6083. width:79px;
  6084. height:32px;
  6085. display:flex;
  6086. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6087. font-weight:400;
  6088. font-style:normal;
  6089. font-size:12px;
  6090. color:#606266;
  6091. }
  6092. #u5048 .text {
  6093. position:absolute;
  6094. align-self:center;
  6095. padding:2px 2px 2px 0px;
  6096. box-sizing:border-box;
  6097. width:100%;
  6098. }
  6099. #u5048_text {
  6100. border-width:0px;
  6101. word-wrap:break-word;
  6102. text-transform:none;
  6103. visibility:hidden;
  6104. }
  6105. #u5049_img {
  6106. border-width:0px;
  6107. position:absolute;
  6108. left:0px;
  6109. top:0px;
  6110. width:70px;
  6111. height:32px;
  6112. }
  6113. #u5049 {
  6114. border-width:0px;
  6115. position:absolute;
  6116. left:940px;
  6117. top:252px;
  6118. width:70px;
  6119. height:32px;
  6120. display:flex;
  6121. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6122. font-weight:400;
  6123. font-style:normal;
  6124. font-size:12px;
  6125. color:#606266;
  6126. }
  6127. #u5049 .text {
  6128. position:absolute;
  6129. align-self:center;
  6130. padding:2px 2px 2px 0px;
  6131. box-sizing:border-box;
  6132. width:100%;
  6133. }
  6134. #u5049_text {
  6135. border-width:0px;
  6136. word-wrap:break-word;
  6137. text-transform:none;
  6138. visibility:hidden;
  6139. }
  6140. #u5050_img {
  6141. border-width:0px;
  6142. position:absolute;
  6143. left:0px;
  6144. top:0px;
  6145. width:70px;
  6146. height:32px;
  6147. }
  6148. #u5050 {
  6149. border-width:0px;
  6150. position:absolute;
  6151. left:1010px;
  6152. top:252px;
  6153. width:70px;
  6154. height:32px;
  6155. display:flex;
  6156. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6157. font-weight:400;
  6158. font-style:normal;
  6159. font-size:12px;
  6160. color:#606266;
  6161. }
  6162. #u5050 .text {
  6163. position:absolute;
  6164. align-self:center;
  6165. padding:2px 2px 2px 0px;
  6166. box-sizing:border-box;
  6167. width:100%;
  6168. }
  6169. #u5050_text {
  6170. border-width:0px;
  6171. word-wrap:break-word;
  6172. text-transform:none;
  6173. visibility:hidden;
  6174. }
  6175. #u5051_img {
  6176. border-width:0px;
  6177. position:absolute;
  6178. left:0px;
  6179. top:0px;
  6180. width:139px;
  6181. height:32px;
  6182. }
  6183. #u5051 {
  6184. border-width:0px;
  6185. position:absolute;
  6186. left:1080px;
  6187. top:252px;
  6188. width:139px;
  6189. height:32px;
  6190. display:flex;
  6191. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6192. font-weight:400;
  6193. font-style:normal;
  6194. font-size:12px;
  6195. color:#606266;
  6196. }
  6197. #u5051 .text {
  6198. position:absolute;
  6199. align-self:center;
  6200. padding:2px 2px 2px 0px;
  6201. box-sizing:border-box;
  6202. width:100%;
  6203. }
  6204. #u5051_text {
  6205. border-width:0px;
  6206. word-wrap:break-word;
  6207. text-transform:none;
  6208. visibility:hidden;
  6209. }
  6210. #u5052 {
  6211. border-width:0px;
  6212. position:absolute;
  6213. left:0px;
  6214. top:0px;
  6215. width:0px;
  6216. height:0px;
  6217. }
  6218. #u5053_div {
  6219. border-width:0px;
  6220. position:absolute;
  6221. left:0px;
  6222. top:0px;
  6223. width:140px;
  6224. height:30px;
  6225. background:inherit;
  6226. background-color:rgba(255, 255, 255, 1);
  6227. box-sizing:border-box;
  6228. border-width:1px;
  6229. border-style:solid;
  6230. border-color:rgba(201, 201, 201, 1);
  6231. border-radius:4px;
  6232. -moz-box-shadow:none;
  6233. -webkit-box-shadow:none;
  6234. box-shadow:none;
  6235. font-family:'Microsoft YaHei', sans-serif;
  6236. font-weight:400;
  6237. font-style:normal;
  6238. font-size:14px;
  6239. color:#CCCCCC;
  6240. text-align:left;
  6241. }
  6242. #u5053 {
  6243. border-width:0px;
  6244. position:absolute;
  6245. left:353px;
  6246. top:182px;
  6247. width:140px;
  6248. height:30px;
  6249. display:flex;
  6250. font-family:'Microsoft YaHei', sans-serif;
  6251. font-weight:400;
  6252. font-style:normal;
  6253. font-size:14px;
  6254. color:#CCCCCC;
  6255. text-align:left;
  6256. }
  6257. #u5053 .text {
  6258. position:absolute;
  6259. align-self:center;
  6260. padding:2px 8px 2px 8px;
  6261. box-sizing:border-box;
  6262. width:100%;
  6263. }
  6264. #u5053_text {
  6265. border-width:0px;
  6266. word-wrap:break-word;
  6267. text-transform:none;
  6268. visibility:hidden;
  6269. }
  6270. #u5054_input {
  6271. position:absolute;
  6272. left:0px;
  6273. top:0px;
  6274. width:127px;
  6275. height:25px;
  6276. padding:2px 2px 2px 2px;
  6277. font-family:'Microsoft YaHei', sans-serif;
  6278. font-weight:400;
  6279. font-style:normal;
  6280. font-size:10px;
  6281. letter-spacing:normal;
  6282. color:#000000;
  6283. vertical-align:none;
  6284. text-align:left;
  6285. text-transform:none;
  6286. background-color:transparent;
  6287. border-color:transparent;
  6288. }
  6289. #u5054_input.disabled {
  6290. position:absolute;
  6291. left:0px;
  6292. top:0px;
  6293. width:127px;
  6294. height:25px;
  6295. padding:2px 2px 2px 2px;
  6296. font-family:'Microsoft YaHei', sans-serif;
  6297. font-weight:400;
  6298. font-style:normal;
  6299. font-size:10px;
  6300. letter-spacing:normal;
  6301. color:#000000;
  6302. vertical-align:none;
  6303. text-align:left;
  6304. text-transform:none;
  6305. background-color:transparent;
  6306. border-color:transparent;
  6307. }
  6308. #u5054_div {
  6309. border-width:0px;
  6310. position:absolute;
  6311. left:0px;
  6312. top:0px;
  6313. width:127px;
  6314. height:25px;
  6315. background:inherit;
  6316. background-color:rgba(255, 255, 255, 1);
  6317. border:none;
  6318. border-radius:0px;
  6319. -moz-box-shadow:none;
  6320. -webkit-box-shadow:none;
  6321. box-shadow:none;
  6322. font-family:'Microsoft YaHei', sans-serif;
  6323. font-weight:400;
  6324. font-style:normal;
  6325. font-size:10px;
  6326. }
  6327. #u5054 {
  6328. border-width:0px;
  6329. position:absolute;
  6330. left:361px;
  6331. top:183px;
  6332. width:127px;
  6333. height:25px;
  6334. display:flex;
  6335. font-family:'Microsoft YaHei', sans-serif;
  6336. font-weight:400;
  6337. font-style:normal;
  6338. font-size:10px;
  6339. }
  6340. #u5054 .text {
  6341. position:absolute;
  6342. align-self:center;
  6343. padding:2px 2px 2px 2px;
  6344. box-sizing:border-box;
  6345. width:100%;
  6346. }
  6347. #u5054_div.disabled {
  6348. border-width:0px;
  6349. position:absolute;
  6350. left:0px;
  6351. top:0px;
  6352. width:127px;
  6353. height:25px;
  6354. background:inherit;
  6355. background-color:rgba(240, 240, 240, 1);
  6356. border:none;
  6357. border-radius:0px;
  6358. -moz-box-shadow:none;
  6359. -webkit-box-shadow:none;
  6360. box-shadow:none;
  6361. font-family:'Microsoft YaHei', sans-serif;
  6362. font-weight:400;
  6363. font-style:normal;
  6364. font-size:10px;
  6365. }
  6366. #u5054.disabled {
  6367. }
  6368. #u5055 {
  6369. border-width:0px;
  6370. position:absolute;
  6371. left:0px;
  6372. top:0px;
  6373. width:0px;
  6374. height:0px;
  6375. }
  6376. #u5056_div {
  6377. border-width:0px;
  6378. position:absolute;
  6379. left:0px;
  6380. top:0px;
  6381. width:140px;
  6382. height:30px;
  6383. background:inherit;
  6384. background-color:rgba(255, 255, 255, 1);
  6385. box-sizing:border-box;
  6386. border-width:1px;
  6387. border-style:solid;
  6388. border-color:rgba(215, 215, 215, 1);
  6389. border-radius:4px;
  6390. -moz-box-shadow:none;
  6391. -webkit-box-shadow:none;
  6392. box-shadow:none;
  6393. font-size:11px;
  6394. }
  6395. #u5056 {
  6396. border-width:0px;
  6397. position:absolute;
  6398. left:803px;
  6399. top:182px;
  6400. width:140px;
  6401. height:30px;
  6402. display:flex;
  6403. font-size:11px;
  6404. }
  6405. #u5056 .text {
  6406. position:absolute;
  6407. align-self:center;
  6408. padding:2px 2px 2px 2px;
  6409. box-sizing:border-box;
  6410. width:100%;
  6411. }
  6412. #u5056_text {
  6413. border-width:0px;
  6414. word-wrap:break-word;
  6415. text-transform:none;
  6416. visibility:hidden;
  6417. }
  6418. #u5057_input {
  6419. position:absolute;
  6420. left:0px;
  6421. top:0px;
  6422. width:120px;
  6423. height:23px;
  6424. padding:2px 2px 2px 2px;
  6425. font-family:'ArialMT', 'Arial', sans-serif;
  6426. font-weight:400;
  6427. font-style:normal;
  6428. font-size:11px;
  6429. letter-spacing:normal;
  6430. color:#AAAAAA;
  6431. vertical-align:none;
  6432. text-align:left;
  6433. text-transform:none;
  6434. background-color:transparent;
  6435. border-color:transparent;
  6436. }
  6437. #u5057_input.disabled {
  6438. position:absolute;
  6439. left:0px;
  6440. top:0px;
  6441. width:120px;
  6442. height:23px;
  6443. padding:2px 2px 2px 2px;
  6444. font-family:'ArialMT', 'Arial', sans-serif;
  6445. font-weight:400;
  6446. font-style:normal;
  6447. font-size:11px;
  6448. letter-spacing:normal;
  6449. color:#AAAAAA;
  6450. vertical-align:none;
  6451. text-align:left;
  6452. text-transform:none;
  6453. background-color:transparent;
  6454. border-color:transparent;
  6455. }
  6456. #u5057_div {
  6457. border-width:0px;
  6458. position:absolute;
  6459. left:0px;
  6460. top:0px;
  6461. width:120px;
  6462. height:23px;
  6463. background:inherit;
  6464. background-color:rgba(255, 255, 255, 1);
  6465. border:none;
  6466. border-radius:0px;
  6467. -moz-box-shadow:none;
  6468. -webkit-box-shadow:none;
  6469. box-shadow:none;
  6470. font-size:11px;
  6471. color:#AAAAAA;
  6472. }
  6473. #u5057 {
  6474. border-width:0px;
  6475. position:absolute;
  6476. left:810px;
  6477. top:184px;
  6478. width:120px;
  6479. height:23px;
  6480. display:flex;
  6481. font-size:11px;
  6482. color:#AAAAAA;
  6483. }
  6484. #u5057 .text {
  6485. position:absolute;
  6486. align-self:flex-start;
  6487. padding:2px 2px 2px 2px;
  6488. box-sizing:border-box;
  6489. width:100%;
  6490. }
  6491. #u5057_div.disabled {
  6492. border-width:0px;
  6493. position:absolute;
  6494. left:0px;
  6495. top:0px;
  6496. width:120px;
  6497. height:23px;
  6498. background:inherit;
  6499. background-color:rgba(240, 240, 240, 1);
  6500. border:none;
  6501. border-radius:0px;
  6502. -moz-box-shadow:none;
  6503. -webkit-box-shadow:none;
  6504. box-shadow:none;
  6505. font-size:11px;
  6506. color:#AAAAAA;
  6507. }
  6508. #u5057.disabled {
  6509. }
  6510. .u5057_input_option {
  6511. font-size:11px;
  6512. }
  6513. #u5058_div {
  6514. border-width:0px;
  6515. position:absolute;
  6516. left:0px;
  6517. top:0px;
  6518. width:59px;
  6519. height:30px;
  6520. background:inherit;
  6521. background-color:rgba(0, 153, 255, 1);
  6522. box-sizing:border-box;
  6523. border-width:1px;
  6524. border-style:solid;
  6525. border-color:rgba(0, 153, 255, 1);
  6526. border-radius:4px;
  6527. -moz-box-shadow:none;
  6528. -webkit-box-shadow:none;
  6529. box-shadow:none;
  6530. font-family:'Microsoft YaHei', sans-serif;
  6531. font-weight:400;
  6532. font-style:normal;
  6533. font-size:14px;
  6534. color:#FFFFFF;
  6535. }
  6536. #u5058 {
  6537. border-width:0px;
  6538. position:absolute;
  6539. left:1273px;
  6540. top:182px;
  6541. width:59px;
  6542. height:30px;
  6543. display:flex;
  6544. font-family:'Microsoft YaHei', sans-serif;
  6545. font-weight:400;
  6546. font-style:normal;
  6547. font-size:14px;
  6548. color:#FFFFFF;
  6549. }
  6550. #u5058 .text {
  6551. position:absolute;
  6552. align-self:center;
  6553. padding:5px 15px 5px 15px;
  6554. box-sizing:border-box;
  6555. width:100%;
  6556. }
  6557. #u5058_text {
  6558. border-width:0px;
  6559. white-space:nowrap;
  6560. text-transform:none;
  6561. }
  6562. #u5059 {
  6563. border-width:0px;
  6564. position:absolute;
  6565. left:0px;
  6566. top:0px;
  6567. width:0px;
  6568. height:0px;
  6569. }
  6570. #u5060_div {
  6571. border-width:0px;
  6572. position:absolute;
  6573. left:0px;
  6574. top:0px;
  6575. width:140px;
  6576. height:30px;
  6577. background:inherit;
  6578. background-color:rgba(255, 255, 255, 1);
  6579. box-sizing:border-box;
  6580. border-width:1px;
  6581. border-style:solid;
  6582. border-color:rgba(201, 201, 201, 1);
  6583. border-radius:4px;
  6584. -moz-box-shadow:none;
  6585. -webkit-box-shadow:none;
  6586. box-shadow:none;
  6587. font-family:'Microsoft YaHei', sans-serif;
  6588. font-weight:400;
  6589. font-style:normal;
  6590. font-size:14px;
  6591. color:#CCCCCC;
  6592. text-align:left;
  6593. }
  6594. #u5060 {
  6595. border-width:0px;
  6596. position:absolute;
  6597. left:503px;
  6598. top:182px;
  6599. width:140px;
  6600. height:30px;
  6601. display:flex;
  6602. font-family:'Microsoft YaHei', sans-serif;
  6603. font-weight:400;
  6604. font-style:normal;
  6605. font-size:14px;
  6606. color:#CCCCCC;
  6607. text-align:left;
  6608. }
  6609. #u5060 .text {
  6610. position:absolute;
  6611. align-self:center;
  6612. padding:2px 8px 2px 8px;
  6613. box-sizing:border-box;
  6614. width:100%;
  6615. }
  6616. #u5060_text {
  6617. border-width:0px;
  6618. word-wrap:break-word;
  6619. text-transform:none;
  6620. visibility:hidden;
  6621. }
  6622. #u5061_input {
  6623. position:absolute;
  6624. left:0px;
  6625. top:0px;
  6626. width:127px;
  6627. height:25px;
  6628. padding:2px 2px 2px 2px;
  6629. font-family:'Microsoft YaHei', sans-serif;
  6630. font-weight:400;
  6631. font-style:normal;
  6632. font-size:10px;
  6633. letter-spacing:normal;
  6634. color:#000000;
  6635. vertical-align:none;
  6636. text-align:left;
  6637. text-transform:none;
  6638. background-color:transparent;
  6639. border-color:transparent;
  6640. }
  6641. #u5061_input.disabled {
  6642. position:absolute;
  6643. left:0px;
  6644. top:0px;
  6645. width:127px;
  6646. height:25px;
  6647. padding:2px 2px 2px 2px;
  6648. font-family:'Microsoft YaHei', sans-serif;
  6649. font-weight:400;
  6650. font-style:normal;
  6651. font-size:10px;
  6652. letter-spacing:normal;
  6653. color:#000000;
  6654. vertical-align:none;
  6655. text-align:left;
  6656. text-transform:none;
  6657. background-color:transparent;
  6658. border-color:transparent;
  6659. }
  6660. #u5061_div {
  6661. border-width:0px;
  6662. position:absolute;
  6663. left:0px;
  6664. top:0px;
  6665. width:127px;
  6666. height:25px;
  6667. background:inherit;
  6668. background-color:rgba(255, 255, 255, 1);
  6669. border:none;
  6670. border-radius:0px;
  6671. -moz-box-shadow:none;
  6672. -webkit-box-shadow:none;
  6673. box-shadow:none;
  6674. font-family:'Microsoft YaHei', sans-serif;
  6675. font-weight:400;
  6676. font-style:normal;
  6677. font-size:10px;
  6678. }
  6679. #u5061 {
  6680. border-width:0px;
  6681. position:absolute;
  6682. left:511px;
  6683. top:183px;
  6684. width:127px;
  6685. height:25px;
  6686. display:flex;
  6687. font-family:'Microsoft YaHei', sans-serif;
  6688. font-weight:400;
  6689. font-style:normal;
  6690. font-size:10px;
  6691. }
  6692. #u5061 .text {
  6693. position:absolute;
  6694. align-self:center;
  6695. padding:2px 2px 2px 2px;
  6696. box-sizing:border-box;
  6697. width:100%;
  6698. }
  6699. #u5061_div.disabled {
  6700. border-width:0px;
  6701. position:absolute;
  6702. left:0px;
  6703. top:0px;
  6704. width:127px;
  6705. height:25px;
  6706. background:inherit;
  6707. background-color:rgba(240, 240, 240, 1);
  6708. border:none;
  6709. border-radius:0px;
  6710. -moz-box-shadow:none;
  6711. -webkit-box-shadow:none;
  6712. box-shadow:none;
  6713. font-family:'Microsoft YaHei', sans-serif;
  6714. font-weight:400;
  6715. font-style:normal;
  6716. font-size:10px;
  6717. }
  6718. #u5061.disabled {
  6719. }
  6720. #u5062 {
  6721. border-width:0px;
  6722. position:absolute;
  6723. left:0px;
  6724. top:0px;
  6725. width:0px;
  6726. height:0px;
  6727. }
  6728. #u5063_div {
  6729. border-width:0px;
  6730. position:absolute;
  6731. left:0px;
  6732. top:0px;
  6733. width:140px;
  6734. height:30px;
  6735. background:inherit;
  6736. background-color:rgba(255, 255, 255, 1);
  6737. box-sizing:border-box;
  6738. border-width:1px;
  6739. border-style:solid;
  6740. border-color:rgba(201, 201, 201, 1);
  6741. border-radius:4px;
  6742. -moz-box-shadow:none;
  6743. -webkit-box-shadow:none;
  6744. box-shadow:none;
  6745. font-family:'Microsoft YaHei', sans-serif;
  6746. font-weight:400;
  6747. font-style:normal;
  6748. font-size:14px;
  6749. color:#CCCCCC;
  6750. text-align:left;
  6751. }
  6752. #u5063 {
  6753. border-width:0px;
  6754. position:absolute;
  6755. left:653px;
  6756. top:182px;
  6757. width:140px;
  6758. height:30px;
  6759. display:flex;
  6760. font-family:'Microsoft YaHei', sans-serif;
  6761. font-weight:400;
  6762. font-style:normal;
  6763. font-size:14px;
  6764. color:#CCCCCC;
  6765. text-align:left;
  6766. }
  6767. #u5063 .text {
  6768. position:absolute;
  6769. align-self:center;
  6770. padding:2px 8px 2px 8px;
  6771. box-sizing:border-box;
  6772. width:100%;
  6773. }
  6774. #u5063_text {
  6775. border-width:0px;
  6776. word-wrap:break-word;
  6777. text-transform:none;
  6778. visibility:hidden;
  6779. }
  6780. #u5064_input {
  6781. position:absolute;
  6782. left:0px;
  6783. top:0px;
  6784. width:127px;
  6785. height:25px;
  6786. padding:2px 2px 2px 2px;
  6787. font-family:'Microsoft YaHei', sans-serif;
  6788. font-weight:400;
  6789. font-style:normal;
  6790. font-size:10px;
  6791. letter-spacing:normal;
  6792. color:#000000;
  6793. vertical-align:none;
  6794. text-align:left;
  6795. text-transform:none;
  6796. background-color:transparent;
  6797. border-color:transparent;
  6798. }
  6799. #u5064_input.disabled {
  6800. position:absolute;
  6801. left:0px;
  6802. top:0px;
  6803. width:127px;
  6804. height:25px;
  6805. padding:2px 2px 2px 2px;
  6806. font-family:'Microsoft YaHei', sans-serif;
  6807. font-weight:400;
  6808. font-style:normal;
  6809. font-size:10px;
  6810. letter-spacing:normal;
  6811. color:#000000;
  6812. vertical-align:none;
  6813. text-align:left;
  6814. text-transform:none;
  6815. background-color:transparent;
  6816. border-color:transparent;
  6817. }
  6818. #u5064_div {
  6819. border-width:0px;
  6820. position:absolute;
  6821. left:0px;
  6822. top:0px;
  6823. width:127px;
  6824. height:25px;
  6825. background:inherit;
  6826. background-color:rgba(255, 255, 255, 1);
  6827. border:none;
  6828. border-radius:0px;
  6829. -moz-box-shadow:none;
  6830. -webkit-box-shadow:none;
  6831. box-shadow:none;
  6832. font-family:'Microsoft YaHei', sans-serif;
  6833. font-weight:400;
  6834. font-style:normal;
  6835. font-size:10px;
  6836. }
  6837. #u5064 {
  6838. border-width:0px;
  6839. position:absolute;
  6840. left:661px;
  6841. top:183px;
  6842. width:127px;
  6843. height:25px;
  6844. display:flex;
  6845. font-family:'Microsoft YaHei', sans-serif;
  6846. font-weight:400;
  6847. font-style:normal;
  6848. font-size:10px;
  6849. }
  6850. #u5064 .text {
  6851. position:absolute;
  6852. align-self:center;
  6853. padding:2px 2px 2px 2px;
  6854. box-sizing:border-box;
  6855. width:100%;
  6856. }
  6857. #u5064_div.disabled {
  6858. border-width:0px;
  6859. position:absolute;
  6860. left:0px;
  6861. top:0px;
  6862. width:127px;
  6863. height:25px;
  6864. background:inherit;
  6865. background-color:rgba(240, 240, 240, 1);
  6866. border:none;
  6867. border-radius:0px;
  6868. -moz-box-shadow:none;
  6869. -webkit-box-shadow:none;
  6870. box-shadow:none;
  6871. font-family:'Microsoft YaHei', sans-serif;
  6872. font-weight:400;
  6873. font-style:normal;
  6874. font-size:10px;
  6875. }
  6876. #u5064.disabled {
  6877. }
  6878. #u5065 {
  6879. border-width:0px;
  6880. position:absolute;
  6881. left:0px;
  6882. top:0px;
  6883. width:0px;
  6884. height:0px;
  6885. }
  6886. #u5066_div {
  6887. border-width:0px;
  6888. position:absolute;
  6889. left:0px;
  6890. top:0px;
  6891. width:140px;
  6892. height:30px;
  6893. background:inherit;
  6894. background-color:rgba(255, 255, 255, 1);
  6895. box-sizing:border-box;
  6896. border-width:1px;
  6897. border-style:solid;
  6898. border-color:rgba(215, 215, 215, 1);
  6899. border-radius:4px;
  6900. -moz-box-shadow:none;
  6901. -webkit-box-shadow:none;
  6902. box-shadow:none;
  6903. font-size:11px;
  6904. }
  6905. #u5066 {
  6906. border-width:0px;
  6907. position:absolute;
  6908. left:953px;
  6909. top:182px;
  6910. width:140px;
  6911. height:30px;
  6912. display:flex;
  6913. font-size:11px;
  6914. }
  6915. #u5066 .text {
  6916. position:absolute;
  6917. align-self:center;
  6918. padding:2px 2px 2px 2px;
  6919. box-sizing:border-box;
  6920. width:100%;
  6921. }
  6922. #u5066_text {
  6923. border-width:0px;
  6924. word-wrap:break-word;
  6925. text-transform:none;
  6926. visibility:hidden;
  6927. }
  6928. #u5067_input {
  6929. position:absolute;
  6930. left:0px;
  6931. top:0px;
  6932. width:120px;
  6933. height:23px;
  6934. padding:2px 2px 2px 2px;
  6935. font-family:'ArialMT', 'Arial', sans-serif;
  6936. font-weight:400;
  6937. font-style:normal;
  6938. font-size:11px;
  6939. letter-spacing:normal;
  6940. color:#AAAAAA;
  6941. vertical-align:none;
  6942. text-align:left;
  6943. text-transform:none;
  6944. background-color:transparent;
  6945. border-color:transparent;
  6946. }
  6947. #u5067_input.disabled {
  6948. position:absolute;
  6949. left:0px;
  6950. top:0px;
  6951. width:120px;
  6952. height:23px;
  6953. padding:2px 2px 2px 2px;
  6954. font-family:'ArialMT', 'Arial', sans-serif;
  6955. font-weight:400;
  6956. font-style:normal;
  6957. font-size:11px;
  6958. letter-spacing:normal;
  6959. color:#AAAAAA;
  6960. vertical-align:none;
  6961. text-align:left;
  6962. text-transform:none;
  6963. background-color:transparent;
  6964. border-color:transparent;
  6965. }
  6966. #u5067_div {
  6967. border-width:0px;
  6968. position:absolute;
  6969. left:0px;
  6970. top:0px;
  6971. width:120px;
  6972. height:23px;
  6973. background:inherit;
  6974. background-color:rgba(255, 255, 255, 1);
  6975. border:none;
  6976. border-radius:0px;
  6977. -moz-box-shadow:none;
  6978. -webkit-box-shadow:none;
  6979. box-shadow:none;
  6980. font-size:11px;
  6981. color:#AAAAAA;
  6982. }
  6983. #u5067 {
  6984. border-width:0px;
  6985. position:absolute;
  6986. left:960px;
  6987. top:184px;
  6988. width:120px;
  6989. height:23px;
  6990. display:flex;
  6991. font-size:11px;
  6992. color:#AAAAAA;
  6993. }
  6994. #u5067 .text {
  6995. position:absolute;
  6996. align-self:flex-start;
  6997. padding:2px 2px 2px 2px;
  6998. box-sizing:border-box;
  6999. width:100%;
  7000. }
  7001. #u5067_div.disabled {
  7002. border-width:0px;
  7003. position:absolute;
  7004. left:0px;
  7005. top:0px;
  7006. width:120px;
  7007. height:23px;
  7008. background:inherit;
  7009. background-color:rgba(240, 240, 240, 1);
  7010. border:none;
  7011. border-radius:0px;
  7012. -moz-box-shadow:none;
  7013. -webkit-box-shadow:none;
  7014. box-shadow:none;
  7015. font-size:11px;
  7016. color:#AAAAAA;
  7017. }
  7018. #u5067.disabled {
  7019. }
  7020. .u5067_input_option {
  7021. font-size:11px;
  7022. }
  7023. #u5068 {
  7024. border-width:0px;
  7025. position:absolute;
  7026. left:0px;
  7027. top:0px;
  7028. width:0px;
  7029. height:0px;
  7030. }
  7031. #u5069_div {
  7032. border-width:0px;
  7033. position:absolute;
  7034. left:0px;
  7035. top:0px;
  7036. width:160px;
  7037. height:30px;
  7038. background:inherit;
  7039. background-color:rgba(255, 255, 255, 1);
  7040. box-sizing:border-box;
  7041. border-width:1px;
  7042. border-style:solid;
  7043. border-color:rgba(215, 215, 215, 1);
  7044. border-radius:4px;
  7045. -moz-box-shadow:none;
  7046. -webkit-box-shadow:none;
  7047. box-shadow:none;
  7048. font-size:11px;
  7049. }
  7050. #u5069 {
  7051. border-width:0px;
  7052. position:absolute;
  7053. left:1103px;
  7054. top:181px;
  7055. width:160px;
  7056. height:30px;
  7057. display:flex;
  7058. font-size:11px;
  7059. }
  7060. #u5069 .text {
  7061. position:absolute;
  7062. align-self:center;
  7063. padding:2px 2px 2px 2px;
  7064. box-sizing:border-box;
  7065. width:100%;
  7066. }
  7067. #u5069_text {
  7068. border-width:0px;
  7069. word-wrap:break-word;
  7070. text-transform:none;
  7071. visibility:hidden;
  7072. }
  7073. #u5070_input {
  7074. position:absolute;
  7075. left:0px;
  7076. top:0px;
  7077. width:140px;
  7078. height:23px;
  7079. padding:2px 2px 2px 2px;
  7080. font-family:'ArialMT', 'Arial', sans-serif;
  7081. font-weight:400;
  7082. font-style:normal;
  7083. font-size:11px;
  7084. letter-spacing:normal;
  7085. color:#AAAAAA;
  7086. vertical-align:none;
  7087. text-align:left;
  7088. text-transform:none;
  7089. background-color:transparent;
  7090. border-color:transparent;
  7091. }
  7092. #u5070_input.disabled {
  7093. position:absolute;
  7094. left:0px;
  7095. top:0px;
  7096. width:140px;
  7097. height:23px;
  7098. padding:2px 2px 2px 2px;
  7099. font-family:'ArialMT', 'Arial', sans-serif;
  7100. font-weight:400;
  7101. font-style:normal;
  7102. font-size:11px;
  7103. letter-spacing:normal;
  7104. color:#AAAAAA;
  7105. vertical-align:none;
  7106. text-align:left;
  7107. text-transform:none;
  7108. background-color:transparent;
  7109. border-color:transparent;
  7110. }
  7111. #u5070_div {
  7112. border-width:0px;
  7113. position:absolute;
  7114. left:0px;
  7115. top:0px;
  7116. width:140px;
  7117. height:23px;
  7118. background:inherit;
  7119. background-color:rgba(255, 255, 255, 1);
  7120. border:none;
  7121. border-radius:0px;
  7122. -moz-box-shadow:none;
  7123. -webkit-box-shadow:none;
  7124. box-shadow:none;
  7125. font-size:11px;
  7126. color:#AAAAAA;
  7127. }
  7128. #u5070 {
  7129. border-width:0px;
  7130. position:absolute;
  7131. left:1110px;
  7132. top:183px;
  7133. width:140px;
  7134. height:23px;
  7135. display:flex;
  7136. font-size:11px;
  7137. color:#AAAAAA;
  7138. }
  7139. #u5070 .text {
  7140. position:absolute;
  7141. align-self:flex-start;
  7142. padding:2px 2px 2px 2px;
  7143. box-sizing:border-box;
  7144. width:100%;
  7145. }
  7146. #u5070_div.disabled {
  7147. border-width:0px;
  7148. position:absolute;
  7149. left:0px;
  7150. top:0px;
  7151. width:140px;
  7152. height:23px;
  7153. background:inherit;
  7154. background-color:rgba(240, 240, 240, 1);
  7155. border:none;
  7156. border-radius:0px;
  7157. -moz-box-shadow:none;
  7158. -webkit-box-shadow:none;
  7159. box-shadow:none;
  7160. font-size:11px;
  7161. color:#AAAAAA;
  7162. }
  7163. #u5070.disabled {
  7164. }
  7165. .u5070_input_option {
  7166. font-size:11px;
  7167. }
  7168. #u5071_div {
  7169. border-width:0px;
  7170. position:absolute;
  7171. left:0px;
  7172. top:0px;
  7173. width:55px;
  7174. height:30px;
  7175. background:inherit;
  7176. background-color:rgba(255, 255, 255, 1);
  7177. box-sizing:border-box;
  7178. border-width:1px;
  7179. border-style:solid;
  7180. border-color:rgba(170, 170, 170, 1);
  7181. border-radius:4px;
  7182. -moz-box-shadow:none;
  7183. -webkit-box-shadow:none;
  7184. box-shadow:none;
  7185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7186. font-weight:400;
  7187. font-style:normal;
  7188. font-size:12px;
  7189. color:#555555;
  7190. }
  7191. #u5071 {
  7192. border-width:0px;
  7193. position:absolute;
  7194. left:1342px;
  7195. top:183px;
  7196. width:55px;
  7197. height:30px;
  7198. display:flex;
  7199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7200. font-weight:400;
  7201. font-style:normal;
  7202. font-size:12px;
  7203. color:#555555;
  7204. }
  7205. #u5071 .text {
  7206. position:absolute;
  7207. align-self:center;
  7208. padding:5px 15px 5px 15px;
  7209. box-sizing:border-box;
  7210. width:100%;
  7211. }
  7212. #u5071_text {
  7213. border-width:0px;
  7214. white-space:nowrap;
  7215. text-transform:none;
  7216. }
  7217. #u5072_div {
  7218. border-width:0px;
  7219. position:absolute;
  7220. left:0px;
  7221. top:0px;
  7222. width:89px;
  7223. height:50px;
  7224. background:inherit;
  7225. background-color:rgba(255, 255, 255, 0);
  7226. border:none;
  7227. border-left:0px;
  7228. border-top:0px;
  7229. border-right:0px;
  7230. border-radius:0px;
  7231. border-bottom-right-radius:0px;
  7232. border-bottom-left-radius:0px;
  7233. -moz-box-shadow:none;
  7234. -webkit-box-shadow:none;
  7235. box-shadow:none;
  7236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7237. font-weight:400;
  7238. font-style:normal;
  7239. font-size:18px;
  7240. }
  7241. #u5072 {
  7242. border-width:0px;
  7243. position:absolute;
  7244. left:492px;
  7245. top:101px;
  7246. width:89px;
  7247. height:50px;
  7248. display:flex;
  7249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7250. font-weight:400;
  7251. font-style:normal;
  7252. font-size:18px;
  7253. }
  7254. #u5072 .text {
  7255. position:absolute;
  7256. align-self:center;
  7257. padding:0px 0px 0px 0px;
  7258. box-sizing:border-box;
  7259. width:100%;
  7260. }
  7261. #u5072_text {
  7262. border-width:0px;
  7263. white-space:nowrap;
  7264. text-transform:none;
  7265. }
  7266. #u5073_div {
  7267. border-width:0px;
  7268. position:absolute;
  7269. left:0px;
  7270. top:0px;
  7271. width:92px;
  7272. height:50px;
  7273. background:inherit;
  7274. background-color:rgba(255, 255, 255, 0);
  7275. box-sizing:border-box;
  7276. border-width:2px;
  7277. border-style:solid;
  7278. border-color:rgba(24, 144, 255, 1);
  7279. border-left:0px;
  7280. border-top:0px;
  7281. border-right:0px;
  7282. border-radius:0px;
  7283. border-bottom-right-radius:0px;
  7284. border-bottom-left-radius:0px;
  7285. -moz-box-shadow:none;
  7286. -webkit-box-shadow:none;
  7287. box-shadow:none;
  7288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7289. font-weight:400;
  7290. font-style:normal;
  7291. font-size:18px;
  7292. color:#1890FF;
  7293. }
  7294. #u5073 {
  7295. border-width:0px;
  7296. position:absolute;
  7297. left:353px;
  7298. top:101px;
  7299. width:92px;
  7300. height:50px;
  7301. display:flex;
  7302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7303. font-weight:400;
  7304. font-style:normal;
  7305. font-size:18px;
  7306. color:#1890FF;
  7307. }
  7308. #u5073 .text {
  7309. position:absolute;
  7310. align-self:center;
  7311. padding:0px 0px 0px 0px;
  7312. box-sizing:border-box;
  7313. width:100%;
  7314. }
  7315. #u5073_text {
  7316. border-width:0px;
  7317. white-space:nowrap;
  7318. text-transform:none;
  7319. }
  7320. #u5074_div {
  7321. border-width:0px;
  7322. position:absolute;
  7323. left:0px;
  7324. top:0px;
  7325. width:89px;
  7326. height:50px;
  7327. background:inherit;
  7328. background-color:rgba(255, 255, 255, 0);
  7329. border:none;
  7330. border-left:0px;
  7331. border-top:0px;
  7332. border-right:0px;
  7333. border-radius:0px;
  7334. border-bottom-right-radius:0px;
  7335. border-bottom-left-radius:0px;
  7336. -moz-box-shadow:none;
  7337. -webkit-box-shadow:none;
  7338. box-shadow:none;
  7339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7340. font-weight:400;
  7341. font-style:normal;
  7342. font-size:18px;
  7343. }
  7344. #u5074 {
  7345. border-width:0px;
  7346. position:absolute;
  7347. left:629px;
  7348. top:101px;
  7349. width:89px;
  7350. height:50px;
  7351. display:flex;
  7352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7353. font-weight:400;
  7354. font-style:normal;
  7355. font-size:18px;
  7356. }
  7357. #u5074 .text {
  7358. position:absolute;
  7359. align-self:center;
  7360. padding:0px 0px 0px 0px;
  7361. box-sizing:border-box;
  7362. width:100%;
  7363. }
  7364. #u5074_text {
  7365. border-width:0px;
  7366. white-space:nowrap;
  7367. text-transform:none;
  7368. }
  7369. #u5075_div {
  7370. border-width:0px;
  7371. position:absolute;
  7372. left:0px;
  7373. top:0px;
  7374. width:89px;
  7375. height:50px;
  7376. background:inherit;
  7377. background-color:rgba(255, 255, 255, 0);
  7378. border:none;
  7379. border-left:0px;
  7380. border-top:0px;
  7381. border-right:0px;
  7382. border-radius:0px;
  7383. border-bottom-right-radius:0px;
  7384. border-bottom-left-radius:0px;
  7385. -moz-box-shadow:none;
  7386. -webkit-box-shadow:none;
  7387. box-shadow:none;
  7388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7389. font-weight:400;
  7390. font-style:normal;
  7391. font-size:18px;
  7392. }
  7393. #u5075 {
  7394. border-width:0px;
  7395. position:absolute;
  7396. left:759px;
  7397. top:101px;
  7398. width:89px;
  7399. height:50px;
  7400. display:flex;
  7401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7402. font-weight:400;
  7403. font-style:normal;
  7404. font-size:18px;
  7405. }
  7406. #u5075 .text {
  7407. position:absolute;
  7408. align-self:center;
  7409. padding:0px 0px 0px 0px;
  7410. box-sizing:border-box;
  7411. width:100%;
  7412. }
  7413. #u5075_text {
  7414. border-width:0px;
  7415. white-space:nowrap;
  7416. text-transform:none;
  7417. }
  7418. #u5076_div {
  7419. border-width:0px;
  7420. position:absolute;
  7421. left:0px;
  7422. top:0px;
  7423. width:89px;
  7424. height:50px;
  7425. background:inherit;
  7426. background-color:rgba(255, 255, 255, 0);
  7427. border:none;
  7428. border-left:0px;
  7429. border-top:0px;
  7430. border-right:0px;
  7431. border-radius:0px;
  7432. border-bottom-right-radius:0px;
  7433. border-bottom-left-radius:0px;
  7434. -moz-box-shadow:none;
  7435. -webkit-box-shadow:none;
  7436. box-shadow:none;
  7437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7438. font-weight:400;
  7439. font-style:normal;
  7440. font-size:18px;
  7441. }
  7442. #u5076 {
  7443. border-width:0px;
  7444. position:absolute;
  7445. left:896px;
  7446. top:101px;
  7447. width:89px;
  7448. height:50px;
  7449. display:flex;
  7450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7451. font-weight:400;
  7452. font-style:normal;
  7453. font-size:18px;
  7454. }
  7455. #u5076 .text {
  7456. position:absolute;
  7457. align-self:center;
  7458. padding:0px 0px 0px 0px;
  7459. box-sizing:border-box;
  7460. width:100%;
  7461. }
  7462. #u5076_text {
  7463. border-width:0px;
  7464. white-space:nowrap;
  7465. text-transform:none;
  7466. }
  7467. #u5077 {
  7468. border-width:0px;
  7469. position:absolute;
  7470. left:0px;
  7471. top:0px;
  7472. width:0px;
  7473. height:0px;
  7474. }
  7475. #u5078_div {
  7476. border-width:0px;
  7477. position:absolute;
  7478. left:0px;
  7479. top:0px;
  7480. width:500px;
  7481. height:220px;
  7482. background:inherit;
  7483. background-color:rgba(255, 255, 255, 1);
  7484. border:none;
  7485. border-radius:4px;
  7486. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7487. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7488. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7489. font-family:'Microsoft YaHei', sans-serif;
  7490. font-weight:400;
  7491. font-style:normal;
  7492. }
  7493. #u5078 {
  7494. border-width:0px;
  7495. position:absolute;
  7496. left:629px;
  7497. top:580px;
  7498. width:500px;
  7499. height:220px;
  7500. display:flex;
  7501. font-family:'Microsoft YaHei', sans-serif;
  7502. font-weight:400;
  7503. font-style:normal;
  7504. }
  7505. #u5078 .text {
  7506. position:absolute;
  7507. align-self:center;
  7508. padding:2px 2px 2px 2px;
  7509. box-sizing:border-box;
  7510. width:100%;
  7511. }
  7512. #u5078_text {
  7513. border-width:0px;
  7514. word-wrap:break-word;
  7515. text-transform:none;
  7516. visibility:hidden;
  7517. }
  7518. #u5079_div {
  7519. border-width:0px;
  7520. position:absolute;
  7521. left:0px;
  7522. top:0px;
  7523. width:405px;
  7524. height:88px;
  7525. background:inherit;
  7526. background-color:rgba(255, 255, 255, 0);
  7527. border:none;
  7528. border-radius:0px;
  7529. -moz-box-shadow:none;
  7530. -webkit-box-shadow:none;
  7531. box-shadow:none;
  7532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7533. font-weight:400;
  7534. font-style:normal;
  7535. font-size:14px;
  7536. color:#666666;
  7537. line-height:22px;
  7538. }
  7539. #u5079 {
  7540. border-width:0px;
  7541. position:absolute;
  7542. left:689px;
  7543. top:638px;
  7544. width:405px;
  7545. height:88px;
  7546. display:flex;
  7547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7548. font-weight:400;
  7549. font-style:normal;
  7550. font-size:14px;
  7551. color:#666666;
  7552. line-height:22px;
  7553. }
  7554. #u5079 .text {
  7555. position:absolute;
  7556. align-self:flex-start;
  7557. padding:0px 0px 0px 0px;
  7558. box-sizing:border-box;
  7559. width:100%;
  7560. }
  7561. #u5079_text {
  7562. border-width:0px;
  7563. word-wrap:break-word;
  7564. text-transform:none;
  7565. }
  7566. #u5080_div {
  7567. border-width:0px;
  7568. position:absolute;
  7569. left:0px;
  7570. top:0px;
  7571. width:127px;
  7572. height:21px;
  7573. background:inherit;
  7574. background-color:rgba(255, 255, 255, 0);
  7575. border:none;
  7576. border-radius:0px;
  7577. -moz-box-shadow:none;
  7578. -webkit-box-shadow:none;
  7579. box-shadow:none;
  7580. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7581. font-weight:650;
  7582. font-style:normal;
  7583. font-size:18px;
  7584. color:#000000;
  7585. line-height:22px;
  7586. }
  7587. #u5080 {
  7588. border-width:0px;
  7589. position:absolute;
  7590. left:689px;
  7591. top:605px;
  7592. width:127px;
  7593. height:21px;
  7594. display:flex;
  7595. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7596. font-weight:650;
  7597. font-style:normal;
  7598. font-size:18px;
  7599. color:#000000;
  7600. line-height:22px;
  7601. }
  7602. #u5080 .text {
  7603. position:absolute;
  7604. align-self:flex-start;
  7605. padding:0px 0px 0px 0px;
  7606. box-sizing:border-box;
  7607. width:100%;
  7608. }
  7609. #u5080_text {
  7610. border-width:0px;
  7611. white-space:nowrap;
  7612. text-transform:none;
  7613. }
  7614. #u5081_div {
  7615. border-width:0px;
  7616. position:absolute;
  7617. left:0px;
  7618. top:0px;
  7619. width:61px;
  7620. height:32px;
  7621. background:inherit;
  7622. background-color:rgba(24, 144, 255, 1);
  7623. border:none;
  7624. border-radius:4px;
  7625. -moz-box-shadow:none;
  7626. -webkit-box-shadow:none;
  7627. box-shadow:none;
  7628. font-family:'Microsoft YaHei', sans-serif;
  7629. font-weight:400;
  7630. font-style:normal;
  7631. font-size:14px;
  7632. color:#FFFFFF;
  7633. }
  7634. #u5081 {
  7635. border-width:0px;
  7636. position:absolute;
  7637. left:1048px;
  7638. top:748px;
  7639. width:61px;
  7640. height:32px;
  7641. display:flex;
  7642. font-family:'Microsoft YaHei', sans-serif;
  7643. font-weight:400;
  7644. font-style:normal;
  7645. font-size:14px;
  7646. color:#FFFFFF;
  7647. }
  7648. #u5081 .text {
  7649. position:absolute;
  7650. align-self:center;
  7651. padding:2px 16px 2px 16px;
  7652. box-sizing:border-box;
  7653. width:100%;
  7654. }
  7655. #u5081_text {
  7656. border-width:0px;
  7657. white-space:nowrap;
  7658. text-transform:none;
  7659. }
  7660. #u5082_div {
  7661. border-width:0px;
  7662. position:absolute;
  7663. left:0px;
  7664. top:0px;
  7665. width:66px;
  7666. height:32px;
  7667. background:inherit;
  7668. background-color:rgba(255, 255, 255, 1);
  7669. box-sizing:border-box;
  7670. border-width:1px;
  7671. border-style:solid;
  7672. border-color:rgba(217, 217, 217, 1);
  7673. border-radius:4px;
  7674. -moz-box-shadow:none;
  7675. -webkit-box-shadow:none;
  7676. box-shadow:none;
  7677. font-family:'Microsoft YaHei', sans-serif;
  7678. font-weight:400;
  7679. font-style:normal;
  7680. font-size:14px;
  7681. color:rgba(0, 0, 0, 0.647058823529412);
  7682. line-height:21px;
  7683. }
  7684. #u5082 {
  7685. border-width:0px;
  7686. position:absolute;
  7687. left:969px;
  7688. top:748px;
  7689. width:66px;
  7690. height:32px;
  7691. display:flex;
  7692. font-family:'Microsoft YaHei', sans-serif;
  7693. font-weight:400;
  7694. font-style:normal;
  7695. font-size:14px;
  7696. color:rgba(0, 0, 0, 0.647058823529412);
  7697. line-height:21px;
  7698. }
  7699. #u5082 .text {
  7700. position:absolute;
  7701. align-self:center;
  7702. padding:2px 16px 2px 16px;
  7703. box-sizing:border-box;
  7704. width:100%;
  7705. }
  7706. #u5082_text {
  7707. border-width:0px;
  7708. white-space:nowrap;
  7709. text-transform:none;
  7710. }
  7711. #u5083_img {
  7712. border-width:0px;
  7713. position:absolute;
  7714. left:0px;
  7715. top:0px;
  7716. width:24px;
  7717. height:24px;
  7718. }
  7719. #u5083 {
  7720. border-width:0px;
  7721. position:absolute;
  7722. left:654px;
  7723. top:603px;
  7724. width:24px;
  7725. height:24px;
  7726. display:flex;
  7727. font-family:'Microsoft YaHei', sans-serif;
  7728. font-weight:400;
  7729. font-style:normal;
  7730. font-size:52px;
  7731. color:#FAAD14;
  7732. }
  7733. #u5083 .text {
  7734. position:absolute;
  7735. align-self:center;
  7736. padding:2px 2px 2px 2px;
  7737. box-sizing:border-box;
  7738. width:100%;
  7739. }
  7740. #u5083_text {
  7741. border-width:0px;
  7742. word-wrap:break-word;
  7743. text-transform:none;
  7744. visibility:hidden;
  7745. }
  7746. #u5084 {
  7747. border-width:0px;
  7748. position:absolute;
  7749. left:0px;
  7750. top:0px;
  7751. width:0px;
  7752. height:0px;
  7753. }
  7754. #u5085_div {
  7755. border-width:0px;
  7756. position:absolute;
  7757. left:0px;
  7758. top:0px;
  7759. width:500px;
  7760. height:160px;
  7761. background:inherit;
  7762. background-color:rgba(255, 255, 255, 1);
  7763. border:none;
  7764. border-radius:4px;
  7765. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7766. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7767. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7768. font-family:'Microsoft YaHei', sans-serif;
  7769. font-weight:400;
  7770. font-style:normal;
  7771. }
  7772. #u5085 {
  7773. border-width:0px;
  7774. position:absolute;
  7775. left:629px;
  7776. top:848px;
  7777. width:500px;
  7778. height:160px;
  7779. display:flex;
  7780. font-family:'Microsoft YaHei', sans-serif;
  7781. font-weight:400;
  7782. font-style:normal;
  7783. }
  7784. #u5085 .text {
  7785. position:absolute;
  7786. align-self:center;
  7787. padding:2px 2px 2px 2px;
  7788. box-sizing:border-box;
  7789. width:100%;
  7790. }
  7791. #u5085_text {
  7792. border-width:0px;
  7793. word-wrap:break-word;
  7794. text-transform:none;
  7795. visibility:hidden;
  7796. }
  7797. #u5086_div {
  7798. border-width:0px;
  7799. position:absolute;
  7800. left:0px;
  7801. top:0px;
  7802. width:405px;
  7803. height:30px;
  7804. background:inherit;
  7805. background-color:rgba(255, 255, 255, 0);
  7806. border:none;
  7807. border-radius:0px;
  7808. -moz-box-shadow:none;
  7809. -webkit-box-shadow:none;
  7810. box-shadow:none;
  7811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7812. font-weight:400;
  7813. font-style:normal;
  7814. font-size:14px;
  7815. color:#666666;
  7816. line-height:30px;
  7817. }
  7818. #u5086 {
  7819. border-width:0px;
  7820. position:absolute;
  7821. left:689px;
  7822. top:906px;
  7823. width:405px;
  7824. height:30px;
  7825. display:flex;
  7826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7827. font-weight:400;
  7828. font-style:normal;
  7829. font-size:14px;
  7830. color:#666666;
  7831. line-height:30px;
  7832. }
  7833. #u5086 .text {
  7834. position:absolute;
  7835. align-self:flex-start;
  7836. padding:0px 0px 0px 0px;
  7837. box-sizing:border-box;
  7838. width:100%;
  7839. }
  7840. #u5086_text {
  7841. border-width:0px;
  7842. word-wrap:break-word;
  7843. text-transform:none;
  7844. }
  7845. #u5087_div {
  7846. border-width:0px;
  7847. position:absolute;
  7848. left:0px;
  7849. top:0px;
  7850. width:397px;
  7851. height:21px;
  7852. background:inherit;
  7853. background-color:rgba(255, 255, 255, 0);
  7854. border:none;
  7855. border-radius:0px;
  7856. -moz-box-shadow:none;
  7857. -webkit-box-shadow:none;
  7858. box-shadow:none;
  7859. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7860. font-weight:650;
  7861. font-style:normal;
  7862. font-size:18px;
  7863. color:#000000;
  7864. line-height:22px;
  7865. }
  7866. #u5087 {
  7867. border-width:0px;
  7868. position:absolute;
  7869. left:689px;
  7870. top:873px;
  7871. width:397px;
  7872. height:21px;
  7873. display:flex;
  7874. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7875. font-weight:650;
  7876. font-style:normal;
  7877. font-size:18px;
  7878. color:#000000;
  7879. line-height:22px;
  7880. }
  7881. #u5087 .text {
  7882. position:absolute;
  7883. align-self:flex-start;
  7884. padding:0px 0px 0px 0px;
  7885. box-sizing:border-box;
  7886. width:100%;
  7887. }
  7888. #u5087_text {
  7889. border-width:0px;
  7890. white-space:nowrap;
  7891. text-transform:none;
  7892. }
  7893. #u5088_div {
  7894. border-width:0px;
  7895. position:absolute;
  7896. left:0px;
  7897. top:0px;
  7898. width:61px;
  7899. height:32px;
  7900. background:inherit;
  7901. background-color:rgba(24, 144, 255, 1);
  7902. border:none;
  7903. border-radius:4px;
  7904. -moz-box-shadow:none;
  7905. -webkit-box-shadow:none;
  7906. box-shadow:none;
  7907. font-family:'Microsoft YaHei', sans-serif;
  7908. font-weight:400;
  7909. font-style:normal;
  7910. font-size:14px;
  7911. color:#FFFFFF;
  7912. }
  7913. #u5088 {
  7914. border-width:0px;
  7915. position:absolute;
  7916. left:1048px;
  7917. top:956px;
  7918. width:61px;
  7919. height:32px;
  7920. display:flex;
  7921. font-family:'Microsoft YaHei', sans-serif;
  7922. font-weight:400;
  7923. font-style:normal;
  7924. font-size:14px;
  7925. color:#FFFFFF;
  7926. }
  7927. #u5088 .text {
  7928. position:absolute;
  7929. align-self:center;
  7930. padding:2px 16px 2px 16px;
  7931. box-sizing:border-box;
  7932. width:100%;
  7933. }
  7934. #u5088_text {
  7935. border-width:0px;
  7936. white-space:nowrap;
  7937. text-transform:none;
  7938. }
  7939. #u5089_div {
  7940. border-width:0px;
  7941. position:absolute;
  7942. left:0px;
  7943. top:0px;
  7944. width:66px;
  7945. height:32px;
  7946. background:inherit;
  7947. background-color:rgba(255, 255, 255, 1);
  7948. box-sizing:border-box;
  7949. border-width:1px;
  7950. border-style:solid;
  7951. border-color:rgba(217, 217, 217, 1);
  7952. border-radius:4px;
  7953. -moz-box-shadow:none;
  7954. -webkit-box-shadow:none;
  7955. box-shadow:none;
  7956. font-family:'Microsoft YaHei', sans-serif;
  7957. font-weight:400;
  7958. font-style:normal;
  7959. font-size:14px;
  7960. color:rgba(0, 0, 0, 0.647058823529412);
  7961. line-height:21px;
  7962. }
  7963. #u5089 {
  7964. border-width:0px;
  7965. position:absolute;
  7966. left:969px;
  7967. top:956px;
  7968. width:66px;
  7969. height:32px;
  7970. display:flex;
  7971. font-family:'Microsoft YaHei', sans-serif;
  7972. font-weight:400;
  7973. font-style:normal;
  7974. font-size:14px;
  7975. color:rgba(0, 0, 0, 0.647058823529412);
  7976. line-height:21px;
  7977. }
  7978. #u5089 .text {
  7979. position:absolute;
  7980. align-self:center;
  7981. padding:2px 16px 2px 16px;
  7982. box-sizing:border-box;
  7983. width:100%;
  7984. }
  7985. #u5089_text {
  7986. border-width:0px;
  7987. white-space:nowrap;
  7988. text-transform:none;
  7989. }
  7990. #u5090_img {
  7991. border-width:0px;
  7992. position:absolute;
  7993. left:0px;
  7994. top:0px;
  7995. width:24px;
  7996. height:24px;
  7997. }
  7998. #u5090 {
  7999. border-width:0px;
  8000. position:absolute;
  8001. left:654px;
  8002. top:871px;
  8003. width:24px;
  8004. height:24px;
  8005. display:flex;
  8006. font-family:'Microsoft YaHei', sans-serif;
  8007. font-weight:400;
  8008. font-style:normal;
  8009. font-size:52px;
  8010. color:#FAAD14;
  8011. }
  8012. #u5090 .text {
  8013. position:absolute;
  8014. align-self:center;
  8015. padding:2px 2px 2px 2px;
  8016. box-sizing:border-box;
  8017. width:100%;
  8018. }
  8019. #u5090_text {
  8020. border-width:0px;
  8021. word-wrap:break-word;
  8022. text-transform:none;
  8023. visibility:hidden;
  8024. }
  8025. #u5091 {
  8026. border-width:0px;
  8027. position:absolute;
  8028. left:0px;
  8029. top:0px;
  8030. width:0px;
  8031. height:0px;
  8032. }
  8033. #u5092_div {
  8034. border-width:0px;
  8035. position:absolute;
  8036. left:0px;
  8037. top:0px;
  8038. width:200px;
  8039. height:1192px;
  8040. background:inherit;
  8041. background-color:rgba(255, 255, 255, 1);
  8042. border:none;
  8043. border-radius:0px;
  8044. -moz-box-shadow:none;
  8045. -webkit-box-shadow:none;
  8046. box-shadow:none;
  8047. }
  8048. #u5092 {
  8049. border-width:0px;
  8050. position:absolute;
  8051. left:120px;
  8052. top:50px;
  8053. width:200px;
  8054. height:1192px;
  8055. display:flex;
  8056. }
  8057. #u5092 .text {
  8058. position:absolute;
  8059. align-self:center;
  8060. padding:2px 2px 2px 2px;
  8061. box-sizing:border-box;
  8062. width:100%;
  8063. }
  8064. #u5092_text {
  8065. border-width:0px;
  8066. word-wrap:break-word;
  8067. text-transform:none;
  8068. visibility:hidden;
  8069. }
  8070. #u5093_div {
  8071. border-width:0px;
  8072. position:absolute;
  8073. left:0px;
  8074. top:0px;
  8075. width:200px;
  8076. height:60px;
  8077. background:inherit;
  8078. background-color:rgba(224, 231, 247, 1);
  8079. border:none;
  8080. border-radius:0px;
  8081. -moz-box-shadow:none;
  8082. -webkit-box-shadow:none;
  8083. box-shadow:none;
  8084. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8085. font-weight:500;
  8086. font-style:normal;
  8087. font-size:18px;
  8088. }
  8089. #u5093 {
  8090. border-width:0px;
  8091. position:absolute;
  8092. left:120px;
  8093. top:50px;
  8094. width:200px;
  8095. height:60px;
  8096. display:flex;
  8097. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8098. font-weight:500;
  8099. font-style:normal;
  8100. font-size:18px;
  8101. }
  8102. #u5093 .text {
  8103. position:absolute;
  8104. align-self:center;
  8105. padding:0px 0px 0px 20px;
  8106. box-sizing:border-box;
  8107. width:100%;
  8108. }
  8109. #u5093_text {
  8110. border-width:0px;
  8111. word-wrap:break-word;
  8112. text-transform:none;
  8113. }
  8114. #u5094_div {
  8115. border-width:0px;
  8116. position:absolute;
  8117. left:0px;
  8118. top:0px;
  8119. width:65px;
  8120. height:22px;
  8121. background:inherit;
  8122. background-color:rgba(255, 255, 255, 0);
  8123. border:none;
  8124. border-radius:0px;
  8125. -moz-box-shadow:none;
  8126. -webkit-box-shadow:none;
  8127. box-shadow:none;
  8128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8129. font-weight:400;
  8130. font-style:normal;
  8131. font-size:16px;
  8132. }
  8133. #u5094 {
  8134. border-width:0px;
  8135. position:absolute;
  8136. left:147px;
  8137. top:166px;
  8138. width:65px;
  8139. height:22px;
  8140. display:flex;
  8141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8142. font-weight:400;
  8143. font-style:normal;
  8144. font-size:16px;
  8145. }
  8146. #u5094 .text {
  8147. position:absolute;
  8148. align-self:flex-start;
  8149. padding:0px 0px 0px 0px;
  8150. box-sizing:border-box;
  8151. width:100%;
  8152. }
  8153. #u5094_text {
  8154. border-width:0px;
  8155. white-space:nowrap;
  8156. text-transform:none;
  8157. }
  8158. #u5095_div {
  8159. border-width:0px;
  8160. position:absolute;
  8161. left:0px;
  8162. top:0px;
  8163. width:65px;
  8164. height:22px;
  8165. background:inherit;
  8166. background-color:rgba(255, 255, 255, 0);
  8167. border:none;
  8168. border-radius:0px;
  8169. -moz-box-shadow:none;
  8170. -webkit-box-shadow:none;
  8171. box-shadow:none;
  8172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8173. font-weight:400;
  8174. font-style:normal;
  8175. font-size:16px;
  8176. }
  8177. #u5095 {
  8178. border-width:0px;
  8179. position:absolute;
  8180. left:147px;
  8181. top:271px;
  8182. width:65px;
  8183. height:22px;
  8184. display:flex;
  8185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8186. font-weight:400;
  8187. font-style:normal;
  8188. font-size:16px;
  8189. }
  8190. #u5095 .text {
  8191. position:absolute;
  8192. align-self:flex-start;
  8193. padding:0px 0px 0px 0px;
  8194. box-sizing:border-box;
  8195. width:100%;
  8196. }
  8197. #u5095_text {
  8198. border-width:0px;
  8199. white-space:nowrap;
  8200. text-transform:none;
  8201. }
  8202. #u5096_div {
  8203. border-width:0px;
  8204. position:absolute;
  8205. left:0px;
  8206. top:0px;
  8207. width:49px;
  8208. height:17px;
  8209. background:inherit;
  8210. background-color:rgba(255, 255, 255, 0);
  8211. border:none;
  8212. border-radius:0px;
  8213. -moz-box-shadow:none;
  8214. -webkit-box-shadow:none;
  8215. box-shadow:none;
  8216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8217. font-weight:400;
  8218. font-style:normal;
  8219. font-size:12px;
  8220. color:#AAAAAA;
  8221. }
  8222. #u5096 {
  8223. border-width:0px;
  8224. position:absolute;
  8225. left:147px;
  8226. top:130px;
  8227. width:49px;
  8228. height:17px;
  8229. display:flex;
  8230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8231. font-weight:400;
  8232. font-style:normal;
  8233. font-size:12px;
  8234. color:#AAAAAA;
  8235. }
  8236. #u5096 .text {
  8237. position:absolute;
  8238. align-self:flex-start;
  8239. padding:0px 0px 0px 0px;
  8240. box-sizing:border-box;
  8241. width:100%;
  8242. }
  8243. #u5096_text {
  8244. border-width:0px;
  8245. white-space:nowrap;
  8246. text-transform:none;
  8247. }
  8248. #u5097_div {
  8249. border-width:0px;
  8250. position:absolute;
  8251. left:0px;
  8252. top:0px;
  8253. width:65px;
  8254. height:22px;
  8255. background:inherit;
  8256. background-color:rgba(255, 255, 255, 0);
  8257. border:none;
  8258. border-radius:0px;
  8259. -moz-box-shadow:none;
  8260. -webkit-box-shadow:none;
  8261. box-shadow:none;
  8262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8263. font-weight:400;
  8264. font-style:normal;
  8265. font-size:16px;
  8266. }
  8267. #u5097 {
  8268. border-width:0px;
  8269. position:absolute;
  8270. left:147px;
  8271. top:313px;
  8272. width:65px;
  8273. height:22px;
  8274. display:flex;
  8275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8276. font-weight:400;
  8277. font-style:normal;
  8278. font-size:16px;
  8279. }
  8280. #u5097 .text {
  8281. position:absolute;
  8282. align-self:flex-start;
  8283. padding:0px 0px 0px 0px;
  8284. box-sizing:border-box;
  8285. width:100%;
  8286. }
  8287. #u5097_text {
  8288. border-width:0px;
  8289. white-space:nowrap;
  8290. text-transform:none;
  8291. }
  8292. #u5098_img {
  8293. border-width:0px;
  8294. position:absolute;
  8295. left:0px;
  8296. top:0px;
  8297. width:201px;
  8298. height:2px;
  8299. }
  8300. #u5098 {
  8301. border-width:0px;
  8302. position:absolute;
  8303. left:120px;
  8304. top:208px;
  8305. width:200px;
  8306. height:1px;
  8307. display:flex;
  8308. }
  8309. #u5098 .text {
  8310. position:absolute;
  8311. align-self:center;
  8312. padding:2px 2px 2px 2px;
  8313. box-sizing:border-box;
  8314. width:100%;
  8315. }
  8316. #u5098_text {
  8317. border-width:0px;
  8318. word-wrap:break-word;
  8319. text-transform:none;
  8320. visibility:hidden;
  8321. }
  8322. #u5099_div {
  8323. border-width:0px;
  8324. position:absolute;
  8325. left:0px;
  8326. top:0px;
  8327. width:49px;
  8328. height:17px;
  8329. background:inherit;
  8330. background-color:rgba(255, 255, 255, 0);
  8331. border:none;
  8332. border-radius:0px;
  8333. -moz-box-shadow:none;
  8334. -webkit-box-shadow:none;
  8335. box-shadow:none;
  8336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8337. font-weight:400;
  8338. font-style:normal;
  8339. font-size:12px;
  8340. color:#AAAAAA;
  8341. }
  8342. #u5099 {
  8343. border-width:0px;
  8344. position:absolute;
  8345. left:147px;
  8346. top:234px;
  8347. width:49px;
  8348. height:17px;
  8349. display:flex;
  8350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8351. font-weight:400;
  8352. font-style:normal;
  8353. font-size:12px;
  8354. color:#AAAAAA;
  8355. }
  8356. #u5099 .text {
  8357. position:absolute;
  8358. align-self:flex-start;
  8359. padding:0px 0px 0px 0px;
  8360. box-sizing:border-box;
  8361. width:100%;
  8362. }
  8363. #u5099_text {
  8364. border-width:0px;
  8365. white-space:nowrap;
  8366. text-transform:none;
  8367. }
  8368. #u5100_div {
  8369. border-width:0px;
  8370. position:absolute;
  8371. left:0px;
  8372. top:0px;
  8373. width:65px;
  8374. height:22px;
  8375. background:inherit;
  8376. background-color:rgba(255, 255, 255, 0);
  8377. border:none;
  8378. border-radius:0px;
  8379. -moz-box-shadow:none;
  8380. -webkit-box-shadow:none;
  8381. box-shadow:none;
  8382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8383. font-weight:400;
  8384. font-style:normal;
  8385. font-size:16px;
  8386. }
  8387. #u5100 {
  8388. border-width:0px;
  8389. position:absolute;
  8390. left:147px;
  8391. top:355px;
  8392. width:65px;
  8393. height:22px;
  8394. display:flex;
  8395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8396. font-weight:400;
  8397. font-style:normal;
  8398. font-size:16px;
  8399. }
  8400. #u5100 .text {
  8401. position:absolute;
  8402. align-self:flex-start;
  8403. padding:0px 0px 0px 0px;
  8404. box-sizing:border-box;
  8405. width:100%;
  8406. }
  8407. #u5100_text {
  8408. border-width:0px;
  8409. white-space:nowrap;
  8410. text-transform:none;
  8411. }