styles.css 118 KB

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