styles.css 215 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172
  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. #u80923_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. #u80923 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u80923 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u80923_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u80924_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. #u80924 {
  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. #u80924 .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. #u80924_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u80925_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. #u80925 {
  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. #u80925 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u80925_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u80926 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u80927_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u80927 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u80927 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u80927_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u80928_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. #u80928 {
  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. #u80928 .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. #u80928_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u80929_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. #u80929 {
  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. #u80929 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u80929_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u80930 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u80931_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. #u80931_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. #u80931_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. #u80931 {
  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. #u80931 .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. #u80931_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. #u80931.disabled {
  356. }
  357. .u80931_input_option {
  358. font-size:14px;
  359. }
  360. #u80932_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u80932 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u80932 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u80932_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u80933_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. #u80933 {
  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. #u80933 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u80933_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u80934_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. #u80934 {
  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. #u80934 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u80934_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u80935 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u80936_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. #u80936 {
  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. #u80936 .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. #u80936_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u80937_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u80937 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u80937 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u80937_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u80938 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u80939_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. #u80939 {
  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. #u80939 .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. #u80939_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u80940_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u80940 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u80940 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u80940_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u80941 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u80942_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. #u80942 {
  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. #u80942 .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. #u80942_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u80943_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u80943 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u80943 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u80943_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u80944 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u80945_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. #u80945 {
  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. #u80945 .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. #u80945_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u80946_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u80946 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u80946 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u80946_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u80947 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u80948_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. #u80948 {
  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. #u80948 .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. #u80948_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u80949_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u80949 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u80949 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u80949_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u80950 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u80951_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. #u80951 {
  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. #u80951 .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. #u80951_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u80952_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u80952 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u80952 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u80952_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u80953 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u80954_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. #u80954 {
  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. #u80954 .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. #u80954_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u80955_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u80955 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u80955 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u80955_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u80956 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u80957_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. #u80957 {
  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. #u80957 .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. #u80957_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u80958_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u80958 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u80958 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u80958_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u80959 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u80960_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. #u80960 {
  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. #u80960 .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. #u80960_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u80961_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u80961 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u80961 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u80961_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u80962 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u80963_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. #u80963 {
  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. #u80963 .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. #u80963_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u80964_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u80964 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u80964 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u80964_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u80965_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. #u80965 {
  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. #u80965 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u80965_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u80966_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u80966 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u80966 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u80966_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u80967_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. #u80967 {
  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. #u80967 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u80967_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u80968_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u80968 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u80968 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u80968_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u80969 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u80970_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. #u80970 {
  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. #u80970 .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. #u80970_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u80971_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u80971 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u80971 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u80971_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u80972 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u80973_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. #u80973 {
  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. #u80973 .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. #u80973_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u80974_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u80974 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u80974 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u80974_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u80975_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1256px;
  1644. height:1010px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1650. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1651. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1652. }
  1653. #u80975 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:330px;
  1657. top:241px;
  1658. width:1256px;
  1659. height:1010px;
  1660. display:flex;
  1661. }
  1662. #u80975 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u80975_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u80976_div {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:1256px;
  1681. height:181px;
  1682. background:inherit;
  1683. background-color:rgba(255, 255, 255, 1);
  1684. border:none;
  1685. border-radius:0px;
  1686. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1687. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1688. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1689. }
  1690. #u80976 {
  1691. border-width:0px;
  1692. position:absolute;
  1693. left:330px;
  1694. top:50px;
  1695. width:1256px;
  1696. height:181px;
  1697. display:flex;
  1698. }
  1699. #u80976 .text {
  1700. position:absolute;
  1701. align-self:center;
  1702. padding:2px 2px 2px 2px;
  1703. box-sizing:border-box;
  1704. width:100%;
  1705. }
  1706. #u80976_text {
  1707. border-width:0px;
  1708. word-wrap:break-word;
  1709. text-transform:none;
  1710. visibility:hidden;
  1711. }
  1712. #u80977 {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:0px;
  1716. top:0px;
  1717. width:0px;
  1718. height:0px;
  1719. }
  1720. #u80978_div {
  1721. border-width:0px;
  1722. position:absolute;
  1723. left:0px;
  1724. top:0px;
  1725. width:194px;
  1726. height:100px;
  1727. background:inherit;
  1728. background-color:rgba(242, 242, 242, 1);
  1729. border:none;
  1730. border-radius:5px;
  1731. -moz-box-shadow:none;
  1732. -webkit-box-shadow:none;
  1733. box-shadow:none;
  1734. color:#1890FF;
  1735. }
  1736. #u80978 {
  1737. border-width:0px;
  1738. position:absolute;
  1739. left:759px;
  1740. top:110px;
  1741. width:194px;
  1742. height:100px;
  1743. display:flex;
  1744. color:#1890FF;
  1745. }
  1746. #u80978 .text {
  1747. position:absolute;
  1748. align-self:center;
  1749. padding:2px 2px 2px 2px;
  1750. box-sizing:border-box;
  1751. width:100%;
  1752. }
  1753. #u80978_text {
  1754. border-width:0px;
  1755. word-wrap:break-word;
  1756. text-transform:none;
  1757. visibility:hidden;
  1758. }
  1759. #u80979_div {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:0px;
  1763. top:0px;
  1764. width:116px;
  1765. height:20px;
  1766. background:inherit;
  1767. background-color:rgba(255, 255, 255, 0);
  1768. border:none;
  1769. border-radius:0px;
  1770. -moz-box-shadow:none;
  1771. -webkit-box-shadow:none;
  1772. box-shadow:none;
  1773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1774. font-weight:400;
  1775. font-style:normal;
  1776. font-size:14px;
  1777. }
  1778. #u80979 {
  1779. border-width:0px;
  1780. position:absolute;
  1781. left:796px;
  1782. top:130px;
  1783. width:116px;
  1784. height:20px;
  1785. display:flex;
  1786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1787. font-weight:400;
  1788. font-style:normal;
  1789. font-size:14px;
  1790. }
  1791. #u80979 .text {
  1792. position:absolute;
  1793. align-self:flex-start;
  1794. padding:0px 0px 0px 0px;
  1795. box-sizing:border-box;
  1796. width:100%;
  1797. }
  1798. #u80979_text {
  1799. border-width:0px;
  1800. word-wrap:break-word;
  1801. text-transform:none;
  1802. }
  1803. #u80980_div {
  1804. border-width:0px;
  1805. position:absolute;
  1806. left:0px;
  1807. top:0px;
  1808. width:65px;
  1809. height:25px;
  1810. background:inherit;
  1811. background-color:rgba(255, 255, 255, 0);
  1812. border:none;
  1813. border-radius:0px;
  1814. -moz-box-shadow:none;
  1815. -webkit-box-shadow:none;
  1816. box-shadow:none;
  1817. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1818. font-weight:650;
  1819. font-style:normal;
  1820. font-size:18px;
  1821. }
  1822. #u80980 {
  1823. border-width:0px;
  1824. position:absolute;
  1825. left:796px;
  1826. top:163px;
  1827. width:65px;
  1828. height:25px;
  1829. display:flex;
  1830. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1831. font-weight:650;
  1832. font-style:normal;
  1833. font-size:18px;
  1834. }
  1835. #u80980 .text {
  1836. position:absolute;
  1837. align-self:flex-start;
  1838. padding:0px 0px 0px 0px;
  1839. box-sizing:border-box;
  1840. width:100%;
  1841. }
  1842. #u80980_text {
  1843. border-width:0px;
  1844. word-wrap:break-word;
  1845. text-transform:none;
  1846. }
  1847. #u80981 {
  1848. border-width:0px;
  1849. position:absolute;
  1850. left:0px;
  1851. top:0px;
  1852. width:0px;
  1853. height:0px;
  1854. }
  1855. #u80982_div {
  1856. border-width:0px;
  1857. position:absolute;
  1858. left:0px;
  1859. top:0px;
  1860. width:194px;
  1861. height:100px;
  1862. background:inherit;
  1863. background-color:rgba(242, 242, 242, 1);
  1864. border:none;
  1865. border-radius:5px;
  1866. -moz-box-shadow:none;
  1867. -webkit-box-shadow:none;
  1868. box-shadow:none;
  1869. color:#1890FF;
  1870. }
  1871. #u80982 {
  1872. border-width:0px;
  1873. position:absolute;
  1874. left:963px;
  1875. top:110px;
  1876. width:194px;
  1877. height:100px;
  1878. display:flex;
  1879. color:#1890FF;
  1880. }
  1881. #u80982 .text {
  1882. position:absolute;
  1883. align-self:center;
  1884. padding:2px 2px 2px 2px;
  1885. box-sizing:border-box;
  1886. width:100%;
  1887. }
  1888. #u80982_text {
  1889. border-width:0px;
  1890. word-wrap:break-word;
  1891. text-transform:none;
  1892. visibility:hidden;
  1893. }
  1894. #u80983_div {
  1895. border-width:0px;
  1896. position:absolute;
  1897. left:0px;
  1898. top:0px;
  1899. width:116px;
  1900. height:20px;
  1901. background:inherit;
  1902. background-color:rgba(255, 255, 255, 0);
  1903. border:none;
  1904. border-radius:0px;
  1905. -moz-box-shadow:none;
  1906. -webkit-box-shadow:none;
  1907. box-shadow:none;
  1908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1909. font-weight:400;
  1910. font-style:normal;
  1911. font-size:14px;
  1912. }
  1913. #u80983 {
  1914. border-width:0px;
  1915. position:absolute;
  1916. left:1001px;
  1917. top:130px;
  1918. width:116px;
  1919. height:20px;
  1920. display:flex;
  1921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1922. font-weight:400;
  1923. font-style:normal;
  1924. font-size:14px;
  1925. }
  1926. #u80983 .text {
  1927. position:absolute;
  1928. align-self:flex-start;
  1929. padding:0px 0px 0px 0px;
  1930. box-sizing:border-box;
  1931. width:100%;
  1932. }
  1933. #u80983_text {
  1934. border-width:0px;
  1935. word-wrap:break-word;
  1936. text-transform:none;
  1937. }
  1938. #u80984_div {
  1939. border-width:0px;
  1940. position:absolute;
  1941. left:0px;
  1942. top:0px;
  1943. width:94px;
  1944. height:25px;
  1945. background:inherit;
  1946. background-color:rgba(255, 255, 255, 0);
  1947. border:none;
  1948. border-radius:0px;
  1949. -moz-box-shadow:none;
  1950. -webkit-box-shadow:none;
  1951. box-shadow:none;
  1952. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1953. font-weight:650;
  1954. font-style:normal;
  1955. font-size:18px;
  1956. }
  1957. #u80984 {
  1958. border-width:0px;
  1959. position:absolute;
  1960. left:1001px;
  1961. top:163px;
  1962. width:94px;
  1963. height:25px;
  1964. display:flex;
  1965. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1966. font-weight:650;
  1967. font-style:normal;
  1968. font-size:18px;
  1969. }
  1970. #u80984 .text {
  1971. position:absolute;
  1972. align-self:flex-start;
  1973. padding:0px 0px 0px 0px;
  1974. box-sizing:border-box;
  1975. width:100%;
  1976. }
  1977. #u80984_text {
  1978. border-width:0px;
  1979. word-wrap:break-word;
  1980. text-transform:none;
  1981. }
  1982. #u80985 {
  1983. border-width:0px;
  1984. position:absolute;
  1985. left:0px;
  1986. top:0px;
  1987. width:0px;
  1988. height:0px;
  1989. }
  1990. #u80986_div {
  1991. border-width:0px;
  1992. position:absolute;
  1993. left:0px;
  1994. top:0px;
  1995. width:194px;
  1996. height:100px;
  1997. background:inherit;
  1998. background-color:rgba(242, 242, 242, 1);
  1999. border:none;
  2000. border-radius:5px;
  2001. -moz-box-shadow:none;
  2002. -webkit-box-shadow:none;
  2003. box-shadow:none;
  2004. color:#1890FF;
  2005. }
  2006. #u80986 {
  2007. border-width:0px;
  2008. position:absolute;
  2009. left:1168px;
  2010. top:110px;
  2011. width:194px;
  2012. height:100px;
  2013. display:flex;
  2014. color:#1890FF;
  2015. }
  2016. #u80986 .text {
  2017. position:absolute;
  2018. align-self:center;
  2019. padding:2px 2px 2px 2px;
  2020. box-sizing:border-box;
  2021. width:100%;
  2022. }
  2023. #u80986_text {
  2024. border-width:0px;
  2025. word-wrap:break-word;
  2026. text-transform:none;
  2027. visibility:hidden;
  2028. }
  2029. #u80987_div {
  2030. border-width:0px;
  2031. position:absolute;
  2032. left:0px;
  2033. top:0px;
  2034. width:116px;
  2035. height:20px;
  2036. background:inherit;
  2037. background-color:rgba(255, 255, 255, 0);
  2038. border:none;
  2039. border-radius:0px;
  2040. -moz-box-shadow:none;
  2041. -webkit-box-shadow:none;
  2042. box-shadow:none;
  2043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2044. font-weight:400;
  2045. font-style:normal;
  2046. font-size:14px;
  2047. }
  2048. #u80987 {
  2049. border-width:0px;
  2050. position:absolute;
  2051. left:1206px;
  2052. top:130px;
  2053. width:116px;
  2054. height:20px;
  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. #u80987 .text {
  2062. position:absolute;
  2063. align-self:flex-start;
  2064. padding:0px 0px 0px 0px;
  2065. box-sizing:border-box;
  2066. width:100%;
  2067. }
  2068. #u80987_text {
  2069. border-width:0px;
  2070. word-wrap:break-word;
  2071. text-transform:none;
  2072. }
  2073. #u80988_div {
  2074. border-width:0px;
  2075. position:absolute;
  2076. left:0px;
  2077. top:0px;
  2078. width:82px;
  2079. height:25px;
  2080. background:inherit;
  2081. background-color:rgba(255, 255, 255, 0);
  2082. border:none;
  2083. border-radius:0px;
  2084. -moz-box-shadow:none;
  2085. -webkit-box-shadow:none;
  2086. box-shadow:none;
  2087. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2088. font-weight:650;
  2089. font-style:normal;
  2090. font-size:18px;
  2091. }
  2092. #u80988 {
  2093. border-width:0px;
  2094. position:absolute;
  2095. left:1206px;
  2096. top:163px;
  2097. width:82px;
  2098. height:25px;
  2099. display:flex;
  2100. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2101. font-weight:650;
  2102. font-style:normal;
  2103. font-size:18px;
  2104. }
  2105. #u80988 .text {
  2106. position:absolute;
  2107. align-self:flex-start;
  2108. padding:0px 0px 0px 0px;
  2109. box-sizing:border-box;
  2110. width:100%;
  2111. }
  2112. #u80988_text {
  2113. border-width:0px;
  2114. word-wrap:break-word;
  2115. text-transform:none;
  2116. }
  2117. #u80989 {
  2118. border-width:0px;
  2119. position:absolute;
  2120. left:0px;
  2121. top:0px;
  2122. width:0px;
  2123. height:0px;
  2124. }
  2125. #u80990_div {
  2126. border-width:0px;
  2127. position:absolute;
  2128. left:0px;
  2129. top:0px;
  2130. width:194px;
  2131. height:100px;
  2132. background:inherit;
  2133. background-color:rgba(242, 242, 242, 1);
  2134. border:none;
  2135. border-radius:5px;
  2136. -moz-box-shadow:none;
  2137. -webkit-box-shadow:none;
  2138. box-shadow:none;
  2139. color:#1890FF;
  2140. }
  2141. #u80990 {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:1372px;
  2145. top:110px;
  2146. width:194px;
  2147. height:100px;
  2148. display:flex;
  2149. color:#1890FF;
  2150. }
  2151. #u80990 .text {
  2152. position:absolute;
  2153. align-self:center;
  2154. padding:2px 2px 2px 2px;
  2155. box-sizing:border-box;
  2156. width:100%;
  2157. }
  2158. #u80990_text {
  2159. border-width:0px;
  2160. word-wrap:break-word;
  2161. text-transform:none;
  2162. visibility:hidden;
  2163. }
  2164. #u80991_div {
  2165. border-width:0px;
  2166. position:absolute;
  2167. left:0px;
  2168. top:0px;
  2169. width:116px;
  2170. height:20px;
  2171. background:inherit;
  2172. background-color:rgba(255, 255, 255, 0);
  2173. border:none;
  2174. border-radius:0px;
  2175. -moz-box-shadow:none;
  2176. -webkit-box-shadow:none;
  2177. box-shadow:none;
  2178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2179. font-weight:400;
  2180. font-style:normal;
  2181. font-size:14px;
  2182. }
  2183. #u80991 {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:1411px;
  2187. top:130px;
  2188. width:116px;
  2189. height:20px;
  2190. display:flex;
  2191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2192. font-weight:400;
  2193. font-style:normal;
  2194. font-size:14px;
  2195. }
  2196. #u80991 .text {
  2197. position:absolute;
  2198. align-self:flex-start;
  2199. padding:0px 0px 0px 0px;
  2200. box-sizing:border-box;
  2201. width:100%;
  2202. }
  2203. #u80991_text {
  2204. border-width:0px;
  2205. word-wrap:break-word;
  2206. text-transform:none;
  2207. }
  2208. #u80992_div {
  2209. border-width:0px;
  2210. position:absolute;
  2211. left:0px;
  2212. top:0px;
  2213. width:88px;
  2214. height:25px;
  2215. background:inherit;
  2216. background-color:rgba(255, 255, 255, 0);
  2217. border:none;
  2218. border-radius:0px;
  2219. -moz-box-shadow:none;
  2220. -webkit-box-shadow:none;
  2221. box-shadow:none;
  2222. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2223. font-weight:650;
  2224. font-style:normal;
  2225. font-size:18px;
  2226. }
  2227. #u80992 {
  2228. border-width:0px;
  2229. position:absolute;
  2230. left:1411px;
  2231. top:163px;
  2232. width:88px;
  2233. height:25px;
  2234. display:flex;
  2235. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2236. font-weight:650;
  2237. font-style:normal;
  2238. font-size:18px;
  2239. }
  2240. #u80992 .text {
  2241. position:absolute;
  2242. align-self:flex-start;
  2243. padding:0px 0px 0px 0px;
  2244. box-sizing:border-box;
  2245. width:100%;
  2246. }
  2247. #u80992_text {
  2248. border-width:0px;
  2249. word-wrap:break-word;
  2250. text-transform:none;
  2251. }
  2252. #u80993 {
  2253. border-width:0px;
  2254. position:absolute;
  2255. left:351px;
  2256. top:352px;
  2257. width:1212px;
  2258. height:321px;
  2259. }
  2260. #u80994_img {
  2261. border-width:0px;
  2262. position:absolute;
  2263. left:0px;
  2264. top:0px;
  2265. width:73px;
  2266. height:38px;
  2267. }
  2268. #u80994 {
  2269. border-width:0px;
  2270. position:absolute;
  2271. left:0px;
  2272. top:0px;
  2273. width:73px;
  2274. height:38px;
  2275. display:flex;
  2276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2277. font-weight:400;
  2278. font-style:normal;
  2279. font-size:12px;
  2280. color:#FFFFFF;
  2281. }
  2282. #u80994 .text {
  2283. position:absolute;
  2284. align-self:center;
  2285. padding:2px 2px 2px 0px;
  2286. box-sizing:border-box;
  2287. width:100%;
  2288. }
  2289. #u80994_text {
  2290. border-width:0px;
  2291. word-wrap:break-word;
  2292. text-transform:none;
  2293. }
  2294. #u80995_img {
  2295. border-width:0px;
  2296. position:absolute;
  2297. left:0px;
  2298. top:0px;
  2299. width:73px;
  2300. height:38px;
  2301. }
  2302. #u80995 {
  2303. border-width:0px;
  2304. position:absolute;
  2305. left:73px;
  2306. top:0px;
  2307. width:73px;
  2308. height:38px;
  2309. display:flex;
  2310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2311. font-weight:400;
  2312. font-style:normal;
  2313. font-size:12px;
  2314. color:#FFFFFF;
  2315. }
  2316. #u80995 .text {
  2317. position:absolute;
  2318. align-self:center;
  2319. padding:2px 2px 2px 0px;
  2320. box-sizing:border-box;
  2321. width:100%;
  2322. }
  2323. #u80995_text {
  2324. border-width:0px;
  2325. word-wrap:break-word;
  2326. text-transform:none;
  2327. }
  2328. #u80996_img {
  2329. border-width:0px;
  2330. position:absolute;
  2331. left:0px;
  2332. top:0px;
  2333. width:73px;
  2334. height:38px;
  2335. }
  2336. #u80996 {
  2337. border-width:0px;
  2338. position:absolute;
  2339. left:146px;
  2340. top:0px;
  2341. width:73px;
  2342. height:38px;
  2343. display:flex;
  2344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2345. font-weight:400;
  2346. font-style:normal;
  2347. font-size:12px;
  2348. color:#FFFFFF;
  2349. }
  2350. #u80996 .text {
  2351. position:absolute;
  2352. align-self:center;
  2353. padding:2px 2px 2px 0px;
  2354. box-sizing:border-box;
  2355. width:100%;
  2356. }
  2357. #u80996_text {
  2358. border-width:0px;
  2359. word-wrap:break-word;
  2360. text-transform:none;
  2361. }
  2362. #u80997_img {
  2363. border-width:0px;
  2364. position:absolute;
  2365. left:0px;
  2366. top:0px;
  2367. width:73px;
  2368. height:38px;
  2369. }
  2370. #u80997 {
  2371. border-width:0px;
  2372. position:absolute;
  2373. left:219px;
  2374. top:0px;
  2375. width:73px;
  2376. height:38px;
  2377. display:flex;
  2378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2379. font-weight:400;
  2380. font-style:normal;
  2381. font-size:12px;
  2382. color:#FFFFFF;
  2383. }
  2384. #u80997 .text {
  2385. position:absolute;
  2386. align-self:center;
  2387. padding:2px 2px 2px 0px;
  2388. box-sizing:border-box;
  2389. width:100%;
  2390. }
  2391. #u80997_text {
  2392. border-width:0px;
  2393. word-wrap:break-word;
  2394. text-transform:none;
  2395. }
  2396. #u80998_img {
  2397. border-width:0px;
  2398. position:absolute;
  2399. left:0px;
  2400. top:0px;
  2401. width:73px;
  2402. height:38px;
  2403. }
  2404. #u80998 {
  2405. border-width:0px;
  2406. position:absolute;
  2407. left:292px;
  2408. top:0px;
  2409. width:73px;
  2410. height:38px;
  2411. display:flex;
  2412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2413. font-weight:400;
  2414. font-style:normal;
  2415. font-size:12px;
  2416. color:#FFFFFF;
  2417. }
  2418. #u80998 .text {
  2419. position:absolute;
  2420. align-self:center;
  2421. padding:2px 2px 2px 0px;
  2422. box-sizing:border-box;
  2423. width:100%;
  2424. }
  2425. #u80998_text {
  2426. border-width:0px;
  2427. word-wrap:break-word;
  2428. text-transform:none;
  2429. }
  2430. #u80999_img {
  2431. border-width:0px;
  2432. position:absolute;
  2433. left:0px;
  2434. top:0px;
  2435. width:73px;
  2436. height:38px;
  2437. }
  2438. #u80999 {
  2439. border-width:0px;
  2440. position:absolute;
  2441. left:365px;
  2442. top:0px;
  2443. width:73px;
  2444. height:38px;
  2445. display:flex;
  2446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2447. font-weight:400;
  2448. font-style:normal;
  2449. font-size:12px;
  2450. color:#FFFFFF;
  2451. }
  2452. #u80999 .text {
  2453. position:absolute;
  2454. align-self:center;
  2455. padding:2px 2px 2px 0px;
  2456. box-sizing:border-box;
  2457. width:100%;
  2458. }
  2459. #u80999_text {
  2460. border-width:0px;
  2461. word-wrap:break-word;
  2462. text-transform:none;
  2463. }
  2464. #u81000_img {
  2465. border-width:0px;
  2466. position:absolute;
  2467. left:0px;
  2468. top:0px;
  2469. width:73px;
  2470. height:38px;
  2471. }
  2472. #u81000 {
  2473. border-width:0px;
  2474. position:absolute;
  2475. left:438px;
  2476. top:0px;
  2477. width:73px;
  2478. height:38px;
  2479. display:flex;
  2480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2481. font-weight:400;
  2482. font-style:normal;
  2483. font-size:12px;
  2484. color:#FFFFFF;
  2485. }
  2486. #u81000 .text {
  2487. position:absolute;
  2488. align-self:center;
  2489. padding:2px 2px 2px 0px;
  2490. box-sizing:border-box;
  2491. width:100%;
  2492. }
  2493. #u81000_text {
  2494. border-width:0px;
  2495. word-wrap:break-word;
  2496. text-transform:none;
  2497. }
  2498. #u81001_img {
  2499. border-width:0px;
  2500. position:absolute;
  2501. left:0px;
  2502. top:0px;
  2503. width:73px;
  2504. height:38px;
  2505. }
  2506. #u81001 {
  2507. border-width:0px;
  2508. position:absolute;
  2509. left:511px;
  2510. top:0px;
  2511. width:73px;
  2512. height:38px;
  2513. display:flex;
  2514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2515. font-weight:400;
  2516. font-style:normal;
  2517. font-size:12px;
  2518. color:#FFFFFF;
  2519. }
  2520. #u81001 .text {
  2521. position:absolute;
  2522. align-self:center;
  2523. padding:2px 2px 2px 0px;
  2524. box-sizing:border-box;
  2525. width:100%;
  2526. }
  2527. #u81001_text {
  2528. border-width:0px;
  2529. word-wrap:break-word;
  2530. text-transform:none;
  2531. }
  2532. #u81002_img {
  2533. border-width:0px;
  2534. position:absolute;
  2535. left:0px;
  2536. top:0px;
  2537. width:73px;
  2538. height:38px;
  2539. }
  2540. #u81002 {
  2541. border-width:0px;
  2542. position:absolute;
  2543. left:584px;
  2544. top:0px;
  2545. width:73px;
  2546. height:38px;
  2547. display:flex;
  2548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2549. font-weight:400;
  2550. font-style:normal;
  2551. font-size:12px;
  2552. color:#FFFFFF;
  2553. }
  2554. #u81002 .text {
  2555. position:absolute;
  2556. align-self:center;
  2557. padding:2px 2px 2px 0px;
  2558. box-sizing:border-box;
  2559. width:100%;
  2560. }
  2561. #u81002_text {
  2562. border-width:0px;
  2563. word-wrap:break-word;
  2564. text-transform:none;
  2565. }
  2566. #u81003_img {
  2567. border-width:0px;
  2568. position:absolute;
  2569. left:0px;
  2570. top:0px;
  2571. width:73px;
  2572. height:38px;
  2573. }
  2574. #u81003 {
  2575. border-width:0px;
  2576. position:absolute;
  2577. left:657px;
  2578. top:0px;
  2579. width:73px;
  2580. height:38px;
  2581. display:flex;
  2582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2583. font-weight:400;
  2584. font-style:normal;
  2585. font-size:12px;
  2586. color:#FFFFFF;
  2587. }
  2588. #u81003 .text {
  2589. position:absolute;
  2590. align-self:center;
  2591. padding:2px 2px 2px 0px;
  2592. box-sizing:border-box;
  2593. width:100%;
  2594. }
  2595. #u81003_text {
  2596. border-width:0px;
  2597. word-wrap:break-word;
  2598. text-transform:none;
  2599. }
  2600. #u81004_img {
  2601. border-width:0px;
  2602. position:absolute;
  2603. left:0px;
  2604. top:0px;
  2605. width:73px;
  2606. height:38px;
  2607. }
  2608. #u81004 {
  2609. border-width:0px;
  2610. position:absolute;
  2611. left:730px;
  2612. top:0px;
  2613. width:73px;
  2614. height:38px;
  2615. display:flex;
  2616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2617. font-weight:400;
  2618. font-style:normal;
  2619. font-size:12px;
  2620. color:#FFFFFF;
  2621. }
  2622. #u81004 .text {
  2623. position:absolute;
  2624. align-self:center;
  2625. padding:2px 2px 2px 0px;
  2626. box-sizing:border-box;
  2627. width:100%;
  2628. }
  2629. #u81004_text {
  2630. border-width:0px;
  2631. word-wrap:break-word;
  2632. text-transform:none;
  2633. }
  2634. #u81005_img {
  2635. border-width:0px;
  2636. position:absolute;
  2637. left:0px;
  2638. top:0px;
  2639. width:73px;
  2640. height:38px;
  2641. }
  2642. #u81005 {
  2643. border-width:0px;
  2644. position:absolute;
  2645. left:803px;
  2646. top:0px;
  2647. width:73px;
  2648. height:38px;
  2649. display:flex;
  2650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2651. font-weight:400;
  2652. font-style:normal;
  2653. font-size:12px;
  2654. color:#FFFFFF;
  2655. }
  2656. #u81005 .text {
  2657. position:absolute;
  2658. align-self:center;
  2659. padding:2px 2px 2px 0px;
  2660. box-sizing:border-box;
  2661. width:100%;
  2662. }
  2663. #u81005_text {
  2664. border-width:0px;
  2665. word-wrap:break-word;
  2666. text-transform:none;
  2667. }
  2668. #u81006_img {
  2669. border-width:0px;
  2670. position:absolute;
  2671. left:0px;
  2672. top:0px;
  2673. width:73px;
  2674. height:38px;
  2675. }
  2676. #u81006 {
  2677. border-width:0px;
  2678. position:absolute;
  2679. left:876px;
  2680. top:0px;
  2681. width:73px;
  2682. height:38px;
  2683. display:flex;
  2684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2685. font-weight:400;
  2686. font-style:normal;
  2687. font-size:12px;
  2688. color:#FFFFFF;
  2689. }
  2690. #u81006 .text {
  2691. position:absolute;
  2692. align-self:center;
  2693. padding:2px 2px 2px 0px;
  2694. box-sizing:border-box;
  2695. width:100%;
  2696. }
  2697. #u81006_text {
  2698. border-width:0px;
  2699. word-wrap:break-word;
  2700. text-transform:none;
  2701. }
  2702. #u81007_img {
  2703. border-width:0px;
  2704. position:absolute;
  2705. left:0px;
  2706. top:0px;
  2707. width:73px;
  2708. height:38px;
  2709. }
  2710. #u81007 {
  2711. border-width:0px;
  2712. position:absolute;
  2713. left:949px;
  2714. top:0px;
  2715. width:73px;
  2716. height:38px;
  2717. display:flex;
  2718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2719. font-weight:400;
  2720. font-style:normal;
  2721. font-size:12px;
  2722. color:#FFFFFF;
  2723. }
  2724. #u81007 .text {
  2725. position:absolute;
  2726. align-self:center;
  2727. padding:2px 2px 2px 0px;
  2728. box-sizing:border-box;
  2729. width:100%;
  2730. }
  2731. #u81007_text {
  2732. border-width:0px;
  2733. word-wrap:break-word;
  2734. text-transform:none;
  2735. }
  2736. #u81008_img {
  2737. border-width:0px;
  2738. position:absolute;
  2739. left:0px;
  2740. top:0px;
  2741. width:73px;
  2742. height:38px;
  2743. }
  2744. #u81008 {
  2745. border-width:0px;
  2746. position:absolute;
  2747. left:1022px;
  2748. top:0px;
  2749. width:73px;
  2750. height:38px;
  2751. display:flex;
  2752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2753. font-weight:400;
  2754. font-style:normal;
  2755. font-size:12px;
  2756. color:#FFFFFF;
  2757. }
  2758. #u81008 .text {
  2759. position:absolute;
  2760. align-self:center;
  2761. padding:2px 2px 2px 0px;
  2762. box-sizing:border-box;
  2763. width:100%;
  2764. }
  2765. #u81008_text {
  2766. border-width:0px;
  2767. word-wrap:break-word;
  2768. text-transform:none;
  2769. }
  2770. #u81009_img {
  2771. border-width:0px;
  2772. position:absolute;
  2773. left:0px;
  2774. top:0px;
  2775. width:69px;
  2776. height:38px;
  2777. }
  2778. #u81009 {
  2779. border-width:0px;
  2780. position:absolute;
  2781. left:1095px;
  2782. top:0px;
  2783. width:69px;
  2784. height:38px;
  2785. display:flex;
  2786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2787. font-weight:400;
  2788. font-style:normal;
  2789. font-size:12px;
  2790. color:#FFFFFF;
  2791. }
  2792. #u81009 .text {
  2793. position:absolute;
  2794. align-self:center;
  2795. padding:2px 2px 2px 0px;
  2796. box-sizing:border-box;
  2797. width:100%;
  2798. }
  2799. #u81009_text {
  2800. border-width:0px;
  2801. word-wrap:break-word;
  2802. text-transform:none;
  2803. }
  2804. #u81010_img {
  2805. border-width:0px;
  2806. position:absolute;
  2807. left:0px;
  2808. top:0px;
  2809. width:48px;
  2810. height:38px;
  2811. }
  2812. #u81010 {
  2813. border-width:0px;
  2814. position:absolute;
  2815. left:1164px;
  2816. top:0px;
  2817. width:48px;
  2818. height:38px;
  2819. display:flex;
  2820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2821. font-weight:400;
  2822. font-style:normal;
  2823. font-size:12px;
  2824. color:#FFFFFF;
  2825. }
  2826. #u81010 .text {
  2827. position:absolute;
  2828. align-self:center;
  2829. padding:2px 2px 2px 0px;
  2830. box-sizing:border-box;
  2831. width:100%;
  2832. }
  2833. #u81010_text {
  2834. border-width:0px;
  2835. word-wrap:break-word;
  2836. text-transform:none;
  2837. }
  2838. #u81011_img {
  2839. border-width:0px;
  2840. position:absolute;
  2841. left:0px;
  2842. top:0px;
  2843. width:73px;
  2844. height:38px;
  2845. }
  2846. #u81011 {
  2847. border-width:0px;
  2848. position:absolute;
  2849. left:0px;
  2850. top:38px;
  2851. width:73px;
  2852. height:38px;
  2853. display:flex;
  2854. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2855. font-weight:400;
  2856. font-style:normal;
  2857. font-size:12px;
  2858. }
  2859. #u81011 .text {
  2860. position:absolute;
  2861. align-self:center;
  2862. padding:2px 2px 2px 0px;
  2863. box-sizing:border-box;
  2864. width:100%;
  2865. }
  2866. #u81011_text {
  2867. border-width:0px;
  2868. word-wrap:break-word;
  2869. text-transform:none;
  2870. visibility:hidden;
  2871. }
  2872. #u81012_img {
  2873. border-width:0px;
  2874. position:absolute;
  2875. left:0px;
  2876. top:0px;
  2877. width:73px;
  2878. height:38px;
  2879. }
  2880. #u81012 {
  2881. border-width:0px;
  2882. position:absolute;
  2883. left:73px;
  2884. top:38px;
  2885. width:73px;
  2886. height:38px;
  2887. display:flex;
  2888. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2889. font-weight:400;
  2890. font-style:normal;
  2891. font-size:12px;
  2892. }
  2893. #u81012 .text {
  2894. position:absolute;
  2895. align-self:center;
  2896. padding:2px 2px 2px 0px;
  2897. box-sizing:border-box;
  2898. width:100%;
  2899. }
  2900. #u81012_text {
  2901. border-width:0px;
  2902. word-wrap:break-word;
  2903. text-transform:none;
  2904. visibility:hidden;
  2905. }
  2906. #u81013_img {
  2907. border-width:0px;
  2908. position:absolute;
  2909. left:0px;
  2910. top:0px;
  2911. width:73px;
  2912. height:38px;
  2913. }
  2914. #u81013 {
  2915. border-width:0px;
  2916. position:absolute;
  2917. left:146px;
  2918. top:38px;
  2919. width:73px;
  2920. height:38px;
  2921. display:flex;
  2922. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2923. font-weight:400;
  2924. font-style:normal;
  2925. font-size:12px;
  2926. }
  2927. #u81013 .text {
  2928. position:absolute;
  2929. align-self:center;
  2930. padding:2px 2px 2px 0px;
  2931. box-sizing:border-box;
  2932. width:100%;
  2933. }
  2934. #u81013_text {
  2935. border-width:0px;
  2936. word-wrap:break-word;
  2937. text-transform:none;
  2938. visibility:hidden;
  2939. }
  2940. #u81014_img {
  2941. border-width:0px;
  2942. position:absolute;
  2943. left:0px;
  2944. top:0px;
  2945. width:73px;
  2946. height:38px;
  2947. }
  2948. #u81014 {
  2949. border-width:0px;
  2950. position:absolute;
  2951. left:219px;
  2952. top:38px;
  2953. width:73px;
  2954. height:38px;
  2955. display:flex;
  2956. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2957. font-weight:400;
  2958. font-style:normal;
  2959. font-size:12px;
  2960. }
  2961. #u81014 .text {
  2962. position:absolute;
  2963. align-self:center;
  2964. padding:2px 2px 2px 0px;
  2965. box-sizing:border-box;
  2966. width:100%;
  2967. }
  2968. #u81014_text {
  2969. border-width:0px;
  2970. word-wrap:break-word;
  2971. text-transform:none;
  2972. visibility:hidden;
  2973. }
  2974. #u81015_img {
  2975. border-width:0px;
  2976. position:absolute;
  2977. left:0px;
  2978. top:0px;
  2979. width:73px;
  2980. height:38px;
  2981. }
  2982. #u81015 {
  2983. border-width:0px;
  2984. position:absolute;
  2985. left:292px;
  2986. top:38px;
  2987. width:73px;
  2988. height:38px;
  2989. display:flex;
  2990. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2991. font-weight:400;
  2992. font-style:normal;
  2993. font-size:12px;
  2994. }
  2995. #u81015 .text {
  2996. position:absolute;
  2997. align-self:center;
  2998. padding:2px 2px 2px 0px;
  2999. box-sizing:border-box;
  3000. width:100%;
  3001. }
  3002. #u81015_text {
  3003. border-width:0px;
  3004. word-wrap:break-word;
  3005. text-transform:none;
  3006. visibility:hidden;
  3007. }
  3008. #u81016_img {
  3009. border-width:0px;
  3010. position:absolute;
  3011. left:0px;
  3012. top:0px;
  3013. width:73px;
  3014. height:38px;
  3015. }
  3016. #u81016 {
  3017. border-width:0px;
  3018. position:absolute;
  3019. left:365px;
  3020. top:38px;
  3021. width:73px;
  3022. height:38px;
  3023. display:flex;
  3024. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3025. font-weight:400;
  3026. font-style:normal;
  3027. font-size:12px;
  3028. }
  3029. #u81016 .text {
  3030. position:absolute;
  3031. align-self:center;
  3032. padding:2px 2px 2px 0px;
  3033. box-sizing:border-box;
  3034. width:100%;
  3035. }
  3036. #u81016_text {
  3037. border-width:0px;
  3038. word-wrap:break-word;
  3039. text-transform:none;
  3040. visibility:hidden;
  3041. }
  3042. #u81017_img {
  3043. border-width:0px;
  3044. position:absolute;
  3045. left:0px;
  3046. top:0px;
  3047. width:73px;
  3048. height:38px;
  3049. }
  3050. #u81017 {
  3051. border-width:0px;
  3052. position:absolute;
  3053. left:438px;
  3054. top:38px;
  3055. width:73px;
  3056. height:38px;
  3057. display:flex;
  3058. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3059. font-weight:400;
  3060. font-style:normal;
  3061. font-size:12px;
  3062. }
  3063. #u81017 .text {
  3064. position:absolute;
  3065. align-self:center;
  3066. padding:2px 2px 2px 0px;
  3067. box-sizing:border-box;
  3068. width:100%;
  3069. }
  3070. #u81017_text {
  3071. border-width:0px;
  3072. word-wrap:break-word;
  3073. text-transform:none;
  3074. visibility:hidden;
  3075. }
  3076. #u81018_img {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:0px;
  3080. top:0px;
  3081. width:73px;
  3082. height:38px;
  3083. }
  3084. #u81018 {
  3085. border-width:0px;
  3086. position:absolute;
  3087. left:511px;
  3088. top:38px;
  3089. width:73px;
  3090. height:38px;
  3091. display:flex;
  3092. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3093. font-weight:400;
  3094. font-style:normal;
  3095. font-size:12px;
  3096. }
  3097. #u81018 .text {
  3098. position:absolute;
  3099. align-self:center;
  3100. padding:2px 2px 2px 0px;
  3101. box-sizing:border-box;
  3102. width:100%;
  3103. }
  3104. #u81018_text {
  3105. border-width:0px;
  3106. word-wrap:break-word;
  3107. text-transform:none;
  3108. visibility:hidden;
  3109. }
  3110. #u81019_img {
  3111. border-width:0px;
  3112. position:absolute;
  3113. left:0px;
  3114. top:0px;
  3115. width:73px;
  3116. height:38px;
  3117. }
  3118. #u81019 {
  3119. border-width:0px;
  3120. position:absolute;
  3121. left:584px;
  3122. top:38px;
  3123. width:73px;
  3124. height:38px;
  3125. display:flex;
  3126. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3127. font-weight:400;
  3128. font-style:normal;
  3129. font-size:12px;
  3130. }
  3131. #u81019 .text {
  3132. position:absolute;
  3133. align-self:center;
  3134. padding:2px 2px 2px 0px;
  3135. box-sizing:border-box;
  3136. width:100%;
  3137. }
  3138. #u81019_text {
  3139. border-width:0px;
  3140. word-wrap:break-word;
  3141. text-transform:none;
  3142. visibility:hidden;
  3143. }
  3144. #u81020_img {
  3145. border-width:0px;
  3146. position:absolute;
  3147. left:0px;
  3148. top:0px;
  3149. width:73px;
  3150. height:38px;
  3151. }
  3152. #u81020 {
  3153. border-width:0px;
  3154. position:absolute;
  3155. left:657px;
  3156. top:38px;
  3157. width:73px;
  3158. height:38px;
  3159. display:flex;
  3160. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3161. font-weight:400;
  3162. font-style:normal;
  3163. font-size:12px;
  3164. }
  3165. #u81020 .text {
  3166. position:absolute;
  3167. align-self:center;
  3168. padding:2px 2px 2px 0px;
  3169. box-sizing:border-box;
  3170. width:100%;
  3171. }
  3172. #u81020_text {
  3173. border-width:0px;
  3174. word-wrap:break-word;
  3175. text-transform:none;
  3176. visibility:hidden;
  3177. }
  3178. #u81021_img {
  3179. border-width:0px;
  3180. position:absolute;
  3181. left:0px;
  3182. top:0px;
  3183. width:73px;
  3184. height:38px;
  3185. }
  3186. #u81021 {
  3187. border-width:0px;
  3188. position:absolute;
  3189. left:730px;
  3190. top:38px;
  3191. width:73px;
  3192. height:38px;
  3193. display:flex;
  3194. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3195. font-weight:400;
  3196. font-style:normal;
  3197. font-size:12px;
  3198. }
  3199. #u81021 .text {
  3200. position:absolute;
  3201. align-self:center;
  3202. padding:2px 2px 2px 0px;
  3203. box-sizing:border-box;
  3204. width:100%;
  3205. }
  3206. #u81021_text {
  3207. border-width:0px;
  3208. word-wrap:break-word;
  3209. text-transform:none;
  3210. visibility:hidden;
  3211. }
  3212. #u81022_img {
  3213. border-width:0px;
  3214. position:absolute;
  3215. left:0px;
  3216. top:0px;
  3217. width:73px;
  3218. height:38px;
  3219. }
  3220. #u81022 {
  3221. border-width:0px;
  3222. position:absolute;
  3223. left:803px;
  3224. top:38px;
  3225. width:73px;
  3226. height:38px;
  3227. display:flex;
  3228. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3229. font-weight:400;
  3230. font-style:normal;
  3231. font-size:12px;
  3232. }
  3233. #u81022 .text {
  3234. position:absolute;
  3235. align-self:center;
  3236. padding:2px 2px 2px 0px;
  3237. box-sizing:border-box;
  3238. width:100%;
  3239. }
  3240. #u81022_text {
  3241. border-width:0px;
  3242. word-wrap:break-word;
  3243. text-transform:none;
  3244. visibility:hidden;
  3245. }
  3246. #u81023_img {
  3247. border-width:0px;
  3248. position:absolute;
  3249. left:0px;
  3250. top:0px;
  3251. width:73px;
  3252. height:38px;
  3253. }
  3254. #u81023 {
  3255. border-width:0px;
  3256. position:absolute;
  3257. left:876px;
  3258. top:38px;
  3259. width:73px;
  3260. height:38px;
  3261. display:flex;
  3262. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3263. font-weight:400;
  3264. font-style:normal;
  3265. font-size:12px;
  3266. }
  3267. #u81023 .text {
  3268. position:absolute;
  3269. align-self:center;
  3270. padding:2px 2px 2px 0px;
  3271. box-sizing:border-box;
  3272. width:100%;
  3273. }
  3274. #u81023_text {
  3275. border-width:0px;
  3276. word-wrap:break-word;
  3277. text-transform:none;
  3278. visibility:hidden;
  3279. }
  3280. #u81024_img {
  3281. border-width:0px;
  3282. position:absolute;
  3283. left:0px;
  3284. top:0px;
  3285. width:73px;
  3286. height:38px;
  3287. }
  3288. #u81024 {
  3289. border-width:0px;
  3290. position:absolute;
  3291. left:949px;
  3292. top:38px;
  3293. width:73px;
  3294. height:38px;
  3295. display:flex;
  3296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3297. font-weight:400;
  3298. font-style:normal;
  3299. font-size:12px;
  3300. }
  3301. #u81024 .text {
  3302. position:absolute;
  3303. align-self:center;
  3304. padding:2px 2px 2px 0px;
  3305. box-sizing:border-box;
  3306. width:100%;
  3307. }
  3308. #u81024_text {
  3309. border-width:0px;
  3310. word-wrap:break-word;
  3311. text-transform:none;
  3312. }
  3313. #u81025_img {
  3314. border-width:0px;
  3315. position:absolute;
  3316. left:0px;
  3317. top:0px;
  3318. width:73px;
  3319. height:38px;
  3320. }
  3321. #u81025 {
  3322. border-width:0px;
  3323. position:absolute;
  3324. left:1022px;
  3325. top:38px;
  3326. width:73px;
  3327. height:38px;
  3328. display:flex;
  3329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3330. font-weight:400;
  3331. font-style:normal;
  3332. font-size:12px;
  3333. }
  3334. #u81025 .text {
  3335. position:absolute;
  3336. align-self:center;
  3337. padding:2px 2px 2px 0px;
  3338. box-sizing:border-box;
  3339. width:100%;
  3340. }
  3341. #u81025_text {
  3342. border-width:0px;
  3343. word-wrap:break-word;
  3344. text-transform:none;
  3345. }
  3346. #u81026_img {
  3347. border-width:0px;
  3348. position:absolute;
  3349. left:0px;
  3350. top:0px;
  3351. width:69px;
  3352. height:38px;
  3353. }
  3354. #u81026 {
  3355. border-width:0px;
  3356. position:absolute;
  3357. left:1095px;
  3358. top:38px;
  3359. width:69px;
  3360. height:38px;
  3361. display:flex;
  3362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3363. font-weight:400;
  3364. font-style:normal;
  3365. font-size:12px;
  3366. }
  3367. #u81026 .text {
  3368. position:absolute;
  3369. align-self:center;
  3370. padding:2px 2px 2px 0px;
  3371. box-sizing:border-box;
  3372. width:100%;
  3373. }
  3374. #u81026_text {
  3375. border-width:0px;
  3376. word-wrap:break-word;
  3377. text-transform:none;
  3378. visibility:hidden;
  3379. }
  3380. #u81027_img {
  3381. border-width:0px;
  3382. position:absolute;
  3383. left:0px;
  3384. top:0px;
  3385. width:48px;
  3386. height:38px;
  3387. }
  3388. #u81027 {
  3389. border-width:0px;
  3390. position:absolute;
  3391. left:1164px;
  3392. top:38px;
  3393. width:48px;
  3394. height:38px;
  3395. display:flex;
  3396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3397. font-weight:400;
  3398. font-style:normal;
  3399. font-size:12px;
  3400. color:#1890FF;
  3401. }
  3402. #u81027 .text {
  3403. position:absolute;
  3404. align-self:center;
  3405. padding:2px 2px 2px 0px;
  3406. box-sizing:border-box;
  3407. width:100%;
  3408. }
  3409. #u81027_text {
  3410. border-width:0px;
  3411. word-wrap:break-word;
  3412. text-transform:none;
  3413. }
  3414. #u81028_img {
  3415. border-width:0px;
  3416. position:absolute;
  3417. left:0px;
  3418. top:0px;
  3419. width:73px;
  3420. height:38px;
  3421. }
  3422. #u81028 {
  3423. border-width:0px;
  3424. position:absolute;
  3425. left:0px;
  3426. top:76px;
  3427. width:73px;
  3428. height:38px;
  3429. display:flex;
  3430. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3431. font-weight:400;
  3432. font-style:normal;
  3433. font-size:12px;
  3434. color:#606266;
  3435. }
  3436. #u81028 .text {
  3437. position:absolute;
  3438. align-self:center;
  3439. padding:2px 2px 2px 0px;
  3440. box-sizing:border-box;
  3441. width:100%;
  3442. }
  3443. #u81028_text {
  3444. border-width:0px;
  3445. word-wrap:break-word;
  3446. text-transform:none;
  3447. visibility:hidden;
  3448. }
  3449. #u81029_img {
  3450. border-width:0px;
  3451. position:absolute;
  3452. left:0px;
  3453. top:0px;
  3454. width:73px;
  3455. height:38px;
  3456. }
  3457. #u81029 {
  3458. border-width:0px;
  3459. position:absolute;
  3460. left:73px;
  3461. top:76px;
  3462. width:73px;
  3463. height:38px;
  3464. display:flex;
  3465. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3466. font-weight:400;
  3467. font-style:normal;
  3468. font-size:12px;
  3469. color:#606266;
  3470. }
  3471. #u81029 .text {
  3472. position:absolute;
  3473. align-self:center;
  3474. padding:2px 2px 2px 0px;
  3475. box-sizing:border-box;
  3476. width:100%;
  3477. }
  3478. #u81029_text {
  3479. border-width:0px;
  3480. word-wrap:break-word;
  3481. text-transform:none;
  3482. visibility:hidden;
  3483. }
  3484. #u81030_img {
  3485. border-width:0px;
  3486. position:absolute;
  3487. left:0px;
  3488. top:0px;
  3489. width:73px;
  3490. height:38px;
  3491. }
  3492. #u81030 {
  3493. border-width:0px;
  3494. position:absolute;
  3495. left:146px;
  3496. top:76px;
  3497. width:73px;
  3498. height:38px;
  3499. display:flex;
  3500. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3501. font-weight:400;
  3502. font-style:normal;
  3503. font-size:12px;
  3504. color:#606266;
  3505. }
  3506. #u81030 .text {
  3507. position:absolute;
  3508. align-self:center;
  3509. padding:2px 2px 2px 0px;
  3510. box-sizing:border-box;
  3511. width:100%;
  3512. }
  3513. #u81030_text {
  3514. border-width:0px;
  3515. word-wrap:break-word;
  3516. text-transform:none;
  3517. visibility:hidden;
  3518. }
  3519. #u81031_img {
  3520. border-width:0px;
  3521. position:absolute;
  3522. left:0px;
  3523. top:0px;
  3524. width:73px;
  3525. height:38px;
  3526. }
  3527. #u81031 {
  3528. border-width:0px;
  3529. position:absolute;
  3530. left:219px;
  3531. top:76px;
  3532. width:73px;
  3533. height:38px;
  3534. display:flex;
  3535. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3536. font-weight:400;
  3537. font-style:normal;
  3538. font-size:12px;
  3539. color:#606266;
  3540. }
  3541. #u81031 .text {
  3542. position:absolute;
  3543. align-self:center;
  3544. padding:2px 2px 2px 0px;
  3545. box-sizing:border-box;
  3546. width:100%;
  3547. }
  3548. #u81031_text {
  3549. border-width:0px;
  3550. word-wrap:break-word;
  3551. text-transform:none;
  3552. visibility:hidden;
  3553. }
  3554. #u81032_img {
  3555. border-width:0px;
  3556. position:absolute;
  3557. left:0px;
  3558. top:0px;
  3559. width:73px;
  3560. height:38px;
  3561. }
  3562. #u81032 {
  3563. border-width:0px;
  3564. position:absolute;
  3565. left:292px;
  3566. top:76px;
  3567. width:73px;
  3568. height:38px;
  3569. display:flex;
  3570. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3571. font-weight:400;
  3572. font-style:normal;
  3573. font-size:12px;
  3574. color:#606266;
  3575. }
  3576. #u81032 .text {
  3577. position:absolute;
  3578. align-self:center;
  3579. padding:2px 2px 2px 0px;
  3580. box-sizing:border-box;
  3581. width:100%;
  3582. }
  3583. #u81032_text {
  3584. border-width:0px;
  3585. word-wrap:break-word;
  3586. text-transform:none;
  3587. visibility:hidden;
  3588. }
  3589. #u81033_img {
  3590. border-width:0px;
  3591. position:absolute;
  3592. left:0px;
  3593. top:0px;
  3594. width:73px;
  3595. height:38px;
  3596. }
  3597. #u81033 {
  3598. border-width:0px;
  3599. position:absolute;
  3600. left:365px;
  3601. top:76px;
  3602. width:73px;
  3603. height:38px;
  3604. display:flex;
  3605. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3606. font-weight:400;
  3607. font-style:normal;
  3608. font-size:12px;
  3609. color:#606266;
  3610. }
  3611. #u81033 .text {
  3612. position:absolute;
  3613. align-self:center;
  3614. padding:2px 2px 2px 0px;
  3615. box-sizing:border-box;
  3616. width:100%;
  3617. }
  3618. #u81033_text {
  3619. border-width:0px;
  3620. word-wrap:break-word;
  3621. text-transform:none;
  3622. visibility:hidden;
  3623. }
  3624. #u81034_img {
  3625. border-width:0px;
  3626. position:absolute;
  3627. left:0px;
  3628. top:0px;
  3629. width:73px;
  3630. height:38px;
  3631. }
  3632. #u81034 {
  3633. border-width:0px;
  3634. position:absolute;
  3635. left:438px;
  3636. top:76px;
  3637. width:73px;
  3638. height:38px;
  3639. display:flex;
  3640. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3641. font-weight:400;
  3642. font-style:normal;
  3643. font-size:12px;
  3644. color:#606266;
  3645. }
  3646. #u81034 .text {
  3647. position:absolute;
  3648. align-self:center;
  3649. padding:2px 2px 2px 0px;
  3650. box-sizing:border-box;
  3651. width:100%;
  3652. }
  3653. #u81034_text {
  3654. border-width:0px;
  3655. word-wrap:break-word;
  3656. text-transform:none;
  3657. visibility:hidden;
  3658. }
  3659. #u81035_img {
  3660. border-width:0px;
  3661. position:absolute;
  3662. left:0px;
  3663. top:0px;
  3664. width:73px;
  3665. height:38px;
  3666. }
  3667. #u81035 {
  3668. border-width:0px;
  3669. position:absolute;
  3670. left:511px;
  3671. top:76px;
  3672. width:73px;
  3673. height:38px;
  3674. display:flex;
  3675. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3676. font-weight:400;
  3677. font-style:normal;
  3678. font-size:12px;
  3679. color:#606266;
  3680. }
  3681. #u81035 .text {
  3682. position:absolute;
  3683. align-self:center;
  3684. padding:2px 2px 2px 0px;
  3685. box-sizing:border-box;
  3686. width:100%;
  3687. }
  3688. #u81035_text {
  3689. border-width:0px;
  3690. word-wrap:break-word;
  3691. text-transform:none;
  3692. visibility:hidden;
  3693. }
  3694. #u81036_img {
  3695. border-width:0px;
  3696. position:absolute;
  3697. left:0px;
  3698. top:0px;
  3699. width:73px;
  3700. height:38px;
  3701. }
  3702. #u81036 {
  3703. border-width:0px;
  3704. position:absolute;
  3705. left:584px;
  3706. top:76px;
  3707. width:73px;
  3708. height:38px;
  3709. display:flex;
  3710. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3711. font-weight:400;
  3712. font-style:normal;
  3713. font-size:12px;
  3714. color:#606266;
  3715. }
  3716. #u81036 .text {
  3717. position:absolute;
  3718. align-self:center;
  3719. padding:2px 2px 2px 0px;
  3720. box-sizing:border-box;
  3721. width:100%;
  3722. }
  3723. #u81036_text {
  3724. border-width:0px;
  3725. word-wrap:break-word;
  3726. text-transform:none;
  3727. visibility:hidden;
  3728. }
  3729. #u81037_img {
  3730. border-width:0px;
  3731. position:absolute;
  3732. left:0px;
  3733. top:0px;
  3734. width:73px;
  3735. height:38px;
  3736. }
  3737. #u81037 {
  3738. border-width:0px;
  3739. position:absolute;
  3740. left:657px;
  3741. top:76px;
  3742. width:73px;
  3743. height:38px;
  3744. display:flex;
  3745. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3746. font-weight:400;
  3747. font-style:normal;
  3748. font-size:12px;
  3749. color:#606266;
  3750. }
  3751. #u81037 .text {
  3752. position:absolute;
  3753. align-self:center;
  3754. padding:2px 2px 2px 0px;
  3755. box-sizing:border-box;
  3756. width:100%;
  3757. }
  3758. #u81037_text {
  3759. border-width:0px;
  3760. word-wrap:break-word;
  3761. text-transform:none;
  3762. visibility:hidden;
  3763. }
  3764. #u81038_img {
  3765. border-width:0px;
  3766. position:absolute;
  3767. left:0px;
  3768. top:0px;
  3769. width:73px;
  3770. height:38px;
  3771. }
  3772. #u81038 {
  3773. border-width:0px;
  3774. position:absolute;
  3775. left:730px;
  3776. top:76px;
  3777. width:73px;
  3778. height:38px;
  3779. display:flex;
  3780. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3781. font-weight:400;
  3782. font-style:normal;
  3783. font-size:12px;
  3784. color:#606266;
  3785. }
  3786. #u81038 .text {
  3787. position:absolute;
  3788. align-self:center;
  3789. padding:2px 2px 2px 0px;
  3790. box-sizing:border-box;
  3791. width:100%;
  3792. }
  3793. #u81038_text {
  3794. border-width:0px;
  3795. word-wrap:break-word;
  3796. text-transform:none;
  3797. visibility:hidden;
  3798. }
  3799. #u81039_img {
  3800. border-width:0px;
  3801. position:absolute;
  3802. left:0px;
  3803. top:0px;
  3804. width:73px;
  3805. height:38px;
  3806. }
  3807. #u81039 {
  3808. border-width:0px;
  3809. position:absolute;
  3810. left:803px;
  3811. top:76px;
  3812. width:73px;
  3813. height:38px;
  3814. display:flex;
  3815. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3816. font-weight:400;
  3817. font-style:normal;
  3818. font-size:12px;
  3819. color:#606266;
  3820. }
  3821. #u81039 .text {
  3822. position:absolute;
  3823. align-self:center;
  3824. padding:2px 2px 2px 0px;
  3825. box-sizing:border-box;
  3826. width:100%;
  3827. }
  3828. #u81039_text {
  3829. border-width:0px;
  3830. word-wrap:break-word;
  3831. text-transform:none;
  3832. visibility:hidden;
  3833. }
  3834. #u81040_img {
  3835. border-width:0px;
  3836. position:absolute;
  3837. left:0px;
  3838. top:0px;
  3839. width:73px;
  3840. height:38px;
  3841. }
  3842. #u81040 {
  3843. border-width:0px;
  3844. position:absolute;
  3845. left:876px;
  3846. top:76px;
  3847. width:73px;
  3848. height:38px;
  3849. display:flex;
  3850. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3851. font-weight:400;
  3852. font-style:normal;
  3853. font-size:12px;
  3854. color:#606266;
  3855. }
  3856. #u81040 .text {
  3857. position:absolute;
  3858. align-self:center;
  3859. padding:2px 2px 2px 0px;
  3860. box-sizing:border-box;
  3861. width:100%;
  3862. }
  3863. #u81040_text {
  3864. border-width:0px;
  3865. word-wrap:break-word;
  3866. text-transform:none;
  3867. visibility:hidden;
  3868. }
  3869. #u81041_img {
  3870. border-width:0px;
  3871. position:absolute;
  3872. left:0px;
  3873. top:0px;
  3874. width:73px;
  3875. height:38px;
  3876. }
  3877. #u81041 {
  3878. border-width:0px;
  3879. position:absolute;
  3880. left:949px;
  3881. top:76px;
  3882. width:73px;
  3883. height:38px;
  3884. display:flex;
  3885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3886. font-weight:400;
  3887. font-style:normal;
  3888. font-size:12px;
  3889. color:#606266;
  3890. }
  3891. #u81041 .text {
  3892. position:absolute;
  3893. align-self:center;
  3894. padding:2px 2px 2px 0px;
  3895. box-sizing:border-box;
  3896. width:100%;
  3897. }
  3898. #u81041_text {
  3899. border-width:0px;
  3900. word-wrap:break-word;
  3901. text-transform:none;
  3902. }
  3903. #u81042_img {
  3904. border-width:0px;
  3905. position:absolute;
  3906. left:0px;
  3907. top:0px;
  3908. width:73px;
  3909. height:38px;
  3910. }
  3911. #u81042 {
  3912. border-width:0px;
  3913. position:absolute;
  3914. left:1022px;
  3915. top:76px;
  3916. width:73px;
  3917. height:38px;
  3918. display:flex;
  3919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3920. font-weight:400;
  3921. font-style:normal;
  3922. font-size:12px;
  3923. color:#606266;
  3924. }
  3925. #u81042 .text {
  3926. position:absolute;
  3927. align-self:center;
  3928. padding:2px 2px 2px 0px;
  3929. box-sizing:border-box;
  3930. width:100%;
  3931. }
  3932. #u81042_text {
  3933. border-width:0px;
  3934. word-wrap:break-word;
  3935. text-transform:none;
  3936. }
  3937. #u81043_img {
  3938. border-width:0px;
  3939. position:absolute;
  3940. left:0px;
  3941. top:0px;
  3942. width:69px;
  3943. height:38px;
  3944. }
  3945. #u81043 {
  3946. border-width:0px;
  3947. position:absolute;
  3948. left:1095px;
  3949. top:76px;
  3950. width:69px;
  3951. height:38px;
  3952. display:flex;
  3953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3954. font-weight:400;
  3955. font-style:normal;
  3956. font-size:12px;
  3957. color:#606266;
  3958. }
  3959. #u81043 .text {
  3960. position:absolute;
  3961. align-self:center;
  3962. padding:2px 2px 2px 0px;
  3963. box-sizing:border-box;
  3964. width:100%;
  3965. }
  3966. #u81043_text {
  3967. border-width:0px;
  3968. word-wrap:break-word;
  3969. text-transform:none;
  3970. visibility:hidden;
  3971. }
  3972. #u81044_img {
  3973. border-width:0px;
  3974. position:absolute;
  3975. left:0px;
  3976. top:0px;
  3977. width:48px;
  3978. height:38px;
  3979. }
  3980. #u81044 {
  3981. border-width:0px;
  3982. position:absolute;
  3983. left:1164px;
  3984. top:76px;
  3985. width:48px;
  3986. height:38px;
  3987. display:flex;
  3988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3989. font-weight:400;
  3990. font-style:normal;
  3991. font-size:12px;
  3992. color:#1890FF;
  3993. }
  3994. #u81044 .text {
  3995. position:absolute;
  3996. align-self:center;
  3997. padding:2px 2px 2px 0px;
  3998. box-sizing:border-box;
  3999. width:100%;
  4000. }
  4001. #u81044_text {
  4002. border-width:0px;
  4003. word-wrap:break-word;
  4004. text-transform:none;
  4005. }
  4006. #u81045_img {
  4007. border-width:0px;
  4008. position:absolute;
  4009. left:0px;
  4010. top:0px;
  4011. width:73px;
  4012. height:38px;
  4013. }
  4014. #u81045 {
  4015. border-width:0px;
  4016. position:absolute;
  4017. left:0px;
  4018. top:114px;
  4019. width:73px;
  4020. height:38px;
  4021. display:flex;
  4022. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4023. font-weight:400;
  4024. font-style:normal;
  4025. font-size:12px;
  4026. color:#606266;
  4027. }
  4028. #u81045 .text {
  4029. position:absolute;
  4030. align-self:center;
  4031. padding:2px 2px 2px 0px;
  4032. box-sizing:border-box;
  4033. width:100%;
  4034. }
  4035. #u81045_text {
  4036. border-width:0px;
  4037. word-wrap:break-word;
  4038. text-transform:none;
  4039. visibility:hidden;
  4040. }
  4041. #u81046_img {
  4042. border-width:0px;
  4043. position:absolute;
  4044. left:0px;
  4045. top:0px;
  4046. width:73px;
  4047. height:38px;
  4048. }
  4049. #u81046 {
  4050. border-width:0px;
  4051. position:absolute;
  4052. left:73px;
  4053. top:114px;
  4054. width:73px;
  4055. height:38px;
  4056. display:flex;
  4057. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4058. font-weight:400;
  4059. font-style:normal;
  4060. font-size:12px;
  4061. color:#606266;
  4062. }
  4063. #u81046 .text {
  4064. position:absolute;
  4065. align-self:center;
  4066. padding:2px 2px 2px 0px;
  4067. box-sizing:border-box;
  4068. width:100%;
  4069. }
  4070. #u81046_text {
  4071. border-width:0px;
  4072. word-wrap:break-word;
  4073. text-transform:none;
  4074. visibility:hidden;
  4075. }
  4076. #u81047_img {
  4077. border-width:0px;
  4078. position:absolute;
  4079. left:0px;
  4080. top:0px;
  4081. width:73px;
  4082. height:38px;
  4083. }
  4084. #u81047 {
  4085. border-width:0px;
  4086. position:absolute;
  4087. left:146px;
  4088. top:114px;
  4089. width:73px;
  4090. height:38px;
  4091. display:flex;
  4092. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4093. font-weight:400;
  4094. font-style:normal;
  4095. font-size:12px;
  4096. color:#606266;
  4097. }
  4098. #u81047 .text {
  4099. position:absolute;
  4100. align-self:center;
  4101. padding:2px 2px 2px 0px;
  4102. box-sizing:border-box;
  4103. width:100%;
  4104. }
  4105. #u81047_text {
  4106. border-width:0px;
  4107. word-wrap:break-word;
  4108. text-transform:none;
  4109. visibility:hidden;
  4110. }
  4111. #u81048_img {
  4112. border-width:0px;
  4113. position:absolute;
  4114. left:0px;
  4115. top:0px;
  4116. width:73px;
  4117. height:38px;
  4118. }
  4119. #u81048 {
  4120. border-width:0px;
  4121. position:absolute;
  4122. left:219px;
  4123. top:114px;
  4124. width:73px;
  4125. height:38px;
  4126. display:flex;
  4127. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4128. font-weight:400;
  4129. font-style:normal;
  4130. font-size:12px;
  4131. color:#606266;
  4132. }
  4133. #u81048 .text {
  4134. position:absolute;
  4135. align-self:center;
  4136. padding:2px 2px 2px 0px;
  4137. box-sizing:border-box;
  4138. width:100%;
  4139. }
  4140. #u81048_text {
  4141. border-width:0px;
  4142. word-wrap:break-word;
  4143. text-transform:none;
  4144. visibility:hidden;
  4145. }
  4146. #u81049_img {
  4147. border-width:0px;
  4148. position:absolute;
  4149. left:0px;
  4150. top:0px;
  4151. width:73px;
  4152. height:38px;
  4153. }
  4154. #u81049 {
  4155. border-width:0px;
  4156. position:absolute;
  4157. left:292px;
  4158. top:114px;
  4159. width:73px;
  4160. height:38px;
  4161. display:flex;
  4162. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4163. font-weight:400;
  4164. font-style:normal;
  4165. font-size:12px;
  4166. color:#606266;
  4167. }
  4168. #u81049 .text {
  4169. position:absolute;
  4170. align-self:center;
  4171. padding:2px 2px 2px 0px;
  4172. box-sizing:border-box;
  4173. width:100%;
  4174. }
  4175. #u81049_text {
  4176. border-width:0px;
  4177. word-wrap:break-word;
  4178. text-transform:none;
  4179. visibility:hidden;
  4180. }
  4181. #u81050_img {
  4182. border-width:0px;
  4183. position:absolute;
  4184. left:0px;
  4185. top:0px;
  4186. width:73px;
  4187. height:38px;
  4188. }
  4189. #u81050 {
  4190. border-width:0px;
  4191. position:absolute;
  4192. left:365px;
  4193. top:114px;
  4194. width:73px;
  4195. height:38px;
  4196. display:flex;
  4197. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4198. font-weight:400;
  4199. font-style:normal;
  4200. font-size:12px;
  4201. color:#606266;
  4202. }
  4203. #u81050 .text {
  4204. position:absolute;
  4205. align-self:center;
  4206. padding:2px 2px 2px 0px;
  4207. box-sizing:border-box;
  4208. width:100%;
  4209. }
  4210. #u81050_text {
  4211. border-width:0px;
  4212. word-wrap:break-word;
  4213. text-transform:none;
  4214. visibility:hidden;
  4215. }
  4216. #u81051_img {
  4217. border-width:0px;
  4218. position:absolute;
  4219. left:0px;
  4220. top:0px;
  4221. width:73px;
  4222. height:38px;
  4223. }
  4224. #u81051 {
  4225. border-width:0px;
  4226. position:absolute;
  4227. left:438px;
  4228. top:114px;
  4229. width:73px;
  4230. height:38px;
  4231. display:flex;
  4232. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4233. font-weight:400;
  4234. font-style:normal;
  4235. font-size:12px;
  4236. color:#606266;
  4237. }
  4238. #u81051 .text {
  4239. position:absolute;
  4240. align-self:center;
  4241. padding:2px 2px 2px 0px;
  4242. box-sizing:border-box;
  4243. width:100%;
  4244. }
  4245. #u81051_text {
  4246. border-width:0px;
  4247. word-wrap:break-word;
  4248. text-transform:none;
  4249. visibility:hidden;
  4250. }
  4251. #u81052_img {
  4252. border-width:0px;
  4253. position:absolute;
  4254. left:0px;
  4255. top:0px;
  4256. width:73px;
  4257. height:38px;
  4258. }
  4259. #u81052 {
  4260. border-width:0px;
  4261. position:absolute;
  4262. left:511px;
  4263. top:114px;
  4264. width:73px;
  4265. height:38px;
  4266. display:flex;
  4267. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4268. font-weight:400;
  4269. font-style:normal;
  4270. font-size:12px;
  4271. color:#606266;
  4272. }
  4273. #u81052 .text {
  4274. position:absolute;
  4275. align-self:center;
  4276. padding:2px 2px 2px 0px;
  4277. box-sizing:border-box;
  4278. width:100%;
  4279. }
  4280. #u81052_text {
  4281. border-width:0px;
  4282. word-wrap:break-word;
  4283. text-transform:none;
  4284. visibility:hidden;
  4285. }
  4286. #u81053_img {
  4287. border-width:0px;
  4288. position:absolute;
  4289. left:0px;
  4290. top:0px;
  4291. width:73px;
  4292. height:38px;
  4293. }
  4294. #u81053 {
  4295. border-width:0px;
  4296. position:absolute;
  4297. left:584px;
  4298. top:114px;
  4299. width:73px;
  4300. height:38px;
  4301. display:flex;
  4302. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4303. font-weight:400;
  4304. font-style:normal;
  4305. font-size:12px;
  4306. color:#606266;
  4307. }
  4308. #u81053 .text {
  4309. position:absolute;
  4310. align-self:center;
  4311. padding:2px 2px 2px 0px;
  4312. box-sizing:border-box;
  4313. width:100%;
  4314. }
  4315. #u81053_text {
  4316. border-width:0px;
  4317. word-wrap:break-word;
  4318. text-transform:none;
  4319. visibility:hidden;
  4320. }
  4321. #u81054_img {
  4322. border-width:0px;
  4323. position:absolute;
  4324. left:0px;
  4325. top:0px;
  4326. width:73px;
  4327. height:38px;
  4328. }
  4329. #u81054 {
  4330. border-width:0px;
  4331. position:absolute;
  4332. left:657px;
  4333. top:114px;
  4334. width:73px;
  4335. height:38px;
  4336. display:flex;
  4337. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4338. font-weight:400;
  4339. font-style:normal;
  4340. font-size:12px;
  4341. color:#606266;
  4342. }
  4343. #u81054 .text {
  4344. position:absolute;
  4345. align-self:center;
  4346. padding:2px 2px 2px 0px;
  4347. box-sizing:border-box;
  4348. width:100%;
  4349. }
  4350. #u81054_text {
  4351. border-width:0px;
  4352. word-wrap:break-word;
  4353. text-transform:none;
  4354. visibility:hidden;
  4355. }
  4356. #u81055_img {
  4357. border-width:0px;
  4358. position:absolute;
  4359. left:0px;
  4360. top:0px;
  4361. width:73px;
  4362. height:38px;
  4363. }
  4364. #u81055 {
  4365. border-width:0px;
  4366. position:absolute;
  4367. left:730px;
  4368. top:114px;
  4369. width:73px;
  4370. height:38px;
  4371. display:flex;
  4372. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4373. font-weight:400;
  4374. font-style:normal;
  4375. font-size:12px;
  4376. color:#606266;
  4377. }
  4378. #u81055 .text {
  4379. position:absolute;
  4380. align-self:center;
  4381. padding:2px 2px 2px 0px;
  4382. box-sizing:border-box;
  4383. width:100%;
  4384. }
  4385. #u81055_text {
  4386. border-width:0px;
  4387. word-wrap:break-word;
  4388. text-transform:none;
  4389. visibility:hidden;
  4390. }
  4391. #u81056_img {
  4392. border-width:0px;
  4393. position:absolute;
  4394. left:0px;
  4395. top:0px;
  4396. width:73px;
  4397. height:38px;
  4398. }
  4399. #u81056 {
  4400. border-width:0px;
  4401. position:absolute;
  4402. left:803px;
  4403. top:114px;
  4404. width:73px;
  4405. height:38px;
  4406. display:flex;
  4407. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4408. font-weight:400;
  4409. font-style:normal;
  4410. font-size:12px;
  4411. color:#606266;
  4412. }
  4413. #u81056 .text {
  4414. position:absolute;
  4415. align-self:center;
  4416. padding:2px 2px 2px 0px;
  4417. box-sizing:border-box;
  4418. width:100%;
  4419. }
  4420. #u81056_text {
  4421. border-width:0px;
  4422. word-wrap:break-word;
  4423. text-transform:none;
  4424. visibility:hidden;
  4425. }
  4426. #u81057_img {
  4427. border-width:0px;
  4428. position:absolute;
  4429. left:0px;
  4430. top:0px;
  4431. width:73px;
  4432. height:38px;
  4433. }
  4434. #u81057 {
  4435. border-width:0px;
  4436. position:absolute;
  4437. left:876px;
  4438. top:114px;
  4439. width:73px;
  4440. height:38px;
  4441. display:flex;
  4442. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4443. font-weight:400;
  4444. font-style:normal;
  4445. font-size:12px;
  4446. color:#606266;
  4447. }
  4448. #u81057 .text {
  4449. position:absolute;
  4450. align-self:center;
  4451. padding:2px 2px 2px 0px;
  4452. box-sizing:border-box;
  4453. width:100%;
  4454. }
  4455. #u81057_text {
  4456. border-width:0px;
  4457. word-wrap:break-word;
  4458. text-transform:none;
  4459. visibility:hidden;
  4460. }
  4461. #u81058_img {
  4462. border-width:0px;
  4463. position:absolute;
  4464. left:0px;
  4465. top:0px;
  4466. width:73px;
  4467. height:38px;
  4468. }
  4469. #u81058 {
  4470. border-width:0px;
  4471. position:absolute;
  4472. left:949px;
  4473. top:114px;
  4474. width:73px;
  4475. height:38px;
  4476. display:flex;
  4477. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4478. font-weight:400;
  4479. font-style:normal;
  4480. font-size:12px;
  4481. color:#606266;
  4482. }
  4483. #u81058 .text {
  4484. position:absolute;
  4485. align-self:center;
  4486. padding:2px 2px 2px 0px;
  4487. box-sizing:border-box;
  4488. width:100%;
  4489. }
  4490. #u81058_text {
  4491. border-width:0px;
  4492. word-wrap:break-word;
  4493. text-transform:none;
  4494. visibility:hidden;
  4495. }
  4496. #u81059_img {
  4497. border-width:0px;
  4498. position:absolute;
  4499. left:0px;
  4500. top:0px;
  4501. width:73px;
  4502. height:38px;
  4503. }
  4504. #u81059 {
  4505. border-width:0px;
  4506. position:absolute;
  4507. left:1022px;
  4508. top:114px;
  4509. width:73px;
  4510. height:38px;
  4511. display:flex;
  4512. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4513. font-weight:400;
  4514. font-style:normal;
  4515. font-size:12px;
  4516. color:#606266;
  4517. }
  4518. #u81059 .text {
  4519. position:absolute;
  4520. align-self:center;
  4521. padding:2px 2px 2px 0px;
  4522. box-sizing:border-box;
  4523. width:100%;
  4524. }
  4525. #u81059_text {
  4526. border-width:0px;
  4527. word-wrap:break-word;
  4528. text-transform:none;
  4529. visibility:hidden;
  4530. }
  4531. #u81060_img {
  4532. border-width:0px;
  4533. position:absolute;
  4534. left:0px;
  4535. top:0px;
  4536. width:69px;
  4537. height:38px;
  4538. }
  4539. #u81060 {
  4540. border-width:0px;
  4541. position:absolute;
  4542. left:1095px;
  4543. top:114px;
  4544. width:69px;
  4545. height:38px;
  4546. display:flex;
  4547. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4548. font-weight:400;
  4549. font-style:normal;
  4550. font-size:12px;
  4551. color:#606266;
  4552. }
  4553. #u81060 .text {
  4554. position:absolute;
  4555. align-self:center;
  4556. padding:2px 2px 2px 0px;
  4557. box-sizing:border-box;
  4558. width:100%;
  4559. }
  4560. #u81060_text {
  4561. border-width:0px;
  4562. word-wrap:break-word;
  4563. text-transform:none;
  4564. visibility:hidden;
  4565. }
  4566. #u81061_img {
  4567. border-width:0px;
  4568. position:absolute;
  4569. left:0px;
  4570. top:0px;
  4571. width:48px;
  4572. height:38px;
  4573. }
  4574. #u81061 {
  4575. border-width:0px;
  4576. position:absolute;
  4577. left:1164px;
  4578. top:114px;
  4579. width:48px;
  4580. height:38px;
  4581. display:flex;
  4582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4583. font-weight:400;
  4584. font-style:normal;
  4585. font-size:12px;
  4586. color:#02A7F0;
  4587. }
  4588. #u81061 .text {
  4589. position:absolute;
  4590. align-self:center;
  4591. padding:2px 2px 2px 0px;
  4592. box-sizing:border-box;
  4593. width:100%;
  4594. }
  4595. #u81061_text {
  4596. border-width:0px;
  4597. word-wrap:break-word;
  4598. text-transform:none;
  4599. visibility:hidden;
  4600. }
  4601. #u81062_img {
  4602. border-width:0px;
  4603. position:absolute;
  4604. left:0px;
  4605. top:0px;
  4606. width:73px;
  4607. height:38px;
  4608. }
  4609. #u81062 {
  4610. border-width:0px;
  4611. position:absolute;
  4612. left:0px;
  4613. top:152px;
  4614. width:73px;
  4615. height:38px;
  4616. display:flex;
  4617. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4618. font-weight:400;
  4619. font-style:normal;
  4620. font-size:12px;
  4621. color:#606266;
  4622. }
  4623. #u81062 .text {
  4624. position:absolute;
  4625. align-self:center;
  4626. padding:2px 2px 2px 0px;
  4627. box-sizing:border-box;
  4628. width:100%;
  4629. }
  4630. #u81062_text {
  4631. border-width:0px;
  4632. word-wrap:break-word;
  4633. text-transform:none;
  4634. visibility:hidden;
  4635. }
  4636. #u81063_img {
  4637. border-width:0px;
  4638. position:absolute;
  4639. left:0px;
  4640. top:0px;
  4641. width:73px;
  4642. height:38px;
  4643. }
  4644. #u81063 {
  4645. border-width:0px;
  4646. position:absolute;
  4647. left:73px;
  4648. top:152px;
  4649. width:73px;
  4650. height:38px;
  4651. display:flex;
  4652. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4653. font-weight:400;
  4654. font-style:normal;
  4655. font-size:12px;
  4656. color:#606266;
  4657. }
  4658. #u81063 .text {
  4659. position:absolute;
  4660. align-self:center;
  4661. padding:2px 2px 2px 0px;
  4662. box-sizing:border-box;
  4663. width:100%;
  4664. }
  4665. #u81063_text {
  4666. border-width:0px;
  4667. word-wrap:break-word;
  4668. text-transform:none;
  4669. visibility:hidden;
  4670. }
  4671. #u81064_img {
  4672. border-width:0px;
  4673. position:absolute;
  4674. left:0px;
  4675. top:0px;
  4676. width:73px;
  4677. height:38px;
  4678. }
  4679. #u81064 {
  4680. border-width:0px;
  4681. position:absolute;
  4682. left:146px;
  4683. top:152px;
  4684. width:73px;
  4685. height:38px;
  4686. display:flex;
  4687. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4688. font-weight:400;
  4689. font-style:normal;
  4690. font-size:12px;
  4691. color:#606266;
  4692. }
  4693. #u81064 .text {
  4694. position:absolute;
  4695. align-self:center;
  4696. padding:2px 2px 2px 0px;
  4697. box-sizing:border-box;
  4698. width:100%;
  4699. }
  4700. #u81064_text {
  4701. border-width:0px;
  4702. word-wrap:break-word;
  4703. text-transform:none;
  4704. visibility:hidden;
  4705. }
  4706. #u81065_img {
  4707. border-width:0px;
  4708. position:absolute;
  4709. left:0px;
  4710. top:0px;
  4711. width:73px;
  4712. height:38px;
  4713. }
  4714. #u81065 {
  4715. border-width:0px;
  4716. position:absolute;
  4717. left:219px;
  4718. top:152px;
  4719. width:73px;
  4720. height:38px;
  4721. display:flex;
  4722. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4723. font-weight:400;
  4724. font-style:normal;
  4725. font-size:12px;
  4726. color:#606266;
  4727. }
  4728. #u81065 .text {
  4729. position:absolute;
  4730. align-self:center;
  4731. padding:2px 2px 2px 0px;
  4732. box-sizing:border-box;
  4733. width:100%;
  4734. }
  4735. #u81065_text {
  4736. border-width:0px;
  4737. word-wrap:break-word;
  4738. text-transform:none;
  4739. visibility:hidden;
  4740. }
  4741. #u81066_img {
  4742. border-width:0px;
  4743. position:absolute;
  4744. left:0px;
  4745. top:0px;
  4746. width:73px;
  4747. height:38px;
  4748. }
  4749. #u81066 {
  4750. border-width:0px;
  4751. position:absolute;
  4752. left:292px;
  4753. top:152px;
  4754. width:73px;
  4755. height:38px;
  4756. display:flex;
  4757. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4758. font-weight:400;
  4759. font-style:normal;
  4760. font-size:12px;
  4761. color:#606266;
  4762. }
  4763. #u81066 .text {
  4764. position:absolute;
  4765. align-self:center;
  4766. padding:2px 2px 2px 0px;
  4767. box-sizing:border-box;
  4768. width:100%;
  4769. }
  4770. #u81066_text {
  4771. border-width:0px;
  4772. word-wrap:break-word;
  4773. text-transform:none;
  4774. visibility:hidden;
  4775. }
  4776. #u81067_img {
  4777. border-width:0px;
  4778. position:absolute;
  4779. left:0px;
  4780. top:0px;
  4781. width:73px;
  4782. height:38px;
  4783. }
  4784. #u81067 {
  4785. border-width:0px;
  4786. position:absolute;
  4787. left:365px;
  4788. top:152px;
  4789. width:73px;
  4790. height:38px;
  4791. display:flex;
  4792. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4793. font-weight:400;
  4794. font-style:normal;
  4795. font-size:12px;
  4796. color:#606266;
  4797. }
  4798. #u81067 .text {
  4799. position:absolute;
  4800. align-self:center;
  4801. padding:2px 2px 2px 0px;
  4802. box-sizing:border-box;
  4803. width:100%;
  4804. }
  4805. #u81067_text {
  4806. border-width:0px;
  4807. word-wrap:break-word;
  4808. text-transform:none;
  4809. visibility:hidden;
  4810. }
  4811. #u81068_img {
  4812. border-width:0px;
  4813. position:absolute;
  4814. left:0px;
  4815. top:0px;
  4816. width:73px;
  4817. height:38px;
  4818. }
  4819. #u81068 {
  4820. border-width:0px;
  4821. position:absolute;
  4822. left:438px;
  4823. top:152px;
  4824. width:73px;
  4825. height:38px;
  4826. display:flex;
  4827. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4828. font-weight:400;
  4829. font-style:normal;
  4830. font-size:12px;
  4831. color:#606266;
  4832. }
  4833. #u81068 .text {
  4834. position:absolute;
  4835. align-self:center;
  4836. padding:2px 2px 2px 0px;
  4837. box-sizing:border-box;
  4838. width:100%;
  4839. }
  4840. #u81068_text {
  4841. border-width:0px;
  4842. word-wrap:break-word;
  4843. text-transform:none;
  4844. visibility:hidden;
  4845. }
  4846. #u81069_img {
  4847. border-width:0px;
  4848. position:absolute;
  4849. left:0px;
  4850. top:0px;
  4851. width:73px;
  4852. height:38px;
  4853. }
  4854. #u81069 {
  4855. border-width:0px;
  4856. position:absolute;
  4857. left:511px;
  4858. top:152px;
  4859. width:73px;
  4860. height:38px;
  4861. display:flex;
  4862. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4863. font-weight:400;
  4864. font-style:normal;
  4865. font-size:12px;
  4866. color:#606266;
  4867. }
  4868. #u81069 .text {
  4869. position:absolute;
  4870. align-self:center;
  4871. padding:2px 2px 2px 0px;
  4872. box-sizing:border-box;
  4873. width:100%;
  4874. }
  4875. #u81069_text {
  4876. border-width:0px;
  4877. word-wrap:break-word;
  4878. text-transform:none;
  4879. visibility:hidden;
  4880. }
  4881. #u81070_img {
  4882. border-width:0px;
  4883. position:absolute;
  4884. left:0px;
  4885. top:0px;
  4886. width:73px;
  4887. height:38px;
  4888. }
  4889. #u81070 {
  4890. border-width:0px;
  4891. position:absolute;
  4892. left:584px;
  4893. top:152px;
  4894. width:73px;
  4895. height:38px;
  4896. display:flex;
  4897. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4898. font-weight:400;
  4899. font-style:normal;
  4900. font-size:12px;
  4901. color:#606266;
  4902. }
  4903. #u81070 .text {
  4904. position:absolute;
  4905. align-self:center;
  4906. padding:2px 2px 2px 0px;
  4907. box-sizing:border-box;
  4908. width:100%;
  4909. }
  4910. #u81070_text {
  4911. border-width:0px;
  4912. word-wrap:break-word;
  4913. text-transform:none;
  4914. visibility:hidden;
  4915. }
  4916. #u81071_img {
  4917. border-width:0px;
  4918. position:absolute;
  4919. left:0px;
  4920. top:0px;
  4921. width:73px;
  4922. height:38px;
  4923. }
  4924. #u81071 {
  4925. border-width:0px;
  4926. position:absolute;
  4927. left:657px;
  4928. top:152px;
  4929. width:73px;
  4930. height:38px;
  4931. display:flex;
  4932. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4933. font-weight:400;
  4934. font-style:normal;
  4935. font-size:12px;
  4936. color:#606266;
  4937. }
  4938. #u81071 .text {
  4939. position:absolute;
  4940. align-self:center;
  4941. padding:2px 2px 2px 0px;
  4942. box-sizing:border-box;
  4943. width:100%;
  4944. }
  4945. #u81071_text {
  4946. border-width:0px;
  4947. word-wrap:break-word;
  4948. text-transform:none;
  4949. visibility:hidden;
  4950. }
  4951. #u81072_img {
  4952. border-width:0px;
  4953. position:absolute;
  4954. left:0px;
  4955. top:0px;
  4956. width:73px;
  4957. height:38px;
  4958. }
  4959. #u81072 {
  4960. border-width:0px;
  4961. position:absolute;
  4962. left:730px;
  4963. top:152px;
  4964. width:73px;
  4965. height:38px;
  4966. display:flex;
  4967. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4968. font-weight:400;
  4969. font-style:normal;
  4970. font-size:12px;
  4971. color:#606266;
  4972. }
  4973. #u81072 .text {
  4974. position:absolute;
  4975. align-self:center;
  4976. padding:2px 2px 2px 0px;
  4977. box-sizing:border-box;
  4978. width:100%;
  4979. }
  4980. #u81072_text {
  4981. border-width:0px;
  4982. word-wrap:break-word;
  4983. text-transform:none;
  4984. visibility:hidden;
  4985. }
  4986. #u81073_img {
  4987. border-width:0px;
  4988. position:absolute;
  4989. left:0px;
  4990. top:0px;
  4991. width:73px;
  4992. height:38px;
  4993. }
  4994. #u81073 {
  4995. border-width:0px;
  4996. position:absolute;
  4997. left:803px;
  4998. top:152px;
  4999. width:73px;
  5000. height:38px;
  5001. display:flex;
  5002. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5003. font-weight:400;
  5004. font-style:normal;
  5005. font-size:12px;
  5006. color:#606266;
  5007. }
  5008. #u81073 .text {
  5009. position:absolute;
  5010. align-self:center;
  5011. padding:2px 2px 2px 0px;
  5012. box-sizing:border-box;
  5013. width:100%;
  5014. }
  5015. #u81073_text {
  5016. border-width:0px;
  5017. word-wrap:break-word;
  5018. text-transform:none;
  5019. visibility:hidden;
  5020. }
  5021. #u81074_img {
  5022. border-width:0px;
  5023. position:absolute;
  5024. left:0px;
  5025. top:0px;
  5026. width:73px;
  5027. height:38px;
  5028. }
  5029. #u81074 {
  5030. border-width:0px;
  5031. position:absolute;
  5032. left:876px;
  5033. top:152px;
  5034. width:73px;
  5035. height:38px;
  5036. display:flex;
  5037. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5038. font-weight:400;
  5039. font-style:normal;
  5040. font-size:12px;
  5041. color:#606266;
  5042. }
  5043. #u81074 .text {
  5044. position:absolute;
  5045. align-self:center;
  5046. padding:2px 2px 2px 0px;
  5047. box-sizing:border-box;
  5048. width:100%;
  5049. }
  5050. #u81074_text {
  5051. border-width:0px;
  5052. word-wrap:break-word;
  5053. text-transform:none;
  5054. visibility:hidden;
  5055. }
  5056. #u81075_img {
  5057. border-width:0px;
  5058. position:absolute;
  5059. left:0px;
  5060. top:0px;
  5061. width:73px;
  5062. height:38px;
  5063. }
  5064. #u81075 {
  5065. border-width:0px;
  5066. position:absolute;
  5067. left:949px;
  5068. top:152px;
  5069. width:73px;
  5070. height:38px;
  5071. display:flex;
  5072. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5073. font-weight:400;
  5074. font-style:normal;
  5075. font-size:12px;
  5076. color:#606266;
  5077. }
  5078. #u81075 .text {
  5079. position:absolute;
  5080. align-self:center;
  5081. padding:2px 2px 2px 0px;
  5082. box-sizing:border-box;
  5083. width:100%;
  5084. }
  5085. #u81075_text {
  5086. border-width:0px;
  5087. word-wrap:break-word;
  5088. text-transform:none;
  5089. visibility:hidden;
  5090. }
  5091. #u81076_img {
  5092. border-width:0px;
  5093. position:absolute;
  5094. left:0px;
  5095. top:0px;
  5096. width:73px;
  5097. height:38px;
  5098. }
  5099. #u81076 {
  5100. border-width:0px;
  5101. position:absolute;
  5102. left:1022px;
  5103. top:152px;
  5104. width:73px;
  5105. height:38px;
  5106. display:flex;
  5107. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5108. font-weight:400;
  5109. font-style:normal;
  5110. font-size:12px;
  5111. color:#606266;
  5112. }
  5113. #u81076 .text {
  5114. position:absolute;
  5115. align-self:center;
  5116. padding:2px 2px 2px 0px;
  5117. box-sizing:border-box;
  5118. width:100%;
  5119. }
  5120. #u81076_text {
  5121. border-width:0px;
  5122. word-wrap:break-word;
  5123. text-transform:none;
  5124. visibility:hidden;
  5125. }
  5126. #u81077_img {
  5127. border-width:0px;
  5128. position:absolute;
  5129. left:0px;
  5130. top:0px;
  5131. width:69px;
  5132. height:38px;
  5133. }
  5134. #u81077 {
  5135. border-width:0px;
  5136. position:absolute;
  5137. left:1095px;
  5138. top:152px;
  5139. width:69px;
  5140. height:38px;
  5141. display:flex;
  5142. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5143. font-weight:400;
  5144. font-style:normal;
  5145. font-size:12px;
  5146. color:#606266;
  5147. }
  5148. #u81077 .text {
  5149. position:absolute;
  5150. align-self:center;
  5151. padding:2px 2px 2px 0px;
  5152. box-sizing:border-box;
  5153. width:100%;
  5154. }
  5155. #u81077_text {
  5156. border-width:0px;
  5157. word-wrap:break-word;
  5158. text-transform:none;
  5159. visibility:hidden;
  5160. }
  5161. #u81078_img {
  5162. border-width:0px;
  5163. position:absolute;
  5164. left:0px;
  5165. top:0px;
  5166. width:48px;
  5167. height:38px;
  5168. }
  5169. #u81078 {
  5170. border-width:0px;
  5171. position:absolute;
  5172. left:1164px;
  5173. top:152px;
  5174. width:48px;
  5175. height:38px;
  5176. display:flex;
  5177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5178. font-weight:400;
  5179. font-style:normal;
  5180. font-size:12px;
  5181. color:#02A7F0;
  5182. }
  5183. #u81078 .text {
  5184. position:absolute;
  5185. align-self:center;
  5186. padding:2px 2px 2px 0px;
  5187. box-sizing:border-box;
  5188. width:100%;
  5189. }
  5190. #u81078_text {
  5191. border-width:0px;
  5192. word-wrap:break-word;
  5193. text-transform:none;
  5194. visibility:hidden;
  5195. }
  5196. #u81079_img {
  5197. border-width:0px;
  5198. position:absolute;
  5199. left:0px;
  5200. top:0px;
  5201. width:73px;
  5202. height:35px;
  5203. }
  5204. #u81079 {
  5205. border-width:0px;
  5206. position:absolute;
  5207. left:0px;
  5208. top:190px;
  5209. width:73px;
  5210. height:35px;
  5211. display:flex;
  5212. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5213. font-weight:400;
  5214. font-style:normal;
  5215. font-size:12px;
  5216. color:#606266;
  5217. }
  5218. #u81079 .text {
  5219. position:absolute;
  5220. align-self:center;
  5221. padding:2px 2px 2px 0px;
  5222. box-sizing:border-box;
  5223. width:100%;
  5224. }
  5225. #u81079_text {
  5226. border-width:0px;
  5227. word-wrap:break-word;
  5228. text-transform:none;
  5229. visibility:hidden;
  5230. }
  5231. #u81080_img {
  5232. border-width:0px;
  5233. position:absolute;
  5234. left:0px;
  5235. top:0px;
  5236. width:73px;
  5237. height:35px;
  5238. }
  5239. #u81080 {
  5240. border-width:0px;
  5241. position:absolute;
  5242. left:73px;
  5243. top:190px;
  5244. width:73px;
  5245. height:35px;
  5246. display:flex;
  5247. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5248. font-weight:400;
  5249. font-style:normal;
  5250. font-size:12px;
  5251. color:#606266;
  5252. }
  5253. #u81080 .text {
  5254. position:absolute;
  5255. align-self:center;
  5256. padding:2px 2px 2px 0px;
  5257. box-sizing:border-box;
  5258. width:100%;
  5259. }
  5260. #u81080_text {
  5261. border-width:0px;
  5262. word-wrap:break-word;
  5263. text-transform:none;
  5264. visibility:hidden;
  5265. }
  5266. #u81081_img {
  5267. border-width:0px;
  5268. position:absolute;
  5269. left:0px;
  5270. top:0px;
  5271. width:73px;
  5272. height:35px;
  5273. }
  5274. #u81081 {
  5275. border-width:0px;
  5276. position:absolute;
  5277. left:146px;
  5278. top:190px;
  5279. width:73px;
  5280. height:35px;
  5281. display:flex;
  5282. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5283. font-weight:400;
  5284. font-style:normal;
  5285. font-size:12px;
  5286. color:#606266;
  5287. }
  5288. #u81081 .text {
  5289. position:absolute;
  5290. align-self:center;
  5291. padding:2px 2px 2px 0px;
  5292. box-sizing:border-box;
  5293. width:100%;
  5294. }
  5295. #u81081_text {
  5296. border-width:0px;
  5297. word-wrap:break-word;
  5298. text-transform:none;
  5299. visibility:hidden;
  5300. }
  5301. #u81082_img {
  5302. border-width:0px;
  5303. position:absolute;
  5304. left:0px;
  5305. top:0px;
  5306. width:73px;
  5307. height:35px;
  5308. }
  5309. #u81082 {
  5310. border-width:0px;
  5311. position:absolute;
  5312. left:219px;
  5313. top:190px;
  5314. width:73px;
  5315. height:35px;
  5316. display:flex;
  5317. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5318. font-weight:400;
  5319. font-style:normal;
  5320. font-size:12px;
  5321. color:#606266;
  5322. }
  5323. #u81082 .text {
  5324. position:absolute;
  5325. align-self:center;
  5326. padding:2px 2px 2px 0px;
  5327. box-sizing:border-box;
  5328. width:100%;
  5329. }
  5330. #u81082_text {
  5331. border-width:0px;
  5332. word-wrap:break-word;
  5333. text-transform:none;
  5334. visibility:hidden;
  5335. }
  5336. #u81083_img {
  5337. border-width:0px;
  5338. position:absolute;
  5339. left:0px;
  5340. top:0px;
  5341. width:73px;
  5342. height:35px;
  5343. }
  5344. #u81083 {
  5345. border-width:0px;
  5346. position:absolute;
  5347. left:292px;
  5348. top:190px;
  5349. width:73px;
  5350. height:35px;
  5351. display:flex;
  5352. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5353. font-weight:400;
  5354. font-style:normal;
  5355. font-size:12px;
  5356. color:#606266;
  5357. }
  5358. #u81083 .text {
  5359. position:absolute;
  5360. align-self:center;
  5361. padding:2px 2px 2px 0px;
  5362. box-sizing:border-box;
  5363. width:100%;
  5364. }
  5365. #u81083_text {
  5366. border-width:0px;
  5367. word-wrap:break-word;
  5368. text-transform:none;
  5369. visibility:hidden;
  5370. }
  5371. #u81084_img {
  5372. border-width:0px;
  5373. position:absolute;
  5374. left:0px;
  5375. top:0px;
  5376. width:73px;
  5377. height:35px;
  5378. }
  5379. #u81084 {
  5380. border-width:0px;
  5381. position:absolute;
  5382. left:365px;
  5383. top:190px;
  5384. width:73px;
  5385. height:35px;
  5386. display:flex;
  5387. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5388. font-weight:400;
  5389. font-style:normal;
  5390. font-size:12px;
  5391. color:#606266;
  5392. }
  5393. #u81084 .text {
  5394. position:absolute;
  5395. align-self:center;
  5396. padding:2px 2px 2px 0px;
  5397. box-sizing:border-box;
  5398. width:100%;
  5399. }
  5400. #u81084_text {
  5401. border-width:0px;
  5402. word-wrap:break-word;
  5403. text-transform:none;
  5404. visibility:hidden;
  5405. }
  5406. #u81085_img {
  5407. border-width:0px;
  5408. position:absolute;
  5409. left:0px;
  5410. top:0px;
  5411. width:73px;
  5412. height:35px;
  5413. }
  5414. #u81085 {
  5415. border-width:0px;
  5416. position:absolute;
  5417. left:438px;
  5418. top:190px;
  5419. width:73px;
  5420. height:35px;
  5421. display:flex;
  5422. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5423. font-weight:400;
  5424. font-style:normal;
  5425. font-size:12px;
  5426. color:#606266;
  5427. }
  5428. #u81085 .text {
  5429. position:absolute;
  5430. align-self:center;
  5431. padding:2px 2px 2px 0px;
  5432. box-sizing:border-box;
  5433. width:100%;
  5434. }
  5435. #u81085_text {
  5436. border-width:0px;
  5437. word-wrap:break-word;
  5438. text-transform:none;
  5439. visibility:hidden;
  5440. }
  5441. #u81086_img {
  5442. border-width:0px;
  5443. position:absolute;
  5444. left:0px;
  5445. top:0px;
  5446. width:73px;
  5447. height:35px;
  5448. }
  5449. #u81086 {
  5450. border-width:0px;
  5451. position:absolute;
  5452. left:511px;
  5453. top:190px;
  5454. width:73px;
  5455. height:35px;
  5456. display:flex;
  5457. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5458. font-weight:400;
  5459. font-style:normal;
  5460. font-size:12px;
  5461. color:#606266;
  5462. }
  5463. #u81086 .text {
  5464. position:absolute;
  5465. align-self:center;
  5466. padding:2px 2px 2px 0px;
  5467. box-sizing:border-box;
  5468. width:100%;
  5469. }
  5470. #u81086_text {
  5471. border-width:0px;
  5472. word-wrap:break-word;
  5473. text-transform:none;
  5474. visibility:hidden;
  5475. }
  5476. #u81087_img {
  5477. border-width:0px;
  5478. position:absolute;
  5479. left:0px;
  5480. top:0px;
  5481. width:73px;
  5482. height:35px;
  5483. }
  5484. #u81087 {
  5485. border-width:0px;
  5486. position:absolute;
  5487. left:584px;
  5488. top:190px;
  5489. width:73px;
  5490. height:35px;
  5491. display:flex;
  5492. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5493. font-weight:400;
  5494. font-style:normal;
  5495. font-size:12px;
  5496. color:#606266;
  5497. }
  5498. #u81087 .text {
  5499. position:absolute;
  5500. align-self:center;
  5501. padding:2px 2px 2px 0px;
  5502. box-sizing:border-box;
  5503. width:100%;
  5504. }
  5505. #u81087_text {
  5506. border-width:0px;
  5507. word-wrap:break-word;
  5508. text-transform:none;
  5509. visibility:hidden;
  5510. }
  5511. #u81088_img {
  5512. border-width:0px;
  5513. position:absolute;
  5514. left:0px;
  5515. top:0px;
  5516. width:73px;
  5517. height:35px;
  5518. }
  5519. #u81088 {
  5520. border-width:0px;
  5521. position:absolute;
  5522. left:657px;
  5523. top:190px;
  5524. width:73px;
  5525. height:35px;
  5526. display:flex;
  5527. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5528. font-weight:400;
  5529. font-style:normal;
  5530. font-size:12px;
  5531. color:#606266;
  5532. }
  5533. #u81088 .text {
  5534. position:absolute;
  5535. align-self:center;
  5536. padding:2px 2px 2px 0px;
  5537. box-sizing:border-box;
  5538. width:100%;
  5539. }
  5540. #u81088_text {
  5541. border-width:0px;
  5542. word-wrap:break-word;
  5543. text-transform:none;
  5544. visibility:hidden;
  5545. }
  5546. #u81089_img {
  5547. border-width:0px;
  5548. position:absolute;
  5549. left:0px;
  5550. top:0px;
  5551. width:73px;
  5552. height:35px;
  5553. }
  5554. #u81089 {
  5555. border-width:0px;
  5556. position:absolute;
  5557. left:730px;
  5558. top:190px;
  5559. width:73px;
  5560. height:35px;
  5561. display:flex;
  5562. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5563. font-weight:400;
  5564. font-style:normal;
  5565. font-size:12px;
  5566. color:#606266;
  5567. }
  5568. #u81089 .text {
  5569. position:absolute;
  5570. align-self:center;
  5571. padding:2px 2px 2px 0px;
  5572. box-sizing:border-box;
  5573. width:100%;
  5574. }
  5575. #u81089_text {
  5576. border-width:0px;
  5577. word-wrap:break-word;
  5578. text-transform:none;
  5579. visibility:hidden;
  5580. }
  5581. #u81090_img {
  5582. border-width:0px;
  5583. position:absolute;
  5584. left:0px;
  5585. top:0px;
  5586. width:73px;
  5587. height:35px;
  5588. }
  5589. #u81090 {
  5590. border-width:0px;
  5591. position:absolute;
  5592. left:803px;
  5593. top:190px;
  5594. width:73px;
  5595. height:35px;
  5596. display:flex;
  5597. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5598. font-weight:400;
  5599. font-style:normal;
  5600. font-size:12px;
  5601. color:#606266;
  5602. }
  5603. #u81090 .text {
  5604. position:absolute;
  5605. align-self:center;
  5606. padding:2px 2px 2px 0px;
  5607. box-sizing:border-box;
  5608. width:100%;
  5609. }
  5610. #u81090_text {
  5611. border-width:0px;
  5612. word-wrap:break-word;
  5613. text-transform:none;
  5614. visibility:hidden;
  5615. }
  5616. #u81091_img {
  5617. border-width:0px;
  5618. position:absolute;
  5619. left:0px;
  5620. top:0px;
  5621. width:73px;
  5622. height:35px;
  5623. }
  5624. #u81091 {
  5625. border-width:0px;
  5626. position:absolute;
  5627. left:876px;
  5628. top:190px;
  5629. width:73px;
  5630. height:35px;
  5631. display:flex;
  5632. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5633. font-weight:400;
  5634. font-style:normal;
  5635. font-size:12px;
  5636. color:#606266;
  5637. }
  5638. #u81091 .text {
  5639. position:absolute;
  5640. align-self:center;
  5641. padding:2px 2px 2px 0px;
  5642. box-sizing:border-box;
  5643. width:100%;
  5644. }
  5645. #u81091_text {
  5646. border-width:0px;
  5647. word-wrap:break-word;
  5648. text-transform:none;
  5649. visibility:hidden;
  5650. }
  5651. #u81092_img {
  5652. border-width:0px;
  5653. position:absolute;
  5654. left:0px;
  5655. top:0px;
  5656. width:73px;
  5657. height:35px;
  5658. }
  5659. #u81092 {
  5660. border-width:0px;
  5661. position:absolute;
  5662. left:949px;
  5663. top:190px;
  5664. width:73px;
  5665. height:35px;
  5666. display:flex;
  5667. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5668. font-weight:400;
  5669. font-style:normal;
  5670. font-size:12px;
  5671. color:#606266;
  5672. }
  5673. #u81092 .text {
  5674. position:absolute;
  5675. align-self:center;
  5676. padding:2px 2px 2px 0px;
  5677. box-sizing:border-box;
  5678. width:100%;
  5679. }
  5680. #u81092_text {
  5681. border-width:0px;
  5682. word-wrap:break-word;
  5683. text-transform:none;
  5684. visibility:hidden;
  5685. }
  5686. #u81093_img {
  5687. border-width:0px;
  5688. position:absolute;
  5689. left:0px;
  5690. top:0px;
  5691. width:73px;
  5692. height:35px;
  5693. }
  5694. #u81093 {
  5695. border-width:0px;
  5696. position:absolute;
  5697. left:1022px;
  5698. top:190px;
  5699. width:73px;
  5700. height:35px;
  5701. display:flex;
  5702. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5703. font-weight:400;
  5704. font-style:normal;
  5705. font-size:12px;
  5706. color:#606266;
  5707. }
  5708. #u81093 .text {
  5709. position:absolute;
  5710. align-self:center;
  5711. padding:2px 2px 2px 0px;
  5712. box-sizing:border-box;
  5713. width:100%;
  5714. }
  5715. #u81093_text {
  5716. border-width:0px;
  5717. word-wrap:break-word;
  5718. text-transform:none;
  5719. visibility:hidden;
  5720. }
  5721. #u81094_img {
  5722. border-width:0px;
  5723. position:absolute;
  5724. left:0px;
  5725. top:0px;
  5726. width:69px;
  5727. height:35px;
  5728. }
  5729. #u81094 {
  5730. border-width:0px;
  5731. position:absolute;
  5732. left:1095px;
  5733. top:190px;
  5734. width:69px;
  5735. height:35px;
  5736. display:flex;
  5737. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5738. font-weight:400;
  5739. font-style:normal;
  5740. font-size:12px;
  5741. color:#606266;
  5742. }
  5743. #u81094 .text {
  5744. position:absolute;
  5745. align-self:center;
  5746. padding:2px 2px 2px 0px;
  5747. box-sizing:border-box;
  5748. width:100%;
  5749. }
  5750. #u81094_text {
  5751. border-width:0px;
  5752. word-wrap:break-word;
  5753. text-transform:none;
  5754. visibility:hidden;
  5755. }
  5756. #u81095_img {
  5757. border-width:0px;
  5758. position:absolute;
  5759. left:0px;
  5760. top:0px;
  5761. width:48px;
  5762. height:35px;
  5763. }
  5764. #u81095 {
  5765. border-width:0px;
  5766. position:absolute;
  5767. left:1164px;
  5768. top:190px;
  5769. width:48px;
  5770. height:35px;
  5771. display:flex;
  5772. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5773. font-weight:400;
  5774. font-style:normal;
  5775. font-size:12px;
  5776. color:#606266;
  5777. }
  5778. #u81095 .text {
  5779. position:absolute;
  5780. align-self:center;
  5781. padding:2px 2px 2px 0px;
  5782. box-sizing:border-box;
  5783. width:100%;
  5784. }
  5785. #u81095_text {
  5786. border-width:0px;
  5787. word-wrap:break-word;
  5788. text-transform:none;
  5789. visibility:hidden;
  5790. }
  5791. #u81096_img {
  5792. border-width:0px;
  5793. position:absolute;
  5794. left:0px;
  5795. top:0px;
  5796. width:73px;
  5797. height:34px;
  5798. }
  5799. #u81096 {
  5800. border-width:0px;
  5801. position:absolute;
  5802. left:0px;
  5803. top:225px;
  5804. width:73px;
  5805. height:34px;
  5806. display:flex;
  5807. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5808. font-weight:400;
  5809. font-style:normal;
  5810. font-size:12px;
  5811. color:#606266;
  5812. }
  5813. #u81096 .text {
  5814. position:absolute;
  5815. align-self:center;
  5816. padding:2px 2px 2px 0px;
  5817. box-sizing:border-box;
  5818. width:100%;
  5819. }
  5820. #u81096_text {
  5821. border-width:0px;
  5822. word-wrap:break-word;
  5823. text-transform:none;
  5824. visibility:hidden;
  5825. }
  5826. #u81097_img {
  5827. border-width:0px;
  5828. position:absolute;
  5829. left:0px;
  5830. top:0px;
  5831. width:73px;
  5832. height:34px;
  5833. }
  5834. #u81097 {
  5835. border-width:0px;
  5836. position:absolute;
  5837. left:73px;
  5838. top:225px;
  5839. width:73px;
  5840. height:34px;
  5841. display:flex;
  5842. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5843. font-weight:400;
  5844. font-style:normal;
  5845. font-size:12px;
  5846. color:#606266;
  5847. }
  5848. #u81097 .text {
  5849. position:absolute;
  5850. align-self:center;
  5851. padding:2px 2px 2px 0px;
  5852. box-sizing:border-box;
  5853. width:100%;
  5854. }
  5855. #u81097_text {
  5856. border-width:0px;
  5857. word-wrap:break-word;
  5858. text-transform:none;
  5859. visibility:hidden;
  5860. }
  5861. #u81098_img {
  5862. border-width:0px;
  5863. position:absolute;
  5864. left:0px;
  5865. top:0px;
  5866. width:73px;
  5867. height:34px;
  5868. }
  5869. #u81098 {
  5870. border-width:0px;
  5871. position:absolute;
  5872. left:146px;
  5873. top:225px;
  5874. width:73px;
  5875. height:34px;
  5876. display:flex;
  5877. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5878. font-weight:400;
  5879. font-style:normal;
  5880. font-size:12px;
  5881. color:#606266;
  5882. }
  5883. #u81098 .text {
  5884. position:absolute;
  5885. align-self:center;
  5886. padding:2px 2px 2px 0px;
  5887. box-sizing:border-box;
  5888. width:100%;
  5889. }
  5890. #u81098_text {
  5891. border-width:0px;
  5892. word-wrap:break-word;
  5893. text-transform:none;
  5894. visibility:hidden;
  5895. }
  5896. #u81099_img {
  5897. border-width:0px;
  5898. position:absolute;
  5899. left:0px;
  5900. top:0px;
  5901. width:73px;
  5902. height:34px;
  5903. }
  5904. #u81099 {
  5905. border-width:0px;
  5906. position:absolute;
  5907. left:219px;
  5908. top:225px;
  5909. width:73px;
  5910. height:34px;
  5911. display:flex;
  5912. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5913. font-weight:400;
  5914. font-style:normal;
  5915. font-size:12px;
  5916. color:#606266;
  5917. }
  5918. #u81099 .text {
  5919. position:absolute;
  5920. align-self:center;
  5921. padding:2px 2px 2px 0px;
  5922. box-sizing:border-box;
  5923. width:100%;
  5924. }
  5925. #u81099_text {
  5926. border-width:0px;
  5927. word-wrap:break-word;
  5928. text-transform:none;
  5929. visibility:hidden;
  5930. }
  5931. #u81100_img {
  5932. border-width:0px;
  5933. position:absolute;
  5934. left:0px;
  5935. top:0px;
  5936. width:73px;
  5937. height:34px;
  5938. }
  5939. #u81100 {
  5940. border-width:0px;
  5941. position:absolute;
  5942. left:292px;
  5943. top:225px;
  5944. width:73px;
  5945. height:34px;
  5946. display:flex;
  5947. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5948. font-weight:400;
  5949. font-style:normal;
  5950. font-size:12px;
  5951. color:#606266;
  5952. }
  5953. #u81100 .text {
  5954. position:absolute;
  5955. align-self:center;
  5956. padding:2px 2px 2px 0px;
  5957. box-sizing:border-box;
  5958. width:100%;
  5959. }
  5960. #u81100_text {
  5961. border-width:0px;
  5962. word-wrap:break-word;
  5963. text-transform:none;
  5964. visibility:hidden;
  5965. }
  5966. #u81101_img {
  5967. border-width:0px;
  5968. position:absolute;
  5969. left:0px;
  5970. top:0px;
  5971. width:73px;
  5972. height:34px;
  5973. }
  5974. #u81101 {
  5975. border-width:0px;
  5976. position:absolute;
  5977. left:365px;
  5978. top:225px;
  5979. width:73px;
  5980. height:34px;
  5981. display:flex;
  5982. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5983. font-weight:400;
  5984. font-style:normal;
  5985. font-size:12px;
  5986. color:#606266;
  5987. }
  5988. #u81101 .text {
  5989. position:absolute;
  5990. align-self:center;
  5991. padding:2px 2px 2px 0px;
  5992. box-sizing:border-box;
  5993. width:100%;
  5994. }
  5995. #u81101_text {
  5996. border-width:0px;
  5997. word-wrap:break-word;
  5998. text-transform:none;
  5999. visibility:hidden;
  6000. }
  6001. #u81102_img {
  6002. border-width:0px;
  6003. position:absolute;
  6004. left:0px;
  6005. top:0px;
  6006. width:73px;
  6007. height:34px;
  6008. }
  6009. #u81102 {
  6010. border-width:0px;
  6011. position:absolute;
  6012. left:438px;
  6013. top:225px;
  6014. width:73px;
  6015. height:34px;
  6016. display:flex;
  6017. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6018. font-weight:400;
  6019. font-style:normal;
  6020. font-size:12px;
  6021. color:#606266;
  6022. }
  6023. #u81102 .text {
  6024. position:absolute;
  6025. align-self:center;
  6026. padding:2px 2px 2px 0px;
  6027. box-sizing:border-box;
  6028. width:100%;
  6029. }
  6030. #u81102_text {
  6031. border-width:0px;
  6032. word-wrap:break-word;
  6033. text-transform:none;
  6034. visibility:hidden;
  6035. }
  6036. #u81103_img {
  6037. border-width:0px;
  6038. position:absolute;
  6039. left:0px;
  6040. top:0px;
  6041. width:73px;
  6042. height:34px;
  6043. }
  6044. #u81103 {
  6045. border-width:0px;
  6046. position:absolute;
  6047. left:511px;
  6048. top:225px;
  6049. width:73px;
  6050. height:34px;
  6051. display:flex;
  6052. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6053. font-weight:400;
  6054. font-style:normal;
  6055. font-size:12px;
  6056. color:#606266;
  6057. }
  6058. #u81103 .text {
  6059. position:absolute;
  6060. align-self:center;
  6061. padding:2px 2px 2px 0px;
  6062. box-sizing:border-box;
  6063. width:100%;
  6064. }
  6065. #u81103_text {
  6066. border-width:0px;
  6067. word-wrap:break-word;
  6068. text-transform:none;
  6069. visibility:hidden;
  6070. }
  6071. #u81104_img {
  6072. border-width:0px;
  6073. position:absolute;
  6074. left:0px;
  6075. top:0px;
  6076. width:73px;
  6077. height:34px;
  6078. }
  6079. #u81104 {
  6080. border-width:0px;
  6081. position:absolute;
  6082. left:584px;
  6083. top:225px;
  6084. width:73px;
  6085. height:34px;
  6086. display:flex;
  6087. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6088. font-weight:400;
  6089. font-style:normal;
  6090. font-size:12px;
  6091. color:#606266;
  6092. }
  6093. #u81104 .text {
  6094. position:absolute;
  6095. align-self:center;
  6096. padding:2px 2px 2px 0px;
  6097. box-sizing:border-box;
  6098. width:100%;
  6099. }
  6100. #u81104_text {
  6101. border-width:0px;
  6102. word-wrap:break-word;
  6103. text-transform:none;
  6104. visibility:hidden;
  6105. }
  6106. #u81105_img {
  6107. border-width:0px;
  6108. position:absolute;
  6109. left:0px;
  6110. top:0px;
  6111. width:73px;
  6112. height:34px;
  6113. }
  6114. #u81105 {
  6115. border-width:0px;
  6116. position:absolute;
  6117. left:657px;
  6118. top:225px;
  6119. width:73px;
  6120. height:34px;
  6121. display:flex;
  6122. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6123. font-weight:400;
  6124. font-style:normal;
  6125. font-size:12px;
  6126. color:#606266;
  6127. }
  6128. #u81105 .text {
  6129. position:absolute;
  6130. align-self:center;
  6131. padding:2px 2px 2px 0px;
  6132. box-sizing:border-box;
  6133. width:100%;
  6134. }
  6135. #u81105_text {
  6136. border-width:0px;
  6137. word-wrap:break-word;
  6138. text-transform:none;
  6139. visibility:hidden;
  6140. }
  6141. #u81106_img {
  6142. border-width:0px;
  6143. position:absolute;
  6144. left:0px;
  6145. top:0px;
  6146. width:73px;
  6147. height:34px;
  6148. }
  6149. #u81106 {
  6150. border-width:0px;
  6151. position:absolute;
  6152. left:730px;
  6153. top:225px;
  6154. width:73px;
  6155. height:34px;
  6156. display:flex;
  6157. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6158. font-weight:400;
  6159. font-style:normal;
  6160. font-size:12px;
  6161. color:#606266;
  6162. }
  6163. #u81106 .text {
  6164. position:absolute;
  6165. align-self:center;
  6166. padding:2px 2px 2px 0px;
  6167. box-sizing:border-box;
  6168. width:100%;
  6169. }
  6170. #u81106_text {
  6171. border-width:0px;
  6172. word-wrap:break-word;
  6173. text-transform:none;
  6174. visibility:hidden;
  6175. }
  6176. #u81107_img {
  6177. border-width:0px;
  6178. position:absolute;
  6179. left:0px;
  6180. top:0px;
  6181. width:73px;
  6182. height:34px;
  6183. }
  6184. #u81107 {
  6185. border-width:0px;
  6186. position:absolute;
  6187. left:803px;
  6188. top:225px;
  6189. width:73px;
  6190. height:34px;
  6191. display:flex;
  6192. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6193. font-weight:400;
  6194. font-style:normal;
  6195. font-size:12px;
  6196. color:#606266;
  6197. }
  6198. #u81107 .text {
  6199. position:absolute;
  6200. align-self:center;
  6201. padding:2px 2px 2px 0px;
  6202. box-sizing:border-box;
  6203. width:100%;
  6204. }
  6205. #u81107_text {
  6206. border-width:0px;
  6207. word-wrap:break-word;
  6208. text-transform:none;
  6209. visibility:hidden;
  6210. }
  6211. #u81108_img {
  6212. border-width:0px;
  6213. position:absolute;
  6214. left:0px;
  6215. top:0px;
  6216. width:73px;
  6217. height:34px;
  6218. }
  6219. #u81108 {
  6220. border-width:0px;
  6221. position:absolute;
  6222. left:876px;
  6223. top:225px;
  6224. width:73px;
  6225. height:34px;
  6226. display:flex;
  6227. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6228. font-weight:400;
  6229. font-style:normal;
  6230. font-size:12px;
  6231. color:#606266;
  6232. }
  6233. #u81108 .text {
  6234. position:absolute;
  6235. align-self:center;
  6236. padding:2px 2px 2px 0px;
  6237. box-sizing:border-box;
  6238. width:100%;
  6239. }
  6240. #u81108_text {
  6241. border-width:0px;
  6242. word-wrap:break-word;
  6243. text-transform:none;
  6244. visibility:hidden;
  6245. }
  6246. #u81109_img {
  6247. border-width:0px;
  6248. position:absolute;
  6249. left:0px;
  6250. top:0px;
  6251. width:73px;
  6252. height:34px;
  6253. }
  6254. #u81109 {
  6255. border-width:0px;
  6256. position:absolute;
  6257. left:949px;
  6258. top:225px;
  6259. width:73px;
  6260. height:34px;
  6261. display:flex;
  6262. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6263. font-weight:400;
  6264. font-style:normal;
  6265. font-size:12px;
  6266. color:#606266;
  6267. }
  6268. #u81109 .text {
  6269. position:absolute;
  6270. align-self:center;
  6271. padding:2px 2px 2px 0px;
  6272. box-sizing:border-box;
  6273. width:100%;
  6274. }
  6275. #u81109_text {
  6276. border-width:0px;
  6277. word-wrap:break-word;
  6278. text-transform:none;
  6279. visibility:hidden;
  6280. }
  6281. #u81110_img {
  6282. border-width:0px;
  6283. position:absolute;
  6284. left:0px;
  6285. top:0px;
  6286. width:73px;
  6287. height:34px;
  6288. }
  6289. #u81110 {
  6290. border-width:0px;
  6291. position:absolute;
  6292. left:1022px;
  6293. top:225px;
  6294. width:73px;
  6295. height:34px;
  6296. display:flex;
  6297. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6298. font-weight:400;
  6299. font-style:normal;
  6300. font-size:12px;
  6301. color:#606266;
  6302. }
  6303. #u81110 .text {
  6304. position:absolute;
  6305. align-self:center;
  6306. padding:2px 2px 2px 0px;
  6307. box-sizing:border-box;
  6308. width:100%;
  6309. }
  6310. #u81110_text {
  6311. border-width:0px;
  6312. word-wrap:break-word;
  6313. text-transform:none;
  6314. visibility:hidden;
  6315. }
  6316. #u81111_img {
  6317. border-width:0px;
  6318. position:absolute;
  6319. left:0px;
  6320. top:0px;
  6321. width:69px;
  6322. height:34px;
  6323. }
  6324. #u81111 {
  6325. border-width:0px;
  6326. position:absolute;
  6327. left:1095px;
  6328. top:225px;
  6329. width:69px;
  6330. height:34px;
  6331. display:flex;
  6332. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6333. font-weight:400;
  6334. font-style:normal;
  6335. font-size:12px;
  6336. color:#606266;
  6337. }
  6338. #u81111 .text {
  6339. position:absolute;
  6340. align-self:center;
  6341. padding:2px 2px 2px 0px;
  6342. box-sizing:border-box;
  6343. width:100%;
  6344. }
  6345. #u81111_text {
  6346. border-width:0px;
  6347. word-wrap:break-word;
  6348. text-transform:none;
  6349. visibility:hidden;
  6350. }
  6351. #u81112_img {
  6352. border-width:0px;
  6353. position:absolute;
  6354. left:0px;
  6355. top:0px;
  6356. width:48px;
  6357. height:34px;
  6358. }
  6359. #u81112 {
  6360. border-width:0px;
  6361. position:absolute;
  6362. left:1164px;
  6363. top:225px;
  6364. width:48px;
  6365. height:34px;
  6366. display:flex;
  6367. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6368. font-weight:400;
  6369. font-style:normal;
  6370. font-size:12px;
  6371. color:#606266;
  6372. }
  6373. #u81112 .text {
  6374. position:absolute;
  6375. align-self:center;
  6376. padding:2px 2px 2px 0px;
  6377. box-sizing:border-box;
  6378. width:100%;
  6379. }
  6380. #u81112_text {
  6381. border-width:0px;
  6382. word-wrap:break-word;
  6383. text-transform:none;
  6384. visibility:hidden;
  6385. }
  6386. #u81113_img {
  6387. border-width:0px;
  6388. position:absolute;
  6389. left:0px;
  6390. top:0px;
  6391. width:73px;
  6392. height:32px;
  6393. }
  6394. #u81113 {
  6395. border-width:0px;
  6396. position:absolute;
  6397. left:0px;
  6398. top:259px;
  6399. width:73px;
  6400. height:32px;
  6401. display:flex;
  6402. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6403. font-weight:400;
  6404. font-style:normal;
  6405. font-size:12px;
  6406. color:#606266;
  6407. }
  6408. #u81113 .text {
  6409. position:absolute;
  6410. align-self:center;
  6411. padding:2px 2px 2px 0px;
  6412. box-sizing:border-box;
  6413. width:100%;
  6414. }
  6415. #u81113_text {
  6416. border-width:0px;
  6417. word-wrap:break-word;
  6418. text-transform:none;
  6419. visibility:hidden;
  6420. }
  6421. #u81114_img {
  6422. border-width:0px;
  6423. position:absolute;
  6424. left:0px;
  6425. top:0px;
  6426. width:73px;
  6427. height:32px;
  6428. }
  6429. #u81114 {
  6430. border-width:0px;
  6431. position:absolute;
  6432. left:73px;
  6433. top:259px;
  6434. width:73px;
  6435. height:32px;
  6436. display:flex;
  6437. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6438. font-weight:400;
  6439. font-style:normal;
  6440. font-size:12px;
  6441. color:#606266;
  6442. }
  6443. #u81114 .text {
  6444. position:absolute;
  6445. align-self:center;
  6446. padding:2px 2px 2px 0px;
  6447. box-sizing:border-box;
  6448. width:100%;
  6449. }
  6450. #u81114_text {
  6451. border-width:0px;
  6452. word-wrap:break-word;
  6453. text-transform:none;
  6454. visibility:hidden;
  6455. }
  6456. #u81115_img {
  6457. border-width:0px;
  6458. position:absolute;
  6459. left:0px;
  6460. top:0px;
  6461. width:73px;
  6462. height:32px;
  6463. }
  6464. #u81115 {
  6465. border-width:0px;
  6466. position:absolute;
  6467. left:146px;
  6468. top:259px;
  6469. width:73px;
  6470. height:32px;
  6471. display:flex;
  6472. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6473. font-weight:400;
  6474. font-style:normal;
  6475. font-size:12px;
  6476. color:#606266;
  6477. }
  6478. #u81115 .text {
  6479. position:absolute;
  6480. align-self:center;
  6481. padding:2px 2px 2px 0px;
  6482. box-sizing:border-box;
  6483. width:100%;
  6484. }
  6485. #u81115_text {
  6486. border-width:0px;
  6487. word-wrap:break-word;
  6488. text-transform:none;
  6489. visibility:hidden;
  6490. }
  6491. #u81116_img {
  6492. border-width:0px;
  6493. position:absolute;
  6494. left:0px;
  6495. top:0px;
  6496. width:73px;
  6497. height:32px;
  6498. }
  6499. #u81116 {
  6500. border-width:0px;
  6501. position:absolute;
  6502. left:219px;
  6503. top:259px;
  6504. width:73px;
  6505. height:32px;
  6506. display:flex;
  6507. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6508. font-weight:400;
  6509. font-style:normal;
  6510. font-size:12px;
  6511. color:#606266;
  6512. }
  6513. #u81116 .text {
  6514. position:absolute;
  6515. align-self:center;
  6516. padding:2px 2px 2px 0px;
  6517. box-sizing:border-box;
  6518. width:100%;
  6519. }
  6520. #u81116_text {
  6521. border-width:0px;
  6522. word-wrap:break-word;
  6523. text-transform:none;
  6524. visibility:hidden;
  6525. }
  6526. #u81117_img {
  6527. border-width:0px;
  6528. position:absolute;
  6529. left:0px;
  6530. top:0px;
  6531. width:73px;
  6532. height:32px;
  6533. }
  6534. #u81117 {
  6535. border-width:0px;
  6536. position:absolute;
  6537. left:292px;
  6538. top:259px;
  6539. width:73px;
  6540. height:32px;
  6541. display:flex;
  6542. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6543. font-weight:400;
  6544. font-style:normal;
  6545. font-size:12px;
  6546. color:#606266;
  6547. }
  6548. #u81117 .text {
  6549. position:absolute;
  6550. align-self:center;
  6551. padding:2px 2px 2px 0px;
  6552. box-sizing:border-box;
  6553. width:100%;
  6554. }
  6555. #u81117_text {
  6556. border-width:0px;
  6557. word-wrap:break-word;
  6558. text-transform:none;
  6559. visibility:hidden;
  6560. }
  6561. #u81118_img {
  6562. border-width:0px;
  6563. position:absolute;
  6564. left:0px;
  6565. top:0px;
  6566. width:73px;
  6567. height:32px;
  6568. }
  6569. #u81118 {
  6570. border-width:0px;
  6571. position:absolute;
  6572. left:365px;
  6573. top:259px;
  6574. width:73px;
  6575. height:32px;
  6576. display:flex;
  6577. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6578. font-weight:400;
  6579. font-style:normal;
  6580. font-size:12px;
  6581. color:#606266;
  6582. }
  6583. #u81118 .text {
  6584. position:absolute;
  6585. align-self:center;
  6586. padding:2px 2px 2px 0px;
  6587. box-sizing:border-box;
  6588. width:100%;
  6589. }
  6590. #u81118_text {
  6591. border-width:0px;
  6592. word-wrap:break-word;
  6593. text-transform:none;
  6594. visibility:hidden;
  6595. }
  6596. #u81119_img {
  6597. border-width:0px;
  6598. position:absolute;
  6599. left:0px;
  6600. top:0px;
  6601. width:73px;
  6602. height:32px;
  6603. }
  6604. #u81119 {
  6605. border-width:0px;
  6606. position:absolute;
  6607. left:438px;
  6608. top:259px;
  6609. width:73px;
  6610. height:32px;
  6611. display:flex;
  6612. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6613. font-weight:400;
  6614. font-style:normal;
  6615. font-size:12px;
  6616. color:#606266;
  6617. }
  6618. #u81119 .text {
  6619. position:absolute;
  6620. align-self:center;
  6621. padding:2px 2px 2px 0px;
  6622. box-sizing:border-box;
  6623. width:100%;
  6624. }
  6625. #u81119_text {
  6626. border-width:0px;
  6627. word-wrap:break-word;
  6628. text-transform:none;
  6629. visibility:hidden;
  6630. }
  6631. #u81120_img {
  6632. border-width:0px;
  6633. position:absolute;
  6634. left:0px;
  6635. top:0px;
  6636. width:73px;
  6637. height:32px;
  6638. }
  6639. #u81120 {
  6640. border-width:0px;
  6641. position:absolute;
  6642. left:511px;
  6643. top:259px;
  6644. width:73px;
  6645. height:32px;
  6646. display:flex;
  6647. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6648. font-weight:400;
  6649. font-style:normal;
  6650. font-size:12px;
  6651. color:#606266;
  6652. }
  6653. #u81120 .text {
  6654. position:absolute;
  6655. align-self:center;
  6656. padding:2px 2px 2px 0px;
  6657. box-sizing:border-box;
  6658. width:100%;
  6659. }
  6660. #u81120_text {
  6661. border-width:0px;
  6662. word-wrap:break-word;
  6663. text-transform:none;
  6664. visibility:hidden;
  6665. }
  6666. #u81121_img {
  6667. border-width:0px;
  6668. position:absolute;
  6669. left:0px;
  6670. top:0px;
  6671. width:73px;
  6672. height:32px;
  6673. }
  6674. #u81121 {
  6675. border-width:0px;
  6676. position:absolute;
  6677. left:584px;
  6678. top:259px;
  6679. width:73px;
  6680. height:32px;
  6681. display:flex;
  6682. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6683. font-weight:400;
  6684. font-style:normal;
  6685. font-size:12px;
  6686. color:#606266;
  6687. }
  6688. #u81121 .text {
  6689. position:absolute;
  6690. align-self:center;
  6691. padding:2px 2px 2px 0px;
  6692. box-sizing:border-box;
  6693. width:100%;
  6694. }
  6695. #u81121_text {
  6696. border-width:0px;
  6697. word-wrap:break-word;
  6698. text-transform:none;
  6699. visibility:hidden;
  6700. }
  6701. #u81122_img {
  6702. border-width:0px;
  6703. position:absolute;
  6704. left:0px;
  6705. top:0px;
  6706. width:73px;
  6707. height:32px;
  6708. }
  6709. #u81122 {
  6710. border-width:0px;
  6711. position:absolute;
  6712. left:657px;
  6713. top:259px;
  6714. width:73px;
  6715. height:32px;
  6716. display:flex;
  6717. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6718. font-weight:400;
  6719. font-style:normal;
  6720. font-size:12px;
  6721. color:#606266;
  6722. }
  6723. #u81122 .text {
  6724. position:absolute;
  6725. align-self:center;
  6726. padding:2px 2px 2px 0px;
  6727. box-sizing:border-box;
  6728. width:100%;
  6729. }
  6730. #u81122_text {
  6731. border-width:0px;
  6732. word-wrap:break-word;
  6733. text-transform:none;
  6734. visibility:hidden;
  6735. }
  6736. #u81123_img {
  6737. border-width:0px;
  6738. position:absolute;
  6739. left:0px;
  6740. top:0px;
  6741. width:73px;
  6742. height:32px;
  6743. }
  6744. #u81123 {
  6745. border-width:0px;
  6746. position:absolute;
  6747. left:730px;
  6748. top:259px;
  6749. width:73px;
  6750. height:32px;
  6751. display:flex;
  6752. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6753. font-weight:400;
  6754. font-style:normal;
  6755. font-size:12px;
  6756. color:#606266;
  6757. }
  6758. #u81123 .text {
  6759. position:absolute;
  6760. align-self:center;
  6761. padding:2px 2px 2px 0px;
  6762. box-sizing:border-box;
  6763. width:100%;
  6764. }
  6765. #u81123_text {
  6766. border-width:0px;
  6767. word-wrap:break-word;
  6768. text-transform:none;
  6769. visibility:hidden;
  6770. }
  6771. #u81124_img {
  6772. border-width:0px;
  6773. position:absolute;
  6774. left:0px;
  6775. top:0px;
  6776. width:73px;
  6777. height:32px;
  6778. }
  6779. #u81124 {
  6780. border-width:0px;
  6781. position:absolute;
  6782. left:803px;
  6783. top:259px;
  6784. width:73px;
  6785. height:32px;
  6786. display:flex;
  6787. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6788. font-weight:400;
  6789. font-style:normal;
  6790. font-size:12px;
  6791. color:#606266;
  6792. }
  6793. #u81124 .text {
  6794. position:absolute;
  6795. align-self:center;
  6796. padding:2px 2px 2px 0px;
  6797. box-sizing:border-box;
  6798. width:100%;
  6799. }
  6800. #u81124_text {
  6801. border-width:0px;
  6802. word-wrap:break-word;
  6803. text-transform:none;
  6804. visibility:hidden;
  6805. }
  6806. #u81125_img {
  6807. border-width:0px;
  6808. position:absolute;
  6809. left:0px;
  6810. top:0px;
  6811. width:73px;
  6812. height:32px;
  6813. }
  6814. #u81125 {
  6815. border-width:0px;
  6816. position:absolute;
  6817. left:876px;
  6818. top:259px;
  6819. width:73px;
  6820. height:32px;
  6821. display:flex;
  6822. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6823. font-weight:400;
  6824. font-style:normal;
  6825. font-size:12px;
  6826. color:#606266;
  6827. }
  6828. #u81125 .text {
  6829. position:absolute;
  6830. align-self:center;
  6831. padding:2px 2px 2px 0px;
  6832. box-sizing:border-box;
  6833. width:100%;
  6834. }
  6835. #u81125_text {
  6836. border-width:0px;
  6837. word-wrap:break-word;
  6838. text-transform:none;
  6839. visibility:hidden;
  6840. }
  6841. #u81126_img {
  6842. border-width:0px;
  6843. position:absolute;
  6844. left:0px;
  6845. top:0px;
  6846. width:73px;
  6847. height:32px;
  6848. }
  6849. #u81126 {
  6850. border-width:0px;
  6851. position:absolute;
  6852. left:949px;
  6853. top:259px;
  6854. width:73px;
  6855. height:32px;
  6856. display:flex;
  6857. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6858. font-weight:400;
  6859. font-style:normal;
  6860. font-size:12px;
  6861. color:#606266;
  6862. }
  6863. #u81126 .text {
  6864. position:absolute;
  6865. align-self:center;
  6866. padding:2px 2px 2px 0px;
  6867. box-sizing:border-box;
  6868. width:100%;
  6869. }
  6870. #u81126_text {
  6871. border-width:0px;
  6872. word-wrap:break-word;
  6873. text-transform:none;
  6874. visibility:hidden;
  6875. }
  6876. #u81127_img {
  6877. border-width:0px;
  6878. position:absolute;
  6879. left:0px;
  6880. top:0px;
  6881. width:73px;
  6882. height:32px;
  6883. }
  6884. #u81127 {
  6885. border-width:0px;
  6886. position:absolute;
  6887. left:1022px;
  6888. top:259px;
  6889. width:73px;
  6890. height:32px;
  6891. display:flex;
  6892. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6893. font-weight:400;
  6894. font-style:normal;
  6895. font-size:12px;
  6896. color:#606266;
  6897. }
  6898. #u81127 .text {
  6899. position:absolute;
  6900. align-self:center;
  6901. padding:2px 2px 2px 0px;
  6902. box-sizing:border-box;
  6903. width:100%;
  6904. }
  6905. #u81127_text {
  6906. border-width:0px;
  6907. word-wrap:break-word;
  6908. text-transform:none;
  6909. visibility:hidden;
  6910. }
  6911. #u81128_img {
  6912. border-width:0px;
  6913. position:absolute;
  6914. left:0px;
  6915. top:0px;
  6916. width:69px;
  6917. height:32px;
  6918. }
  6919. #u81128 {
  6920. border-width:0px;
  6921. position:absolute;
  6922. left:1095px;
  6923. top:259px;
  6924. width:69px;
  6925. height:32px;
  6926. display:flex;
  6927. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6928. font-weight:400;
  6929. font-style:normal;
  6930. font-size:12px;
  6931. color:#606266;
  6932. }
  6933. #u81128 .text {
  6934. position:absolute;
  6935. align-self:center;
  6936. padding:2px 2px 2px 0px;
  6937. box-sizing:border-box;
  6938. width:100%;
  6939. }
  6940. #u81128_text {
  6941. border-width:0px;
  6942. word-wrap:break-word;
  6943. text-transform:none;
  6944. visibility:hidden;
  6945. }
  6946. #u81129_img {
  6947. border-width:0px;
  6948. position:absolute;
  6949. left:0px;
  6950. top:0px;
  6951. width:48px;
  6952. height:32px;
  6953. }
  6954. #u81129 {
  6955. border-width:0px;
  6956. position:absolute;
  6957. left:1164px;
  6958. top:259px;
  6959. width:48px;
  6960. height:32px;
  6961. display:flex;
  6962. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6963. font-weight:400;
  6964. font-style:normal;
  6965. font-size:12px;
  6966. color:#606266;
  6967. }
  6968. #u81129 .text {
  6969. position:absolute;
  6970. align-self:center;
  6971. padding:2px 2px 2px 0px;
  6972. box-sizing:border-box;
  6973. width:100%;
  6974. }
  6975. #u81129_text {
  6976. border-width:0px;
  6977. word-wrap:break-word;
  6978. text-transform:none;
  6979. visibility:hidden;
  6980. }
  6981. #u81130_img {
  6982. border-width:0px;
  6983. position:absolute;
  6984. left:0px;
  6985. top:0px;
  6986. width:73px;
  6987. height:30px;
  6988. }
  6989. #u81130 {
  6990. border-width:0px;
  6991. position:absolute;
  6992. left:0px;
  6993. top:291px;
  6994. width:73px;
  6995. height:30px;
  6996. display:flex;
  6997. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6998. font-weight:400;
  6999. font-style:normal;
  7000. font-size:12px;
  7001. color:#606266;
  7002. }
  7003. #u81130 .text {
  7004. position:absolute;
  7005. align-self:center;
  7006. padding:2px 2px 2px 0px;
  7007. box-sizing:border-box;
  7008. width:100%;
  7009. }
  7010. #u81130_text {
  7011. border-width:0px;
  7012. word-wrap:break-word;
  7013. text-transform:none;
  7014. visibility:hidden;
  7015. }
  7016. #u81131_img {
  7017. border-width:0px;
  7018. position:absolute;
  7019. left:0px;
  7020. top:0px;
  7021. width:73px;
  7022. height:30px;
  7023. }
  7024. #u81131 {
  7025. border-width:0px;
  7026. position:absolute;
  7027. left:73px;
  7028. top:291px;
  7029. width:73px;
  7030. height:30px;
  7031. display:flex;
  7032. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7033. font-weight:400;
  7034. font-style:normal;
  7035. font-size:12px;
  7036. color:#606266;
  7037. }
  7038. #u81131 .text {
  7039. position:absolute;
  7040. align-self:center;
  7041. padding:2px 2px 2px 0px;
  7042. box-sizing:border-box;
  7043. width:100%;
  7044. }
  7045. #u81131_text {
  7046. border-width:0px;
  7047. word-wrap:break-word;
  7048. text-transform:none;
  7049. visibility:hidden;
  7050. }
  7051. #u81132_img {
  7052. border-width:0px;
  7053. position:absolute;
  7054. left:0px;
  7055. top:0px;
  7056. width:73px;
  7057. height:30px;
  7058. }
  7059. #u81132 {
  7060. border-width:0px;
  7061. position:absolute;
  7062. left:146px;
  7063. top:291px;
  7064. width:73px;
  7065. height:30px;
  7066. display:flex;
  7067. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7068. font-weight:400;
  7069. font-style:normal;
  7070. font-size:12px;
  7071. color:#606266;
  7072. }
  7073. #u81132 .text {
  7074. position:absolute;
  7075. align-self:center;
  7076. padding:2px 2px 2px 0px;
  7077. box-sizing:border-box;
  7078. width:100%;
  7079. }
  7080. #u81132_text {
  7081. border-width:0px;
  7082. word-wrap:break-word;
  7083. text-transform:none;
  7084. visibility:hidden;
  7085. }
  7086. #u81133_img {
  7087. border-width:0px;
  7088. position:absolute;
  7089. left:0px;
  7090. top:0px;
  7091. width:73px;
  7092. height:30px;
  7093. }
  7094. #u81133 {
  7095. border-width:0px;
  7096. position:absolute;
  7097. left:219px;
  7098. top:291px;
  7099. width:73px;
  7100. height:30px;
  7101. display:flex;
  7102. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7103. font-weight:400;
  7104. font-style:normal;
  7105. font-size:12px;
  7106. color:#606266;
  7107. }
  7108. #u81133 .text {
  7109. position:absolute;
  7110. align-self:center;
  7111. padding:2px 2px 2px 0px;
  7112. box-sizing:border-box;
  7113. width:100%;
  7114. }
  7115. #u81133_text {
  7116. border-width:0px;
  7117. word-wrap:break-word;
  7118. text-transform:none;
  7119. visibility:hidden;
  7120. }
  7121. #u81134_img {
  7122. border-width:0px;
  7123. position:absolute;
  7124. left:0px;
  7125. top:0px;
  7126. width:73px;
  7127. height:30px;
  7128. }
  7129. #u81134 {
  7130. border-width:0px;
  7131. position:absolute;
  7132. left:292px;
  7133. top:291px;
  7134. width:73px;
  7135. height:30px;
  7136. display:flex;
  7137. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7138. font-weight:400;
  7139. font-style:normal;
  7140. font-size:12px;
  7141. color:#606266;
  7142. }
  7143. #u81134 .text {
  7144. position:absolute;
  7145. align-self:center;
  7146. padding:2px 2px 2px 0px;
  7147. box-sizing:border-box;
  7148. width:100%;
  7149. }
  7150. #u81134_text {
  7151. border-width:0px;
  7152. word-wrap:break-word;
  7153. text-transform:none;
  7154. visibility:hidden;
  7155. }
  7156. #u81135_img {
  7157. border-width:0px;
  7158. position:absolute;
  7159. left:0px;
  7160. top:0px;
  7161. width:73px;
  7162. height:30px;
  7163. }
  7164. #u81135 {
  7165. border-width:0px;
  7166. position:absolute;
  7167. left:365px;
  7168. top:291px;
  7169. width:73px;
  7170. height:30px;
  7171. display:flex;
  7172. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7173. font-weight:400;
  7174. font-style:normal;
  7175. font-size:12px;
  7176. color:#606266;
  7177. }
  7178. #u81135 .text {
  7179. position:absolute;
  7180. align-self:center;
  7181. padding:2px 2px 2px 0px;
  7182. box-sizing:border-box;
  7183. width:100%;
  7184. }
  7185. #u81135_text {
  7186. border-width:0px;
  7187. word-wrap:break-word;
  7188. text-transform:none;
  7189. visibility:hidden;
  7190. }
  7191. #u81136_img {
  7192. border-width:0px;
  7193. position:absolute;
  7194. left:0px;
  7195. top:0px;
  7196. width:73px;
  7197. height:30px;
  7198. }
  7199. #u81136 {
  7200. border-width:0px;
  7201. position:absolute;
  7202. left:438px;
  7203. top:291px;
  7204. width:73px;
  7205. height:30px;
  7206. display:flex;
  7207. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7208. font-weight:400;
  7209. font-style:normal;
  7210. font-size:12px;
  7211. color:#606266;
  7212. }
  7213. #u81136 .text {
  7214. position:absolute;
  7215. align-self:center;
  7216. padding:2px 2px 2px 0px;
  7217. box-sizing:border-box;
  7218. width:100%;
  7219. }
  7220. #u81136_text {
  7221. border-width:0px;
  7222. word-wrap:break-word;
  7223. text-transform:none;
  7224. visibility:hidden;
  7225. }
  7226. #u81137_img {
  7227. border-width:0px;
  7228. position:absolute;
  7229. left:0px;
  7230. top:0px;
  7231. width:73px;
  7232. height:30px;
  7233. }
  7234. #u81137 {
  7235. border-width:0px;
  7236. position:absolute;
  7237. left:511px;
  7238. top:291px;
  7239. width:73px;
  7240. height:30px;
  7241. display:flex;
  7242. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7243. font-weight:400;
  7244. font-style:normal;
  7245. font-size:12px;
  7246. color:#606266;
  7247. }
  7248. #u81137 .text {
  7249. position:absolute;
  7250. align-self:center;
  7251. padding:2px 2px 2px 0px;
  7252. box-sizing:border-box;
  7253. width:100%;
  7254. }
  7255. #u81137_text {
  7256. border-width:0px;
  7257. word-wrap:break-word;
  7258. text-transform:none;
  7259. visibility:hidden;
  7260. }
  7261. #u81138_img {
  7262. border-width:0px;
  7263. position:absolute;
  7264. left:0px;
  7265. top:0px;
  7266. width:73px;
  7267. height:30px;
  7268. }
  7269. #u81138 {
  7270. border-width:0px;
  7271. position:absolute;
  7272. left:584px;
  7273. top:291px;
  7274. width:73px;
  7275. height:30px;
  7276. display:flex;
  7277. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7278. font-weight:400;
  7279. font-style:normal;
  7280. font-size:12px;
  7281. color:#606266;
  7282. }
  7283. #u81138 .text {
  7284. position:absolute;
  7285. align-self:center;
  7286. padding:2px 2px 2px 0px;
  7287. box-sizing:border-box;
  7288. width:100%;
  7289. }
  7290. #u81138_text {
  7291. border-width:0px;
  7292. word-wrap:break-word;
  7293. text-transform:none;
  7294. visibility:hidden;
  7295. }
  7296. #u81139_img {
  7297. border-width:0px;
  7298. position:absolute;
  7299. left:0px;
  7300. top:0px;
  7301. width:73px;
  7302. height:30px;
  7303. }
  7304. #u81139 {
  7305. border-width:0px;
  7306. position:absolute;
  7307. left:657px;
  7308. top:291px;
  7309. width:73px;
  7310. height:30px;
  7311. display:flex;
  7312. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7313. font-weight:400;
  7314. font-style:normal;
  7315. font-size:12px;
  7316. color:#606266;
  7317. }
  7318. #u81139 .text {
  7319. position:absolute;
  7320. align-self:center;
  7321. padding:2px 2px 2px 0px;
  7322. box-sizing:border-box;
  7323. width:100%;
  7324. }
  7325. #u81139_text {
  7326. border-width:0px;
  7327. word-wrap:break-word;
  7328. text-transform:none;
  7329. visibility:hidden;
  7330. }
  7331. #u81140_img {
  7332. border-width:0px;
  7333. position:absolute;
  7334. left:0px;
  7335. top:0px;
  7336. width:73px;
  7337. height:30px;
  7338. }
  7339. #u81140 {
  7340. border-width:0px;
  7341. position:absolute;
  7342. left:730px;
  7343. top:291px;
  7344. width:73px;
  7345. height:30px;
  7346. display:flex;
  7347. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7348. font-weight:400;
  7349. font-style:normal;
  7350. font-size:12px;
  7351. color:#606266;
  7352. }
  7353. #u81140 .text {
  7354. position:absolute;
  7355. align-self:center;
  7356. padding:2px 2px 2px 0px;
  7357. box-sizing:border-box;
  7358. width:100%;
  7359. }
  7360. #u81140_text {
  7361. border-width:0px;
  7362. word-wrap:break-word;
  7363. text-transform:none;
  7364. visibility:hidden;
  7365. }
  7366. #u81141_img {
  7367. border-width:0px;
  7368. position:absolute;
  7369. left:0px;
  7370. top:0px;
  7371. width:73px;
  7372. height:30px;
  7373. }
  7374. #u81141 {
  7375. border-width:0px;
  7376. position:absolute;
  7377. left:803px;
  7378. top:291px;
  7379. width:73px;
  7380. height:30px;
  7381. display:flex;
  7382. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7383. font-weight:400;
  7384. font-style:normal;
  7385. font-size:12px;
  7386. color:#606266;
  7387. }
  7388. #u81141 .text {
  7389. position:absolute;
  7390. align-self:center;
  7391. padding:2px 2px 2px 0px;
  7392. box-sizing:border-box;
  7393. width:100%;
  7394. }
  7395. #u81141_text {
  7396. border-width:0px;
  7397. word-wrap:break-word;
  7398. text-transform:none;
  7399. visibility:hidden;
  7400. }
  7401. #u81142_img {
  7402. border-width:0px;
  7403. position:absolute;
  7404. left:0px;
  7405. top:0px;
  7406. width:73px;
  7407. height:30px;
  7408. }
  7409. #u81142 {
  7410. border-width:0px;
  7411. position:absolute;
  7412. left:876px;
  7413. top:291px;
  7414. width:73px;
  7415. height:30px;
  7416. display:flex;
  7417. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7418. font-weight:400;
  7419. font-style:normal;
  7420. font-size:12px;
  7421. color:#606266;
  7422. }
  7423. #u81142 .text {
  7424. position:absolute;
  7425. align-self:center;
  7426. padding:2px 2px 2px 0px;
  7427. box-sizing:border-box;
  7428. width:100%;
  7429. }
  7430. #u81142_text {
  7431. border-width:0px;
  7432. word-wrap:break-word;
  7433. text-transform:none;
  7434. visibility:hidden;
  7435. }
  7436. #u81143_img {
  7437. border-width:0px;
  7438. position:absolute;
  7439. left:0px;
  7440. top:0px;
  7441. width:73px;
  7442. height:30px;
  7443. }
  7444. #u81143 {
  7445. border-width:0px;
  7446. position:absolute;
  7447. left:949px;
  7448. top:291px;
  7449. width:73px;
  7450. height:30px;
  7451. display:flex;
  7452. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7453. font-weight:400;
  7454. font-style:normal;
  7455. font-size:12px;
  7456. color:#606266;
  7457. }
  7458. #u81143 .text {
  7459. position:absolute;
  7460. align-self:center;
  7461. padding:2px 2px 2px 0px;
  7462. box-sizing:border-box;
  7463. width:100%;
  7464. }
  7465. #u81143_text {
  7466. border-width:0px;
  7467. word-wrap:break-word;
  7468. text-transform:none;
  7469. visibility:hidden;
  7470. }
  7471. #u81144_img {
  7472. border-width:0px;
  7473. position:absolute;
  7474. left:0px;
  7475. top:0px;
  7476. width:73px;
  7477. height:30px;
  7478. }
  7479. #u81144 {
  7480. border-width:0px;
  7481. position:absolute;
  7482. left:1022px;
  7483. top:291px;
  7484. width:73px;
  7485. height:30px;
  7486. display:flex;
  7487. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7488. font-weight:400;
  7489. font-style:normal;
  7490. font-size:12px;
  7491. color:#606266;
  7492. }
  7493. #u81144 .text {
  7494. position:absolute;
  7495. align-self:center;
  7496. padding:2px 2px 2px 0px;
  7497. box-sizing:border-box;
  7498. width:100%;
  7499. }
  7500. #u81144_text {
  7501. border-width:0px;
  7502. word-wrap:break-word;
  7503. text-transform:none;
  7504. visibility:hidden;
  7505. }
  7506. #u81145_img {
  7507. border-width:0px;
  7508. position:absolute;
  7509. left:0px;
  7510. top:0px;
  7511. width:69px;
  7512. height:30px;
  7513. }
  7514. #u81145 {
  7515. border-width:0px;
  7516. position:absolute;
  7517. left:1095px;
  7518. top:291px;
  7519. width:69px;
  7520. height:30px;
  7521. display:flex;
  7522. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7523. font-weight:400;
  7524. font-style:normal;
  7525. font-size:12px;
  7526. color:#606266;
  7527. }
  7528. #u81145 .text {
  7529. position:absolute;
  7530. align-self:center;
  7531. padding:2px 2px 2px 0px;
  7532. box-sizing:border-box;
  7533. width:100%;
  7534. }
  7535. #u81145_text {
  7536. border-width:0px;
  7537. word-wrap:break-word;
  7538. text-transform:none;
  7539. visibility:hidden;
  7540. }
  7541. #u81146_img {
  7542. border-width:0px;
  7543. position:absolute;
  7544. left:0px;
  7545. top:0px;
  7546. width:48px;
  7547. height:30px;
  7548. }
  7549. #u81146 {
  7550. border-width:0px;
  7551. position:absolute;
  7552. left:1164px;
  7553. top:291px;
  7554. width:48px;
  7555. height:30px;
  7556. display:flex;
  7557. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7558. font-weight:400;
  7559. font-style:normal;
  7560. font-size:12px;
  7561. color:#606266;
  7562. }
  7563. #u81146 .text {
  7564. position:absolute;
  7565. align-self:center;
  7566. padding:2px 2px 2px 0px;
  7567. box-sizing:border-box;
  7568. width:100%;
  7569. }
  7570. #u81146_text {
  7571. border-width:0px;
  7572. word-wrap:break-word;
  7573. text-transform:none;
  7574. visibility:hidden;
  7575. }
  7576. #u81147_div {
  7577. border-width:0px;
  7578. position:absolute;
  7579. left:0px;
  7580. top:0px;
  7581. width:55px;
  7582. height:30px;
  7583. background:inherit;
  7584. background-color:rgba(255, 255, 255, 1);
  7585. box-sizing:border-box;
  7586. border-width:1px;
  7587. border-style:solid;
  7588. border-color:rgba(170, 170, 170, 1);
  7589. border-radius:4px;
  7590. -moz-box-shadow:none;
  7591. -webkit-box-shadow:none;
  7592. box-shadow:none;
  7593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7594. font-weight:400;
  7595. font-style:normal;
  7596. font-size:12px;
  7597. color:#555555;
  7598. }
  7599. #u81147 {
  7600. border-width:0px;
  7601. position:absolute;
  7602. left:1511px;
  7603. top:301px;
  7604. width:55px;
  7605. height:30px;
  7606. display:flex;
  7607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7608. font-weight:400;
  7609. font-style:normal;
  7610. font-size:12px;
  7611. color:#555555;
  7612. }
  7613. #u81147 .text {
  7614. position:absolute;
  7615. align-self:center;
  7616. padding:5px 15px 5px 15px;
  7617. box-sizing:border-box;
  7618. width:100%;
  7619. }
  7620. #u81147_text {
  7621. border-width:0px;
  7622. white-space:nowrap;
  7623. text-transform:none;
  7624. }
  7625. #u81148_div {
  7626. border-width:0px;
  7627. position:absolute;
  7628. left:0px;
  7629. top:0px;
  7630. width:73px;
  7631. height:50px;
  7632. background:inherit;
  7633. background-color:rgba(255, 255, 255, 0);
  7634. border:none;
  7635. border-left:0px;
  7636. border-top:0px;
  7637. border-right:0px;
  7638. border-radius:0px;
  7639. border-bottom-right-radius:0px;
  7640. border-bottom-left-radius:0px;
  7641. -moz-box-shadow:none;
  7642. -webkit-box-shadow:none;
  7643. box-shadow:none;
  7644. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7645. font-weight:500;
  7646. font-style:normal;
  7647. font-size:18px;
  7648. color:#1890FF;
  7649. }
  7650. #u81148 {
  7651. border-width:0px;
  7652. position:absolute;
  7653. left:354px;
  7654. top:50px;
  7655. width:73px;
  7656. height:50px;
  7657. display:flex;
  7658. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7659. font-weight:500;
  7660. font-style:normal;
  7661. font-size:18px;
  7662. color:#1890FF;
  7663. }
  7664. #u81148 .text {
  7665. position:absolute;
  7666. align-self:center;
  7667. padding:0px 0px 0px 0px;
  7668. box-sizing:border-box;
  7669. width:100%;
  7670. }
  7671. #u81148_text {
  7672. border-width:0px;
  7673. white-space:nowrap;
  7674. text-transform:none;
  7675. }
  7676. #u81149 {
  7677. border-width:0px;
  7678. position:absolute;
  7679. left:0px;
  7680. top:0px;
  7681. width:0px;
  7682. height:0px;
  7683. }
  7684. #u81150_div {
  7685. border-width:0px;
  7686. position:absolute;
  7687. left:0px;
  7688. top:0px;
  7689. width:140px;
  7690. height:30px;
  7691. background:inherit;
  7692. background-color:rgba(255, 255, 255, 1);
  7693. box-sizing:border-box;
  7694. border-width:1px;
  7695. border-style:solid;
  7696. border-color:rgba(201, 201, 201, 1);
  7697. border-radius:4px;
  7698. -moz-box-shadow:none;
  7699. -webkit-box-shadow:none;
  7700. box-shadow:none;
  7701. font-family:'Microsoft YaHei', sans-serif;
  7702. font-weight:400;
  7703. font-style:normal;
  7704. font-size:14px;
  7705. color:#CCCCCC;
  7706. text-align:left;
  7707. }
  7708. #u81150 {
  7709. border-width:0px;
  7710. position:absolute;
  7711. left:800px;
  7712. top:261px;
  7713. width:140px;
  7714. height:30px;
  7715. display:flex;
  7716. font-family:'Microsoft YaHei', sans-serif;
  7717. font-weight:400;
  7718. font-style:normal;
  7719. font-size:14px;
  7720. color:#CCCCCC;
  7721. text-align:left;
  7722. }
  7723. #u81150 .text {
  7724. position:absolute;
  7725. align-self:center;
  7726. padding:2px 8px 2px 8px;
  7727. box-sizing:border-box;
  7728. width:100%;
  7729. }
  7730. #u81150_text {
  7731. border-width:0px;
  7732. word-wrap:break-word;
  7733. text-transform:none;
  7734. visibility:hidden;
  7735. }
  7736. #u81151_input {
  7737. position:absolute;
  7738. left:0px;
  7739. top:0px;
  7740. width:126px;
  7741. height:25px;
  7742. padding:2px 2px 2px 2px;
  7743. font-family:'Microsoft YaHei', sans-serif;
  7744. font-weight:400;
  7745. font-style:normal;
  7746. font-size:10px;
  7747. letter-spacing:normal;
  7748. color:#000000;
  7749. vertical-align:none;
  7750. text-align:left;
  7751. text-transform:none;
  7752. background-color:transparent;
  7753. border-color:transparent;
  7754. }
  7755. #u81151_input.disabled {
  7756. position:absolute;
  7757. left:0px;
  7758. top:0px;
  7759. width:126px;
  7760. height:25px;
  7761. padding:2px 2px 2px 2px;
  7762. font-family:'Microsoft YaHei', sans-serif;
  7763. font-weight:400;
  7764. font-style:normal;
  7765. font-size:10px;
  7766. letter-spacing:normal;
  7767. color:#000000;
  7768. vertical-align:none;
  7769. text-align:left;
  7770. text-transform:none;
  7771. background-color:transparent;
  7772. border-color:transparent;
  7773. }
  7774. #u81151_div {
  7775. border-width:0px;
  7776. position:absolute;
  7777. left:0px;
  7778. top:0px;
  7779. width:126px;
  7780. height:25px;
  7781. background:inherit;
  7782. background-color:rgba(255, 255, 255, 1);
  7783. border:none;
  7784. border-radius:0px;
  7785. -moz-box-shadow:none;
  7786. -webkit-box-shadow:none;
  7787. box-shadow:none;
  7788. font-family:'Microsoft YaHei', sans-serif;
  7789. font-weight:400;
  7790. font-style:normal;
  7791. font-size:10px;
  7792. }
  7793. #u81151 {
  7794. border-width:0px;
  7795. position:absolute;
  7796. left:809px;
  7797. top:262px;
  7798. width:126px;
  7799. height:25px;
  7800. display:flex;
  7801. font-family:'Microsoft YaHei', sans-serif;
  7802. font-weight:400;
  7803. font-style:normal;
  7804. font-size:10px;
  7805. }
  7806. #u81151 .text {
  7807. position:absolute;
  7808. align-self:center;
  7809. padding:2px 2px 2px 2px;
  7810. box-sizing:border-box;
  7811. width:100%;
  7812. }
  7813. #u81151_div.disabled {
  7814. border-width:0px;
  7815. position:absolute;
  7816. left:0px;
  7817. top:0px;
  7818. width:126px;
  7819. height:25px;
  7820. background:inherit;
  7821. background-color:rgba(240, 240, 240, 1);
  7822. border:none;
  7823. border-radius:0px;
  7824. -moz-box-shadow:none;
  7825. -webkit-box-shadow:none;
  7826. box-shadow:none;
  7827. font-family:'Microsoft YaHei', sans-serif;
  7828. font-weight:400;
  7829. font-style:normal;
  7830. font-size:10px;
  7831. }
  7832. #u81151.disabled {
  7833. }
  7834. #u81152 {
  7835. border-width:0px;
  7836. position:absolute;
  7837. left:0px;
  7838. top:0px;
  7839. width:0px;
  7840. height:0px;
  7841. }
  7842. #u81153_div {
  7843. border-width:0px;
  7844. position:absolute;
  7845. left:0px;
  7846. top:0px;
  7847. width:194px;
  7848. height:100px;
  7849. background:inherit;
  7850. background-color:rgba(242, 242, 242, 1);
  7851. border:none;
  7852. border-radius:5px;
  7853. -moz-box-shadow:none;
  7854. -webkit-box-shadow:none;
  7855. box-shadow:none;
  7856. color:#1890FF;
  7857. }
  7858. #u81153 {
  7859. border-width:0px;
  7860. position:absolute;
  7861. left:554px;
  7862. top:110px;
  7863. width:194px;
  7864. height:100px;
  7865. display:flex;
  7866. color:#1890FF;
  7867. }
  7868. #u81153 .text {
  7869. position:absolute;
  7870. align-self:center;
  7871. padding:2px 2px 2px 2px;
  7872. box-sizing:border-box;
  7873. width:100%;
  7874. }
  7875. #u81153_text {
  7876. border-width:0px;
  7877. word-wrap:break-word;
  7878. text-transform:none;
  7879. visibility:hidden;
  7880. }
  7881. #u81154_div {
  7882. border-width:0px;
  7883. position:absolute;
  7884. left:0px;
  7885. top:0px;
  7886. width:116px;
  7887. height:20px;
  7888. background:inherit;
  7889. background-color:rgba(255, 255, 255, 0);
  7890. border:none;
  7891. border-radius:0px;
  7892. -moz-box-shadow:none;
  7893. -webkit-box-shadow:none;
  7894. box-shadow:none;
  7895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7896. font-weight:400;
  7897. font-style:normal;
  7898. font-size:14px;
  7899. }
  7900. #u81154 {
  7901. border-width:0px;
  7902. position:absolute;
  7903. left:591px;
  7904. top:130px;
  7905. width:116px;
  7906. height:20px;
  7907. display:flex;
  7908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7909. font-weight:400;
  7910. font-style:normal;
  7911. font-size:14px;
  7912. }
  7913. #u81154 .text {
  7914. position:absolute;
  7915. align-self:flex-start;
  7916. padding:0px 0px 0px 0px;
  7917. box-sizing:border-box;
  7918. width:100%;
  7919. }
  7920. #u81154_text {
  7921. border-width:0px;
  7922. word-wrap:break-word;
  7923. text-transform:none;
  7924. }
  7925. #u81155_div {
  7926. border-width:0px;
  7927. position:absolute;
  7928. left:0px;
  7929. top:0px;
  7930. width:94px;
  7931. height:25px;
  7932. background:inherit;
  7933. background-color:rgba(255, 255, 255, 0);
  7934. border:none;
  7935. border-radius:0px;
  7936. -moz-box-shadow:none;
  7937. -webkit-box-shadow:none;
  7938. box-shadow:none;
  7939. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7940. font-weight:650;
  7941. font-style:normal;
  7942. font-size:18px;
  7943. }
  7944. #u81155 {
  7945. border-width:0px;
  7946. position:absolute;
  7947. left:591px;
  7948. top:163px;
  7949. width:94px;
  7950. height:25px;
  7951. display:flex;
  7952. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7953. font-weight:650;
  7954. font-style:normal;
  7955. font-size:18px;
  7956. }
  7957. #u81155 .text {
  7958. position:absolute;
  7959. align-self:flex-start;
  7960. padding:0px 0px 0px 0px;
  7961. box-sizing:border-box;
  7962. width:100%;
  7963. }
  7964. #u81155_text {
  7965. border-width:0px;
  7966. word-wrap:break-word;
  7967. text-transform:none;
  7968. }
  7969. #u81156 {
  7970. border-width:0px;
  7971. position:absolute;
  7972. left:0px;
  7973. top:0px;
  7974. width:0px;
  7975. height:0px;
  7976. }
  7977. #u81157_div {
  7978. border-width:0px;
  7979. position:absolute;
  7980. left:0px;
  7981. top:0px;
  7982. width:194px;
  7983. height:100px;
  7984. background:inherit;
  7985. background-color:rgba(242, 242, 242, 1);
  7986. border:none;
  7987. border-radius:5px;
  7988. -moz-box-shadow:none;
  7989. -webkit-box-shadow:none;
  7990. box-shadow:none;
  7991. color:#1890FF;
  7992. }
  7993. #u81157 {
  7994. border-width:0px;
  7995. position:absolute;
  7996. left:350px;
  7997. top:110px;
  7998. width:194px;
  7999. height:100px;
  8000. display:flex;
  8001. color:#1890FF;
  8002. }
  8003. #u81157 .text {
  8004. position:absolute;
  8005. align-self:center;
  8006. padding:2px 2px 2px 2px;
  8007. box-sizing:border-box;
  8008. width:100%;
  8009. }
  8010. #u81157_text {
  8011. border-width:0px;
  8012. word-wrap:break-word;
  8013. text-transform:none;
  8014. visibility:hidden;
  8015. }
  8016. #u81158_div {
  8017. border-width:0px;
  8018. position:absolute;
  8019. left:0px;
  8020. top:0px;
  8021. width:86px;
  8022. height:20px;
  8023. background:inherit;
  8024. background-color:rgba(255, 255, 255, 0);
  8025. border:none;
  8026. border-radius:0px;
  8027. -moz-box-shadow:none;
  8028. -webkit-box-shadow:none;
  8029. box-shadow:none;
  8030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8031. font-weight:400;
  8032. font-style:normal;
  8033. font-size:14px;
  8034. }
  8035. #u81158 {
  8036. border-width:0px;
  8037. position:absolute;
  8038. left:386px;
  8039. top:130px;
  8040. width:86px;
  8041. height:20px;
  8042. display:flex;
  8043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8044. font-weight:400;
  8045. font-style:normal;
  8046. font-size:14px;
  8047. }
  8048. #u81158 .text {
  8049. position:absolute;
  8050. align-self:flex-start;
  8051. padding:0px 0px 0px 0px;
  8052. box-sizing:border-box;
  8053. width:100%;
  8054. }
  8055. #u81158_text {
  8056. border-width:0px;
  8057. word-wrap:break-word;
  8058. text-transform:none;
  8059. }
  8060. #u81159_div {
  8061. border-width:0px;
  8062. position:absolute;
  8063. left:0px;
  8064. top:0px;
  8065. width:44px;
  8066. height:25px;
  8067. background:inherit;
  8068. background-color:rgba(255, 255, 255, 0);
  8069. border:none;
  8070. border-radius:0px;
  8071. -moz-box-shadow:none;
  8072. -webkit-box-shadow:none;
  8073. box-shadow:none;
  8074. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8075. font-weight:650;
  8076. font-style:normal;
  8077. font-size:18px;
  8078. }
  8079. #u81159 {
  8080. border-width:0px;
  8081. position:absolute;
  8082. left:386px;
  8083. top:163px;
  8084. width:44px;
  8085. height:25px;
  8086. display:flex;
  8087. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8088. font-weight:650;
  8089. font-style:normal;
  8090. font-size:18px;
  8091. }
  8092. #u81159 .text {
  8093. position:absolute;
  8094. align-self:flex-start;
  8095. padding:0px 0px 0px 0px;
  8096. box-sizing:border-box;
  8097. width:100%;
  8098. }
  8099. #u81159_text {
  8100. border-width:0px;
  8101. word-wrap:break-word;
  8102. text-transform:none;
  8103. }
  8104. #u81160 {
  8105. border-width:0px;
  8106. position:absolute;
  8107. left:0px;
  8108. top:0px;
  8109. width:0px;
  8110. height:0px;
  8111. }
  8112. #u81161_div {
  8113. border-width:0px;
  8114. position:absolute;
  8115. left:0px;
  8116. top:0px;
  8117. width:59px;
  8118. height:30px;
  8119. background:inherit;
  8120. background-color:rgba(24, 144, 255, 1);
  8121. box-sizing:border-box;
  8122. border-width:1px;
  8123. border-style:solid;
  8124. border-color:rgba(0, 153, 255, 1);
  8125. border-radius:4px;
  8126. -moz-box-shadow:none;
  8127. -webkit-box-shadow:none;
  8128. box-shadow:none;
  8129. font-family:'Microsoft YaHei', sans-serif;
  8130. font-weight:400;
  8131. font-style:normal;
  8132. font-size:14px;
  8133. color:#FFFFFF;
  8134. }
  8135. #u81161 {
  8136. border-width:0px;
  8137. position:absolute;
  8138. left:798px;
  8139. top:301px;
  8140. width:59px;
  8141. height:30px;
  8142. display:flex;
  8143. font-family:'Microsoft YaHei', sans-serif;
  8144. font-weight:400;
  8145. font-style:normal;
  8146. font-size:14px;
  8147. color:#FFFFFF;
  8148. }
  8149. #u81161 .text {
  8150. position:absolute;
  8151. align-self:center;
  8152. padding:5px 15px 5px 15px;
  8153. box-sizing:border-box;
  8154. width:100%;
  8155. }
  8156. #u81161_text {
  8157. border-width:0px;
  8158. white-space:nowrap;
  8159. text-transform:none;
  8160. }
  8161. #u81162_div {
  8162. border-width:0px;
  8163. position:absolute;
  8164. left:0px;
  8165. top:0px;
  8166. width:55px;
  8167. height:30px;
  8168. background:inherit;
  8169. background-color:rgba(255, 255, 255, 1);
  8170. box-sizing:border-box;
  8171. border-width:1px;
  8172. border-style:solid;
  8173. border-color:rgba(170, 170, 170, 1);
  8174. border-radius:4px;
  8175. -moz-box-shadow:none;
  8176. -webkit-box-shadow:none;
  8177. box-shadow:none;
  8178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8179. font-weight:400;
  8180. font-style:normal;
  8181. font-size:12px;
  8182. color:#555555;
  8183. }
  8184. #u81162 {
  8185. border-width:0px;
  8186. position:absolute;
  8187. left:867px;
  8188. top:301px;
  8189. width:55px;
  8190. height:30px;
  8191. display:flex;
  8192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8193. font-weight:400;
  8194. font-style:normal;
  8195. font-size:12px;
  8196. color:#555555;
  8197. }
  8198. #u81162 .text {
  8199. position:absolute;
  8200. align-self:center;
  8201. padding:5px 15px 5px 15px;
  8202. box-sizing:border-box;
  8203. width:100%;
  8204. }
  8205. #u81162_text {
  8206. border-width:0px;
  8207. white-space:nowrap;
  8208. text-transform:none;
  8209. }
  8210. #u81163 {
  8211. border-width:0px;
  8212. position:absolute;
  8213. left:0px;
  8214. top:0px;
  8215. width:0px;
  8216. height:0px;
  8217. }
  8218. #u81164_div {
  8219. border-width:0px;
  8220. position:absolute;
  8221. left:0px;
  8222. top:0px;
  8223. width:140px;
  8224. height:30px;
  8225. background:inherit;
  8226. background-color:rgba(255, 255, 255, 1);
  8227. box-sizing:border-box;
  8228. border-width:1px;
  8229. border-style:solid;
  8230. border-color:rgba(215, 215, 215, 1);
  8231. border-radius:4px;
  8232. -moz-box-shadow:none;
  8233. -webkit-box-shadow:none;
  8234. box-shadow:none;
  8235. font-size:11px;
  8236. }
  8237. #u81164 {
  8238. border-width:0px;
  8239. position:absolute;
  8240. left:500px;
  8241. top:301px;
  8242. width:140px;
  8243. height:30px;
  8244. display:flex;
  8245. font-size:11px;
  8246. }
  8247. #u81164 .text {
  8248. position:absolute;
  8249. align-self:center;
  8250. padding:2px 2px 2px 2px;
  8251. box-sizing:border-box;
  8252. width:100%;
  8253. }
  8254. #u81164_text {
  8255. border-width:0px;
  8256. word-wrap:break-word;
  8257. text-transform:none;
  8258. visibility:hidden;
  8259. }
  8260. #u81165_input {
  8261. position:absolute;
  8262. left:0px;
  8263. top:0px;
  8264. width:125px;
  8265. height:23px;
  8266. padding:2px 2px 2px 2px;
  8267. font-family:'ArialMT', 'Arial', sans-serif;
  8268. font-weight:400;
  8269. font-style:normal;
  8270. font-size:11px;
  8271. letter-spacing:normal;
  8272. color:#AAAAAA;
  8273. vertical-align:none;
  8274. text-align:left;
  8275. text-transform:none;
  8276. background-color:transparent;
  8277. border-color:transparent;
  8278. }
  8279. #u81165_input.disabled {
  8280. position:absolute;
  8281. left:0px;
  8282. top:0px;
  8283. width:125px;
  8284. height:23px;
  8285. padding:2px 2px 2px 2px;
  8286. font-family:'ArialMT', 'Arial', sans-serif;
  8287. font-weight:400;
  8288. font-style:normal;
  8289. font-size:11px;
  8290. letter-spacing:normal;
  8291. color:#AAAAAA;
  8292. vertical-align:none;
  8293. text-align:left;
  8294. text-transform:none;
  8295. background-color:transparent;
  8296. border-color:transparent;
  8297. }
  8298. #u81165_div {
  8299. border-width:0px;
  8300. position:absolute;
  8301. left:0px;
  8302. top:0px;
  8303. width:125px;
  8304. height:23px;
  8305. background:inherit;
  8306. background-color:rgba(255, 255, 255, 1);
  8307. border:none;
  8308. border-radius:0px;
  8309. -moz-box-shadow:none;
  8310. -webkit-box-shadow:none;
  8311. box-shadow:none;
  8312. font-size:11px;
  8313. color:#AAAAAA;
  8314. }
  8315. #u81165 {
  8316. border-width:0px;
  8317. position:absolute;
  8318. left:507px;
  8319. top:303px;
  8320. width:125px;
  8321. height:23px;
  8322. display:flex;
  8323. font-size:11px;
  8324. color:#AAAAAA;
  8325. }
  8326. #u81165 .text {
  8327. position:absolute;
  8328. align-self:flex-start;
  8329. padding:2px 2px 2px 2px;
  8330. box-sizing:border-box;
  8331. width:100%;
  8332. }
  8333. #u81165_div.disabled {
  8334. border-width:0px;
  8335. position:absolute;
  8336. left:0px;
  8337. top:0px;
  8338. width:125px;
  8339. height:23px;
  8340. background:inherit;
  8341. background-color:rgba(240, 240, 240, 1);
  8342. border:none;
  8343. border-radius:0px;
  8344. -moz-box-shadow:none;
  8345. -webkit-box-shadow:none;
  8346. box-shadow:none;
  8347. font-size:11px;
  8348. color:#AAAAAA;
  8349. }
  8350. #u81165.disabled {
  8351. }
  8352. .u81165_input_option {
  8353. font-size:11px;
  8354. }
  8355. #u81166 {
  8356. border-width:0px;
  8357. position:absolute;
  8358. left:0px;
  8359. top:0px;
  8360. width:0px;
  8361. height:0px;
  8362. }
  8363. #u81167_div {
  8364. border-width:0px;
  8365. position:absolute;
  8366. left:0px;
  8367. top:0px;
  8368. width:140px;
  8369. height:30px;
  8370. background:inherit;
  8371. background-color:rgba(255, 255, 255, 1);
  8372. box-sizing:border-box;
  8373. border-width:1px;
  8374. border-style:solid;
  8375. border-color:rgba(215, 215, 215, 1);
  8376. border-radius:4px;
  8377. -moz-box-shadow:none;
  8378. -webkit-box-shadow:none;
  8379. box-shadow:none;
  8380. font-size:11px;
  8381. }
  8382. #u81167 {
  8383. border-width:0px;
  8384. position:absolute;
  8385. left:500px;
  8386. top:261px;
  8387. width:140px;
  8388. height:30px;
  8389. display:flex;
  8390. font-size:11px;
  8391. }
  8392. #u81167 .text {
  8393. position:absolute;
  8394. align-self:center;
  8395. padding:2px 2px 2px 2px;
  8396. box-sizing:border-box;
  8397. width:100%;
  8398. }
  8399. #u81167_text {
  8400. border-width:0px;
  8401. word-wrap:break-word;
  8402. text-transform:none;
  8403. visibility:hidden;
  8404. }
  8405. #u81168_input {
  8406. position:absolute;
  8407. left:0px;
  8408. top:0px;
  8409. width:125px;
  8410. height:23px;
  8411. padding:2px 2px 2px 2px;
  8412. font-family:'ArialMT', 'Arial', sans-serif;
  8413. font-weight:400;
  8414. font-style:normal;
  8415. font-size:11px;
  8416. letter-spacing:normal;
  8417. color:#AAAAAA;
  8418. vertical-align:none;
  8419. text-align:left;
  8420. text-transform:none;
  8421. background-color:transparent;
  8422. border-color:transparent;
  8423. }
  8424. #u81168_input.disabled {
  8425. position:absolute;
  8426. left:0px;
  8427. top:0px;
  8428. width:125px;
  8429. height:23px;
  8430. padding:2px 2px 2px 2px;
  8431. font-family:'ArialMT', 'Arial', sans-serif;
  8432. font-weight:400;
  8433. font-style:normal;
  8434. font-size:11px;
  8435. letter-spacing:normal;
  8436. color:#AAAAAA;
  8437. vertical-align:none;
  8438. text-align:left;
  8439. text-transform:none;
  8440. background-color:transparent;
  8441. border-color:transparent;
  8442. }
  8443. #u81168_div {
  8444. border-width:0px;
  8445. position:absolute;
  8446. left:0px;
  8447. top:0px;
  8448. width:125px;
  8449. height:23px;
  8450. background:inherit;
  8451. background-color:rgba(255, 255, 255, 1);
  8452. border:none;
  8453. border-radius:0px;
  8454. -moz-box-shadow:none;
  8455. -webkit-box-shadow:none;
  8456. box-shadow:none;
  8457. font-size:11px;
  8458. color:#AAAAAA;
  8459. }
  8460. #u81168 {
  8461. border-width:0px;
  8462. position:absolute;
  8463. left:506px;
  8464. top:263px;
  8465. width:125px;
  8466. height:23px;
  8467. display:flex;
  8468. font-size:11px;
  8469. color:#AAAAAA;
  8470. }
  8471. #u81168 .text {
  8472. position:absolute;
  8473. align-self:flex-start;
  8474. padding:2px 2px 2px 2px;
  8475. box-sizing:border-box;
  8476. width:100%;
  8477. }
  8478. #u81168_div.disabled {
  8479. border-width:0px;
  8480. position:absolute;
  8481. left:0px;
  8482. top:0px;
  8483. width:125px;
  8484. height:23px;
  8485. background:inherit;
  8486. background-color:rgba(240, 240, 240, 1);
  8487. border:none;
  8488. border-radius:0px;
  8489. -moz-box-shadow:none;
  8490. -webkit-box-shadow:none;
  8491. box-shadow:none;
  8492. font-size:11px;
  8493. color:#AAAAAA;
  8494. }
  8495. #u81168.disabled {
  8496. }
  8497. .u81168_input_option {
  8498. font-size:11px;
  8499. }
  8500. #u81169 {
  8501. border-width:0px;
  8502. position:absolute;
  8503. left:0px;
  8504. top:0px;
  8505. width:0px;
  8506. height:0px;
  8507. }
  8508. #u81170_div {
  8509. border-width:0px;
  8510. position:absolute;
  8511. left:0px;
  8512. top:0px;
  8513. width:140px;
  8514. height:30px;
  8515. background:inherit;
  8516. background-color:rgba(255, 255, 255, 1);
  8517. box-sizing:border-box;
  8518. border-width:1px;
  8519. border-style:solid;
  8520. border-color:rgba(201, 201, 201, 1);
  8521. border-radius:4px;
  8522. -moz-box-shadow:none;
  8523. -webkit-box-shadow:none;
  8524. box-shadow:none;
  8525. font-family:'Microsoft YaHei', sans-serif;
  8526. font-weight:400;
  8527. font-style:normal;
  8528. font-size:14px;
  8529. color:#CCCCCC;
  8530. text-align:left;
  8531. }
  8532. #u81170 {
  8533. border-width:0px;
  8534. position:absolute;
  8535. left:649px;
  8536. top:260px;
  8537. width:140px;
  8538. height:30px;
  8539. display:flex;
  8540. font-family:'Microsoft YaHei', sans-serif;
  8541. font-weight:400;
  8542. font-style:normal;
  8543. font-size:14px;
  8544. color:#CCCCCC;
  8545. text-align:left;
  8546. }
  8547. #u81170 .text {
  8548. position:absolute;
  8549. align-self:center;
  8550. padding:2px 8px 2px 8px;
  8551. box-sizing:border-box;
  8552. width:100%;
  8553. }
  8554. #u81170_text {
  8555. border-width:0px;
  8556. word-wrap:break-word;
  8557. text-transform:none;
  8558. visibility:hidden;
  8559. }
  8560. #u81171_input {
  8561. position:absolute;
  8562. left:0px;
  8563. top:0px;
  8564. width:126px;
  8565. height:25px;
  8566. padding:2px 2px 2px 2px;
  8567. font-family:'Microsoft YaHei', sans-serif;
  8568. font-weight:400;
  8569. font-style:normal;
  8570. font-size:10px;
  8571. letter-spacing:normal;
  8572. color:#000000;
  8573. vertical-align:none;
  8574. text-align:left;
  8575. text-transform:none;
  8576. background-color:transparent;
  8577. border-color:transparent;
  8578. }
  8579. #u81171_input.disabled {
  8580. position:absolute;
  8581. left:0px;
  8582. top:0px;
  8583. width:126px;
  8584. height:25px;
  8585. padding:2px 2px 2px 2px;
  8586. font-family:'Microsoft YaHei', sans-serif;
  8587. font-weight:400;
  8588. font-style:normal;
  8589. font-size:10px;
  8590. letter-spacing:normal;
  8591. color:#000000;
  8592. vertical-align:none;
  8593. text-align:left;
  8594. text-transform:none;
  8595. background-color:transparent;
  8596. border-color:transparent;
  8597. }
  8598. #u81171_div {
  8599. border-width:0px;
  8600. position:absolute;
  8601. left:0px;
  8602. top:0px;
  8603. width:126px;
  8604. height:25px;
  8605. background:inherit;
  8606. background-color:rgba(255, 255, 255, 1);
  8607. border:none;
  8608. border-radius:0px;
  8609. -moz-box-shadow:none;
  8610. -webkit-box-shadow:none;
  8611. box-shadow:none;
  8612. font-family:'Microsoft YaHei', sans-serif;
  8613. font-weight:400;
  8614. font-style:normal;
  8615. font-size:10px;
  8616. }
  8617. #u81171 {
  8618. border-width:0px;
  8619. position:absolute;
  8620. left:658px;
  8621. top:261px;
  8622. width:126px;
  8623. height:25px;
  8624. display:flex;
  8625. font-family:'Microsoft YaHei', sans-serif;
  8626. font-weight:400;
  8627. font-style:normal;
  8628. font-size:10px;
  8629. }
  8630. #u81171 .text {
  8631. position:absolute;
  8632. align-self:center;
  8633. padding:2px 2px 2px 2px;
  8634. box-sizing:border-box;
  8635. width:100%;
  8636. }
  8637. #u81171_div.disabled {
  8638. border-width:0px;
  8639. position:absolute;
  8640. left:0px;
  8641. top:0px;
  8642. width:126px;
  8643. height:25px;
  8644. background:inherit;
  8645. background-color:rgba(240, 240, 240, 1);
  8646. border:none;
  8647. border-radius:0px;
  8648. -moz-box-shadow:none;
  8649. -webkit-box-shadow:none;
  8650. box-shadow:none;
  8651. font-family:'Microsoft YaHei', sans-serif;
  8652. font-weight:400;
  8653. font-style:normal;
  8654. font-size:10px;
  8655. }
  8656. #u81171.disabled {
  8657. }
  8658. #u81172 {
  8659. border-width:0px;
  8660. position:absolute;
  8661. left:0px;
  8662. top:0px;
  8663. width:0px;
  8664. height:0px;
  8665. }
  8666. #u81173_div {
  8667. border-width:0px;
  8668. position:absolute;
  8669. left:0px;
  8670. top:0px;
  8671. width:140px;
  8672. height:30px;
  8673. background:inherit;
  8674. background-color:rgba(255, 255, 255, 1);
  8675. box-sizing:border-box;
  8676. border-width:1px;
  8677. border-style:solid;
  8678. border-color:rgba(215, 215, 215, 1);
  8679. border-radius:4px;
  8680. -moz-box-shadow:none;
  8681. -webkit-box-shadow:none;
  8682. box-shadow:none;
  8683. font-size:11px;
  8684. }
  8685. #u81173 {
  8686. border-width:0px;
  8687. position:absolute;
  8688. left:950px;
  8689. top:261px;
  8690. width:140px;
  8691. height:30px;
  8692. display:flex;
  8693. font-size:11px;
  8694. }
  8695. #u81173 .text {
  8696. position:absolute;
  8697. align-self:center;
  8698. padding:2px 2px 2px 2px;
  8699. box-sizing:border-box;
  8700. width:100%;
  8701. }
  8702. #u81173_text {
  8703. border-width:0px;
  8704. word-wrap:break-word;
  8705. text-transform:none;
  8706. visibility:hidden;
  8707. }
  8708. #u81174_input {
  8709. position:absolute;
  8710. left:0px;
  8711. top:0px;
  8712. width:125px;
  8713. height:23px;
  8714. padding:2px 2px 2px 2px;
  8715. font-family:'ArialMT', 'Arial', sans-serif;
  8716. font-weight:400;
  8717. font-style:normal;
  8718. font-size:11px;
  8719. letter-spacing:normal;
  8720. color:#AAAAAA;
  8721. vertical-align:none;
  8722. text-align:left;
  8723. text-transform:none;
  8724. background-color:transparent;
  8725. border-color:transparent;
  8726. }
  8727. #u81174_input.disabled {
  8728. position:absolute;
  8729. left:0px;
  8730. top:0px;
  8731. width:125px;
  8732. height:23px;
  8733. padding:2px 2px 2px 2px;
  8734. font-family:'ArialMT', 'Arial', sans-serif;
  8735. font-weight:400;
  8736. font-style:normal;
  8737. font-size:11px;
  8738. letter-spacing:normal;
  8739. color:#AAAAAA;
  8740. vertical-align:none;
  8741. text-align:left;
  8742. text-transform:none;
  8743. background-color:transparent;
  8744. border-color:transparent;
  8745. }
  8746. #u81174_div {
  8747. border-width:0px;
  8748. position:absolute;
  8749. left:0px;
  8750. top:0px;
  8751. width:125px;
  8752. height:23px;
  8753. background:inherit;
  8754. background-color:rgba(255, 255, 255, 1);
  8755. border:none;
  8756. border-radius:0px;
  8757. -moz-box-shadow:none;
  8758. -webkit-box-shadow:none;
  8759. box-shadow:none;
  8760. font-size:11px;
  8761. color:#AAAAAA;
  8762. }
  8763. #u81174 {
  8764. border-width:0px;
  8765. position:absolute;
  8766. left:956px;
  8767. top:263px;
  8768. width:125px;
  8769. height:23px;
  8770. display:flex;
  8771. font-size:11px;
  8772. color:#AAAAAA;
  8773. }
  8774. #u81174 .text {
  8775. position:absolute;
  8776. align-self:flex-start;
  8777. padding:2px 2px 2px 2px;
  8778. box-sizing:border-box;
  8779. width:100%;
  8780. }
  8781. #u81174_div.disabled {
  8782. border-width:0px;
  8783. position:absolute;
  8784. left:0px;
  8785. top:0px;
  8786. width:125px;
  8787. height:23px;
  8788. background:inherit;
  8789. background-color:rgba(240, 240, 240, 1);
  8790. border:none;
  8791. border-radius:0px;
  8792. -moz-box-shadow:none;
  8793. -webkit-box-shadow:none;
  8794. box-shadow:none;
  8795. font-size:11px;
  8796. color:#AAAAAA;
  8797. }
  8798. #u81174.disabled {
  8799. }
  8800. .u81174_input_option {
  8801. font-size:11px;
  8802. }
  8803. #u81175 {
  8804. border-width:0px;
  8805. position:absolute;
  8806. left:0px;
  8807. top:0px;
  8808. width:0px;
  8809. height:0px;
  8810. }
  8811. #u81176_div {
  8812. border-width:0px;
  8813. position:absolute;
  8814. left:0px;
  8815. top:0px;
  8816. width:140px;
  8817. height:30px;
  8818. background:inherit;
  8819. background-color:rgba(255, 255, 255, 1);
  8820. box-sizing:border-box;
  8821. border-width:1px;
  8822. border-style:solid;
  8823. border-color:rgba(215, 215, 215, 1);
  8824. border-radius:4px;
  8825. -moz-box-shadow:none;
  8826. -webkit-box-shadow:none;
  8827. box-shadow:none;
  8828. font-size:11px;
  8829. }
  8830. #u81176 {
  8831. border-width:0px;
  8832. position:absolute;
  8833. left:1250px;
  8834. top:261px;
  8835. width:140px;
  8836. height:30px;
  8837. display:flex;
  8838. font-size:11px;
  8839. }
  8840. #u81176 .text {
  8841. position:absolute;
  8842. align-self:center;
  8843. padding:2px 2px 2px 2px;
  8844. box-sizing:border-box;
  8845. width:100%;
  8846. }
  8847. #u81176_text {
  8848. border-width:0px;
  8849. word-wrap:break-word;
  8850. text-transform:none;
  8851. visibility:hidden;
  8852. }
  8853. #u81177_input {
  8854. position:absolute;
  8855. left:0px;
  8856. top:0px;
  8857. width:125px;
  8858. height:23px;
  8859. padding:2px 2px 2px 2px;
  8860. font-family:'ArialMT', 'Arial', sans-serif;
  8861. font-weight:400;
  8862. font-style:normal;
  8863. font-size:11px;
  8864. letter-spacing:normal;
  8865. color:#AAAAAA;
  8866. vertical-align:none;
  8867. text-align:left;
  8868. text-transform:none;
  8869. background-color:transparent;
  8870. border-color:transparent;
  8871. }
  8872. #u81177_input.disabled {
  8873. position:absolute;
  8874. left:0px;
  8875. top:0px;
  8876. width:125px;
  8877. height:23px;
  8878. padding:2px 2px 2px 2px;
  8879. font-family:'ArialMT', 'Arial', sans-serif;
  8880. font-weight:400;
  8881. font-style:normal;
  8882. font-size:11px;
  8883. letter-spacing:normal;
  8884. color:#AAAAAA;
  8885. vertical-align:none;
  8886. text-align:left;
  8887. text-transform:none;
  8888. background-color:transparent;
  8889. border-color:transparent;
  8890. }
  8891. #u81177_div {
  8892. border-width:0px;
  8893. position:absolute;
  8894. left:0px;
  8895. top:0px;
  8896. width:125px;
  8897. height:23px;
  8898. background:inherit;
  8899. background-color:rgba(255, 255, 255, 1);
  8900. border:none;
  8901. border-radius:0px;
  8902. -moz-box-shadow:none;
  8903. -webkit-box-shadow:none;
  8904. box-shadow:none;
  8905. font-size:11px;
  8906. color:#AAAAAA;
  8907. }
  8908. #u81177 {
  8909. border-width:0px;
  8910. position:absolute;
  8911. left:1256px;
  8912. top:263px;
  8913. width:125px;
  8914. height:23px;
  8915. display:flex;
  8916. font-size:11px;
  8917. color:#AAAAAA;
  8918. }
  8919. #u81177 .text {
  8920. position:absolute;
  8921. align-self:flex-start;
  8922. padding:2px 2px 2px 2px;
  8923. box-sizing:border-box;
  8924. width:100%;
  8925. }
  8926. #u81177_div.disabled {
  8927. border-width:0px;
  8928. position:absolute;
  8929. left:0px;
  8930. top:0px;
  8931. width:125px;
  8932. height:23px;
  8933. background:inherit;
  8934. background-color:rgba(240, 240, 240, 1);
  8935. border:none;
  8936. border-radius:0px;
  8937. -moz-box-shadow:none;
  8938. -webkit-box-shadow:none;
  8939. box-shadow:none;
  8940. font-size:11px;
  8941. color:#AAAAAA;
  8942. }
  8943. #u81177.disabled {
  8944. }
  8945. .u81177_input_option {
  8946. font-size:11px;
  8947. }
  8948. #u81178 {
  8949. border-width:0px;
  8950. position:absolute;
  8951. left:0px;
  8952. top:0px;
  8953. width:0px;
  8954. height:0px;
  8955. }
  8956. #u81179_div {
  8957. border-width:0px;
  8958. position:absolute;
  8959. left:0px;
  8960. top:0px;
  8961. width:140px;
  8962. height:30px;
  8963. background:inherit;
  8964. background-color:rgba(255, 255, 255, 1);
  8965. box-sizing:border-box;
  8966. border-width:1px;
  8967. border-style:solid;
  8968. border-color:rgba(215, 215, 215, 1);
  8969. border-radius:4px;
  8970. -moz-box-shadow:none;
  8971. -webkit-box-shadow:none;
  8972. box-shadow:none;
  8973. font-size:11px;
  8974. }
  8975. #u81179 {
  8976. border-width:0px;
  8977. position:absolute;
  8978. left:1400px;
  8979. top:261px;
  8980. width:140px;
  8981. height:30px;
  8982. display:flex;
  8983. font-size:11px;
  8984. }
  8985. #u81179 .text {
  8986. position:absolute;
  8987. align-self:center;
  8988. padding:2px 2px 2px 2px;
  8989. box-sizing:border-box;
  8990. width:100%;
  8991. }
  8992. #u81179_text {
  8993. border-width:0px;
  8994. word-wrap:break-word;
  8995. text-transform:none;
  8996. visibility:hidden;
  8997. }
  8998. #u81180_input {
  8999. position:absolute;
  9000. left:0px;
  9001. top:0px;
  9002. width:125px;
  9003. height:23px;
  9004. padding:2px 2px 2px 2px;
  9005. font-family:'ArialMT', 'Arial', sans-serif;
  9006. font-weight:400;
  9007. font-style:normal;
  9008. font-size:11px;
  9009. letter-spacing:normal;
  9010. color:#AAAAAA;
  9011. vertical-align:none;
  9012. text-align:left;
  9013. text-transform:none;
  9014. background-color:transparent;
  9015. border-color:transparent;
  9016. }
  9017. #u81180_input.disabled {
  9018. position:absolute;
  9019. left:0px;
  9020. top:0px;
  9021. width:125px;
  9022. height:23px;
  9023. padding:2px 2px 2px 2px;
  9024. font-family:'ArialMT', 'Arial', sans-serif;
  9025. font-weight:400;
  9026. font-style:normal;
  9027. font-size:11px;
  9028. letter-spacing:normal;
  9029. color:#AAAAAA;
  9030. vertical-align:none;
  9031. text-align:left;
  9032. text-transform:none;
  9033. background-color:transparent;
  9034. border-color:transparent;
  9035. }
  9036. #u81180_div {
  9037. border-width:0px;
  9038. position:absolute;
  9039. left:0px;
  9040. top:0px;
  9041. width:125px;
  9042. height:23px;
  9043. background:inherit;
  9044. background-color:rgba(255, 255, 255, 1);
  9045. border:none;
  9046. border-radius:0px;
  9047. -moz-box-shadow:none;
  9048. -webkit-box-shadow:none;
  9049. box-shadow:none;
  9050. font-size:11px;
  9051. color:#AAAAAA;
  9052. }
  9053. #u81180 {
  9054. border-width:0px;
  9055. position:absolute;
  9056. left:1406px;
  9057. top:263px;
  9058. width:125px;
  9059. height:23px;
  9060. display:flex;
  9061. font-size:11px;
  9062. color:#AAAAAA;
  9063. }
  9064. #u81180 .text {
  9065. position:absolute;
  9066. align-self:flex-start;
  9067. padding:2px 2px 2px 2px;
  9068. box-sizing:border-box;
  9069. width:100%;
  9070. }
  9071. #u81180_div.disabled {
  9072. border-width:0px;
  9073. position:absolute;
  9074. left:0px;
  9075. top:0px;
  9076. width:125px;
  9077. height:23px;
  9078. background:inherit;
  9079. background-color:rgba(240, 240, 240, 1);
  9080. border:none;
  9081. border-radius:0px;
  9082. -moz-box-shadow:none;
  9083. -webkit-box-shadow:none;
  9084. box-shadow:none;
  9085. font-size:11px;
  9086. color:#AAAAAA;
  9087. }
  9088. #u81180.disabled {
  9089. }
  9090. .u81180_input_option {
  9091. font-size:11px;
  9092. }
  9093. #u81181 {
  9094. border-width:0px;
  9095. position:absolute;
  9096. left:0px;
  9097. top:0px;
  9098. width:0px;
  9099. height:0px;
  9100. }
  9101. #u81182_div {
  9102. border-width:0px;
  9103. position:absolute;
  9104. left:0px;
  9105. top:0px;
  9106. width:140px;
  9107. height:28px;
  9108. background:inherit;
  9109. background-color:rgba(255, 255, 255, 1);
  9110. box-sizing:border-box;
  9111. border-width:1px;
  9112. border-style:solid;
  9113. border-color:rgba(201, 201, 201, 1);
  9114. border-radius:4px;
  9115. -moz-box-shadow:none;
  9116. -webkit-box-shadow:none;
  9117. box-shadow:none;
  9118. font-family:'Microsoft YaHei', sans-serif;
  9119. font-weight:400;
  9120. font-style:normal;
  9121. font-size:14px;
  9122. color:#CCCCCC;
  9123. text-align:left;
  9124. }
  9125. #u81182 {
  9126. border-width:0px;
  9127. position:absolute;
  9128. left:649px;
  9129. top:301px;
  9130. width:140px;
  9131. height:28px;
  9132. display:flex;
  9133. font-family:'Microsoft YaHei', sans-serif;
  9134. font-weight:400;
  9135. font-style:normal;
  9136. font-size:14px;
  9137. color:#CCCCCC;
  9138. text-align:left;
  9139. }
  9140. #u81182 .text {
  9141. position:absolute;
  9142. align-self:center;
  9143. padding:2px 8px 2px 8px;
  9144. box-sizing:border-box;
  9145. width:100%;
  9146. }
  9147. #u81182_text {
  9148. border-width:0px;
  9149. word-wrap:break-word;
  9150. text-transform:none;
  9151. visibility:hidden;
  9152. }
  9153. #u81183_input {
  9154. position:absolute;
  9155. left:0px;
  9156. top:0px;
  9157. width:113px;
  9158. height:26px;
  9159. padding:2px 2px 2px 2px;
  9160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9161. font-weight:400;
  9162. font-style:normal;
  9163. font-size:14px;
  9164. letter-spacing:normal;
  9165. color:#000000;
  9166. vertical-align:none;
  9167. text-align:left;
  9168. text-transform:none;
  9169. background-color:transparent;
  9170. border-color:transparent;
  9171. }
  9172. #u81183_input.disabled {
  9173. position:absolute;
  9174. left:0px;
  9175. top:0px;
  9176. width:113px;
  9177. height:26px;
  9178. padding:2px 2px 2px 2px;
  9179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9180. font-weight:400;
  9181. font-style:normal;
  9182. font-size:14px;
  9183. letter-spacing:normal;
  9184. color:#000000;
  9185. vertical-align:none;
  9186. text-align:left;
  9187. text-transform:none;
  9188. background-color:transparent;
  9189. border-color:transparent;
  9190. }
  9191. #u81183_div {
  9192. border-width:0px;
  9193. position:absolute;
  9194. left:0px;
  9195. top:0px;
  9196. width:113px;
  9197. height:26px;
  9198. background:inherit;
  9199. background-color:rgba(255, 255, 255, 1);
  9200. border:none;
  9201. border-radius:0px;
  9202. -moz-box-shadow:none;
  9203. -webkit-box-shadow:none;
  9204. box-shadow:none;
  9205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9206. font-weight:400;
  9207. font-style:normal;
  9208. font-size:14px;
  9209. }
  9210. #u81183 {
  9211. border-width:0px;
  9212. position:absolute;
  9213. left:654px;
  9214. top:302px;
  9215. width:113px;
  9216. height:26px;
  9217. display:flex;
  9218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9219. font-weight:400;
  9220. font-style:normal;
  9221. font-size:14px;
  9222. }
  9223. #u81183 .text {
  9224. position:absolute;
  9225. align-self:center;
  9226. padding:2px 2px 2px 2px;
  9227. box-sizing:border-box;
  9228. width:100%;
  9229. }
  9230. #u81183_div.disabled {
  9231. border-width:0px;
  9232. position:absolute;
  9233. left:0px;
  9234. top:0px;
  9235. width:113px;
  9236. height:26px;
  9237. background:inherit;
  9238. background-color:rgba(240, 240, 240, 1);
  9239. border:none;
  9240. border-radius:0px;
  9241. -moz-box-shadow:none;
  9242. -webkit-box-shadow:none;
  9243. box-shadow:none;
  9244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9245. font-weight:400;
  9246. font-style:normal;
  9247. font-size:14px;
  9248. }
  9249. #u81183.disabled {
  9250. }
  9251. #u81184_img {
  9252. border-width:0px;
  9253. position:absolute;
  9254. left:0px;
  9255. top:0px;
  9256. width:12px;
  9257. height:15px;
  9258. }
  9259. #u81184 {
  9260. border-width:0px;
  9261. position:absolute;
  9262. left:767px;
  9263. top:308px;
  9264. width:12px;
  9265. height:15px;
  9266. display:flex;
  9267. }
  9268. #u81184 .text {
  9269. position:absolute;
  9270. align-self:center;
  9271. padding:2px 2px 2px 2px;
  9272. box-sizing:border-box;
  9273. width:100%;
  9274. }
  9275. #u81184_text {
  9276. border-width:0px;
  9277. word-wrap:break-word;
  9278. text-transform:none;
  9279. visibility:hidden;
  9280. }
  9281. #u81185 {
  9282. border-width:0px;
  9283. position:absolute;
  9284. left:0px;
  9285. top:0px;
  9286. width:0px;
  9287. height:0px;
  9288. }
  9289. #u81186_div {
  9290. border-width:0px;
  9291. position:absolute;
  9292. left:0px;
  9293. top:0px;
  9294. width:140px;
  9295. height:30px;
  9296. background:inherit;
  9297. background-color:rgba(255, 255, 255, 1);
  9298. box-sizing:border-box;
  9299. border-width:1px;
  9300. border-style:solid;
  9301. border-color:rgba(201, 201, 201, 1);
  9302. border-radius:4px;
  9303. -moz-box-shadow:none;
  9304. -webkit-box-shadow:none;
  9305. box-shadow:none;
  9306. font-family:'Microsoft YaHei', sans-serif;
  9307. font-weight:400;
  9308. font-style:normal;
  9309. font-size:14px;
  9310. color:#CCCCCC;
  9311. text-align:left;
  9312. }
  9313. #u81186 {
  9314. border-width:0px;
  9315. position:absolute;
  9316. left:350px;
  9317. top:261px;
  9318. width:140px;
  9319. height:30px;
  9320. display:flex;
  9321. font-family:'Microsoft YaHei', sans-serif;
  9322. font-weight:400;
  9323. font-style:normal;
  9324. font-size:14px;
  9325. color:#CCCCCC;
  9326. text-align:left;
  9327. }
  9328. #u81186 .text {
  9329. position:absolute;
  9330. align-self:center;
  9331. padding:2px 8px 2px 8px;
  9332. box-sizing:border-box;
  9333. width:100%;
  9334. }
  9335. #u81186_text {
  9336. border-width:0px;
  9337. word-wrap:break-word;
  9338. text-transform:none;
  9339. visibility:hidden;
  9340. }
  9341. #u81187_input {
  9342. position:absolute;
  9343. left:0px;
  9344. top:0px;
  9345. width:126px;
  9346. height:25px;
  9347. padding:2px 2px 2px 2px;
  9348. font-family:'Microsoft YaHei', sans-serif;
  9349. font-weight:400;
  9350. font-style:normal;
  9351. font-size:10px;
  9352. letter-spacing:normal;
  9353. color:#000000;
  9354. vertical-align:none;
  9355. text-align:left;
  9356. text-transform:none;
  9357. background-color:transparent;
  9358. border-color:transparent;
  9359. }
  9360. #u81187_input.disabled {
  9361. position:absolute;
  9362. left:0px;
  9363. top:0px;
  9364. width:126px;
  9365. height:25px;
  9366. padding:2px 2px 2px 2px;
  9367. font-family:'Microsoft YaHei', sans-serif;
  9368. font-weight:400;
  9369. font-style:normal;
  9370. font-size:10px;
  9371. letter-spacing:normal;
  9372. color:#000000;
  9373. vertical-align:none;
  9374. text-align:left;
  9375. text-transform:none;
  9376. background-color:transparent;
  9377. border-color:transparent;
  9378. }
  9379. #u81187_div {
  9380. border-width:0px;
  9381. position:absolute;
  9382. left:0px;
  9383. top:0px;
  9384. width:126px;
  9385. height:25px;
  9386. background:inherit;
  9387. background-color:rgba(255, 255, 255, 1);
  9388. border:none;
  9389. border-radius:0px;
  9390. -moz-box-shadow:none;
  9391. -webkit-box-shadow:none;
  9392. box-shadow:none;
  9393. font-family:'Microsoft YaHei', sans-serif;
  9394. font-weight:400;
  9395. font-style:normal;
  9396. font-size:10px;
  9397. }
  9398. #u81187 {
  9399. border-width:0px;
  9400. position:absolute;
  9401. left:358px;
  9402. top:262px;
  9403. width:126px;
  9404. height:25px;
  9405. display:flex;
  9406. font-family:'Microsoft YaHei', sans-serif;
  9407. font-weight:400;
  9408. font-style:normal;
  9409. font-size:10px;
  9410. }
  9411. #u81187 .text {
  9412. position:absolute;
  9413. align-self:center;
  9414. padding:2px 2px 2px 2px;
  9415. box-sizing:border-box;
  9416. width:100%;
  9417. }
  9418. #u81187_div.disabled {
  9419. border-width:0px;
  9420. position:absolute;
  9421. left:0px;
  9422. top:0px;
  9423. width:126px;
  9424. height:25px;
  9425. background:inherit;
  9426. background-color:rgba(240, 240, 240, 1);
  9427. border:none;
  9428. border-radius:0px;
  9429. -moz-box-shadow:none;
  9430. -webkit-box-shadow:none;
  9431. box-shadow:none;
  9432. font-family:'Microsoft YaHei', sans-serif;
  9433. font-weight:400;
  9434. font-style:normal;
  9435. font-size:10px;
  9436. }
  9437. #u81187.disabled {
  9438. }
  9439. #u81188 {
  9440. border-width:0px;
  9441. position:absolute;
  9442. left:0px;
  9443. top:0px;
  9444. width:0px;
  9445. height:0px;
  9446. }
  9447. #u81189_div {
  9448. border-width:0px;
  9449. position:absolute;
  9450. left:0px;
  9451. top:0px;
  9452. width:140px;
  9453. height:30px;
  9454. background:inherit;
  9455. background-color:rgba(255, 255, 255, 1);
  9456. box-sizing:border-box;
  9457. border-width:1px;
  9458. border-style:solid;
  9459. border-color:rgba(215, 215, 215, 1);
  9460. border-radius:4px;
  9461. -moz-box-shadow:none;
  9462. -webkit-box-shadow:none;
  9463. box-shadow:none;
  9464. font-size:11px;
  9465. }
  9466. #u81189 {
  9467. border-width:0px;
  9468. position:absolute;
  9469. left:350px;
  9470. top:301px;
  9471. width:140px;
  9472. height:30px;
  9473. display:flex;
  9474. font-size:11px;
  9475. }
  9476. #u81189 .text {
  9477. position:absolute;
  9478. align-self:center;
  9479. padding:2px 2px 2px 2px;
  9480. box-sizing:border-box;
  9481. width:100%;
  9482. }
  9483. #u81189_text {
  9484. border-width:0px;
  9485. word-wrap:break-word;
  9486. text-transform:none;
  9487. visibility:hidden;
  9488. }
  9489. #u81190_input {
  9490. position:absolute;
  9491. left:0px;
  9492. top:0px;
  9493. width:125px;
  9494. height:23px;
  9495. padding:2px 2px 2px 2px;
  9496. font-family:'ArialMT', 'Arial', sans-serif;
  9497. font-weight:400;
  9498. font-style:normal;
  9499. font-size:11px;
  9500. letter-spacing:normal;
  9501. color:#AAAAAA;
  9502. vertical-align:none;
  9503. text-align:left;
  9504. text-transform:none;
  9505. background-color:transparent;
  9506. border-color:transparent;
  9507. }
  9508. #u81190_input.disabled {
  9509. position:absolute;
  9510. left:0px;
  9511. top:0px;
  9512. width:125px;
  9513. height:23px;
  9514. padding:2px 2px 2px 2px;
  9515. font-family:'ArialMT', 'Arial', sans-serif;
  9516. font-weight:400;
  9517. font-style:normal;
  9518. font-size:11px;
  9519. letter-spacing:normal;
  9520. color:#AAAAAA;
  9521. vertical-align:none;
  9522. text-align:left;
  9523. text-transform:none;
  9524. background-color:transparent;
  9525. border-color:transparent;
  9526. }
  9527. #u81190_div {
  9528. border-width:0px;
  9529. position:absolute;
  9530. left:0px;
  9531. top:0px;
  9532. width:125px;
  9533. height:23px;
  9534. background:inherit;
  9535. background-color:rgba(255, 255, 255, 1);
  9536. border:none;
  9537. border-radius:0px;
  9538. -moz-box-shadow:none;
  9539. -webkit-box-shadow:none;
  9540. box-shadow:none;
  9541. font-size:11px;
  9542. color:#AAAAAA;
  9543. }
  9544. #u81190 {
  9545. border-width:0px;
  9546. position:absolute;
  9547. left:357px;
  9548. top:303px;
  9549. width:125px;
  9550. height:23px;
  9551. display:flex;
  9552. font-size:11px;
  9553. color:#AAAAAA;
  9554. }
  9555. #u81190 .text {
  9556. position:absolute;
  9557. align-self:flex-start;
  9558. padding:2px 2px 2px 2px;
  9559. box-sizing:border-box;
  9560. width:100%;
  9561. }
  9562. #u81190_div.disabled {
  9563. border-width:0px;
  9564. position:absolute;
  9565. left:0px;
  9566. top:0px;
  9567. width:125px;
  9568. height:23px;
  9569. background:inherit;
  9570. background-color:rgba(240, 240, 240, 1);
  9571. border:none;
  9572. border-radius:0px;
  9573. -moz-box-shadow:none;
  9574. -webkit-box-shadow:none;
  9575. box-shadow:none;
  9576. font-size:11px;
  9577. color:#AAAAAA;
  9578. }
  9579. #u81190.disabled {
  9580. }
  9581. .u81190_input_option {
  9582. font-size:11px;
  9583. }
  9584. #u81191 {
  9585. border-width:0px;
  9586. position:absolute;
  9587. left:0px;
  9588. top:0px;
  9589. width:0px;
  9590. height:0px;
  9591. }
  9592. #u81192_div {
  9593. border-width:0px;
  9594. position:absolute;
  9595. left:0px;
  9596. top:0px;
  9597. width:140px;
  9598. height:30px;
  9599. background:inherit;
  9600. background-color:rgba(255, 255, 255, 1);
  9601. box-sizing:border-box;
  9602. border-width:1px;
  9603. border-style:solid;
  9604. border-color:rgba(215, 215, 215, 1);
  9605. border-radius:4px;
  9606. -moz-box-shadow:none;
  9607. -webkit-box-shadow:none;
  9608. box-shadow:none;
  9609. font-size:11px;
  9610. }
  9611. #u81192 {
  9612. border-width:0px;
  9613. position:absolute;
  9614. left:1100px;
  9615. top:261px;
  9616. width:140px;
  9617. height:30px;
  9618. display:flex;
  9619. font-size:11px;
  9620. }
  9621. #u81192 .text {
  9622. position:absolute;
  9623. align-self:center;
  9624. padding:2px 2px 2px 2px;
  9625. box-sizing:border-box;
  9626. width:100%;
  9627. }
  9628. #u81192_text {
  9629. border-width:0px;
  9630. word-wrap:break-word;
  9631. text-transform:none;
  9632. visibility:hidden;
  9633. }
  9634. #u81193_input {
  9635. position:absolute;
  9636. left:0px;
  9637. top:0px;
  9638. width:125px;
  9639. height:23px;
  9640. padding:2px 2px 2px 2px;
  9641. font-family:'ArialMT', 'Arial', sans-serif;
  9642. font-weight:400;
  9643. font-style:normal;
  9644. font-size:11px;
  9645. letter-spacing:normal;
  9646. color:#AAAAAA;
  9647. vertical-align:none;
  9648. text-align:left;
  9649. text-transform:none;
  9650. background-color:transparent;
  9651. border-color:transparent;
  9652. }
  9653. #u81193_input.disabled {
  9654. position:absolute;
  9655. left:0px;
  9656. top:0px;
  9657. width:125px;
  9658. height:23px;
  9659. padding:2px 2px 2px 2px;
  9660. font-family:'ArialMT', 'Arial', sans-serif;
  9661. font-weight:400;
  9662. font-style:normal;
  9663. font-size:11px;
  9664. letter-spacing:normal;
  9665. color:#AAAAAA;
  9666. vertical-align:none;
  9667. text-align:left;
  9668. text-transform:none;
  9669. background-color:transparent;
  9670. border-color:transparent;
  9671. }
  9672. #u81193_div {
  9673. border-width:0px;
  9674. position:absolute;
  9675. left:0px;
  9676. top:0px;
  9677. width:125px;
  9678. height:23px;
  9679. background:inherit;
  9680. background-color:rgba(255, 255, 255, 1);
  9681. border:none;
  9682. border-radius:0px;
  9683. -moz-box-shadow:none;
  9684. -webkit-box-shadow:none;
  9685. box-shadow:none;
  9686. font-size:11px;
  9687. color:#AAAAAA;
  9688. }
  9689. #u81193 {
  9690. border-width:0px;
  9691. position:absolute;
  9692. left:1106px;
  9693. top:263px;
  9694. width:125px;
  9695. height:23px;
  9696. display:flex;
  9697. font-size:11px;
  9698. color:#AAAAAA;
  9699. }
  9700. #u81193 .text {
  9701. position:absolute;
  9702. align-self:flex-start;
  9703. padding:2px 2px 2px 2px;
  9704. box-sizing:border-box;
  9705. width:100%;
  9706. }
  9707. #u81193_div.disabled {
  9708. border-width:0px;
  9709. position:absolute;
  9710. left:0px;
  9711. top:0px;
  9712. width:125px;
  9713. height:23px;
  9714. background:inherit;
  9715. background-color:rgba(240, 240, 240, 1);
  9716. border:none;
  9717. border-radius:0px;
  9718. -moz-box-shadow:none;
  9719. -webkit-box-shadow:none;
  9720. box-shadow:none;
  9721. font-size:11px;
  9722. color:#AAAAAA;
  9723. }
  9724. #u81193.disabled {
  9725. }
  9726. .u81193_input_option {
  9727. font-size:11px;
  9728. }
  9729. #u81195 {
  9730. border-width:0px;
  9731. position:absolute;
  9732. left:0px;
  9733. top:0px;
  9734. width:0px;
  9735. height:0px;
  9736. }
  9737. #u81196_img {
  9738. border-width:0px;
  9739. position:absolute;
  9740. left:0px;
  9741. top:0px;
  9742. width:200px;
  9743. height:1191px;
  9744. }
  9745. #u81196 {
  9746. border-width:0px;
  9747. position:absolute;
  9748. left:120px;
  9749. top:50px;
  9750. width:200px;
  9751. height:1191px;
  9752. display:flex;
  9753. }
  9754. #u81196 .text {
  9755. position:absolute;
  9756. align-self:center;
  9757. padding:2px 2px 2px 2px;
  9758. box-sizing:border-box;
  9759. width:100%;
  9760. }
  9761. #u81196_text {
  9762. border-width:0px;
  9763. word-wrap:break-word;
  9764. text-transform:none;
  9765. visibility:hidden;
  9766. }
  9767. #u81197_div {
  9768. border-width:0px;
  9769. position:absolute;
  9770. left:0px;
  9771. top:0px;
  9772. width:200px;
  9773. height:60px;
  9774. background:inherit;
  9775. background-color:rgba(224, 231, 247, 1);
  9776. border:none;
  9777. border-radius:0px;
  9778. -moz-box-shadow:none;
  9779. -webkit-box-shadow:none;
  9780. box-shadow:none;
  9781. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9782. font-weight:500;
  9783. font-style:normal;
  9784. font-size:18px;
  9785. }
  9786. #u81197 {
  9787. border-width:0px;
  9788. position:absolute;
  9789. left:120px;
  9790. top:50px;
  9791. width:200px;
  9792. height:60px;
  9793. display:flex;
  9794. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9795. font-weight:500;
  9796. font-style:normal;
  9797. font-size:18px;
  9798. }
  9799. #u81197 .text {
  9800. position:absolute;
  9801. align-self:center;
  9802. padding:0px 0px 0px 20px;
  9803. box-sizing:border-box;
  9804. width:100%;
  9805. }
  9806. #u81197_text {
  9807. border-width:0px;
  9808. word-wrap:break-word;
  9809. text-transform:none;
  9810. }
  9811. #u81198 {
  9812. border-width:0px;
  9813. position:absolute;
  9814. left:120px;
  9815. top:130px;
  9816. width:200px;
  9817. height:1078px;
  9818. }
  9819. #u81198_state0 {
  9820. border-width:0px;
  9821. position:absolute;
  9822. left:0px;
  9823. top:0px;
  9824. width:200px;
  9825. height:1078px;
  9826. overflow:auto;
  9827. -webkit-overflow-scrolling:touch;
  9828. -ms-overflow-x:hidden;
  9829. overflow-x:hidden;
  9830. background-image:none;
  9831. border:none;
  9832. border-radius:0px;
  9833. -moz-box-shadow:none;
  9834. -webkit-box-shadow:none;
  9835. box-shadow:none;
  9836. }
  9837. #u81198_state0_content {
  9838. border-width:0px;
  9839. position:absolute;
  9840. left:0px;
  9841. top:0px;
  9842. width:1px;
  9843. height:1px;
  9844. }
  9845. #u81199_div {
  9846. border-width:0px;
  9847. position:absolute;
  9848. left:0px;
  9849. top:0px;
  9850. width:97px;
  9851. height:22px;
  9852. background:inherit;
  9853. background-color:rgba(255, 255, 255, 0);
  9854. border:none;
  9855. border-radius:0px;
  9856. -moz-box-shadow:none;
  9857. -webkit-box-shadow:none;
  9858. box-shadow:none;
  9859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9860. font-weight:400;
  9861. font-style:normal;
  9862. font-size:16px;
  9863. }
  9864. #u81199 {
  9865. border-width:0px;
  9866. position:absolute;
  9867. left:30px;
  9868. top:0px;
  9869. width:97px;
  9870. height:22px;
  9871. display:flex;
  9872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9873. font-weight:400;
  9874. font-style:normal;
  9875. font-size:16px;
  9876. }
  9877. #u81199 .text {
  9878. position:absolute;
  9879. align-self:flex-start;
  9880. padding:0px 0px 0px 0px;
  9881. box-sizing:border-box;
  9882. width:100%;
  9883. }
  9884. #u81199_text {
  9885. border-width:0px;
  9886. word-wrap:break-word;
  9887. text-transform:none;
  9888. }
  9889. #u81200_div {
  9890. border-width:0px;
  9891. position:absolute;
  9892. left:0px;
  9893. top:0px;
  9894. width:65px;
  9895. height:22px;
  9896. background:inherit;
  9897. background-color:rgba(255, 255, 255, 0);
  9898. border:none;
  9899. border-radius:0px;
  9900. -moz-box-shadow:none;
  9901. -webkit-box-shadow:none;
  9902. box-shadow:none;
  9903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9904. font-weight:400;
  9905. font-style:normal;
  9906. font-size:16px;
  9907. }
  9908. #u81200 {
  9909. border-width:0px;
  9910. position:absolute;
  9911. left:30px;
  9912. top:42px;
  9913. width:65px;
  9914. height:22px;
  9915. display:flex;
  9916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9917. font-weight:400;
  9918. font-style:normal;
  9919. font-size:16px;
  9920. }
  9921. #u81200 .text {
  9922. position:absolute;
  9923. align-self:flex-start;
  9924. padding:0px 0px 0px 0px;
  9925. box-sizing:border-box;
  9926. width:100%;
  9927. }
  9928. #u81200_text {
  9929. border-width:0px;
  9930. white-space:nowrap;
  9931. text-transform:none;
  9932. }
  9933. #u81201_div {
  9934. border-width:0px;
  9935. position:absolute;
  9936. left:0px;
  9937. top:0px;
  9938. width:49px;
  9939. height:22px;
  9940. background:inherit;
  9941. background-color:rgba(255, 255, 255, 0);
  9942. border:none;
  9943. border-radius:0px;
  9944. -moz-box-shadow:none;
  9945. -webkit-box-shadow:none;
  9946. box-shadow:none;
  9947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9948. font-weight:400;
  9949. font-style:normal;
  9950. font-size:16px;
  9951. }
  9952. #u81201 {
  9953. border-width:0px;
  9954. position:absolute;
  9955. left:30px;
  9956. top:145px;
  9957. width:49px;
  9958. height:22px;
  9959. display:flex;
  9960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9961. font-weight:400;
  9962. font-style:normal;
  9963. font-size:16px;
  9964. }
  9965. #u81201 .text {
  9966. position:absolute;
  9967. align-self:flex-start;
  9968. padding:0px 0px 0px 0px;
  9969. box-sizing:border-box;
  9970. width:100%;
  9971. }
  9972. #u81201_text {
  9973. border-width:0px;
  9974. white-space:nowrap;
  9975. text-transform:none;
  9976. }
  9977. #u81202_div {
  9978. border-width:0px;
  9979. position:absolute;
  9980. left:0px;
  9981. top:0px;
  9982. width:97px;
  9983. height:22px;
  9984. background:inherit;
  9985. background-color:rgba(255, 255, 255, 0);
  9986. border:none;
  9987. border-radius:0px;
  9988. -moz-box-shadow:none;
  9989. -webkit-box-shadow:none;
  9990. box-shadow:none;
  9991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9992. font-weight:400;
  9993. font-style:normal;
  9994. font-size:16px;
  9995. }
  9996. #u81202 {
  9997. border-width:0px;
  9998. position:absolute;
  9999. left:30px;
  10000. top:187px;
  10001. width:97px;
  10002. height:22px;
  10003. display:flex;
  10004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10005. font-weight:400;
  10006. font-style:normal;
  10007. font-size:16px;
  10008. }
  10009. #u81202 .text {
  10010. position:absolute;
  10011. align-self:flex-start;
  10012. padding:0px 0px 0px 0px;
  10013. box-sizing:border-box;
  10014. width:100%;
  10015. }
  10016. #u81202_text {
  10017. border-width:0px;
  10018. word-wrap:break-word;
  10019. text-transform:none;
  10020. }
  10021. #u81203_img {
  10022. border-width:0px;
  10023. position:absolute;
  10024. left:0px;
  10025. top:0px;
  10026. width:201px;
  10027. height:2px;
  10028. }
  10029. #u81203 {
  10030. border-width:0px;
  10031. position:absolute;
  10032. left:0px;
  10033. top:84px;
  10034. width:200px;
  10035. height:1px;
  10036. display:flex;
  10037. }
  10038. #u81203 .text {
  10039. position:absolute;
  10040. align-self:center;
  10041. padding:2px 2px 2px 2px;
  10042. box-sizing:border-box;
  10043. width:100%;
  10044. }
  10045. #u81203_text {
  10046. border-width:0px;
  10047. word-wrap:break-word;
  10048. text-transform:none;
  10049. visibility:hidden;
  10050. }
  10051. #u81204_div {
  10052. border-width:0px;
  10053. position:absolute;
  10054. left:0px;
  10055. top:0px;
  10056. width:49px;
  10057. height:17px;
  10058. background:inherit;
  10059. background-color:rgba(255, 255, 255, 0);
  10060. border:none;
  10061. border-radius:0px;
  10062. -moz-box-shadow:none;
  10063. -webkit-box-shadow:none;
  10064. box-shadow:none;
  10065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10066. font-weight:400;
  10067. font-style:normal;
  10068. font-size:12px;
  10069. color:#AAAAAA;
  10070. }
  10071. #u81204 {
  10072. border-width:0px;
  10073. position:absolute;
  10074. left:30px;
  10075. top:105px;
  10076. width:49px;
  10077. height:17px;
  10078. display:flex;
  10079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10080. font-weight:400;
  10081. font-style:normal;
  10082. font-size:12px;
  10083. color:#AAAAAA;
  10084. }
  10085. #u81204 .text {
  10086. position:absolute;
  10087. align-self:flex-start;
  10088. padding:0px 0px 0px 0px;
  10089. box-sizing:border-box;
  10090. width:100%;
  10091. }
  10092. #u81204_text {
  10093. border-width:0px;
  10094. white-space:nowrap;
  10095. text-transform:none;
  10096. }
  10097. #u81205_div {
  10098. border-width:0px;
  10099. position:absolute;
  10100. left:0px;
  10101. top:0px;
  10102. width:97px;
  10103. height:22px;
  10104. background:inherit;
  10105. background-color:rgba(255, 255, 255, 0);
  10106. border:none;
  10107. border-radius:0px;
  10108. -moz-box-shadow:none;
  10109. -webkit-box-shadow:none;
  10110. box-shadow:none;
  10111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10112. font-weight:400;
  10113. font-style:normal;
  10114. font-size:16px;
  10115. }
  10116. #u81205 {
  10117. border-width:0px;
  10118. position:absolute;
  10119. left:30px;
  10120. top:229px;
  10121. width:97px;
  10122. height:22px;
  10123. display:flex;
  10124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10125. font-weight:400;
  10126. font-style:normal;
  10127. font-size:16px;
  10128. }
  10129. #u81205 .text {
  10130. position:absolute;
  10131. align-self:flex-start;
  10132. padding:0px 0px 0px 0px;
  10133. box-sizing:border-box;
  10134. width:100%;
  10135. }
  10136. #u81205_text {
  10137. border-width:0px;
  10138. word-wrap:break-word;
  10139. text-transform:none;
  10140. }
  10141. #u81206_div {
  10142. border-width:0px;
  10143. position:absolute;
  10144. left:0px;
  10145. top:0px;
  10146. width:65px;
  10147. height:22px;
  10148. background:inherit;
  10149. background-color:rgba(255, 255, 255, 0);
  10150. border:none;
  10151. border-radius:0px;
  10152. -moz-box-shadow:none;
  10153. -webkit-box-shadow:none;
  10154. box-shadow:none;
  10155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10156. font-weight:400;
  10157. font-style:normal;
  10158. font-size:16px;
  10159. }
  10160. #u81206 {
  10161. border-width:0px;
  10162. position:absolute;
  10163. left:30px;
  10164. top:271px;
  10165. width:65px;
  10166. height:22px;
  10167. display:flex;
  10168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10169. font-weight:400;
  10170. font-style:normal;
  10171. font-size:16px;
  10172. }
  10173. #u81206 .text {
  10174. position:absolute;
  10175. align-self:flex-start;
  10176. padding:0px 0px 0px 0px;
  10177. box-sizing:border-box;
  10178. width:100%;
  10179. }
  10180. #u81206_text {
  10181. border-width:0px;
  10182. white-space:nowrap;
  10183. text-transform:none;
  10184. }
  10185. #u81207_img {
  10186. border-width:0px;
  10187. position:absolute;
  10188. left:0px;
  10189. top:0px;
  10190. width:201px;
  10191. height:2px;
  10192. }
  10193. #u81207 {
  10194. border-width:0px;
  10195. position:absolute;
  10196. left:0px;
  10197. top:313px;
  10198. width:200px;
  10199. height:1px;
  10200. display:flex;
  10201. }
  10202. #u81207 .text {
  10203. position:absolute;
  10204. align-self:center;
  10205. padding:2px 2px 2px 2px;
  10206. box-sizing:border-box;
  10207. width:100%;
  10208. }
  10209. #u81207_text {
  10210. border-width:0px;
  10211. word-wrap:break-word;
  10212. text-transform:none;
  10213. visibility:hidden;
  10214. }
  10215. #u81208_div {
  10216. border-width:0px;
  10217. position:absolute;
  10218. left:0px;
  10219. top:0px;
  10220. width:65px;
  10221. height:22px;
  10222. background:inherit;
  10223. background-color:rgba(255, 255, 255, 0);
  10224. border:none;
  10225. border-radius:0px;
  10226. -moz-box-shadow:none;
  10227. -webkit-box-shadow:none;
  10228. box-shadow:none;
  10229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10230. font-weight:400;
  10231. font-style:normal;
  10232. font-size:16px;
  10233. }
  10234. #u81208 {
  10235. border-width:0px;
  10236. position:absolute;
  10237. left:30px;
  10238. top:370px;
  10239. width:65px;
  10240. height:22px;
  10241. display:flex;
  10242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10243. font-weight:400;
  10244. font-style:normal;
  10245. font-size:16px;
  10246. }
  10247. #u81208 .text {
  10248. position:absolute;
  10249. align-self:flex-start;
  10250. padding:0px 0px 0px 0px;
  10251. box-sizing:border-box;
  10252. width:100%;
  10253. }
  10254. #u81208_text {
  10255. border-width:0px;
  10256. white-space:nowrap;
  10257. text-transform:none;
  10258. }
  10259. #u81209_div {
  10260. border-width:0px;
  10261. position:absolute;
  10262. left:0px;
  10263. top:0px;
  10264. width:49px;
  10265. height:17px;
  10266. background:inherit;
  10267. background-color:rgba(255, 255, 255, 0);
  10268. border:none;
  10269. border-radius:0px;
  10270. -moz-box-shadow:none;
  10271. -webkit-box-shadow:none;
  10272. box-shadow:none;
  10273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10274. font-weight:400;
  10275. font-style:normal;
  10276. font-size:12px;
  10277. color:#AAAAAA;
  10278. }
  10279. #u81209 {
  10280. border-width:0px;
  10281. position:absolute;
  10282. left:30px;
  10283. top:334px;
  10284. width:49px;
  10285. height:17px;
  10286. display:flex;
  10287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10288. font-weight:400;
  10289. font-style:normal;
  10290. font-size:12px;
  10291. color:#AAAAAA;
  10292. }
  10293. #u81209 .text {
  10294. position:absolute;
  10295. align-self:flex-start;
  10296. padding:0px 0px 0px 0px;
  10297. box-sizing:border-box;
  10298. width:100%;
  10299. }
  10300. #u81209_text {
  10301. border-width:0px;
  10302. white-space:nowrap;
  10303. text-transform:none;
  10304. }
  10305. #u81210_div {
  10306. border-width:0px;
  10307. position:absolute;
  10308. left:0px;
  10309. top:0px;
  10310. width:65px;
  10311. height:22px;
  10312. background:inherit;
  10313. background-color:rgba(255, 255, 255, 0);
  10314. border:none;
  10315. border-radius:0px;
  10316. -moz-box-shadow:none;
  10317. -webkit-box-shadow:none;
  10318. box-shadow:none;
  10319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10320. font-weight:400;
  10321. font-style:normal;
  10322. font-size:16px;
  10323. }
  10324. #u81210 {
  10325. border-width:0px;
  10326. position:absolute;
  10327. left:30px;
  10328. top:412px;
  10329. width:65px;
  10330. height:22px;
  10331. display:flex;
  10332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10333. font-weight:400;
  10334. font-style:normal;
  10335. font-size:16px;
  10336. }
  10337. #u81210 .text {
  10338. position:absolute;
  10339. align-self:flex-start;
  10340. padding:0px 0px 0px 0px;
  10341. box-sizing:border-box;
  10342. width:100%;
  10343. }
  10344. #u81210_text {
  10345. border-width:0px;
  10346. white-space:nowrap;
  10347. text-transform:none;
  10348. }
  10349. #u81211_div {
  10350. border-width:0px;
  10351. position:absolute;
  10352. left:0px;
  10353. top:0px;
  10354. width:65px;
  10355. height:22px;
  10356. background:inherit;
  10357. background-color:rgba(255, 255, 255, 0);
  10358. border:none;
  10359. border-radius:0px;
  10360. -moz-box-shadow:none;
  10361. -webkit-box-shadow:none;
  10362. box-shadow:none;
  10363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10364. font-weight:400;
  10365. font-style:normal;
  10366. font-size:16px;
  10367. }
  10368. #u81211 {
  10369. border-width:0px;
  10370. position:absolute;
  10371. left:30px;
  10372. top:454px;
  10373. width:65px;
  10374. height:22px;
  10375. display:flex;
  10376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10377. font-weight:400;
  10378. font-style:normal;
  10379. font-size:16px;
  10380. }
  10381. #u81211 .text {
  10382. position:absolute;
  10383. align-self:flex-start;
  10384. padding:0px 0px 0px 0px;
  10385. box-sizing:border-box;
  10386. width:100%;
  10387. }
  10388. #u81211_text {
  10389. border-width:0px;
  10390. white-space:nowrap;
  10391. text-transform:none;
  10392. }
  10393. #u81212_div {
  10394. border-width:0px;
  10395. position:absolute;
  10396. left:0px;
  10397. top:0px;
  10398. width:65px;
  10399. height:22px;
  10400. background:inherit;
  10401. background-color:rgba(255, 255, 255, 0);
  10402. border:none;
  10403. border-radius:0px;
  10404. -moz-box-shadow:none;
  10405. -webkit-box-shadow:none;
  10406. box-shadow:none;
  10407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10408. font-weight:400;
  10409. font-style:normal;
  10410. font-size:16px;
  10411. }
  10412. #u81212 {
  10413. border-width:0px;
  10414. position:absolute;
  10415. left:30px;
  10416. top:496px;
  10417. width:65px;
  10418. height:22px;
  10419. display:flex;
  10420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10421. font-weight:400;
  10422. font-style:normal;
  10423. font-size:16px;
  10424. }
  10425. #u81212 .text {
  10426. position:absolute;
  10427. align-self:flex-start;
  10428. padding:0px 0px 0px 0px;
  10429. box-sizing:border-box;
  10430. width:100%;
  10431. }
  10432. #u81212_text {
  10433. border-width:0px;
  10434. white-space:nowrap;
  10435. text-transform:none;
  10436. }
  10437. #u81213_div {
  10438. border-width:0px;
  10439. position:absolute;
  10440. left:0px;
  10441. top:0px;
  10442. width:65px;
  10443. height:22px;
  10444. background:inherit;
  10445. background-color:rgba(255, 255, 255, 0);
  10446. border:none;
  10447. border-radius:0px;
  10448. -moz-box-shadow:none;
  10449. -webkit-box-shadow:none;
  10450. box-shadow:none;
  10451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10452. font-weight:400;
  10453. font-style:normal;
  10454. font-size:16px;
  10455. }
  10456. #u81213 {
  10457. border-width:0px;
  10458. position:absolute;
  10459. left:30px;
  10460. top:538px;
  10461. width:65px;
  10462. height:22px;
  10463. display:flex;
  10464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10465. font-weight:400;
  10466. font-style:normal;
  10467. font-size:16px;
  10468. }
  10469. #u81213 .text {
  10470. position:absolute;
  10471. align-self:flex-start;
  10472. padding:0px 0px 0px 0px;
  10473. box-sizing:border-box;
  10474. width:100%;
  10475. }
  10476. #u81213_text {
  10477. border-width:0px;
  10478. white-space:nowrap;
  10479. text-transform:none;
  10480. }
  10481. #u81214_div {
  10482. border-width:0px;
  10483. position:absolute;
  10484. left:0px;
  10485. top:0px;
  10486. width:65px;
  10487. height:22px;
  10488. background:inherit;
  10489. background-color:rgba(255, 255, 255, 0);
  10490. border:none;
  10491. border-radius:0px;
  10492. -moz-box-shadow:none;
  10493. -webkit-box-shadow:none;
  10494. box-shadow:none;
  10495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10496. font-weight:400;
  10497. font-style:normal;
  10498. font-size:16px;
  10499. }
  10500. #u81214 {
  10501. border-width:0px;
  10502. position:absolute;
  10503. left:30px;
  10504. top:580px;
  10505. width:65px;
  10506. height:22px;
  10507. display:flex;
  10508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10509. font-weight:400;
  10510. font-style:normal;
  10511. font-size:16px;
  10512. }
  10513. #u81214 .text {
  10514. position:absolute;
  10515. align-self:flex-start;
  10516. padding:0px 0px 0px 0px;
  10517. box-sizing:border-box;
  10518. width:100%;
  10519. }
  10520. #u81214_text {
  10521. border-width:0px;
  10522. white-space:nowrap;
  10523. text-transform:none;
  10524. }
  10525. #u81215_img {
  10526. border-width:0px;
  10527. position:absolute;
  10528. left:0px;
  10529. top:0px;
  10530. width:201px;
  10531. height:2px;
  10532. }
  10533. #u81215 {
  10534. border-width:0px;
  10535. position:absolute;
  10536. left:0px;
  10537. top:1289px;
  10538. width:200px;
  10539. height:1px;
  10540. display:flex;
  10541. }
  10542. #u81215 .text {
  10543. position:absolute;
  10544. align-self:center;
  10545. padding:2px 2px 2px 2px;
  10546. box-sizing:border-box;
  10547. width:100%;
  10548. }
  10549. #u81215_text {
  10550. border-width:0px;
  10551. word-wrap:break-word;
  10552. text-transform:none;
  10553. visibility:hidden;
  10554. }
  10555. #u81216_div {
  10556. border-width:0px;
  10557. position:absolute;
  10558. left:0px;
  10559. top:0px;
  10560. width:65px;
  10561. height:22px;
  10562. background:inherit;
  10563. background-color:rgba(255, 255, 255, 0);
  10564. border:none;
  10565. border-radius:0px;
  10566. -moz-box-shadow:none;
  10567. -webkit-box-shadow:none;
  10568. box-shadow:none;
  10569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10570. font-weight:400;
  10571. font-style:normal;
  10572. font-size:16px;
  10573. }
  10574. #u81216 {
  10575. border-width:0px;
  10576. position:absolute;
  10577. left:30px;
  10578. top:1346px;
  10579. width:65px;
  10580. height:22px;
  10581. display:flex;
  10582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10583. font-weight:400;
  10584. font-style:normal;
  10585. font-size:16px;
  10586. }
  10587. #u81216 .text {
  10588. position:absolute;
  10589. align-self:flex-start;
  10590. padding:0px 0px 0px 0px;
  10591. box-sizing:border-box;
  10592. width:100%;
  10593. }
  10594. #u81216_text {
  10595. border-width:0px;
  10596. white-space:nowrap;
  10597. text-transform:none;
  10598. }
  10599. #u81217_div {
  10600. border-width:0px;
  10601. position:absolute;
  10602. left:0px;
  10603. top:0px;
  10604. width:49px;
  10605. height:17px;
  10606. background:inherit;
  10607. background-color:rgba(255, 255, 255, 0);
  10608. border:none;
  10609. border-radius:0px;
  10610. -moz-box-shadow:none;
  10611. -webkit-box-shadow:none;
  10612. box-shadow:none;
  10613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10614. font-weight:400;
  10615. font-style:normal;
  10616. font-size:12px;
  10617. color:#AAAAAA;
  10618. }
  10619. #u81217 {
  10620. border-width:0px;
  10621. position:absolute;
  10622. left:30px;
  10623. top:1310px;
  10624. width:49px;
  10625. height:17px;
  10626. display:flex;
  10627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10628. font-weight:400;
  10629. font-style:normal;
  10630. font-size:12px;
  10631. color:#AAAAAA;
  10632. }
  10633. #u81217 .text {
  10634. position:absolute;
  10635. align-self:flex-start;
  10636. padding:0px 0px 0px 0px;
  10637. box-sizing:border-box;
  10638. width:100%;
  10639. }
  10640. #u81217_text {
  10641. border-width:0px;
  10642. white-space:nowrap;
  10643. text-transform:none;
  10644. }
  10645. #u81218_div {
  10646. border-width:0px;
  10647. position:absolute;
  10648. left:0px;
  10649. top:0px;
  10650. width:65px;
  10651. height:22px;
  10652. background:inherit;
  10653. background-color:rgba(255, 255, 255, 0);
  10654. border:none;
  10655. border-radius:0px;
  10656. -moz-box-shadow:none;
  10657. -webkit-box-shadow:none;
  10658. box-shadow:none;
  10659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10660. font-weight:400;
  10661. font-style:normal;
  10662. font-size:16px;
  10663. }
  10664. #u81218 {
  10665. border-width:0px;
  10666. position:absolute;
  10667. left:30px;
  10668. top:1388px;
  10669. width:65px;
  10670. height:22px;
  10671. display:flex;
  10672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10673. font-weight:400;
  10674. font-style:normal;
  10675. font-size:16px;
  10676. }
  10677. #u81218 .text {
  10678. position:absolute;
  10679. align-self:flex-start;
  10680. padding:0px 0px 0px 0px;
  10681. box-sizing:border-box;
  10682. width:100%;
  10683. }
  10684. #u81218_text {
  10685. border-width:0px;
  10686. white-space:nowrap;
  10687. text-transform:none;
  10688. }
  10689. #u81219_div {
  10690. border-width:0px;
  10691. position:absolute;
  10692. left:0px;
  10693. top:0px;
  10694. width:65px;
  10695. height:22px;
  10696. background:inherit;
  10697. background-color:rgba(255, 255, 255, 0);
  10698. border:none;
  10699. border-radius:0px;
  10700. -moz-box-shadow:none;
  10701. -webkit-box-shadow:none;
  10702. box-shadow:none;
  10703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10704. font-weight:400;
  10705. font-style:normal;
  10706. font-size:16px;
  10707. }
  10708. #u81219 {
  10709. border-width:0px;
  10710. position:absolute;
  10711. left:30px;
  10712. top:1472px;
  10713. width:65px;
  10714. height:22px;
  10715. display:flex;
  10716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10717. font-weight:400;
  10718. font-style:normal;
  10719. font-size:16px;
  10720. }
  10721. #u81219 .text {
  10722. position:absolute;
  10723. align-self:flex-start;
  10724. padding:0px 0px 0px 0px;
  10725. box-sizing:border-box;
  10726. width:100%;
  10727. }
  10728. #u81219_text {
  10729. border-width:0px;
  10730. white-space:nowrap;
  10731. text-transform:none;
  10732. }
  10733. #u81220_img {
  10734. border-width:0px;
  10735. position:absolute;
  10736. left:0px;
  10737. top:0px;
  10738. width:201px;
  10739. height:2px;
  10740. }
  10741. #u81220 {
  10742. border-width:0px;
  10743. position:absolute;
  10744. left:0px;
  10745. top:1514px;
  10746. width:200px;
  10747. height:1px;
  10748. display:flex;
  10749. }
  10750. #u81220 .text {
  10751. position:absolute;
  10752. align-self:center;
  10753. padding:2px 2px 2px 2px;
  10754. box-sizing:border-box;
  10755. width:100%;
  10756. }
  10757. #u81220_text {
  10758. border-width:0px;
  10759. word-wrap:break-word;
  10760. text-transform:none;
  10761. visibility:hidden;
  10762. }
  10763. #u81221_div {
  10764. border-width:0px;
  10765. position:absolute;
  10766. left:0px;
  10767. top:0px;
  10768. width:49px;
  10769. height:22px;
  10770. background:inherit;
  10771. background-color:rgba(255, 255, 255, 0);
  10772. border:none;
  10773. border-radius:0px;
  10774. -moz-box-shadow:none;
  10775. -webkit-box-shadow:none;
  10776. box-shadow:none;
  10777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10778. font-weight:400;
  10779. font-style:normal;
  10780. font-size:16px;
  10781. }
  10782. #u81221 {
  10783. border-width:0px;
  10784. position:absolute;
  10785. left:30px;
  10786. top:1571px;
  10787. width:49px;
  10788. height:22px;
  10789. display:flex;
  10790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10791. font-weight:400;
  10792. font-style:normal;
  10793. font-size:16px;
  10794. }
  10795. #u81221 .text {
  10796. position:absolute;
  10797. align-self:flex-start;
  10798. padding:0px 0px 0px 0px;
  10799. box-sizing:border-box;
  10800. width:100%;
  10801. }
  10802. #u81221_text {
  10803. border-width:0px;
  10804. white-space:nowrap;
  10805. text-transform:none;
  10806. }
  10807. #u81222_div {
  10808. border-width:0px;
  10809. position:absolute;
  10810. left:0px;
  10811. top:0px;
  10812. width:49px;
  10813. height:17px;
  10814. background:inherit;
  10815. background-color:rgba(255, 255, 255, 0);
  10816. border:none;
  10817. border-radius:0px;
  10818. -moz-box-shadow:none;
  10819. -webkit-box-shadow:none;
  10820. box-shadow:none;
  10821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10822. font-weight:400;
  10823. font-style:normal;
  10824. font-size:12px;
  10825. color:#AAAAAA;
  10826. }
  10827. #u81222 {
  10828. border-width:0px;
  10829. position:absolute;
  10830. left:30px;
  10831. top:1535px;
  10832. width:49px;
  10833. height:17px;
  10834. display:flex;
  10835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10836. font-weight:400;
  10837. font-style:normal;
  10838. font-size:12px;
  10839. color:#AAAAAA;
  10840. }
  10841. #u81222 .text {
  10842. position:absolute;
  10843. align-self:flex-start;
  10844. padding:0px 0px 0px 0px;
  10845. box-sizing:border-box;
  10846. width:100%;
  10847. }
  10848. #u81222_text {
  10849. border-width:0px;
  10850. white-space:nowrap;
  10851. text-transform:none;
  10852. }
  10853. #u81223_div {
  10854. border-width:0px;
  10855. position:absolute;
  10856. left:0px;
  10857. top:0px;
  10858. width:49px;
  10859. height:22px;
  10860. background:inherit;
  10861. background-color:rgba(255, 255, 255, 0);
  10862. border:none;
  10863. border-radius:0px;
  10864. -moz-box-shadow:none;
  10865. -webkit-box-shadow:none;
  10866. box-shadow:none;
  10867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10868. font-weight:400;
  10869. font-style:normal;
  10870. font-size:16px;
  10871. }
  10872. #u81223 {
  10873. border-width:0px;
  10874. position:absolute;
  10875. left:30px;
  10876. top:1613px;
  10877. width:49px;
  10878. height:22px;
  10879. display:flex;
  10880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10881. font-weight:400;
  10882. font-style:normal;
  10883. font-size:16px;
  10884. }
  10885. #u81223 .text {
  10886. position:absolute;
  10887. align-self:flex-start;
  10888. padding:0px 0px 0px 0px;
  10889. box-sizing:border-box;
  10890. width:100%;
  10891. }
  10892. #u81223_text {
  10893. border-width:0px;
  10894. white-space:nowrap;
  10895. text-transform:none;
  10896. }
  10897. #u81224_div {
  10898. border-width:0px;
  10899. position:absolute;
  10900. left:0px;
  10901. top:0px;
  10902. width:65px;
  10903. height:22px;
  10904. background:inherit;
  10905. background-color:rgba(255, 255, 255, 0);
  10906. border:none;
  10907. border-radius:0px;
  10908. -moz-box-shadow:none;
  10909. -webkit-box-shadow:none;
  10910. box-shadow:none;
  10911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10912. font-weight:400;
  10913. font-style:normal;
  10914. font-size:16px;
  10915. }
  10916. #u81224 {
  10917. border-width:0px;
  10918. position:absolute;
  10919. left:30px;
  10920. top:1655px;
  10921. width:65px;
  10922. height:22px;
  10923. display:flex;
  10924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10925. font-weight:400;
  10926. font-style:normal;
  10927. font-size:16px;
  10928. }
  10929. #u81224 .text {
  10930. position:absolute;
  10931. align-self:flex-start;
  10932. padding:0px 0px 0px 0px;
  10933. box-sizing:border-box;
  10934. width:100%;
  10935. }
  10936. #u81224_text {
  10937. border-width:0px;
  10938. white-space:nowrap;
  10939. text-transform:none;
  10940. }
  10941. #u81225_img {
  10942. border-width:0px;
  10943. position:absolute;
  10944. left:0px;
  10945. top:0px;
  10946. width:201px;
  10947. height:2px;
  10948. }
  10949. #u81225 {
  10950. border-width:0px;
  10951. position:absolute;
  10952. left:0px;
  10953. top:1697px;
  10954. width:200px;
  10955. height:1px;
  10956. display:flex;
  10957. }
  10958. #u81225 .text {
  10959. position:absolute;
  10960. align-self:center;
  10961. padding:2px 2px 2px 2px;
  10962. box-sizing:border-box;
  10963. width:100%;
  10964. }
  10965. #u81225_text {
  10966. border-width:0px;
  10967. word-wrap:break-word;
  10968. text-transform:none;
  10969. visibility:hidden;
  10970. }
  10971. #u81226_div {
  10972. border-width:0px;
  10973. position:absolute;
  10974. left:0px;
  10975. top:0px;
  10976. width:81px;
  10977. height:22px;
  10978. background:inherit;
  10979. background-color:rgba(255, 255, 255, 0);
  10980. border:none;
  10981. border-radius:0px;
  10982. -moz-box-shadow:none;
  10983. -webkit-box-shadow:none;
  10984. box-shadow:none;
  10985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10986. font-weight:400;
  10987. font-style:normal;
  10988. font-size:16px;
  10989. }
  10990. #u81226 {
  10991. border-width:0px;
  10992. position:absolute;
  10993. left:30px;
  10994. top:1754px;
  10995. width:81px;
  10996. height:22px;
  10997. display:flex;
  10998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10999. font-weight:400;
  11000. font-style:normal;
  11001. font-size:16px;
  11002. }
  11003. #u81226 .text {
  11004. position:absolute;
  11005. align-self:flex-start;
  11006. padding:0px 0px 0px 0px;
  11007. box-sizing:border-box;
  11008. width:100%;
  11009. }
  11010. #u81226_text {
  11011. border-width:0px;
  11012. white-space:nowrap;
  11013. text-transform:none;
  11014. }
  11015. #u81227_div {
  11016. border-width:0px;
  11017. position:absolute;
  11018. left:0px;
  11019. top:0px;
  11020. width:49px;
  11021. height:17px;
  11022. background:inherit;
  11023. background-color:rgba(255, 255, 255, 0);
  11024. border:none;
  11025. border-radius:0px;
  11026. -moz-box-shadow:none;
  11027. -webkit-box-shadow:none;
  11028. box-shadow:none;
  11029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11030. font-weight:400;
  11031. font-style:normal;
  11032. font-size:12px;
  11033. color:#AAAAAA;
  11034. }
  11035. #u81227 {
  11036. border-width:0px;
  11037. position:absolute;
  11038. left:30px;
  11039. top:1718px;
  11040. width:49px;
  11041. height:17px;
  11042. display:flex;
  11043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11044. font-weight:400;
  11045. font-style:normal;
  11046. font-size:12px;
  11047. color:#AAAAAA;
  11048. }
  11049. #u81227 .text {
  11050. position:absolute;
  11051. align-self:flex-start;
  11052. padding:0px 0px 0px 0px;
  11053. box-sizing:border-box;
  11054. width:100%;
  11055. }
  11056. #u81227_text {
  11057. border-width:0px;
  11058. white-space:nowrap;
  11059. text-transform:none;
  11060. }
  11061. #u81228_div {
  11062. border-width:0px;
  11063. position:absolute;
  11064. left:0px;
  11065. top:0px;
  11066. width:81px;
  11067. height:22px;
  11068. background:inherit;
  11069. background-color:rgba(255, 255, 255, 0);
  11070. border:none;
  11071. border-radius:0px;
  11072. -moz-box-shadow:none;
  11073. -webkit-box-shadow:none;
  11074. box-shadow:none;
  11075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11076. font-weight:400;
  11077. font-style:normal;
  11078. font-size:16px;
  11079. }
  11080. #u81228 {
  11081. border-width:0px;
  11082. position:absolute;
  11083. left:30px;
  11084. top:1796px;
  11085. width:81px;
  11086. height:22px;
  11087. display:flex;
  11088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11089. font-weight:400;
  11090. font-style:normal;
  11091. font-size:16px;
  11092. }
  11093. #u81228 .text {
  11094. position:absolute;
  11095. align-self:flex-start;
  11096. padding:0px 0px 0px 0px;
  11097. box-sizing:border-box;
  11098. width:100%;
  11099. }
  11100. #u81228_text {
  11101. border-width:0px;
  11102. white-space:nowrap;
  11103. text-transform:none;
  11104. }
  11105. #u81229_div {
  11106. border-width:0px;
  11107. position:absolute;
  11108. left:0px;
  11109. top:0px;
  11110. width:81px;
  11111. height:22px;
  11112. background:inherit;
  11113. background-color:rgba(255, 255, 255, 0);
  11114. border:none;
  11115. border-radius:0px;
  11116. -moz-box-shadow:none;
  11117. -webkit-box-shadow:none;
  11118. box-shadow:none;
  11119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11120. font-weight:400;
  11121. font-style:normal;
  11122. font-size:16px;
  11123. }
  11124. #u81229 {
  11125. border-width:0px;
  11126. position:absolute;
  11127. left:30px;
  11128. top:1838px;
  11129. width:81px;
  11130. height:22px;
  11131. display:flex;
  11132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11133. font-weight:400;
  11134. font-style:normal;
  11135. font-size:16px;
  11136. }
  11137. #u81229 .text {
  11138. position:absolute;
  11139. align-self:flex-start;
  11140. padding:0px 0px 0px 0px;
  11141. box-sizing:border-box;
  11142. width:100%;
  11143. }
  11144. #u81229_text {
  11145. border-width:0px;
  11146. white-space:nowrap;
  11147. text-transform:none;
  11148. }
  11149. #u81230_div {
  11150. border-width:0px;
  11151. position:absolute;
  11152. left:0px;
  11153. top:0px;
  11154. width:65px;
  11155. height:22px;
  11156. background:inherit;
  11157. background-color:rgba(255, 255, 255, 0);
  11158. border:none;
  11159. border-radius:0px;
  11160. -moz-box-shadow:none;
  11161. -webkit-box-shadow:none;
  11162. box-shadow:none;
  11163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11164. font-weight:400;
  11165. font-style:normal;
  11166. font-size:16px;
  11167. }
  11168. #u81230 {
  11169. border-width:0px;
  11170. position:absolute;
  11171. left:30px;
  11172. top:1430px;
  11173. width:65px;
  11174. height:22px;
  11175. display:flex;
  11176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11177. font-weight:400;
  11178. font-style:normal;
  11179. font-size:16px;
  11180. }
  11181. #u81230 .text {
  11182. position:absolute;
  11183. align-self:flex-start;
  11184. padding:0px 0px 0px 0px;
  11185. box-sizing:border-box;
  11186. width:100%;
  11187. }
  11188. #u81230_text {
  11189. border-width:0px;
  11190. white-space:nowrap;
  11191. text-transform:none;
  11192. }
  11193. #u81231_img {
  11194. border-width:0px;
  11195. position:absolute;
  11196. left:0px;
  11197. top:0px;
  11198. width:201px;
  11199. height:2px;
  11200. }
  11201. #u81231 {
  11202. border-width:0px;
  11203. position:absolute;
  11204. left:0px;
  11205. top:669px;
  11206. width:200px;
  11207. height:1px;
  11208. display:flex;
  11209. }
  11210. #u81231 .text {
  11211. position:absolute;
  11212. align-self:center;
  11213. padding:2px 2px 2px 2px;
  11214. box-sizing:border-box;
  11215. width:100%;
  11216. }
  11217. #u81231_text {
  11218. border-width:0px;
  11219. word-wrap:break-word;
  11220. text-transform:none;
  11221. visibility:hidden;
  11222. }
  11223. #u81232_div {
  11224. border-width:0px;
  11225. position:absolute;
  11226. left:0px;
  11227. top:0px;
  11228. width:65px;
  11229. height:22px;
  11230. background:inherit;
  11231. background-color:rgba(255, 255, 255, 0);
  11232. border:none;
  11233. border-radius:0px;
  11234. -moz-box-shadow:none;
  11235. -webkit-box-shadow:none;
  11236. box-shadow:none;
  11237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11238. font-weight:400;
  11239. font-style:normal;
  11240. font-size:16px;
  11241. }
  11242. #u81232 {
  11243. border-width:0px;
  11244. position:absolute;
  11245. left:30px;
  11246. top:726px;
  11247. width:65px;
  11248. height:22px;
  11249. display:flex;
  11250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11251. font-weight:400;
  11252. font-style:normal;
  11253. font-size:16px;
  11254. }
  11255. #u81232 .text {
  11256. position:absolute;
  11257. align-self:flex-start;
  11258. padding:0px 0px 0px 0px;
  11259. box-sizing:border-box;
  11260. width:100%;
  11261. }
  11262. #u81232_text {
  11263. border-width:0px;
  11264. white-space:nowrap;
  11265. text-transform:none;
  11266. }
  11267. #u81233_div {
  11268. border-width:0px;
  11269. position:absolute;
  11270. left:0px;
  11271. top:0px;
  11272. width:49px;
  11273. height:17px;
  11274. background:inherit;
  11275. background-color:rgba(255, 255, 255, 0);
  11276. border:none;
  11277. border-radius:0px;
  11278. -moz-box-shadow:none;
  11279. -webkit-box-shadow:none;
  11280. box-shadow:none;
  11281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11282. font-weight:400;
  11283. font-style:normal;
  11284. font-size:12px;
  11285. color:#AAAAAA;
  11286. }
  11287. #u81233 {
  11288. border-width:0px;
  11289. position:absolute;
  11290. left:30px;
  11291. top:690px;
  11292. width:49px;
  11293. height:17px;
  11294. display:flex;
  11295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11296. font-weight:400;
  11297. font-style:normal;
  11298. font-size:12px;
  11299. color:#AAAAAA;
  11300. }
  11301. #u81233 .text {
  11302. position:absolute;
  11303. align-self:flex-start;
  11304. padding:0px 0px 0px 0px;
  11305. box-sizing:border-box;
  11306. width:100%;
  11307. }
  11308. #u81233_text {
  11309. border-width:0px;
  11310. white-space:nowrap;
  11311. text-transform:none;
  11312. }
  11313. #u81234_div {
  11314. border-width:0px;
  11315. position:absolute;
  11316. left:0px;
  11317. top:0px;
  11318. width:65px;
  11319. height:22px;
  11320. background:inherit;
  11321. background-color:rgba(255, 255, 255, 0);
  11322. border:none;
  11323. border-radius:0px;
  11324. -moz-box-shadow:none;
  11325. -webkit-box-shadow:none;
  11326. box-shadow:none;
  11327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11328. font-weight:400;
  11329. font-style:normal;
  11330. font-size:16px;
  11331. }
  11332. #u81234 {
  11333. border-width:0px;
  11334. position:absolute;
  11335. left:30px;
  11336. top:768px;
  11337. width:65px;
  11338. height:22px;
  11339. display:flex;
  11340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11341. font-weight:400;
  11342. font-style:normal;
  11343. font-size:16px;
  11344. }
  11345. #u81234 .text {
  11346. position:absolute;
  11347. align-self:flex-start;
  11348. padding:0px 0px 0px 0px;
  11349. box-sizing:border-box;
  11350. width:100%;
  11351. }
  11352. #u81234_text {
  11353. border-width:0px;
  11354. white-space:nowrap;
  11355. text-transform:none;
  11356. }
  11357. #u81235_div {
  11358. border-width:0px;
  11359. position:absolute;
  11360. left:0px;
  11361. top:0px;
  11362. width:65px;
  11363. height:22px;
  11364. background:inherit;
  11365. background-color:rgba(255, 255, 255, 0);
  11366. border:none;
  11367. border-radius:0px;
  11368. -moz-box-shadow:none;
  11369. -webkit-box-shadow:none;
  11370. box-shadow:none;
  11371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11372. font-weight:400;
  11373. font-style:normal;
  11374. font-size:16px;
  11375. }
  11376. #u81235 {
  11377. border-width:0px;
  11378. position:absolute;
  11379. left:30px;
  11380. top:852px;
  11381. width:65px;
  11382. height:22px;
  11383. display:flex;
  11384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11385. font-weight:400;
  11386. font-style:normal;
  11387. font-size:16px;
  11388. }
  11389. #u81235 .text {
  11390. position:absolute;
  11391. align-self:flex-start;
  11392. padding:0px 0px 0px 0px;
  11393. box-sizing:border-box;
  11394. width:100%;
  11395. }
  11396. #u81235_text {
  11397. border-width:0px;
  11398. white-space:nowrap;
  11399. text-transform:none;
  11400. }
  11401. #u81236_div {
  11402. border-width:0px;
  11403. position:absolute;
  11404. left:0px;
  11405. top:0px;
  11406. width:65px;
  11407. height:22px;
  11408. background:inherit;
  11409. background-color:rgba(255, 255, 255, 0);
  11410. border:none;
  11411. border-radius:0px;
  11412. -moz-box-shadow:none;
  11413. -webkit-box-shadow:none;
  11414. box-shadow:none;
  11415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11416. font-weight:400;
  11417. font-style:normal;
  11418. font-size:16px;
  11419. }
  11420. #u81236 {
  11421. border-width:0px;
  11422. position:absolute;
  11423. left:30px;
  11424. top:810px;
  11425. width:65px;
  11426. height:22px;
  11427. display:flex;
  11428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11429. font-weight:400;
  11430. font-style:normal;
  11431. font-size:16px;
  11432. }
  11433. #u81236 .text {
  11434. position:absolute;
  11435. align-self:flex-start;
  11436. padding:0px 0px 0px 0px;
  11437. box-sizing:border-box;
  11438. width:100%;
  11439. }
  11440. #u81236_text {
  11441. border-width:0px;
  11442. white-space:nowrap;
  11443. text-transform:none;
  11444. }
  11445. #u81237_div {
  11446. border-width:0px;
  11447. position:absolute;
  11448. left:0px;
  11449. top:0px;
  11450. width:65px;
  11451. height:22px;
  11452. background:inherit;
  11453. background-color:rgba(255, 255, 255, 0);
  11454. border:none;
  11455. border-radius:0px;
  11456. -moz-box-shadow:none;
  11457. -webkit-box-shadow:none;
  11458. box-shadow:none;
  11459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11460. font-weight:400;
  11461. font-style:normal;
  11462. font-size:16px;
  11463. }
  11464. #u81237 {
  11465. border-width:0px;
  11466. position:absolute;
  11467. left:30px;
  11468. top:894px;
  11469. width:65px;
  11470. height:22px;
  11471. display:flex;
  11472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11473. font-weight:400;
  11474. font-style:normal;
  11475. font-size:16px;
  11476. }
  11477. #u81237 .text {
  11478. position:absolute;
  11479. align-self:flex-start;
  11480. padding:0px 0px 0px 0px;
  11481. box-sizing:border-box;
  11482. width:100%;
  11483. }
  11484. #u81237_text {
  11485. border-width:0px;
  11486. white-space:nowrap;
  11487. text-transform:none;
  11488. }
  11489. #u81238_div {
  11490. border-width:0px;
  11491. position:absolute;
  11492. left:0px;
  11493. top:0px;
  11494. width:65px;
  11495. height:22px;
  11496. background:inherit;
  11497. background-color:rgba(255, 255, 255, 0);
  11498. border:none;
  11499. border-radius:0px;
  11500. -moz-box-shadow:none;
  11501. -webkit-box-shadow:none;
  11502. box-shadow:none;
  11503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11504. font-weight:400;
  11505. font-style:normal;
  11506. font-size:16px;
  11507. }
  11508. #u81238 {
  11509. border-width:0px;
  11510. position:absolute;
  11511. left:30px;
  11512. top:936px;
  11513. width:65px;
  11514. height:22px;
  11515. display:flex;
  11516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11517. font-weight:400;
  11518. font-style:normal;
  11519. font-size:16px;
  11520. }
  11521. #u81238 .text {
  11522. position:absolute;
  11523. align-self:flex-start;
  11524. padding:0px 0px 0px 0px;
  11525. box-sizing:border-box;
  11526. width:100%;
  11527. }
  11528. #u81238_text {
  11529. border-width:0px;
  11530. white-space:nowrap;
  11531. text-transform:none;
  11532. }
  11533. #u81239_img {
  11534. border-width:0px;
  11535. position:absolute;
  11536. left:0px;
  11537. top:0px;
  11538. width:201px;
  11539. height:2px;
  11540. }
  11541. #u81239 {
  11542. border-width:0px;
  11543. position:absolute;
  11544. left:0px;
  11545. top:1018px;
  11546. width:200px;
  11547. height:1px;
  11548. display:flex;
  11549. }
  11550. #u81239 .text {
  11551. position:absolute;
  11552. align-self:center;
  11553. padding:2px 2px 2px 2px;
  11554. box-sizing:border-box;
  11555. width:100%;
  11556. }
  11557. #u81239_text {
  11558. border-width:0px;
  11559. word-wrap:break-word;
  11560. text-transform:none;
  11561. visibility:hidden;
  11562. }
  11563. #u81240_div {
  11564. border-width:0px;
  11565. position:absolute;
  11566. left:0px;
  11567. top:0px;
  11568. width:65px;
  11569. height:22px;
  11570. background:inherit;
  11571. background-color:rgba(255, 255, 255, 0);
  11572. border:none;
  11573. border-radius:0px;
  11574. -moz-box-shadow:none;
  11575. -webkit-box-shadow:none;
  11576. box-shadow:none;
  11577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11578. font-weight:400;
  11579. font-style:normal;
  11580. font-size:16px;
  11581. }
  11582. #u81240 {
  11583. border-width:0px;
  11584. position:absolute;
  11585. left:30px;
  11586. top:1075px;
  11587. width:65px;
  11588. height:22px;
  11589. display:flex;
  11590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11591. font-weight:400;
  11592. font-style:normal;
  11593. font-size:16px;
  11594. }
  11595. #u81240 .text {
  11596. position:absolute;
  11597. align-self:flex-start;
  11598. padding:0px 0px 0px 0px;
  11599. box-sizing:border-box;
  11600. width:100%;
  11601. }
  11602. #u81240_text {
  11603. border-width:0px;
  11604. white-space:nowrap;
  11605. text-transform:none;
  11606. }
  11607. #u81241_div {
  11608. border-width:0px;
  11609. position:absolute;
  11610. left:0px;
  11611. top:0px;
  11612. width:49px;
  11613. height:17px;
  11614. background:inherit;
  11615. background-color:rgba(255, 255, 255, 0);
  11616. border:none;
  11617. border-radius:0px;
  11618. -moz-box-shadow:none;
  11619. -webkit-box-shadow:none;
  11620. box-shadow:none;
  11621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11622. font-weight:400;
  11623. font-style:normal;
  11624. font-size:12px;
  11625. color:#AAAAAA;
  11626. }
  11627. #u81241 {
  11628. border-width:0px;
  11629. position:absolute;
  11630. left:30px;
  11631. top:1039px;
  11632. width:49px;
  11633. height:17px;
  11634. display:flex;
  11635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11636. font-weight:400;
  11637. font-style:normal;
  11638. font-size:12px;
  11639. color:#AAAAAA;
  11640. }
  11641. #u81241 .text {
  11642. position:absolute;
  11643. align-self:flex-start;
  11644. padding:0px 0px 0px 0px;
  11645. box-sizing:border-box;
  11646. width:100%;
  11647. }
  11648. #u81241_text {
  11649. border-width:0px;
  11650. white-space:nowrap;
  11651. text-transform:none;
  11652. }
  11653. #u81242_div {
  11654. border-width:0px;
  11655. position:absolute;
  11656. left:0px;
  11657. top:0px;
  11658. width:65px;
  11659. height:22px;
  11660. background:inherit;
  11661. background-color:rgba(255, 255, 255, 0);
  11662. border:none;
  11663. border-radius:0px;
  11664. -moz-box-shadow:none;
  11665. -webkit-box-shadow:none;
  11666. box-shadow:none;
  11667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11668. font-weight:400;
  11669. font-style:normal;
  11670. font-size:16px;
  11671. }
  11672. #u81242 {
  11673. border-width:0px;
  11674. position:absolute;
  11675. left:30px;
  11676. top:1117px;
  11677. width:65px;
  11678. height:22px;
  11679. display:flex;
  11680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11681. font-weight:400;
  11682. font-style:normal;
  11683. font-size:16px;
  11684. }
  11685. #u81242 .text {
  11686. position:absolute;
  11687. align-self:flex-start;
  11688. padding:0px 0px 0px 0px;
  11689. box-sizing:border-box;
  11690. width:100%;
  11691. }
  11692. #u81242_text {
  11693. border-width:0px;
  11694. white-space:nowrap;
  11695. text-transform:none;
  11696. }
  11697. #u81243_div {
  11698. border-width:0px;
  11699. position:absolute;
  11700. left:0px;
  11701. top:0px;
  11702. width:65px;
  11703. height:22px;
  11704. background:inherit;
  11705. background-color:rgba(255, 255, 255, 0);
  11706. border:none;
  11707. border-radius:0px;
  11708. -moz-box-shadow:none;
  11709. -webkit-box-shadow:none;
  11710. box-shadow:none;
  11711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11712. font-weight:400;
  11713. font-style:normal;
  11714. font-size:16px;
  11715. }
  11716. #u81243 {
  11717. border-width:0px;
  11718. position:absolute;
  11719. left:30px;
  11720. top:1201px;
  11721. width:65px;
  11722. height:22px;
  11723. display:flex;
  11724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11725. font-weight:400;
  11726. font-style:normal;
  11727. font-size:16px;
  11728. }
  11729. #u81243 .text {
  11730. position:absolute;
  11731. align-self:flex-start;
  11732. padding:0px 0px 0px 0px;
  11733. box-sizing:border-box;
  11734. width:100%;
  11735. }
  11736. #u81243_text {
  11737. border-width:0px;
  11738. white-space:nowrap;
  11739. text-transform:none;
  11740. }
  11741. #u81244_div {
  11742. border-width:0px;
  11743. position:absolute;
  11744. left:0px;
  11745. top:0px;
  11746. width:65px;
  11747. height:22px;
  11748. background:inherit;
  11749. background-color:rgba(255, 255, 255, 0);
  11750. border:none;
  11751. border-radius:0px;
  11752. -moz-box-shadow:none;
  11753. -webkit-box-shadow:none;
  11754. box-shadow:none;
  11755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11756. font-weight:400;
  11757. font-style:normal;
  11758. font-size:16px;
  11759. }
  11760. #u81244 {
  11761. border-width:0px;
  11762. position:absolute;
  11763. left:30px;
  11764. top:1159px;
  11765. width:65px;
  11766. height:22px;
  11767. display:flex;
  11768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11769. font-weight:400;
  11770. font-style:normal;
  11771. font-size:16px;
  11772. }
  11773. #u81244 .text {
  11774. position:absolute;
  11775. align-self:flex-start;
  11776. padding:0px 0px 0px 0px;
  11777. box-sizing:border-box;
  11778. width:100%;
  11779. }
  11780. #u81244_text {
  11781. border-width:0px;
  11782. white-space:nowrap;
  11783. text-transform:none;
  11784. }
  11785. #u81245_div {
  11786. border-width:0px;
  11787. position:absolute;
  11788. left:0px;
  11789. top:0px;
  11790. width:65px;
  11791. height:22px;
  11792. background:inherit;
  11793. background-color:rgba(255, 255, 255, 0);
  11794. border:none;
  11795. border-radius:0px;
  11796. -moz-box-shadow:none;
  11797. -webkit-box-shadow:none;
  11798. box-shadow:none;
  11799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11800. font-weight:400;
  11801. font-style:normal;
  11802. font-size:16px;
  11803. }
  11804. #u81245 {
  11805. border-width:0px;
  11806. position:absolute;
  11807. left:30px;
  11808. top:1243px;
  11809. width:65px;
  11810. height:22px;
  11811. display:flex;
  11812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11813. font-weight:400;
  11814. font-style:normal;
  11815. font-size:16px;
  11816. }
  11817. #u81245 .text {
  11818. position:absolute;
  11819. align-self:flex-start;
  11820. padding:0px 0px 0px 0px;
  11821. box-sizing:border-box;
  11822. width:100%;
  11823. }
  11824. #u81245_text {
  11825. border-width:0px;
  11826. white-space:nowrap;
  11827. text-transform:none;
  11828. }
  11829. #u81246_div {
  11830. border-width:0px;
  11831. position:absolute;
  11832. left:0px;
  11833. top:0px;
  11834. width:65px;
  11835. height:22px;
  11836. background:inherit;
  11837. background-color:rgba(255, 255, 255, 0);
  11838. border:none;
  11839. border-radius:0px;
  11840. -moz-box-shadow:none;
  11841. -webkit-box-shadow:none;
  11842. box-shadow:none;
  11843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11844. font-weight:400;
  11845. font-style:normal;
  11846. font-size:16px;
  11847. }
  11848. #u81246 {
  11849. border-width:0px;
  11850. position:absolute;
  11851. left:30px;
  11852. top:978px;
  11853. width:65px;
  11854. height:22px;
  11855. display:flex;
  11856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11857. font-weight:400;
  11858. font-style:normal;
  11859. font-size:16px;
  11860. }
  11861. #u81246 .text {
  11862. position:absolute;
  11863. align-self:flex-start;
  11864. padding:0px 0px 0px 0px;
  11865. box-sizing:border-box;
  11866. width:100%;
  11867. }
  11868. #u81246_text {
  11869. border-width:0px;
  11870. white-space:nowrap;
  11871. text-transform:none;
  11872. }
  11873. #u81247_div {
  11874. border-width:0px;
  11875. position:absolute;
  11876. left:0px;
  11877. top:0px;
  11878. width:65px;
  11879. height:22px;
  11880. background:inherit;
  11881. background-color:rgba(255, 255, 255, 0);
  11882. border:none;
  11883. border-radius:0px;
  11884. -moz-box-shadow:none;
  11885. -webkit-box-shadow:none;
  11886. box-shadow:none;
  11887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11888. font-weight:400;
  11889. font-style:normal;
  11890. font-size:16px;
  11891. }
  11892. #u81247 {
  11893. border-width:0px;
  11894. position:absolute;
  11895. left:30px;
  11896. top:622px;
  11897. width:65px;
  11898. height:22px;
  11899. display:flex;
  11900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11901. font-weight:400;
  11902. font-style:normal;
  11903. font-size:16px;
  11904. }
  11905. #u81247 .text {
  11906. position:absolute;
  11907. align-self:flex-start;
  11908. padding:0px 0px 0px 0px;
  11909. box-sizing:border-box;
  11910. width:100%;
  11911. }
  11912. #u81247_text {
  11913. border-width:0px;
  11914. white-space:nowrap;
  11915. text-transform:none;
  11916. }
  11917. #u81248 {
  11918. border-width:0px;
  11919. position:absolute;
  11920. left:0px;
  11921. top:0px;
  11922. width:0px;
  11923. height:0px;
  11924. }
  11925. #u81249_div {
  11926. border-width:0px;
  11927. position:absolute;
  11928. left:0px;
  11929. top:0px;
  11930. width:120px;
  11931. height:140px;
  11932. background:inherit;
  11933. background-color:rgba(255, 255, 255, 1);
  11934. box-sizing:border-box;
  11935. border-width:1px;
  11936. border-style:solid;
  11937. border-color:rgba(242, 242, 242, 1);
  11938. border-left:0px;
  11939. border-right:0px;
  11940. border-radius:3px;
  11941. border-top-left-radius:0px;
  11942. border-top-right-radius:0px;
  11943. border-bottom-right-radius:0px;
  11944. border-bottom-left-radius:0px;
  11945. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  11946. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  11947. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  11948. }
  11949. #u81249 {
  11950. border-width:0px;
  11951. position:absolute;
  11952. left:1419px;
  11953. top:455px;
  11954. width:120px;
  11955. height:140px;
  11956. display:flex;
  11957. }
  11958. #u81249 .text {
  11959. position:absolute;
  11960. align-self:center;
  11961. padding:2px 2px 2px 2px;
  11962. box-sizing:border-box;
  11963. width:100%;
  11964. }
  11965. #u81249_text {
  11966. border-width:0px;
  11967. word-wrap:break-word;
  11968. text-transform:none;
  11969. visibility:hidden;
  11970. }
  11971. #u81250_div {
  11972. border-width:0px;
  11973. position:absolute;
  11974. left:0px;
  11975. top:0px;
  11976. width:100px;
  11977. height:40px;
  11978. background:inherit;
  11979. background-color:rgba(255, 255, 255, 1);
  11980. box-sizing:border-box;
  11981. border-width:1px;
  11982. border-style:solid;
  11983. border-color:rgba(242, 242, 242, 1);
  11984. border-left:0px;
  11985. border-top:0px;
  11986. border-right:0px;
  11987. border-radius:4px;
  11988. border-bottom-right-radius:0px;
  11989. border-bottom-left-radius:0px;
  11990. -moz-box-shadow:none;
  11991. -webkit-box-shadow:none;
  11992. box-shadow:none;
  11993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11994. font-weight:400;
  11995. font-style:normal;
  11996. font-size:14px;
  11997. }
  11998. #u81250 {
  11999. border-width:0px;
  12000. position:absolute;
  12001. left:1429px;
  12002. top:466px;
  12003. width:100px;
  12004. height:40px;
  12005. display:flex;
  12006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12007. font-weight:400;
  12008. font-style:normal;
  12009. font-size:14px;
  12010. }
  12011. #u81250 .text {
  12012. position:absolute;
  12013. align-self:center;
  12014. padding:5px 0px 5px 0px;
  12015. box-sizing:border-box;
  12016. width:100%;
  12017. }
  12018. #u81250_text {
  12019. border-width:0px;
  12020. word-wrap:break-word;
  12021. text-transform:none;
  12022. }
  12023. #u81251_div {
  12024. border-width:0px;
  12025. position:absolute;
  12026. left:0px;
  12027. top:0px;
  12028. width:100px;
  12029. height:40px;
  12030. background:inherit;
  12031. background-color:rgba(255, 255, 255, 1);
  12032. box-sizing:border-box;
  12033. border-width:1px;
  12034. border-style:solid;
  12035. border-color:rgba(242, 242, 242, 1);
  12036. border-left:0px;
  12037. border-top:0px;
  12038. border-right:0px;
  12039. border-radius:4px;
  12040. border-bottom-right-radius:0px;
  12041. border-bottom-left-radius:0px;
  12042. -moz-box-shadow:none;
  12043. -webkit-box-shadow:none;
  12044. box-shadow:none;
  12045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12046. font-weight:400;
  12047. font-style:normal;
  12048. font-size:14px;
  12049. }
  12050. #u81251 {
  12051. border-width:0px;
  12052. position:absolute;
  12053. left:1429px;
  12054. top:506px;
  12055. width:100px;
  12056. height:40px;
  12057. display:flex;
  12058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12059. font-weight:400;
  12060. font-style:normal;
  12061. font-size:14px;
  12062. }
  12063. #u81251 .text {
  12064. position:absolute;
  12065. align-self:center;
  12066. padding:5px 0px 5px 0px;
  12067. box-sizing:border-box;
  12068. width:100%;
  12069. }
  12070. #u81251_text {
  12071. border-width:0px;
  12072. word-wrap:break-word;
  12073. text-transform:none;
  12074. }
  12075. #u81252_div {
  12076. border-width:0px;
  12077. position:absolute;
  12078. left:0px;
  12079. top:0px;
  12080. width:100px;
  12081. height:40px;
  12082. background:inherit;
  12083. background-color:rgba(255, 255, 255, 1);
  12084. border:none;
  12085. border-left:0px;
  12086. border-top:0px;
  12087. border-right:0px;
  12088. border-radius:4px;
  12089. border-bottom-right-radius:0px;
  12090. border-bottom-left-radius:0px;
  12091. -moz-box-shadow:none;
  12092. -webkit-box-shadow:none;
  12093. box-shadow:none;
  12094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12095. font-weight:400;
  12096. font-style:normal;
  12097. font-size:14px;
  12098. }
  12099. #u81252 {
  12100. border-width:0px;
  12101. position:absolute;
  12102. left:1429px;
  12103. top:546px;
  12104. width:100px;
  12105. height:40px;
  12106. display:flex;
  12107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12108. font-weight:400;
  12109. font-style:normal;
  12110. font-size:14px;
  12111. }
  12112. #u81252 .text {
  12113. position:absolute;
  12114. align-self:center;
  12115. padding:5px 0px 5px 0px;
  12116. box-sizing:border-box;
  12117. width:100%;
  12118. }
  12119. #u81252_text {
  12120. border-width:0px;
  12121. word-wrap:break-word;
  12122. text-transform:none;
  12123. }
  12124. #u81253_div {
  12125. border-width:0px;
  12126. position:absolute;
  12127. left:0px;
  12128. top:0px;
  12129. width:109px;
  12130. height:50px;
  12131. background:inherit;
  12132. background-color:rgba(255, 255, 255, 0);
  12133. border:none;
  12134. border-left:0px;
  12135. border-top:0px;
  12136. border-right:0px;
  12137. border-radius:0px;
  12138. border-bottom-right-radius:0px;
  12139. border-bottom-left-radius:0px;
  12140. -moz-box-shadow:none;
  12141. -webkit-box-shadow:none;
  12142. box-shadow:none;
  12143. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12144. font-weight:500;
  12145. font-style:normal;
  12146. font-size:18px;
  12147. }
  12148. #u81253 {
  12149. border-width:0px;
  12150. position:absolute;
  12151. left:457px;
  12152. top:50px;
  12153. width:109px;
  12154. height:50px;
  12155. display:flex;
  12156. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12157. font-weight:500;
  12158. font-style:normal;
  12159. font-size:18px;
  12160. }
  12161. #u81253 .text {
  12162. position:absolute;
  12163. align-self:center;
  12164. padding:0px 0px 0px 0px;
  12165. box-sizing:border-box;
  12166. width:100%;
  12167. }
  12168. #u81253_text {
  12169. border-width:0px;
  12170. white-space:nowrap;
  12171. text-transform:none;
  12172. }