styles.css 163 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242
  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. #u85684_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. #u85684 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u85684 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u85684_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u85685_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. #u85685 {
  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. #u85685 .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. #u85685_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u85686_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. #u85686 {
  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. #u85686 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u85686_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u85687 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u85688_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u85688 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u85688 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u85688_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u85689_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. #u85689 {
  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. #u85689 .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. #u85689_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u85690_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. #u85690 {
  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. #u85690 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u85690_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u85691 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u85692_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. #u85692_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. #u85692_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. #u85692 {
  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. #u85692 .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. #u85692_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. #u85692.disabled {
  356. }
  357. .u85692_input_option {
  358. font-size:14px;
  359. }
  360. #u85693_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u85693 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u85693 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u85693_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u85694_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. #u85694 {
  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. #u85694 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u85694_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u85695_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. #u85695 {
  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. #u85695 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u85695_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u85696 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u85697_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. #u85697 {
  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. #u85697 .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. #u85697_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u85698_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u85698 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u85698 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u85698_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u85699 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u85700_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. #u85700 {
  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. #u85700 .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. #u85700_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u85701_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u85701 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u85701 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u85701_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u85702 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u85703_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. #u85703 {
  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. #u85703 .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. #u85703_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u85704_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u85704 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u85704 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u85704_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u85705 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u85706_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. #u85706 {
  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. #u85706 .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. #u85706_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u85707_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u85707 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u85707 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u85707_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u85708 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u85709_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. #u85709 {
  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. #u85709 .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. #u85709_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u85710_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u85710 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u85710 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u85710_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u85711 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u85712_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. #u85712 {
  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. #u85712 .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. #u85712_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u85713_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u85713 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u85713 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u85713_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u85714 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u85715_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. #u85715 {
  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. #u85715 .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. #u85715_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u85716_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u85716 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u85716 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u85716_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u85717 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u85718_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. #u85718 {
  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. #u85718 .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. #u85718_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u85719_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u85719 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u85719 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u85719_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u85720 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u85721_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. #u85721 {
  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. #u85721 .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. #u85721_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u85722_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u85722 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u85722 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u85722_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u85723 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u85724_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. #u85724 {
  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. #u85724 .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. #u85724_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u85725_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u85725 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u85725 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u85725_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u85726_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. #u85726 {
  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. #u85726 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u85726_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u85727_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u85727 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u85727 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u85727_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u85728_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. #u85728 {
  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. #u85728 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u85728_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u85729_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u85729 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u85729 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u85729_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u85730 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u85731_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. #u85731 {
  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. #u85731 .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. #u85731_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u85732_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u85732 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u85732 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u85732_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u85733 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u85734_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. #u85734 {
  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. #u85734 .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. #u85734_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u85735_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u85735 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u85735 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u85735_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u85736_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1260px;
  1644. height:1191px;
  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. #u85736 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:330px;
  1657. top:50px;
  1658. width:1260px;
  1659. height:1191px;
  1660. display:flex;
  1661. }
  1662. #u85736 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u85736_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u85738 {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:0px;
  1681. height:0px;
  1682. }
  1683. #u85739_img {
  1684. border-width:0px;
  1685. position:absolute;
  1686. left:0px;
  1687. top:0px;
  1688. width:200px;
  1689. height:1191px;
  1690. }
  1691. #u85739 {
  1692. border-width:0px;
  1693. position:absolute;
  1694. left:120px;
  1695. top:50px;
  1696. width:200px;
  1697. height:1191px;
  1698. display:flex;
  1699. }
  1700. #u85739 .text {
  1701. position:absolute;
  1702. align-self:center;
  1703. padding:2px 2px 2px 2px;
  1704. box-sizing:border-box;
  1705. width:100%;
  1706. }
  1707. #u85739_text {
  1708. border-width:0px;
  1709. word-wrap:break-word;
  1710. text-transform:none;
  1711. visibility:hidden;
  1712. }
  1713. #u85740_div {
  1714. border-width:0px;
  1715. position:absolute;
  1716. left:0px;
  1717. top:0px;
  1718. width:200px;
  1719. height:60px;
  1720. background:inherit;
  1721. background-color:rgba(224, 231, 247, 1);
  1722. border:none;
  1723. border-radius:0px;
  1724. -moz-box-shadow:none;
  1725. -webkit-box-shadow:none;
  1726. box-shadow:none;
  1727. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1728. font-weight:500;
  1729. font-style:normal;
  1730. font-size:18px;
  1731. }
  1732. #u85740 {
  1733. border-width:0px;
  1734. position:absolute;
  1735. left:120px;
  1736. top:50px;
  1737. width:200px;
  1738. height:60px;
  1739. display:flex;
  1740. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1741. font-weight:500;
  1742. font-style:normal;
  1743. font-size:18px;
  1744. }
  1745. #u85740 .text {
  1746. position:absolute;
  1747. align-self:center;
  1748. padding:0px 0px 0px 20px;
  1749. box-sizing:border-box;
  1750. width:100%;
  1751. }
  1752. #u85740_text {
  1753. border-width:0px;
  1754. word-wrap:break-word;
  1755. text-transform:none;
  1756. }
  1757. #u85741 {
  1758. border-width:0px;
  1759. position:absolute;
  1760. left:120px;
  1761. top:130px;
  1762. width:200px;
  1763. height:1078px;
  1764. }
  1765. #u85741_state0 {
  1766. border-width:0px;
  1767. position:absolute;
  1768. left:0px;
  1769. top:0px;
  1770. width:200px;
  1771. height:1078px;
  1772. overflow:auto;
  1773. -webkit-overflow-scrolling:touch;
  1774. -ms-overflow-x:hidden;
  1775. overflow-x:hidden;
  1776. background-image:none;
  1777. border:none;
  1778. border-radius:0px;
  1779. -moz-box-shadow:none;
  1780. -webkit-box-shadow:none;
  1781. box-shadow:none;
  1782. }
  1783. #u85741_state0_content {
  1784. border-width:0px;
  1785. position:absolute;
  1786. left:0px;
  1787. top:0px;
  1788. width:1px;
  1789. height:1px;
  1790. }
  1791. #u85742_div {
  1792. border-width:0px;
  1793. position:absolute;
  1794. left:0px;
  1795. top:0px;
  1796. width:97px;
  1797. height:22px;
  1798. background:inherit;
  1799. background-color:rgba(255, 255, 255, 0);
  1800. border:none;
  1801. border-radius:0px;
  1802. -moz-box-shadow:none;
  1803. -webkit-box-shadow:none;
  1804. box-shadow:none;
  1805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1806. font-weight:400;
  1807. font-style:normal;
  1808. font-size:16px;
  1809. }
  1810. #u85742 {
  1811. border-width:0px;
  1812. position:absolute;
  1813. left:30px;
  1814. top:0px;
  1815. width:97px;
  1816. height:22px;
  1817. display:flex;
  1818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1819. font-weight:400;
  1820. font-style:normal;
  1821. font-size:16px;
  1822. }
  1823. #u85742 .text {
  1824. position:absolute;
  1825. align-self:flex-start;
  1826. padding:0px 0px 0px 0px;
  1827. box-sizing:border-box;
  1828. width:100%;
  1829. }
  1830. #u85742_text {
  1831. border-width:0px;
  1832. word-wrap:break-word;
  1833. text-transform:none;
  1834. }
  1835. #u85743_div {
  1836. border-width:0px;
  1837. position:absolute;
  1838. left:0px;
  1839. top:0px;
  1840. width:65px;
  1841. height:22px;
  1842. background:inherit;
  1843. background-color:rgba(255, 255, 255, 0);
  1844. border:none;
  1845. border-radius:0px;
  1846. -moz-box-shadow:none;
  1847. -webkit-box-shadow:none;
  1848. box-shadow:none;
  1849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1850. font-weight:400;
  1851. font-style:normal;
  1852. font-size:16px;
  1853. }
  1854. #u85743 {
  1855. border-width:0px;
  1856. position:absolute;
  1857. left:30px;
  1858. top:42px;
  1859. width:65px;
  1860. height:22px;
  1861. display:flex;
  1862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1863. font-weight:400;
  1864. font-style:normal;
  1865. font-size:16px;
  1866. }
  1867. #u85743 .text {
  1868. position:absolute;
  1869. align-self:flex-start;
  1870. padding:0px 0px 0px 0px;
  1871. box-sizing:border-box;
  1872. width:100%;
  1873. }
  1874. #u85743_text {
  1875. border-width:0px;
  1876. white-space:nowrap;
  1877. text-transform:none;
  1878. }
  1879. #u85744_div {
  1880. border-width:0px;
  1881. position:absolute;
  1882. left:0px;
  1883. top:0px;
  1884. width:49px;
  1885. height:22px;
  1886. background:inherit;
  1887. background-color:rgba(255, 255, 255, 0);
  1888. border:none;
  1889. border-radius:0px;
  1890. -moz-box-shadow:none;
  1891. -webkit-box-shadow:none;
  1892. box-shadow:none;
  1893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1894. font-weight:400;
  1895. font-style:normal;
  1896. font-size:16px;
  1897. }
  1898. #u85744 {
  1899. border-width:0px;
  1900. position:absolute;
  1901. left:30px;
  1902. top:145px;
  1903. width:49px;
  1904. height:22px;
  1905. display:flex;
  1906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1907. font-weight:400;
  1908. font-style:normal;
  1909. font-size:16px;
  1910. }
  1911. #u85744 .text {
  1912. position:absolute;
  1913. align-self:flex-start;
  1914. padding:0px 0px 0px 0px;
  1915. box-sizing:border-box;
  1916. width:100%;
  1917. }
  1918. #u85744_text {
  1919. border-width:0px;
  1920. white-space:nowrap;
  1921. text-transform:none;
  1922. }
  1923. #u85745_div {
  1924. border-width:0px;
  1925. position:absolute;
  1926. left:0px;
  1927. top:0px;
  1928. width:97px;
  1929. height:22px;
  1930. background:inherit;
  1931. background-color:rgba(255, 255, 255, 0);
  1932. border:none;
  1933. border-radius:0px;
  1934. -moz-box-shadow:none;
  1935. -webkit-box-shadow:none;
  1936. box-shadow:none;
  1937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1938. font-weight:400;
  1939. font-style:normal;
  1940. font-size:16px;
  1941. }
  1942. #u85745 {
  1943. border-width:0px;
  1944. position:absolute;
  1945. left:30px;
  1946. top:187px;
  1947. width:97px;
  1948. height:22px;
  1949. display:flex;
  1950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1951. font-weight:400;
  1952. font-style:normal;
  1953. font-size:16px;
  1954. }
  1955. #u85745 .text {
  1956. position:absolute;
  1957. align-self:flex-start;
  1958. padding:0px 0px 0px 0px;
  1959. box-sizing:border-box;
  1960. width:100%;
  1961. }
  1962. #u85745_text {
  1963. border-width:0px;
  1964. word-wrap:break-word;
  1965. text-transform:none;
  1966. }
  1967. #u85746_img {
  1968. border-width:0px;
  1969. position:absolute;
  1970. left:0px;
  1971. top:0px;
  1972. width:201px;
  1973. height:2px;
  1974. }
  1975. #u85746 {
  1976. border-width:0px;
  1977. position:absolute;
  1978. left:0px;
  1979. top:84px;
  1980. width:200px;
  1981. height:1px;
  1982. display:flex;
  1983. }
  1984. #u85746 .text {
  1985. position:absolute;
  1986. align-self:center;
  1987. padding:2px 2px 2px 2px;
  1988. box-sizing:border-box;
  1989. width:100%;
  1990. }
  1991. #u85746_text {
  1992. border-width:0px;
  1993. word-wrap:break-word;
  1994. text-transform:none;
  1995. visibility:hidden;
  1996. }
  1997. #u85747_div {
  1998. border-width:0px;
  1999. position:absolute;
  2000. left:0px;
  2001. top:0px;
  2002. width:49px;
  2003. height:17px;
  2004. background:inherit;
  2005. background-color:rgba(255, 255, 255, 0);
  2006. border:none;
  2007. border-radius:0px;
  2008. -moz-box-shadow:none;
  2009. -webkit-box-shadow:none;
  2010. box-shadow:none;
  2011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2012. font-weight:400;
  2013. font-style:normal;
  2014. font-size:12px;
  2015. color:#AAAAAA;
  2016. }
  2017. #u85747 {
  2018. border-width:0px;
  2019. position:absolute;
  2020. left:30px;
  2021. top:105px;
  2022. width:49px;
  2023. height:17px;
  2024. display:flex;
  2025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2026. font-weight:400;
  2027. font-style:normal;
  2028. font-size:12px;
  2029. color:#AAAAAA;
  2030. }
  2031. #u85747 .text {
  2032. position:absolute;
  2033. align-self:flex-start;
  2034. padding:0px 0px 0px 0px;
  2035. box-sizing:border-box;
  2036. width:100%;
  2037. }
  2038. #u85747_text {
  2039. border-width:0px;
  2040. white-space:nowrap;
  2041. text-transform:none;
  2042. }
  2043. #u85748_div {
  2044. border-width:0px;
  2045. position:absolute;
  2046. left:0px;
  2047. top:0px;
  2048. width:97px;
  2049. height:22px;
  2050. background:inherit;
  2051. background-color:rgba(255, 255, 255, 0);
  2052. border:none;
  2053. border-radius:0px;
  2054. -moz-box-shadow:none;
  2055. -webkit-box-shadow:none;
  2056. box-shadow:none;
  2057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2058. font-weight:400;
  2059. font-style:normal;
  2060. font-size:16px;
  2061. }
  2062. #u85748 {
  2063. border-width:0px;
  2064. position:absolute;
  2065. left:30px;
  2066. top:229px;
  2067. width:97px;
  2068. height:22px;
  2069. display:flex;
  2070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2071. font-weight:400;
  2072. font-style:normal;
  2073. font-size:16px;
  2074. }
  2075. #u85748 .text {
  2076. position:absolute;
  2077. align-self:flex-start;
  2078. padding:0px 0px 0px 0px;
  2079. box-sizing:border-box;
  2080. width:100%;
  2081. }
  2082. #u85748_text {
  2083. border-width:0px;
  2084. word-wrap:break-word;
  2085. text-transform:none;
  2086. }
  2087. #u85749_div {
  2088. border-width:0px;
  2089. position:absolute;
  2090. left:0px;
  2091. top:0px;
  2092. width:65px;
  2093. height:22px;
  2094. background:inherit;
  2095. background-color:rgba(255, 255, 255, 0);
  2096. border:none;
  2097. border-radius:0px;
  2098. -moz-box-shadow:none;
  2099. -webkit-box-shadow:none;
  2100. box-shadow:none;
  2101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2102. font-weight:400;
  2103. font-style:normal;
  2104. font-size:16px;
  2105. }
  2106. #u85749 {
  2107. border-width:0px;
  2108. position:absolute;
  2109. left:30px;
  2110. top:271px;
  2111. width:65px;
  2112. height:22px;
  2113. display:flex;
  2114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2115. font-weight:400;
  2116. font-style:normal;
  2117. font-size:16px;
  2118. }
  2119. #u85749 .text {
  2120. position:absolute;
  2121. align-self:flex-start;
  2122. padding:0px 0px 0px 0px;
  2123. box-sizing:border-box;
  2124. width:100%;
  2125. }
  2126. #u85749_text {
  2127. border-width:0px;
  2128. white-space:nowrap;
  2129. text-transform:none;
  2130. }
  2131. #u85750_img {
  2132. border-width:0px;
  2133. position:absolute;
  2134. left:0px;
  2135. top:0px;
  2136. width:201px;
  2137. height:2px;
  2138. }
  2139. #u85750 {
  2140. border-width:0px;
  2141. position:absolute;
  2142. left:0px;
  2143. top:313px;
  2144. width:200px;
  2145. height:1px;
  2146. display:flex;
  2147. }
  2148. #u85750 .text {
  2149. position:absolute;
  2150. align-self:center;
  2151. padding:2px 2px 2px 2px;
  2152. box-sizing:border-box;
  2153. width:100%;
  2154. }
  2155. #u85750_text {
  2156. border-width:0px;
  2157. word-wrap:break-word;
  2158. text-transform:none;
  2159. visibility:hidden;
  2160. }
  2161. #u85751_div {
  2162. border-width:0px;
  2163. position:absolute;
  2164. left:0px;
  2165. top:0px;
  2166. width:65px;
  2167. height:22px;
  2168. background:inherit;
  2169. background-color:rgba(255, 255, 255, 0);
  2170. border:none;
  2171. border-radius:0px;
  2172. -moz-box-shadow:none;
  2173. -webkit-box-shadow:none;
  2174. box-shadow:none;
  2175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2176. font-weight:400;
  2177. font-style:normal;
  2178. font-size:16px;
  2179. }
  2180. #u85751 {
  2181. border-width:0px;
  2182. position:absolute;
  2183. left:30px;
  2184. top:370px;
  2185. width:65px;
  2186. height:22px;
  2187. display:flex;
  2188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2189. font-weight:400;
  2190. font-style:normal;
  2191. font-size:16px;
  2192. }
  2193. #u85751 .text {
  2194. position:absolute;
  2195. align-self:flex-start;
  2196. padding:0px 0px 0px 0px;
  2197. box-sizing:border-box;
  2198. width:100%;
  2199. }
  2200. #u85751_text {
  2201. border-width:0px;
  2202. white-space:nowrap;
  2203. text-transform:none;
  2204. }
  2205. #u85752_div {
  2206. border-width:0px;
  2207. position:absolute;
  2208. left:0px;
  2209. top:0px;
  2210. width:49px;
  2211. height:17px;
  2212. background:inherit;
  2213. background-color:rgba(255, 255, 255, 0);
  2214. border:none;
  2215. border-radius:0px;
  2216. -moz-box-shadow:none;
  2217. -webkit-box-shadow:none;
  2218. box-shadow:none;
  2219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2220. font-weight:400;
  2221. font-style:normal;
  2222. font-size:12px;
  2223. color:#AAAAAA;
  2224. }
  2225. #u85752 {
  2226. border-width:0px;
  2227. position:absolute;
  2228. left:30px;
  2229. top:334px;
  2230. width:49px;
  2231. height:17px;
  2232. display:flex;
  2233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2234. font-weight:400;
  2235. font-style:normal;
  2236. font-size:12px;
  2237. color:#AAAAAA;
  2238. }
  2239. #u85752 .text {
  2240. position:absolute;
  2241. align-self:flex-start;
  2242. padding:0px 0px 0px 0px;
  2243. box-sizing:border-box;
  2244. width:100%;
  2245. }
  2246. #u85752_text {
  2247. border-width:0px;
  2248. white-space:nowrap;
  2249. text-transform:none;
  2250. }
  2251. #u85753_div {
  2252. border-width:0px;
  2253. position:absolute;
  2254. left:0px;
  2255. top:0px;
  2256. width:65px;
  2257. height:22px;
  2258. background:inherit;
  2259. background-color:rgba(255, 255, 255, 0);
  2260. border:none;
  2261. border-radius:0px;
  2262. -moz-box-shadow:none;
  2263. -webkit-box-shadow:none;
  2264. box-shadow:none;
  2265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2266. font-weight:400;
  2267. font-style:normal;
  2268. font-size:16px;
  2269. }
  2270. #u85753 {
  2271. border-width:0px;
  2272. position:absolute;
  2273. left:30px;
  2274. top:412px;
  2275. width:65px;
  2276. height:22px;
  2277. display:flex;
  2278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2279. font-weight:400;
  2280. font-style:normal;
  2281. font-size:16px;
  2282. }
  2283. #u85753 .text {
  2284. position:absolute;
  2285. align-self:flex-start;
  2286. padding:0px 0px 0px 0px;
  2287. box-sizing:border-box;
  2288. width:100%;
  2289. }
  2290. #u85753_text {
  2291. border-width:0px;
  2292. white-space:nowrap;
  2293. text-transform:none;
  2294. }
  2295. #u85754_div {
  2296. border-width:0px;
  2297. position:absolute;
  2298. left:0px;
  2299. top:0px;
  2300. width:65px;
  2301. height:22px;
  2302. background:inherit;
  2303. background-color:rgba(255, 255, 255, 0);
  2304. border:none;
  2305. border-radius:0px;
  2306. -moz-box-shadow:none;
  2307. -webkit-box-shadow:none;
  2308. box-shadow:none;
  2309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2310. font-weight:400;
  2311. font-style:normal;
  2312. font-size:16px;
  2313. }
  2314. #u85754 {
  2315. border-width:0px;
  2316. position:absolute;
  2317. left:30px;
  2318. top:454px;
  2319. width:65px;
  2320. height:22px;
  2321. display:flex;
  2322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2323. font-weight:400;
  2324. font-style:normal;
  2325. font-size:16px;
  2326. }
  2327. #u85754 .text {
  2328. position:absolute;
  2329. align-self:flex-start;
  2330. padding:0px 0px 0px 0px;
  2331. box-sizing:border-box;
  2332. width:100%;
  2333. }
  2334. #u85754_text {
  2335. border-width:0px;
  2336. white-space:nowrap;
  2337. text-transform:none;
  2338. }
  2339. #u85755_div {
  2340. border-width:0px;
  2341. position:absolute;
  2342. left:0px;
  2343. top:0px;
  2344. width:65px;
  2345. height:22px;
  2346. background:inherit;
  2347. background-color:rgba(255, 255, 255, 0);
  2348. border:none;
  2349. border-radius:0px;
  2350. -moz-box-shadow:none;
  2351. -webkit-box-shadow:none;
  2352. box-shadow:none;
  2353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2354. font-weight:400;
  2355. font-style:normal;
  2356. font-size:16px;
  2357. }
  2358. #u85755 {
  2359. border-width:0px;
  2360. position:absolute;
  2361. left:30px;
  2362. top:496px;
  2363. width:65px;
  2364. height:22px;
  2365. display:flex;
  2366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2367. font-weight:400;
  2368. font-style:normal;
  2369. font-size:16px;
  2370. }
  2371. #u85755 .text {
  2372. position:absolute;
  2373. align-self:flex-start;
  2374. padding:0px 0px 0px 0px;
  2375. box-sizing:border-box;
  2376. width:100%;
  2377. }
  2378. #u85755_text {
  2379. border-width:0px;
  2380. white-space:nowrap;
  2381. text-transform:none;
  2382. }
  2383. #u85756_div {
  2384. border-width:0px;
  2385. position:absolute;
  2386. left:0px;
  2387. top:0px;
  2388. width:65px;
  2389. height:22px;
  2390. background:inherit;
  2391. background-color:rgba(255, 255, 255, 0);
  2392. border:none;
  2393. border-radius:0px;
  2394. -moz-box-shadow:none;
  2395. -webkit-box-shadow:none;
  2396. box-shadow:none;
  2397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2398. font-weight:400;
  2399. font-style:normal;
  2400. font-size:16px;
  2401. }
  2402. #u85756 {
  2403. border-width:0px;
  2404. position:absolute;
  2405. left:30px;
  2406. top:538px;
  2407. width:65px;
  2408. height:22px;
  2409. display:flex;
  2410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2411. font-weight:400;
  2412. font-style:normal;
  2413. font-size:16px;
  2414. }
  2415. #u85756 .text {
  2416. position:absolute;
  2417. align-self:flex-start;
  2418. padding:0px 0px 0px 0px;
  2419. box-sizing:border-box;
  2420. width:100%;
  2421. }
  2422. #u85756_text {
  2423. border-width:0px;
  2424. white-space:nowrap;
  2425. text-transform:none;
  2426. }
  2427. #u85757_div {
  2428. border-width:0px;
  2429. position:absolute;
  2430. left:0px;
  2431. top:0px;
  2432. width:65px;
  2433. height:22px;
  2434. background:inherit;
  2435. background-color:rgba(255, 255, 255, 0);
  2436. border:none;
  2437. border-radius:0px;
  2438. -moz-box-shadow:none;
  2439. -webkit-box-shadow:none;
  2440. box-shadow:none;
  2441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2442. font-weight:400;
  2443. font-style:normal;
  2444. font-size:16px;
  2445. }
  2446. #u85757 {
  2447. border-width:0px;
  2448. position:absolute;
  2449. left:30px;
  2450. top:580px;
  2451. width:65px;
  2452. height:22px;
  2453. display:flex;
  2454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2455. font-weight:400;
  2456. font-style:normal;
  2457. font-size:16px;
  2458. }
  2459. #u85757 .text {
  2460. position:absolute;
  2461. align-self:flex-start;
  2462. padding:0px 0px 0px 0px;
  2463. box-sizing:border-box;
  2464. width:100%;
  2465. }
  2466. #u85757_text {
  2467. border-width:0px;
  2468. white-space:nowrap;
  2469. text-transform:none;
  2470. }
  2471. #u85758_img {
  2472. border-width:0px;
  2473. position:absolute;
  2474. left:0px;
  2475. top:0px;
  2476. width:201px;
  2477. height:2px;
  2478. }
  2479. #u85758 {
  2480. border-width:0px;
  2481. position:absolute;
  2482. left:0px;
  2483. top:1289px;
  2484. width:200px;
  2485. height:1px;
  2486. display:flex;
  2487. }
  2488. #u85758 .text {
  2489. position:absolute;
  2490. align-self:center;
  2491. padding:2px 2px 2px 2px;
  2492. box-sizing:border-box;
  2493. width:100%;
  2494. }
  2495. #u85758_text {
  2496. border-width:0px;
  2497. word-wrap:break-word;
  2498. text-transform:none;
  2499. visibility:hidden;
  2500. }
  2501. #u85759_div {
  2502. border-width:0px;
  2503. position:absolute;
  2504. left:0px;
  2505. top:0px;
  2506. width:65px;
  2507. height:22px;
  2508. background:inherit;
  2509. background-color:rgba(255, 255, 255, 0);
  2510. border:none;
  2511. border-radius:0px;
  2512. -moz-box-shadow:none;
  2513. -webkit-box-shadow:none;
  2514. box-shadow:none;
  2515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2516. font-weight:400;
  2517. font-style:normal;
  2518. font-size:16px;
  2519. }
  2520. #u85759 {
  2521. border-width:0px;
  2522. position:absolute;
  2523. left:30px;
  2524. top:1346px;
  2525. width:65px;
  2526. height:22px;
  2527. display:flex;
  2528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2529. font-weight:400;
  2530. font-style:normal;
  2531. font-size:16px;
  2532. }
  2533. #u85759 .text {
  2534. position:absolute;
  2535. align-self:flex-start;
  2536. padding:0px 0px 0px 0px;
  2537. box-sizing:border-box;
  2538. width:100%;
  2539. }
  2540. #u85759_text {
  2541. border-width:0px;
  2542. white-space:nowrap;
  2543. text-transform:none;
  2544. }
  2545. #u85760_div {
  2546. border-width:0px;
  2547. position:absolute;
  2548. left:0px;
  2549. top:0px;
  2550. width:49px;
  2551. height:17px;
  2552. background:inherit;
  2553. background-color:rgba(255, 255, 255, 0);
  2554. border:none;
  2555. border-radius:0px;
  2556. -moz-box-shadow:none;
  2557. -webkit-box-shadow:none;
  2558. box-shadow:none;
  2559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2560. font-weight:400;
  2561. font-style:normal;
  2562. font-size:12px;
  2563. color:#AAAAAA;
  2564. }
  2565. #u85760 {
  2566. border-width:0px;
  2567. position:absolute;
  2568. left:30px;
  2569. top:1310px;
  2570. width:49px;
  2571. height:17px;
  2572. display:flex;
  2573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2574. font-weight:400;
  2575. font-style:normal;
  2576. font-size:12px;
  2577. color:#AAAAAA;
  2578. }
  2579. #u85760 .text {
  2580. position:absolute;
  2581. align-self:flex-start;
  2582. padding:0px 0px 0px 0px;
  2583. box-sizing:border-box;
  2584. width:100%;
  2585. }
  2586. #u85760_text {
  2587. border-width:0px;
  2588. white-space:nowrap;
  2589. text-transform:none;
  2590. }
  2591. #u85761_div {
  2592. border-width:0px;
  2593. position:absolute;
  2594. left:0px;
  2595. top:0px;
  2596. width:65px;
  2597. height:22px;
  2598. background:inherit;
  2599. background-color:rgba(255, 255, 255, 0);
  2600. border:none;
  2601. border-radius:0px;
  2602. -moz-box-shadow:none;
  2603. -webkit-box-shadow:none;
  2604. box-shadow:none;
  2605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2606. font-weight:400;
  2607. font-style:normal;
  2608. font-size:16px;
  2609. }
  2610. #u85761 {
  2611. border-width:0px;
  2612. position:absolute;
  2613. left:30px;
  2614. top:1388px;
  2615. width:65px;
  2616. height:22px;
  2617. display:flex;
  2618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2619. font-weight:400;
  2620. font-style:normal;
  2621. font-size:16px;
  2622. }
  2623. #u85761 .text {
  2624. position:absolute;
  2625. align-self:flex-start;
  2626. padding:0px 0px 0px 0px;
  2627. box-sizing:border-box;
  2628. width:100%;
  2629. }
  2630. #u85761_text {
  2631. border-width:0px;
  2632. white-space:nowrap;
  2633. text-transform:none;
  2634. }
  2635. #u85762_div {
  2636. border-width:0px;
  2637. position:absolute;
  2638. left:0px;
  2639. top:0px;
  2640. width:65px;
  2641. height:22px;
  2642. background:inherit;
  2643. background-color:rgba(255, 255, 255, 0);
  2644. border:none;
  2645. border-radius:0px;
  2646. -moz-box-shadow:none;
  2647. -webkit-box-shadow:none;
  2648. box-shadow:none;
  2649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2650. font-weight:400;
  2651. font-style:normal;
  2652. font-size:16px;
  2653. }
  2654. #u85762 {
  2655. border-width:0px;
  2656. position:absolute;
  2657. left:30px;
  2658. top:1472px;
  2659. width:65px;
  2660. height:22px;
  2661. display:flex;
  2662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2663. font-weight:400;
  2664. font-style:normal;
  2665. font-size:16px;
  2666. }
  2667. #u85762 .text {
  2668. position:absolute;
  2669. align-self:flex-start;
  2670. padding:0px 0px 0px 0px;
  2671. box-sizing:border-box;
  2672. width:100%;
  2673. }
  2674. #u85762_text {
  2675. border-width:0px;
  2676. white-space:nowrap;
  2677. text-transform:none;
  2678. }
  2679. #u85763_img {
  2680. border-width:0px;
  2681. position:absolute;
  2682. left:0px;
  2683. top:0px;
  2684. width:201px;
  2685. height:2px;
  2686. }
  2687. #u85763 {
  2688. border-width:0px;
  2689. position:absolute;
  2690. left:0px;
  2691. top:1514px;
  2692. width:200px;
  2693. height:1px;
  2694. display:flex;
  2695. }
  2696. #u85763 .text {
  2697. position:absolute;
  2698. align-self:center;
  2699. padding:2px 2px 2px 2px;
  2700. box-sizing:border-box;
  2701. width:100%;
  2702. }
  2703. #u85763_text {
  2704. border-width:0px;
  2705. word-wrap:break-word;
  2706. text-transform:none;
  2707. visibility:hidden;
  2708. }
  2709. #u85764_div {
  2710. border-width:0px;
  2711. position:absolute;
  2712. left:0px;
  2713. top:0px;
  2714. width:49px;
  2715. height:22px;
  2716. background:inherit;
  2717. background-color:rgba(255, 255, 255, 0);
  2718. border:none;
  2719. border-radius:0px;
  2720. -moz-box-shadow:none;
  2721. -webkit-box-shadow:none;
  2722. box-shadow:none;
  2723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2724. font-weight:400;
  2725. font-style:normal;
  2726. font-size:16px;
  2727. }
  2728. #u85764 {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:30px;
  2732. top:1571px;
  2733. width:49px;
  2734. height:22px;
  2735. display:flex;
  2736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2737. font-weight:400;
  2738. font-style:normal;
  2739. font-size:16px;
  2740. }
  2741. #u85764 .text {
  2742. position:absolute;
  2743. align-self:flex-start;
  2744. padding:0px 0px 0px 0px;
  2745. box-sizing:border-box;
  2746. width:100%;
  2747. }
  2748. #u85764_text {
  2749. border-width:0px;
  2750. white-space:nowrap;
  2751. text-transform:none;
  2752. }
  2753. #u85765_div {
  2754. border-width:0px;
  2755. position:absolute;
  2756. left:0px;
  2757. top:0px;
  2758. width:49px;
  2759. height:17px;
  2760. background:inherit;
  2761. background-color:rgba(255, 255, 255, 0);
  2762. border:none;
  2763. border-radius:0px;
  2764. -moz-box-shadow:none;
  2765. -webkit-box-shadow:none;
  2766. box-shadow:none;
  2767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2768. font-weight:400;
  2769. font-style:normal;
  2770. font-size:12px;
  2771. color:#AAAAAA;
  2772. }
  2773. #u85765 {
  2774. border-width:0px;
  2775. position:absolute;
  2776. left:30px;
  2777. top:1535px;
  2778. width:49px;
  2779. height:17px;
  2780. display:flex;
  2781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2782. font-weight:400;
  2783. font-style:normal;
  2784. font-size:12px;
  2785. color:#AAAAAA;
  2786. }
  2787. #u85765 .text {
  2788. position:absolute;
  2789. align-self:flex-start;
  2790. padding:0px 0px 0px 0px;
  2791. box-sizing:border-box;
  2792. width:100%;
  2793. }
  2794. #u85765_text {
  2795. border-width:0px;
  2796. white-space:nowrap;
  2797. text-transform:none;
  2798. }
  2799. #u85766_div {
  2800. border-width:0px;
  2801. position:absolute;
  2802. left:0px;
  2803. top:0px;
  2804. width:49px;
  2805. height:22px;
  2806. background:inherit;
  2807. background-color:rgba(255, 255, 255, 0);
  2808. border:none;
  2809. border-radius:0px;
  2810. -moz-box-shadow:none;
  2811. -webkit-box-shadow:none;
  2812. box-shadow:none;
  2813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2814. font-weight:400;
  2815. font-style:normal;
  2816. font-size:16px;
  2817. }
  2818. #u85766 {
  2819. border-width:0px;
  2820. position:absolute;
  2821. left:30px;
  2822. top:1613px;
  2823. width:49px;
  2824. height:22px;
  2825. display:flex;
  2826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2827. font-weight:400;
  2828. font-style:normal;
  2829. font-size:16px;
  2830. }
  2831. #u85766 .text {
  2832. position:absolute;
  2833. align-self:flex-start;
  2834. padding:0px 0px 0px 0px;
  2835. box-sizing:border-box;
  2836. width:100%;
  2837. }
  2838. #u85766_text {
  2839. border-width:0px;
  2840. white-space:nowrap;
  2841. text-transform:none;
  2842. }
  2843. #u85767_div {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:0px;
  2847. top:0px;
  2848. width:65px;
  2849. height:22px;
  2850. background:inherit;
  2851. background-color:rgba(255, 255, 255, 0);
  2852. border:none;
  2853. border-radius:0px;
  2854. -moz-box-shadow:none;
  2855. -webkit-box-shadow:none;
  2856. box-shadow:none;
  2857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2858. font-weight:400;
  2859. font-style:normal;
  2860. font-size:16px;
  2861. }
  2862. #u85767 {
  2863. border-width:0px;
  2864. position:absolute;
  2865. left:30px;
  2866. top:1655px;
  2867. width:65px;
  2868. height:22px;
  2869. display:flex;
  2870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2871. font-weight:400;
  2872. font-style:normal;
  2873. font-size:16px;
  2874. }
  2875. #u85767 .text {
  2876. position:absolute;
  2877. align-self:flex-start;
  2878. padding:0px 0px 0px 0px;
  2879. box-sizing:border-box;
  2880. width:100%;
  2881. }
  2882. #u85767_text {
  2883. border-width:0px;
  2884. white-space:nowrap;
  2885. text-transform:none;
  2886. }
  2887. #u85768_img {
  2888. border-width:0px;
  2889. position:absolute;
  2890. left:0px;
  2891. top:0px;
  2892. width:201px;
  2893. height:2px;
  2894. }
  2895. #u85768 {
  2896. border-width:0px;
  2897. position:absolute;
  2898. left:0px;
  2899. top:1697px;
  2900. width:200px;
  2901. height:1px;
  2902. display:flex;
  2903. }
  2904. #u85768 .text {
  2905. position:absolute;
  2906. align-self:center;
  2907. padding:2px 2px 2px 2px;
  2908. box-sizing:border-box;
  2909. width:100%;
  2910. }
  2911. #u85768_text {
  2912. border-width:0px;
  2913. word-wrap:break-word;
  2914. text-transform:none;
  2915. visibility:hidden;
  2916. }
  2917. #u85769_div {
  2918. border-width:0px;
  2919. position:absolute;
  2920. left:0px;
  2921. top:0px;
  2922. width:81px;
  2923. height:22px;
  2924. background:inherit;
  2925. background-color:rgba(255, 255, 255, 0);
  2926. border:none;
  2927. border-radius:0px;
  2928. -moz-box-shadow:none;
  2929. -webkit-box-shadow:none;
  2930. box-shadow:none;
  2931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2932. font-weight:400;
  2933. font-style:normal;
  2934. font-size:16px;
  2935. }
  2936. #u85769 {
  2937. border-width:0px;
  2938. position:absolute;
  2939. left:30px;
  2940. top:1754px;
  2941. width:81px;
  2942. height:22px;
  2943. display:flex;
  2944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2945. font-weight:400;
  2946. font-style:normal;
  2947. font-size:16px;
  2948. }
  2949. #u85769 .text {
  2950. position:absolute;
  2951. align-self:flex-start;
  2952. padding:0px 0px 0px 0px;
  2953. box-sizing:border-box;
  2954. width:100%;
  2955. }
  2956. #u85769_text {
  2957. border-width:0px;
  2958. white-space:nowrap;
  2959. text-transform:none;
  2960. }
  2961. #u85770_div {
  2962. border-width:0px;
  2963. position:absolute;
  2964. left:0px;
  2965. top:0px;
  2966. width:49px;
  2967. height:17px;
  2968. background:inherit;
  2969. background-color:rgba(255, 255, 255, 0);
  2970. border:none;
  2971. border-radius:0px;
  2972. -moz-box-shadow:none;
  2973. -webkit-box-shadow:none;
  2974. box-shadow:none;
  2975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2976. font-weight:400;
  2977. font-style:normal;
  2978. font-size:12px;
  2979. color:#AAAAAA;
  2980. }
  2981. #u85770 {
  2982. border-width:0px;
  2983. position:absolute;
  2984. left:30px;
  2985. top:1718px;
  2986. width:49px;
  2987. height:17px;
  2988. display:flex;
  2989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2990. font-weight:400;
  2991. font-style:normal;
  2992. font-size:12px;
  2993. color:#AAAAAA;
  2994. }
  2995. #u85770 .text {
  2996. position:absolute;
  2997. align-self:flex-start;
  2998. padding:0px 0px 0px 0px;
  2999. box-sizing:border-box;
  3000. width:100%;
  3001. }
  3002. #u85770_text {
  3003. border-width:0px;
  3004. white-space:nowrap;
  3005. text-transform:none;
  3006. }
  3007. #u85771_div {
  3008. border-width:0px;
  3009. position:absolute;
  3010. left:0px;
  3011. top:0px;
  3012. width:81px;
  3013. height:22px;
  3014. background:inherit;
  3015. background-color:rgba(255, 255, 255, 0);
  3016. border:none;
  3017. border-radius:0px;
  3018. -moz-box-shadow:none;
  3019. -webkit-box-shadow:none;
  3020. box-shadow:none;
  3021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3022. font-weight:400;
  3023. font-style:normal;
  3024. font-size:16px;
  3025. }
  3026. #u85771 {
  3027. border-width:0px;
  3028. position:absolute;
  3029. left:30px;
  3030. top:1796px;
  3031. width:81px;
  3032. height:22px;
  3033. display:flex;
  3034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3035. font-weight:400;
  3036. font-style:normal;
  3037. font-size:16px;
  3038. }
  3039. #u85771 .text {
  3040. position:absolute;
  3041. align-self:flex-start;
  3042. padding:0px 0px 0px 0px;
  3043. box-sizing:border-box;
  3044. width:100%;
  3045. }
  3046. #u85771_text {
  3047. border-width:0px;
  3048. white-space:nowrap;
  3049. text-transform:none;
  3050. }
  3051. #u85772_div {
  3052. border-width:0px;
  3053. position:absolute;
  3054. left:0px;
  3055. top:0px;
  3056. width:81px;
  3057. height:22px;
  3058. background:inherit;
  3059. background-color:rgba(255, 255, 255, 0);
  3060. border:none;
  3061. border-radius:0px;
  3062. -moz-box-shadow:none;
  3063. -webkit-box-shadow:none;
  3064. box-shadow:none;
  3065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3066. font-weight:400;
  3067. font-style:normal;
  3068. font-size:16px;
  3069. }
  3070. #u85772 {
  3071. border-width:0px;
  3072. position:absolute;
  3073. left:30px;
  3074. top:1838px;
  3075. width:81px;
  3076. height:22px;
  3077. display:flex;
  3078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3079. font-weight:400;
  3080. font-style:normal;
  3081. font-size:16px;
  3082. }
  3083. #u85772 .text {
  3084. position:absolute;
  3085. align-self:flex-start;
  3086. padding:0px 0px 0px 0px;
  3087. box-sizing:border-box;
  3088. width:100%;
  3089. }
  3090. #u85772_text {
  3091. border-width:0px;
  3092. white-space:nowrap;
  3093. text-transform:none;
  3094. }
  3095. #u85773_div {
  3096. border-width:0px;
  3097. position:absolute;
  3098. left:0px;
  3099. top:0px;
  3100. width:65px;
  3101. height:22px;
  3102. background:inherit;
  3103. background-color:rgba(255, 255, 255, 0);
  3104. border:none;
  3105. border-radius:0px;
  3106. -moz-box-shadow:none;
  3107. -webkit-box-shadow:none;
  3108. box-shadow:none;
  3109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3110. font-weight:400;
  3111. font-style:normal;
  3112. font-size:16px;
  3113. }
  3114. #u85773 {
  3115. border-width:0px;
  3116. position:absolute;
  3117. left:30px;
  3118. top:1430px;
  3119. width:65px;
  3120. height:22px;
  3121. display:flex;
  3122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3123. font-weight:400;
  3124. font-style:normal;
  3125. font-size:16px;
  3126. }
  3127. #u85773 .text {
  3128. position:absolute;
  3129. align-self:flex-start;
  3130. padding:0px 0px 0px 0px;
  3131. box-sizing:border-box;
  3132. width:100%;
  3133. }
  3134. #u85773_text {
  3135. border-width:0px;
  3136. white-space:nowrap;
  3137. text-transform:none;
  3138. }
  3139. #u85774_img {
  3140. border-width:0px;
  3141. position:absolute;
  3142. left:0px;
  3143. top:0px;
  3144. width:201px;
  3145. height:2px;
  3146. }
  3147. #u85774 {
  3148. border-width:0px;
  3149. position:absolute;
  3150. left:0px;
  3151. top:669px;
  3152. width:200px;
  3153. height:1px;
  3154. display:flex;
  3155. }
  3156. #u85774 .text {
  3157. position:absolute;
  3158. align-self:center;
  3159. padding:2px 2px 2px 2px;
  3160. box-sizing:border-box;
  3161. width:100%;
  3162. }
  3163. #u85774_text {
  3164. border-width:0px;
  3165. word-wrap:break-word;
  3166. text-transform:none;
  3167. visibility:hidden;
  3168. }
  3169. #u85775_div {
  3170. border-width:0px;
  3171. position:absolute;
  3172. left:0px;
  3173. top:0px;
  3174. width:65px;
  3175. height:22px;
  3176. background:inherit;
  3177. background-color:rgba(255, 255, 255, 0);
  3178. border:none;
  3179. border-radius:0px;
  3180. -moz-box-shadow:none;
  3181. -webkit-box-shadow:none;
  3182. box-shadow:none;
  3183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3184. font-weight:400;
  3185. font-style:normal;
  3186. font-size:16px;
  3187. }
  3188. #u85775 {
  3189. border-width:0px;
  3190. position:absolute;
  3191. left:30px;
  3192. top:726px;
  3193. width:65px;
  3194. height:22px;
  3195. display:flex;
  3196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3197. font-weight:400;
  3198. font-style:normal;
  3199. font-size:16px;
  3200. }
  3201. #u85775 .text {
  3202. position:absolute;
  3203. align-self:flex-start;
  3204. padding:0px 0px 0px 0px;
  3205. box-sizing:border-box;
  3206. width:100%;
  3207. }
  3208. #u85775_text {
  3209. border-width:0px;
  3210. white-space:nowrap;
  3211. text-transform:none;
  3212. }
  3213. #u85776_div {
  3214. border-width:0px;
  3215. position:absolute;
  3216. left:0px;
  3217. top:0px;
  3218. width:49px;
  3219. height:17px;
  3220. background:inherit;
  3221. background-color:rgba(255, 255, 255, 0);
  3222. border:none;
  3223. border-radius:0px;
  3224. -moz-box-shadow:none;
  3225. -webkit-box-shadow:none;
  3226. box-shadow:none;
  3227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3228. font-weight:400;
  3229. font-style:normal;
  3230. font-size:12px;
  3231. color:#AAAAAA;
  3232. }
  3233. #u85776 {
  3234. border-width:0px;
  3235. position:absolute;
  3236. left:30px;
  3237. top:690px;
  3238. width:49px;
  3239. height:17px;
  3240. display:flex;
  3241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3242. font-weight:400;
  3243. font-style:normal;
  3244. font-size:12px;
  3245. color:#AAAAAA;
  3246. }
  3247. #u85776 .text {
  3248. position:absolute;
  3249. align-self:flex-start;
  3250. padding:0px 0px 0px 0px;
  3251. box-sizing:border-box;
  3252. width:100%;
  3253. }
  3254. #u85776_text {
  3255. border-width:0px;
  3256. white-space:nowrap;
  3257. text-transform:none;
  3258. }
  3259. #u85777_div {
  3260. border-width:0px;
  3261. position:absolute;
  3262. left:0px;
  3263. top:0px;
  3264. width:65px;
  3265. height:22px;
  3266. background:inherit;
  3267. background-color:rgba(255, 255, 255, 0);
  3268. border:none;
  3269. border-radius:0px;
  3270. -moz-box-shadow:none;
  3271. -webkit-box-shadow:none;
  3272. box-shadow:none;
  3273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3274. font-weight:400;
  3275. font-style:normal;
  3276. font-size:16px;
  3277. }
  3278. #u85777 {
  3279. border-width:0px;
  3280. position:absolute;
  3281. left:30px;
  3282. top:768px;
  3283. width:65px;
  3284. height:22px;
  3285. display:flex;
  3286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3287. font-weight:400;
  3288. font-style:normal;
  3289. font-size:16px;
  3290. }
  3291. #u85777 .text {
  3292. position:absolute;
  3293. align-self:flex-start;
  3294. padding:0px 0px 0px 0px;
  3295. box-sizing:border-box;
  3296. width:100%;
  3297. }
  3298. #u85777_text {
  3299. border-width:0px;
  3300. white-space:nowrap;
  3301. text-transform:none;
  3302. }
  3303. #u85778_div {
  3304. border-width:0px;
  3305. position:absolute;
  3306. left:0px;
  3307. top:0px;
  3308. width:65px;
  3309. height:22px;
  3310. background:inherit;
  3311. background-color:rgba(255, 255, 255, 0);
  3312. border:none;
  3313. border-radius:0px;
  3314. -moz-box-shadow:none;
  3315. -webkit-box-shadow:none;
  3316. box-shadow:none;
  3317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3318. font-weight:400;
  3319. font-style:normal;
  3320. font-size:16px;
  3321. }
  3322. #u85778 {
  3323. border-width:0px;
  3324. position:absolute;
  3325. left:30px;
  3326. top:852px;
  3327. width:65px;
  3328. height:22px;
  3329. display:flex;
  3330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3331. font-weight:400;
  3332. font-style:normal;
  3333. font-size:16px;
  3334. }
  3335. #u85778 .text {
  3336. position:absolute;
  3337. align-self:flex-start;
  3338. padding:0px 0px 0px 0px;
  3339. box-sizing:border-box;
  3340. width:100%;
  3341. }
  3342. #u85778_text {
  3343. border-width:0px;
  3344. white-space:nowrap;
  3345. text-transform:none;
  3346. }
  3347. #u85779_div {
  3348. border-width:0px;
  3349. position:absolute;
  3350. left:0px;
  3351. top:0px;
  3352. width:65px;
  3353. height:22px;
  3354. background:inherit;
  3355. background-color:rgba(255, 255, 255, 0);
  3356. border:none;
  3357. border-radius:0px;
  3358. -moz-box-shadow:none;
  3359. -webkit-box-shadow:none;
  3360. box-shadow:none;
  3361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3362. font-weight:400;
  3363. font-style:normal;
  3364. font-size:16px;
  3365. }
  3366. #u85779 {
  3367. border-width:0px;
  3368. position:absolute;
  3369. left:30px;
  3370. top:810px;
  3371. width:65px;
  3372. height:22px;
  3373. display:flex;
  3374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3375. font-weight:400;
  3376. font-style:normal;
  3377. font-size:16px;
  3378. }
  3379. #u85779 .text {
  3380. position:absolute;
  3381. align-self:flex-start;
  3382. padding:0px 0px 0px 0px;
  3383. box-sizing:border-box;
  3384. width:100%;
  3385. }
  3386. #u85779_text {
  3387. border-width:0px;
  3388. white-space:nowrap;
  3389. text-transform:none;
  3390. }
  3391. #u85780_div {
  3392. border-width:0px;
  3393. position:absolute;
  3394. left:0px;
  3395. top:0px;
  3396. width:65px;
  3397. height:22px;
  3398. background:inherit;
  3399. background-color:rgba(255, 255, 255, 0);
  3400. border:none;
  3401. border-radius:0px;
  3402. -moz-box-shadow:none;
  3403. -webkit-box-shadow:none;
  3404. box-shadow:none;
  3405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3406. font-weight:400;
  3407. font-style:normal;
  3408. font-size:16px;
  3409. }
  3410. #u85780 {
  3411. border-width:0px;
  3412. position:absolute;
  3413. left:30px;
  3414. top:894px;
  3415. width:65px;
  3416. height:22px;
  3417. display:flex;
  3418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3419. font-weight:400;
  3420. font-style:normal;
  3421. font-size:16px;
  3422. }
  3423. #u85780 .text {
  3424. position:absolute;
  3425. align-self:flex-start;
  3426. padding:0px 0px 0px 0px;
  3427. box-sizing:border-box;
  3428. width:100%;
  3429. }
  3430. #u85780_text {
  3431. border-width:0px;
  3432. white-space:nowrap;
  3433. text-transform:none;
  3434. }
  3435. #u85781_div {
  3436. border-width:0px;
  3437. position:absolute;
  3438. left:0px;
  3439. top:0px;
  3440. width:65px;
  3441. height:22px;
  3442. background:inherit;
  3443. background-color:rgba(255, 255, 255, 0);
  3444. border:none;
  3445. border-radius:0px;
  3446. -moz-box-shadow:none;
  3447. -webkit-box-shadow:none;
  3448. box-shadow:none;
  3449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3450. font-weight:400;
  3451. font-style:normal;
  3452. font-size:16px;
  3453. }
  3454. #u85781 {
  3455. border-width:0px;
  3456. position:absolute;
  3457. left:30px;
  3458. top:936px;
  3459. width:65px;
  3460. height:22px;
  3461. display:flex;
  3462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3463. font-weight:400;
  3464. font-style:normal;
  3465. font-size:16px;
  3466. }
  3467. #u85781 .text {
  3468. position:absolute;
  3469. align-self:flex-start;
  3470. padding:0px 0px 0px 0px;
  3471. box-sizing:border-box;
  3472. width:100%;
  3473. }
  3474. #u85781_text {
  3475. border-width:0px;
  3476. white-space:nowrap;
  3477. text-transform:none;
  3478. }
  3479. #u85782_img {
  3480. border-width:0px;
  3481. position:absolute;
  3482. left:0px;
  3483. top:0px;
  3484. width:201px;
  3485. height:2px;
  3486. }
  3487. #u85782 {
  3488. border-width:0px;
  3489. position:absolute;
  3490. left:0px;
  3491. top:1018px;
  3492. width:200px;
  3493. height:1px;
  3494. display:flex;
  3495. }
  3496. #u85782 .text {
  3497. position:absolute;
  3498. align-self:center;
  3499. padding:2px 2px 2px 2px;
  3500. box-sizing:border-box;
  3501. width:100%;
  3502. }
  3503. #u85782_text {
  3504. border-width:0px;
  3505. word-wrap:break-word;
  3506. text-transform:none;
  3507. visibility:hidden;
  3508. }
  3509. #u85783_div {
  3510. border-width:0px;
  3511. position:absolute;
  3512. left:0px;
  3513. top:0px;
  3514. width:65px;
  3515. height:22px;
  3516. background:inherit;
  3517. background-color:rgba(255, 255, 255, 0);
  3518. border:none;
  3519. border-radius:0px;
  3520. -moz-box-shadow:none;
  3521. -webkit-box-shadow:none;
  3522. box-shadow:none;
  3523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3524. font-weight:400;
  3525. font-style:normal;
  3526. font-size:16px;
  3527. }
  3528. #u85783 {
  3529. border-width:0px;
  3530. position:absolute;
  3531. left:30px;
  3532. top:1075px;
  3533. width:65px;
  3534. height:22px;
  3535. display:flex;
  3536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3537. font-weight:400;
  3538. font-style:normal;
  3539. font-size:16px;
  3540. }
  3541. #u85783 .text {
  3542. position:absolute;
  3543. align-self:flex-start;
  3544. padding:0px 0px 0px 0px;
  3545. box-sizing:border-box;
  3546. width:100%;
  3547. }
  3548. #u85783_text {
  3549. border-width:0px;
  3550. white-space:nowrap;
  3551. text-transform:none;
  3552. }
  3553. #u85784_div {
  3554. border-width:0px;
  3555. position:absolute;
  3556. left:0px;
  3557. top:0px;
  3558. width:49px;
  3559. height:17px;
  3560. background:inherit;
  3561. background-color:rgba(255, 255, 255, 0);
  3562. border:none;
  3563. border-radius:0px;
  3564. -moz-box-shadow:none;
  3565. -webkit-box-shadow:none;
  3566. box-shadow:none;
  3567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3568. font-weight:400;
  3569. font-style:normal;
  3570. font-size:12px;
  3571. color:#AAAAAA;
  3572. }
  3573. #u85784 {
  3574. border-width:0px;
  3575. position:absolute;
  3576. left:30px;
  3577. top:1039px;
  3578. width:49px;
  3579. height:17px;
  3580. display:flex;
  3581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3582. font-weight:400;
  3583. font-style:normal;
  3584. font-size:12px;
  3585. color:#AAAAAA;
  3586. }
  3587. #u85784 .text {
  3588. position:absolute;
  3589. align-self:flex-start;
  3590. padding:0px 0px 0px 0px;
  3591. box-sizing:border-box;
  3592. width:100%;
  3593. }
  3594. #u85784_text {
  3595. border-width:0px;
  3596. white-space:nowrap;
  3597. text-transform:none;
  3598. }
  3599. #u85785_div {
  3600. border-width:0px;
  3601. position:absolute;
  3602. left:0px;
  3603. top:0px;
  3604. width:65px;
  3605. height:22px;
  3606. background:inherit;
  3607. background-color:rgba(255, 255, 255, 0);
  3608. border:none;
  3609. border-radius:0px;
  3610. -moz-box-shadow:none;
  3611. -webkit-box-shadow:none;
  3612. box-shadow:none;
  3613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3614. font-weight:400;
  3615. font-style:normal;
  3616. font-size:16px;
  3617. }
  3618. #u85785 {
  3619. border-width:0px;
  3620. position:absolute;
  3621. left:30px;
  3622. top:1117px;
  3623. width:65px;
  3624. height:22px;
  3625. display:flex;
  3626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3627. font-weight:400;
  3628. font-style:normal;
  3629. font-size:16px;
  3630. }
  3631. #u85785 .text {
  3632. position:absolute;
  3633. align-self:flex-start;
  3634. padding:0px 0px 0px 0px;
  3635. box-sizing:border-box;
  3636. width:100%;
  3637. }
  3638. #u85785_text {
  3639. border-width:0px;
  3640. white-space:nowrap;
  3641. text-transform:none;
  3642. }
  3643. #u85786_div {
  3644. border-width:0px;
  3645. position:absolute;
  3646. left:0px;
  3647. top:0px;
  3648. width:65px;
  3649. height:22px;
  3650. background:inherit;
  3651. background-color:rgba(255, 255, 255, 0);
  3652. border:none;
  3653. border-radius:0px;
  3654. -moz-box-shadow:none;
  3655. -webkit-box-shadow:none;
  3656. box-shadow:none;
  3657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3658. font-weight:400;
  3659. font-style:normal;
  3660. font-size:16px;
  3661. }
  3662. #u85786 {
  3663. border-width:0px;
  3664. position:absolute;
  3665. left:30px;
  3666. top:1201px;
  3667. width:65px;
  3668. height:22px;
  3669. display:flex;
  3670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3671. font-weight:400;
  3672. font-style:normal;
  3673. font-size:16px;
  3674. }
  3675. #u85786 .text {
  3676. position:absolute;
  3677. align-self:flex-start;
  3678. padding:0px 0px 0px 0px;
  3679. box-sizing:border-box;
  3680. width:100%;
  3681. }
  3682. #u85786_text {
  3683. border-width:0px;
  3684. white-space:nowrap;
  3685. text-transform:none;
  3686. }
  3687. #u85787_div {
  3688. border-width:0px;
  3689. position:absolute;
  3690. left:0px;
  3691. top:0px;
  3692. width:65px;
  3693. height:22px;
  3694. background:inherit;
  3695. background-color:rgba(255, 255, 255, 0);
  3696. border:none;
  3697. border-radius:0px;
  3698. -moz-box-shadow:none;
  3699. -webkit-box-shadow:none;
  3700. box-shadow:none;
  3701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3702. font-weight:400;
  3703. font-style:normal;
  3704. font-size:16px;
  3705. }
  3706. #u85787 {
  3707. border-width:0px;
  3708. position:absolute;
  3709. left:30px;
  3710. top:1159px;
  3711. width:65px;
  3712. height:22px;
  3713. display:flex;
  3714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3715. font-weight:400;
  3716. font-style:normal;
  3717. font-size:16px;
  3718. }
  3719. #u85787 .text {
  3720. position:absolute;
  3721. align-self:flex-start;
  3722. padding:0px 0px 0px 0px;
  3723. box-sizing:border-box;
  3724. width:100%;
  3725. }
  3726. #u85787_text {
  3727. border-width:0px;
  3728. white-space:nowrap;
  3729. text-transform:none;
  3730. }
  3731. #u85788_div {
  3732. border-width:0px;
  3733. position:absolute;
  3734. left:0px;
  3735. top:0px;
  3736. width:65px;
  3737. height:22px;
  3738. background:inherit;
  3739. background-color:rgba(255, 255, 255, 0);
  3740. border:none;
  3741. border-radius:0px;
  3742. -moz-box-shadow:none;
  3743. -webkit-box-shadow:none;
  3744. box-shadow:none;
  3745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3746. font-weight:400;
  3747. font-style:normal;
  3748. font-size:16px;
  3749. }
  3750. #u85788 {
  3751. border-width:0px;
  3752. position:absolute;
  3753. left:30px;
  3754. top:1243px;
  3755. width:65px;
  3756. height:22px;
  3757. display:flex;
  3758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3759. font-weight:400;
  3760. font-style:normal;
  3761. font-size:16px;
  3762. }
  3763. #u85788 .text {
  3764. position:absolute;
  3765. align-self:flex-start;
  3766. padding:0px 0px 0px 0px;
  3767. box-sizing:border-box;
  3768. width:100%;
  3769. }
  3770. #u85788_text {
  3771. border-width:0px;
  3772. white-space:nowrap;
  3773. text-transform:none;
  3774. }
  3775. #u85789_div {
  3776. border-width:0px;
  3777. position:absolute;
  3778. left:0px;
  3779. top:0px;
  3780. width:65px;
  3781. height:22px;
  3782. background:inherit;
  3783. background-color:rgba(255, 255, 255, 0);
  3784. border:none;
  3785. border-radius:0px;
  3786. -moz-box-shadow:none;
  3787. -webkit-box-shadow:none;
  3788. box-shadow:none;
  3789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3790. font-weight:400;
  3791. font-style:normal;
  3792. font-size:16px;
  3793. }
  3794. #u85789 {
  3795. border-width:0px;
  3796. position:absolute;
  3797. left:30px;
  3798. top:978px;
  3799. width:65px;
  3800. height:22px;
  3801. display:flex;
  3802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3803. font-weight:400;
  3804. font-style:normal;
  3805. font-size:16px;
  3806. }
  3807. #u85789 .text {
  3808. position:absolute;
  3809. align-self:flex-start;
  3810. padding:0px 0px 0px 0px;
  3811. box-sizing:border-box;
  3812. width:100%;
  3813. }
  3814. #u85789_text {
  3815. border-width:0px;
  3816. white-space:nowrap;
  3817. text-transform:none;
  3818. }
  3819. #u85790_div {
  3820. border-width:0px;
  3821. position:absolute;
  3822. left:0px;
  3823. top:0px;
  3824. width:65px;
  3825. height:22px;
  3826. background:inherit;
  3827. background-color:rgba(255, 255, 255, 0);
  3828. border:none;
  3829. border-radius:0px;
  3830. -moz-box-shadow:none;
  3831. -webkit-box-shadow:none;
  3832. box-shadow:none;
  3833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3834. font-weight:400;
  3835. font-style:normal;
  3836. font-size:16px;
  3837. }
  3838. #u85790 {
  3839. border-width:0px;
  3840. position:absolute;
  3841. left:30px;
  3842. top:622px;
  3843. width:65px;
  3844. height:22px;
  3845. display:flex;
  3846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3847. font-weight:400;
  3848. font-style:normal;
  3849. font-size:16px;
  3850. }
  3851. #u85790 .text {
  3852. position:absolute;
  3853. align-self:flex-start;
  3854. padding:0px 0px 0px 0px;
  3855. box-sizing:border-box;
  3856. width:100%;
  3857. }
  3858. #u85790_text {
  3859. border-width:0px;
  3860. white-space:nowrap;
  3861. text-transform:none;
  3862. }
  3863. #u85791 {
  3864. border-width:0px;
  3865. position:absolute;
  3866. left:350px;
  3867. top:161px;
  3868. width:1220px;
  3869. height:286px;
  3870. }
  3871. #u85792_img {
  3872. border-width:0px;
  3873. position:absolute;
  3874. left:0px;
  3875. top:0px;
  3876. width:77px;
  3877. height:38px;
  3878. }
  3879. #u85792 {
  3880. border-width:0px;
  3881. position:absolute;
  3882. left:0px;
  3883. top:0px;
  3884. width:77px;
  3885. height:38px;
  3886. display:flex;
  3887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3888. font-weight:400;
  3889. font-style:normal;
  3890. font-size:12px;
  3891. color:#FFFFFF;
  3892. }
  3893. #u85792 .text {
  3894. position:absolute;
  3895. align-self:center;
  3896. padding:2px 2px 2px 0px;
  3897. box-sizing:border-box;
  3898. width:100%;
  3899. }
  3900. #u85792_text {
  3901. border-width:0px;
  3902. word-wrap:break-word;
  3903. text-transform:none;
  3904. }
  3905. #u85793_img {
  3906. border-width:0px;
  3907. position:absolute;
  3908. left:0px;
  3909. top:0px;
  3910. width:78px;
  3911. height:38px;
  3912. }
  3913. #u85793 {
  3914. border-width:0px;
  3915. position:absolute;
  3916. left:77px;
  3917. top:0px;
  3918. width:78px;
  3919. height:38px;
  3920. display:flex;
  3921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3922. font-weight:400;
  3923. font-style:normal;
  3924. font-size:12px;
  3925. color:#FFFFFF;
  3926. }
  3927. #u85793 .text {
  3928. position:absolute;
  3929. align-self:center;
  3930. padding:2px 2px 2px 0px;
  3931. box-sizing:border-box;
  3932. width:100%;
  3933. }
  3934. #u85793_text {
  3935. border-width:0px;
  3936. word-wrap:break-word;
  3937. text-transform:none;
  3938. }
  3939. #u85794_img {
  3940. border-width:0px;
  3941. position:absolute;
  3942. left:0px;
  3943. top:0px;
  3944. width:78px;
  3945. height:38px;
  3946. }
  3947. #u85794 {
  3948. border-width:0px;
  3949. position:absolute;
  3950. left:155px;
  3951. top:0px;
  3952. width:78px;
  3953. height:38px;
  3954. display:flex;
  3955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3956. font-weight:400;
  3957. font-style:normal;
  3958. font-size:12px;
  3959. color:#FFFFFF;
  3960. }
  3961. #u85794 .text {
  3962. position:absolute;
  3963. align-self:center;
  3964. padding:2px 2px 2px 0px;
  3965. box-sizing:border-box;
  3966. width:100%;
  3967. }
  3968. #u85794_text {
  3969. border-width:0px;
  3970. word-wrap:break-word;
  3971. text-transform:none;
  3972. }
  3973. #u85795_img {
  3974. border-width:0px;
  3975. position:absolute;
  3976. left:0px;
  3977. top:0px;
  3978. width:79px;
  3979. height:38px;
  3980. }
  3981. #u85795 {
  3982. border-width:0px;
  3983. position:absolute;
  3984. left:233px;
  3985. top:0px;
  3986. width:79px;
  3987. height:38px;
  3988. display:flex;
  3989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3990. font-weight:400;
  3991. font-style:normal;
  3992. font-size:12px;
  3993. color:#FFFFFF;
  3994. }
  3995. #u85795 .text {
  3996. position:absolute;
  3997. align-self:center;
  3998. padding:2px 2px 2px 0px;
  3999. box-sizing:border-box;
  4000. width:100%;
  4001. }
  4002. #u85795_text {
  4003. border-width:0px;
  4004. word-wrap:break-word;
  4005. text-transform:none;
  4006. }
  4007. #u85796_img {
  4008. border-width:0px;
  4009. position:absolute;
  4010. left:0px;
  4011. top:0px;
  4012. width:79px;
  4013. height:38px;
  4014. }
  4015. #u85796 {
  4016. border-width:0px;
  4017. position:absolute;
  4018. left:312px;
  4019. top:0px;
  4020. width:79px;
  4021. height:38px;
  4022. display:flex;
  4023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4024. font-weight:400;
  4025. font-style:normal;
  4026. font-size:12px;
  4027. color:#FFFFFF;
  4028. }
  4029. #u85796 .text {
  4030. position:absolute;
  4031. align-self:center;
  4032. padding:2px 2px 2px 0px;
  4033. box-sizing:border-box;
  4034. width:100%;
  4035. }
  4036. #u85796_text {
  4037. border-width:0px;
  4038. word-wrap:break-word;
  4039. text-transform:none;
  4040. }
  4041. #u85797_img {
  4042. border-width:0px;
  4043. position:absolute;
  4044. left:0px;
  4045. top:0px;
  4046. width:79px;
  4047. height:38px;
  4048. }
  4049. #u85797 {
  4050. border-width:0px;
  4051. position:absolute;
  4052. left:391px;
  4053. top:0px;
  4054. width:79px;
  4055. height:38px;
  4056. display:flex;
  4057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4058. font-weight:400;
  4059. font-style:normal;
  4060. font-size:12px;
  4061. color:#FFFFFF;
  4062. }
  4063. #u85797 .text {
  4064. position:absolute;
  4065. align-self:center;
  4066. padding:2px 2px 2px 0px;
  4067. box-sizing:border-box;
  4068. width:100%;
  4069. }
  4070. #u85797_text {
  4071. border-width:0px;
  4072. word-wrap:break-word;
  4073. text-transform:none;
  4074. }
  4075. #u85798_img {
  4076. border-width:0px;
  4077. position:absolute;
  4078. left:0px;
  4079. top:0px;
  4080. width:78px;
  4081. height:38px;
  4082. }
  4083. #u85798 {
  4084. border-width:0px;
  4085. position:absolute;
  4086. left:470px;
  4087. top:0px;
  4088. width:78px;
  4089. height:38px;
  4090. display:flex;
  4091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4092. font-weight:400;
  4093. font-style:normal;
  4094. font-size:12px;
  4095. color:#FFFFFF;
  4096. }
  4097. #u85798 .text {
  4098. position:absolute;
  4099. align-self:center;
  4100. padding:2px 2px 2px 0px;
  4101. box-sizing:border-box;
  4102. width:100%;
  4103. }
  4104. #u85798_text {
  4105. border-width:0px;
  4106. word-wrap:break-word;
  4107. text-transform:none;
  4108. }
  4109. #u85799_img {
  4110. border-width:0px;
  4111. position:absolute;
  4112. left:0px;
  4113. top:0px;
  4114. width:98px;
  4115. height:38px;
  4116. }
  4117. #u85799 {
  4118. border-width:0px;
  4119. position:absolute;
  4120. left:548px;
  4121. top:0px;
  4122. width:98px;
  4123. height:38px;
  4124. display:flex;
  4125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4126. font-weight:400;
  4127. font-style:normal;
  4128. font-size:12px;
  4129. color:#FFFFFF;
  4130. }
  4131. #u85799 .text {
  4132. position:absolute;
  4133. align-self:center;
  4134. padding:2px 2px 2px 0px;
  4135. box-sizing:border-box;
  4136. width:100%;
  4137. }
  4138. #u85799_text {
  4139. border-width:0px;
  4140. word-wrap:break-word;
  4141. text-transform:none;
  4142. }
  4143. #u85800_img {
  4144. border-width:0px;
  4145. position:absolute;
  4146. left:0px;
  4147. top:0px;
  4148. width:79px;
  4149. height:38px;
  4150. }
  4151. #u85800 {
  4152. border-width:0px;
  4153. position:absolute;
  4154. left:646px;
  4155. top:0px;
  4156. width:79px;
  4157. height:38px;
  4158. display:flex;
  4159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4160. font-weight:400;
  4161. font-style:normal;
  4162. font-size:12px;
  4163. color:#FFFFFF;
  4164. }
  4165. #u85800 .text {
  4166. position:absolute;
  4167. align-self:center;
  4168. padding:2px 2px 2px 0px;
  4169. box-sizing:border-box;
  4170. width:100%;
  4171. }
  4172. #u85800_text {
  4173. border-width:0px;
  4174. word-wrap:break-word;
  4175. text-transform:none;
  4176. }
  4177. #u85801_img {
  4178. border-width:0px;
  4179. position:absolute;
  4180. left:0px;
  4181. top:0px;
  4182. width:79px;
  4183. height:38px;
  4184. }
  4185. #u85801 {
  4186. border-width:0px;
  4187. position:absolute;
  4188. left:725px;
  4189. top:0px;
  4190. width:79px;
  4191. height:38px;
  4192. display:flex;
  4193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4194. font-weight:400;
  4195. font-style:normal;
  4196. font-size:12px;
  4197. color:#FFFFFF;
  4198. }
  4199. #u85801 .text {
  4200. position:absolute;
  4201. align-self:center;
  4202. padding:2px 2px 2px 0px;
  4203. box-sizing:border-box;
  4204. width:100%;
  4205. }
  4206. #u85801_text {
  4207. border-width:0px;
  4208. word-wrap:break-word;
  4209. text-transform:none;
  4210. }
  4211. #u85802_img {
  4212. border-width:0px;
  4213. position:absolute;
  4214. left:0px;
  4215. top:0px;
  4216. width:79px;
  4217. height:38px;
  4218. }
  4219. #u85802 {
  4220. border-width:0px;
  4221. position:absolute;
  4222. left:804px;
  4223. top:0px;
  4224. width:79px;
  4225. height:38px;
  4226. display:flex;
  4227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4228. font-weight:400;
  4229. font-style:normal;
  4230. font-size:12px;
  4231. color:#FFFFFF;
  4232. }
  4233. #u85802 .text {
  4234. position:absolute;
  4235. align-self:center;
  4236. padding:2px 2px 2px 0px;
  4237. box-sizing:border-box;
  4238. width:100%;
  4239. }
  4240. #u85802_text {
  4241. border-width:0px;
  4242. word-wrap:break-word;
  4243. text-transform:none;
  4244. }
  4245. #u85803_img {
  4246. border-width:0px;
  4247. position:absolute;
  4248. left:0px;
  4249. top:0px;
  4250. width:79px;
  4251. height:38px;
  4252. }
  4253. #u85803 {
  4254. border-width:0px;
  4255. position:absolute;
  4256. left:883px;
  4257. top:0px;
  4258. width:79px;
  4259. height:38px;
  4260. display:flex;
  4261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4262. font-weight:400;
  4263. font-style:normal;
  4264. font-size:12px;
  4265. color:#FFFFFF;
  4266. }
  4267. #u85803 .text {
  4268. position:absolute;
  4269. align-self:center;
  4270. padding:2px 2px 2px 0px;
  4271. box-sizing:border-box;
  4272. width:100%;
  4273. }
  4274. #u85803_text {
  4275. border-width:0px;
  4276. word-wrap:break-word;
  4277. text-transform:none;
  4278. }
  4279. #u85804_img {
  4280. border-width:0px;
  4281. position:absolute;
  4282. left:0px;
  4283. top:0px;
  4284. width:79px;
  4285. height:38px;
  4286. }
  4287. #u85804 {
  4288. border-width:0px;
  4289. position:absolute;
  4290. left:962px;
  4291. top:0px;
  4292. width:79px;
  4293. height:38px;
  4294. display:flex;
  4295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4296. font-weight:400;
  4297. font-style:normal;
  4298. font-size:12px;
  4299. color:#FFFFFF;
  4300. }
  4301. #u85804 .text {
  4302. position:absolute;
  4303. align-self:center;
  4304. padding:2px 2px 2px 0px;
  4305. box-sizing:border-box;
  4306. width:100%;
  4307. }
  4308. #u85804_text {
  4309. border-width:0px;
  4310. word-wrap:break-word;
  4311. text-transform:none;
  4312. }
  4313. #u85805_img {
  4314. border-width:0px;
  4315. position:absolute;
  4316. left:0px;
  4317. top:0px;
  4318. width:70px;
  4319. height:38px;
  4320. }
  4321. #u85805 {
  4322. border-width:0px;
  4323. position:absolute;
  4324. left:1041px;
  4325. top:0px;
  4326. width:70px;
  4327. height:38px;
  4328. display:flex;
  4329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4330. font-weight:400;
  4331. font-style:normal;
  4332. font-size:12px;
  4333. color:#FFFFFF;
  4334. }
  4335. #u85805 .text {
  4336. position:absolute;
  4337. align-self:center;
  4338. padding:2px 2px 2px 0px;
  4339. box-sizing:border-box;
  4340. width:100%;
  4341. }
  4342. #u85805_text {
  4343. border-width:0px;
  4344. word-wrap:break-word;
  4345. text-transform:none;
  4346. }
  4347. #u85806_img {
  4348. border-width:0px;
  4349. position:absolute;
  4350. left:0px;
  4351. top:0px;
  4352. width:109px;
  4353. height:38px;
  4354. }
  4355. #u85806 {
  4356. border-width:0px;
  4357. position:absolute;
  4358. left:1111px;
  4359. top:0px;
  4360. width:109px;
  4361. height:38px;
  4362. display:flex;
  4363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4364. font-weight:400;
  4365. font-style:normal;
  4366. font-size:12px;
  4367. color:#FFFFFF;
  4368. }
  4369. #u85806 .text {
  4370. position:absolute;
  4371. align-self:center;
  4372. padding:2px 2px 2px 0px;
  4373. box-sizing:border-box;
  4374. width:100%;
  4375. }
  4376. #u85806_text {
  4377. border-width:0px;
  4378. word-wrap:break-word;
  4379. text-transform:none;
  4380. }
  4381. #u85807_img {
  4382. border-width:0px;
  4383. position:absolute;
  4384. left:0px;
  4385. top:0px;
  4386. width:77px;
  4387. height:38px;
  4388. }
  4389. #u85807 {
  4390. border-width:0px;
  4391. position:absolute;
  4392. left:0px;
  4393. top:38px;
  4394. width:77px;
  4395. height:38px;
  4396. display:flex;
  4397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4398. font-weight:400;
  4399. font-style:normal;
  4400. font-size:12px;
  4401. }
  4402. #u85807 .text {
  4403. position:absolute;
  4404. align-self:center;
  4405. padding:2px 2px 2px 0px;
  4406. box-sizing:border-box;
  4407. width:100%;
  4408. }
  4409. #u85807_text {
  4410. border-width:0px;
  4411. word-wrap:break-word;
  4412. text-transform:none;
  4413. visibility:hidden;
  4414. }
  4415. #u85808_img {
  4416. border-width:0px;
  4417. position:absolute;
  4418. left:0px;
  4419. top:0px;
  4420. width:78px;
  4421. height:38px;
  4422. }
  4423. #u85808 {
  4424. border-width:0px;
  4425. position:absolute;
  4426. left:77px;
  4427. top:38px;
  4428. width:78px;
  4429. height:38px;
  4430. display:flex;
  4431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4432. font-weight:400;
  4433. font-style:normal;
  4434. font-size:12px;
  4435. }
  4436. #u85808 .text {
  4437. position:absolute;
  4438. align-self:center;
  4439. padding:2px 2px 2px 0px;
  4440. box-sizing:border-box;
  4441. width:100%;
  4442. }
  4443. #u85808_text {
  4444. border-width:0px;
  4445. word-wrap:break-word;
  4446. text-transform:none;
  4447. visibility:hidden;
  4448. }
  4449. #u85809_img {
  4450. border-width:0px;
  4451. position:absolute;
  4452. left:0px;
  4453. top:0px;
  4454. width:78px;
  4455. height:38px;
  4456. }
  4457. #u85809 {
  4458. border-width:0px;
  4459. position:absolute;
  4460. left:155px;
  4461. top:38px;
  4462. width:78px;
  4463. height:38px;
  4464. display:flex;
  4465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4466. font-weight:400;
  4467. font-style:normal;
  4468. font-size:12px;
  4469. }
  4470. #u85809 .text {
  4471. position:absolute;
  4472. align-self:center;
  4473. padding:2px 2px 2px 0px;
  4474. box-sizing:border-box;
  4475. width:100%;
  4476. }
  4477. #u85809_text {
  4478. border-width:0px;
  4479. word-wrap:break-word;
  4480. text-transform:none;
  4481. }
  4482. #u85810_img {
  4483. border-width:0px;
  4484. position:absolute;
  4485. left:0px;
  4486. top:0px;
  4487. width:79px;
  4488. height:38px;
  4489. }
  4490. #u85810 {
  4491. border-width:0px;
  4492. position:absolute;
  4493. left:233px;
  4494. top:38px;
  4495. width:79px;
  4496. height:38px;
  4497. display:flex;
  4498. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4499. font-weight:400;
  4500. font-style:normal;
  4501. font-size:12px;
  4502. }
  4503. #u85810 .text {
  4504. position:absolute;
  4505. align-self:center;
  4506. padding:2px 2px 2px 0px;
  4507. box-sizing:border-box;
  4508. width:100%;
  4509. }
  4510. #u85810_text {
  4511. border-width:0px;
  4512. word-wrap:break-word;
  4513. text-transform:none;
  4514. visibility:hidden;
  4515. }
  4516. #u85811_img {
  4517. border-width:0px;
  4518. position:absolute;
  4519. left:0px;
  4520. top:0px;
  4521. width:79px;
  4522. height:38px;
  4523. }
  4524. #u85811 {
  4525. border-width:0px;
  4526. position:absolute;
  4527. left:312px;
  4528. top:38px;
  4529. width:79px;
  4530. height:38px;
  4531. display:flex;
  4532. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4533. font-weight:400;
  4534. font-style:normal;
  4535. font-size:12px;
  4536. }
  4537. #u85811 .text {
  4538. position:absolute;
  4539. align-self:center;
  4540. padding:2px 2px 2px 0px;
  4541. box-sizing:border-box;
  4542. width:100%;
  4543. }
  4544. #u85811_text {
  4545. border-width:0px;
  4546. word-wrap:break-word;
  4547. text-transform:none;
  4548. visibility:hidden;
  4549. }
  4550. #u85812_img {
  4551. border-width:0px;
  4552. position:absolute;
  4553. left:0px;
  4554. top:0px;
  4555. width:79px;
  4556. height:38px;
  4557. }
  4558. #u85812 {
  4559. border-width:0px;
  4560. position:absolute;
  4561. left:391px;
  4562. top:38px;
  4563. width:79px;
  4564. height:38px;
  4565. display:flex;
  4566. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4567. font-weight:400;
  4568. font-style:normal;
  4569. font-size:12px;
  4570. }
  4571. #u85812 .text {
  4572. position:absolute;
  4573. align-self:center;
  4574. padding:2px 2px 2px 0px;
  4575. box-sizing:border-box;
  4576. width:100%;
  4577. }
  4578. #u85812_text {
  4579. border-width:0px;
  4580. word-wrap:break-word;
  4581. text-transform:none;
  4582. visibility:hidden;
  4583. }
  4584. #u85813_img {
  4585. border-width:0px;
  4586. position:absolute;
  4587. left:0px;
  4588. top:0px;
  4589. width:78px;
  4590. height:38px;
  4591. }
  4592. #u85813 {
  4593. border-width:0px;
  4594. position:absolute;
  4595. left:470px;
  4596. top:38px;
  4597. width:78px;
  4598. height:38px;
  4599. display:flex;
  4600. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4601. font-weight:400;
  4602. font-style:normal;
  4603. font-size:12px;
  4604. }
  4605. #u85813 .text {
  4606. position:absolute;
  4607. align-self:center;
  4608. padding:2px 2px 2px 0px;
  4609. box-sizing:border-box;
  4610. width:100%;
  4611. }
  4612. #u85813_text {
  4613. border-width:0px;
  4614. word-wrap:break-word;
  4615. text-transform:none;
  4616. visibility:hidden;
  4617. }
  4618. #u85814_img {
  4619. border-width:0px;
  4620. position:absolute;
  4621. left:0px;
  4622. top:0px;
  4623. width:98px;
  4624. height:38px;
  4625. }
  4626. #u85814 {
  4627. border-width:0px;
  4628. position:absolute;
  4629. left:548px;
  4630. top:38px;
  4631. width:98px;
  4632. height:38px;
  4633. display:flex;
  4634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4635. font-weight:400;
  4636. font-style:normal;
  4637. font-size:12px;
  4638. }
  4639. #u85814 .text {
  4640. position:absolute;
  4641. align-self:center;
  4642. padding:2px 2px 2px 0px;
  4643. box-sizing:border-box;
  4644. width:100%;
  4645. }
  4646. #u85814_text {
  4647. border-width:0px;
  4648. word-wrap:break-word;
  4649. text-transform:none;
  4650. }
  4651. #u85815_img {
  4652. border-width:0px;
  4653. position:absolute;
  4654. left:0px;
  4655. top:0px;
  4656. width:79px;
  4657. height:38px;
  4658. }
  4659. #u85815 {
  4660. border-width:0px;
  4661. position:absolute;
  4662. left:646px;
  4663. top:38px;
  4664. width:79px;
  4665. height:38px;
  4666. display:flex;
  4667. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4668. font-weight:400;
  4669. font-style:normal;
  4670. font-size:12px;
  4671. }
  4672. #u85815 .text {
  4673. position:absolute;
  4674. align-self:center;
  4675. padding:2px 2px 2px 0px;
  4676. box-sizing:border-box;
  4677. width:100%;
  4678. }
  4679. #u85815_text {
  4680. border-width:0px;
  4681. word-wrap:break-word;
  4682. text-transform:none;
  4683. visibility:hidden;
  4684. }
  4685. #u85816_img {
  4686. border-width:0px;
  4687. position:absolute;
  4688. left:0px;
  4689. top:0px;
  4690. width:79px;
  4691. height:38px;
  4692. }
  4693. #u85816 {
  4694. border-width:0px;
  4695. position:absolute;
  4696. left:725px;
  4697. top:38px;
  4698. width:79px;
  4699. height:38px;
  4700. display:flex;
  4701. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4702. font-weight:400;
  4703. font-style:normal;
  4704. font-size:12px;
  4705. }
  4706. #u85816 .text {
  4707. position:absolute;
  4708. align-self:center;
  4709. padding:2px 2px 2px 0px;
  4710. box-sizing:border-box;
  4711. width:100%;
  4712. }
  4713. #u85816_text {
  4714. border-width:0px;
  4715. word-wrap:break-word;
  4716. text-transform:none;
  4717. visibility:hidden;
  4718. }
  4719. #u85817_img {
  4720. border-width:0px;
  4721. position:absolute;
  4722. left:0px;
  4723. top:0px;
  4724. width:79px;
  4725. height:38px;
  4726. }
  4727. #u85817 {
  4728. border-width:0px;
  4729. position:absolute;
  4730. left:804px;
  4731. top:38px;
  4732. width:79px;
  4733. height:38px;
  4734. display:flex;
  4735. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4736. font-weight:400;
  4737. font-style:normal;
  4738. font-size:12px;
  4739. }
  4740. #u85817 .text {
  4741. position:absolute;
  4742. align-self:center;
  4743. padding:2px 2px 2px 0px;
  4744. box-sizing:border-box;
  4745. width:100%;
  4746. }
  4747. #u85817_text {
  4748. border-width:0px;
  4749. word-wrap:break-word;
  4750. text-transform:none;
  4751. visibility:hidden;
  4752. }
  4753. #u85818_img {
  4754. border-width:0px;
  4755. position:absolute;
  4756. left:0px;
  4757. top:0px;
  4758. width:79px;
  4759. height:38px;
  4760. }
  4761. #u85818 {
  4762. border-width:0px;
  4763. position:absolute;
  4764. left:883px;
  4765. top:38px;
  4766. width:79px;
  4767. height:38px;
  4768. display:flex;
  4769. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4770. font-weight:400;
  4771. font-style:normal;
  4772. font-size:12px;
  4773. }
  4774. #u85818 .text {
  4775. position:absolute;
  4776. align-self:center;
  4777. padding:2px 2px 2px 0px;
  4778. box-sizing:border-box;
  4779. width:100%;
  4780. }
  4781. #u85818_text {
  4782. border-width:0px;
  4783. word-wrap:break-word;
  4784. text-transform:none;
  4785. visibility:hidden;
  4786. }
  4787. #u85819_img {
  4788. border-width:0px;
  4789. position:absolute;
  4790. left:0px;
  4791. top:0px;
  4792. width:79px;
  4793. height:38px;
  4794. }
  4795. #u85819 {
  4796. border-width:0px;
  4797. position:absolute;
  4798. left:962px;
  4799. top:38px;
  4800. width:79px;
  4801. height:38px;
  4802. display:flex;
  4803. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4804. font-weight:400;
  4805. font-style:normal;
  4806. font-size:12px;
  4807. }
  4808. #u85819 .text {
  4809. position:absolute;
  4810. align-self:center;
  4811. padding:2px 2px 2px 0px;
  4812. box-sizing:border-box;
  4813. width:100%;
  4814. }
  4815. #u85819_text {
  4816. border-width:0px;
  4817. word-wrap:break-word;
  4818. text-transform:none;
  4819. visibility:hidden;
  4820. }
  4821. #u85820_img {
  4822. border-width:0px;
  4823. position:absolute;
  4824. left:0px;
  4825. top:0px;
  4826. width:70px;
  4827. height:38px;
  4828. }
  4829. #u85820 {
  4830. border-width:0px;
  4831. position:absolute;
  4832. left:1041px;
  4833. top:38px;
  4834. width:70px;
  4835. height:38px;
  4836. display:flex;
  4837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4838. font-weight:400;
  4839. font-style:normal;
  4840. font-size:12px;
  4841. color:#333333;
  4842. }
  4843. #u85820 .text {
  4844. position:absolute;
  4845. align-self:center;
  4846. padding:2px 2px 2px 0px;
  4847. box-sizing:border-box;
  4848. width:100%;
  4849. }
  4850. #u85820_text {
  4851. border-width:0px;
  4852. word-wrap:break-word;
  4853. text-transform:none;
  4854. visibility:hidden;
  4855. }
  4856. #u85821_img {
  4857. border-width:0px;
  4858. position:absolute;
  4859. left:0px;
  4860. top:0px;
  4861. width:109px;
  4862. height:38px;
  4863. }
  4864. #u85821 {
  4865. border-width:0px;
  4866. position:absolute;
  4867. left:1111px;
  4868. top:38px;
  4869. width:109px;
  4870. height:38px;
  4871. display:flex;
  4872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4873. font-weight:400;
  4874. font-style:normal;
  4875. font-size:12px;
  4876. color:#1890FF;
  4877. }
  4878. #u85821 .text {
  4879. position:absolute;
  4880. align-self:center;
  4881. padding:2px 2px 2px 0px;
  4882. box-sizing:border-box;
  4883. width:100%;
  4884. }
  4885. #u85821_text {
  4886. border-width:0px;
  4887. word-wrap:break-word;
  4888. text-transform:none;
  4889. }
  4890. #u85822_img {
  4891. border-width:0px;
  4892. position:absolute;
  4893. left:0px;
  4894. top:0px;
  4895. width:77px;
  4896. height:35px;
  4897. }
  4898. #u85822 {
  4899. border-width:0px;
  4900. position:absolute;
  4901. left:0px;
  4902. top:76px;
  4903. width:77px;
  4904. height:35px;
  4905. display:flex;
  4906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4907. font-weight:400;
  4908. font-style:normal;
  4909. font-size:12px;
  4910. color:#606266;
  4911. }
  4912. #u85822 .text {
  4913. position:absolute;
  4914. align-self:center;
  4915. padding:2px 2px 2px 0px;
  4916. box-sizing:border-box;
  4917. width:100%;
  4918. }
  4919. #u85822_text {
  4920. border-width:0px;
  4921. word-wrap:break-word;
  4922. text-transform:none;
  4923. visibility:hidden;
  4924. }
  4925. #u85823_img {
  4926. border-width:0px;
  4927. position:absolute;
  4928. left:0px;
  4929. top:0px;
  4930. width:78px;
  4931. height:35px;
  4932. }
  4933. #u85823 {
  4934. border-width:0px;
  4935. position:absolute;
  4936. left:77px;
  4937. top:76px;
  4938. width:78px;
  4939. height:35px;
  4940. display:flex;
  4941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4942. font-weight:400;
  4943. font-style:normal;
  4944. font-size:12px;
  4945. color:#606266;
  4946. }
  4947. #u85823 .text {
  4948. position:absolute;
  4949. align-self:center;
  4950. padding:2px 2px 2px 0px;
  4951. box-sizing:border-box;
  4952. width:100%;
  4953. }
  4954. #u85823_text {
  4955. border-width:0px;
  4956. word-wrap:break-word;
  4957. text-transform:none;
  4958. visibility:hidden;
  4959. }
  4960. #u85824_img {
  4961. border-width:0px;
  4962. position:absolute;
  4963. left:0px;
  4964. top:0px;
  4965. width:78px;
  4966. height:35px;
  4967. }
  4968. #u85824 {
  4969. border-width:0px;
  4970. position:absolute;
  4971. left:155px;
  4972. top:76px;
  4973. width:78px;
  4974. height:35px;
  4975. display:flex;
  4976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4977. font-weight:400;
  4978. font-style:normal;
  4979. font-size:12px;
  4980. color:#606266;
  4981. }
  4982. #u85824 .text {
  4983. position:absolute;
  4984. align-self:center;
  4985. padding:2px 2px 2px 0px;
  4986. box-sizing:border-box;
  4987. width:100%;
  4988. }
  4989. #u85824_text {
  4990. border-width:0px;
  4991. word-wrap:break-word;
  4992. text-transform:none;
  4993. }
  4994. #u85825_img {
  4995. border-width:0px;
  4996. position:absolute;
  4997. left:0px;
  4998. top:0px;
  4999. width:79px;
  5000. height:35px;
  5001. }
  5002. #u85825 {
  5003. border-width:0px;
  5004. position:absolute;
  5005. left:233px;
  5006. top:76px;
  5007. width:79px;
  5008. height:35px;
  5009. display:flex;
  5010. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5011. font-weight:400;
  5012. font-style:normal;
  5013. font-size:12px;
  5014. color:#606266;
  5015. }
  5016. #u85825 .text {
  5017. position:absolute;
  5018. align-self:center;
  5019. padding:2px 2px 2px 0px;
  5020. box-sizing:border-box;
  5021. width:100%;
  5022. }
  5023. #u85825_text {
  5024. border-width:0px;
  5025. word-wrap:break-word;
  5026. text-transform:none;
  5027. visibility:hidden;
  5028. }
  5029. #u85826_img {
  5030. border-width:0px;
  5031. position:absolute;
  5032. left:0px;
  5033. top:0px;
  5034. width:79px;
  5035. height:35px;
  5036. }
  5037. #u85826 {
  5038. border-width:0px;
  5039. position:absolute;
  5040. left:312px;
  5041. top:76px;
  5042. width:79px;
  5043. height:35px;
  5044. display:flex;
  5045. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5046. font-weight:400;
  5047. font-style:normal;
  5048. font-size:12px;
  5049. color:#606266;
  5050. }
  5051. #u85826 .text {
  5052. position:absolute;
  5053. align-self:center;
  5054. padding:2px 2px 2px 0px;
  5055. box-sizing:border-box;
  5056. width:100%;
  5057. }
  5058. #u85826_text {
  5059. border-width:0px;
  5060. word-wrap:break-word;
  5061. text-transform:none;
  5062. visibility:hidden;
  5063. }
  5064. #u85827_img {
  5065. border-width:0px;
  5066. position:absolute;
  5067. left:0px;
  5068. top:0px;
  5069. width:79px;
  5070. height:35px;
  5071. }
  5072. #u85827 {
  5073. border-width:0px;
  5074. position:absolute;
  5075. left:391px;
  5076. top:76px;
  5077. width:79px;
  5078. height:35px;
  5079. display:flex;
  5080. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5081. font-weight:400;
  5082. font-style:normal;
  5083. font-size:12px;
  5084. color:#606266;
  5085. }
  5086. #u85827 .text {
  5087. position:absolute;
  5088. align-self:center;
  5089. padding:2px 2px 2px 0px;
  5090. box-sizing:border-box;
  5091. width:100%;
  5092. }
  5093. #u85827_text {
  5094. border-width:0px;
  5095. word-wrap:break-word;
  5096. text-transform:none;
  5097. visibility:hidden;
  5098. }
  5099. #u85828_img {
  5100. border-width:0px;
  5101. position:absolute;
  5102. left:0px;
  5103. top:0px;
  5104. width:78px;
  5105. height:35px;
  5106. }
  5107. #u85828 {
  5108. border-width:0px;
  5109. position:absolute;
  5110. left:470px;
  5111. top:76px;
  5112. width:78px;
  5113. height:35px;
  5114. display:flex;
  5115. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5116. font-weight:400;
  5117. font-style:normal;
  5118. font-size:12px;
  5119. color:#606266;
  5120. }
  5121. #u85828 .text {
  5122. position:absolute;
  5123. align-self:center;
  5124. padding:2px 2px 2px 0px;
  5125. box-sizing:border-box;
  5126. width:100%;
  5127. }
  5128. #u85828_text {
  5129. border-width:0px;
  5130. word-wrap:break-word;
  5131. text-transform:none;
  5132. visibility:hidden;
  5133. }
  5134. #u85829_img {
  5135. border-width:0px;
  5136. position:absolute;
  5137. left:0px;
  5138. top:0px;
  5139. width:98px;
  5140. height:35px;
  5141. }
  5142. #u85829 {
  5143. border-width:0px;
  5144. position:absolute;
  5145. left:548px;
  5146. top:76px;
  5147. width:98px;
  5148. height:35px;
  5149. display:flex;
  5150. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5151. font-weight:400;
  5152. font-style:normal;
  5153. font-size:12px;
  5154. color:#606266;
  5155. }
  5156. #u85829 .text {
  5157. position:absolute;
  5158. align-self:center;
  5159. padding:2px 2px 2px 0px;
  5160. box-sizing:border-box;
  5161. width:100%;
  5162. }
  5163. #u85829_text {
  5164. border-width:0px;
  5165. word-wrap:break-word;
  5166. text-transform:none;
  5167. visibility:hidden;
  5168. }
  5169. #u85830_img {
  5170. border-width:0px;
  5171. position:absolute;
  5172. left:0px;
  5173. top:0px;
  5174. width:79px;
  5175. height:35px;
  5176. }
  5177. #u85830 {
  5178. border-width:0px;
  5179. position:absolute;
  5180. left:646px;
  5181. top:76px;
  5182. width:79px;
  5183. height:35px;
  5184. display:flex;
  5185. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5186. font-weight:400;
  5187. font-style:normal;
  5188. font-size:12px;
  5189. color:#606266;
  5190. }
  5191. #u85830 .text {
  5192. position:absolute;
  5193. align-self:center;
  5194. padding:2px 2px 2px 0px;
  5195. box-sizing:border-box;
  5196. width:100%;
  5197. }
  5198. #u85830_text {
  5199. border-width:0px;
  5200. word-wrap:break-word;
  5201. text-transform:none;
  5202. visibility:hidden;
  5203. }
  5204. #u85831_img {
  5205. border-width:0px;
  5206. position:absolute;
  5207. left:0px;
  5208. top:0px;
  5209. width:79px;
  5210. height:35px;
  5211. }
  5212. #u85831 {
  5213. border-width:0px;
  5214. position:absolute;
  5215. left:725px;
  5216. top:76px;
  5217. width:79px;
  5218. height:35px;
  5219. display:flex;
  5220. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5221. font-weight:400;
  5222. font-style:normal;
  5223. font-size:12px;
  5224. color:#606266;
  5225. }
  5226. #u85831 .text {
  5227. position:absolute;
  5228. align-self:center;
  5229. padding:2px 2px 2px 0px;
  5230. box-sizing:border-box;
  5231. width:100%;
  5232. }
  5233. #u85831_text {
  5234. border-width:0px;
  5235. word-wrap:break-word;
  5236. text-transform:none;
  5237. visibility:hidden;
  5238. }
  5239. #u85832_img {
  5240. border-width:0px;
  5241. position:absolute;
  5242. left:0px;
  5243. top:0px;
  5244. width:79px;
  5245. height:35px;
  5246. }
  5247. #u85832 {
  5248. border-width:0px;
  5249. position:absolute;
  5250. left:804px;
  5251. top:76px;
  5252. width:79px;
  5253. height:35px;
  5254. display:flex;
  5255. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5256. font-weight:400;
  5257. font-style:normal;
  5258. font-size:12px;
  5259. color:#606266;
  5260. }
  5261. #u85832 .text {
  5262. position:absolute;
  5263. align-self:center;
  5264. padding:2px 2px 2px 0px;
  5265. box-sizing:border-box;
  5266. width:100%;
  5267. }
  5268. #u85832_text {
  5269. border-width:0px;
  5270. word-wrap:break-word;
  5271. text-transform:none;
  5272. visibility:hidden;
  5273. }
  5274. #u85833_img {
  5275. border-width:0px;
  5276. position:absolute;
  5277. left:0px;
  5278. top:0px;
  5279. width:79px;
  5280. height:35px;
  5281. }
  5282. #u85833 {
  5283. border-width:0px;
  5284. position:absolute;
  5285. left:883px;
  5286. top:76px;
  5287. width:79px;
  5288. height:35px;
  5289. display:flex;
  5290. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5291. font-weight:400;
  5292. font-style:normal;
  5293. font-size:12px;
  5294. color:#606266;
  5295. }
  5296. #u85833 .text {
  5297. position:absolute;
  5298. align-self:center;
  5299. padding:2px 2px 2px 0px;
  5300. box-sizing:border-box;
  5301. width:100%;
  5302. }
  5303. #u85833_text {
  5304. border-width:0px;
  5305. word-wrap:break-word;
  5306. text-transform:none;
  5307. visibility:hidden;
  5308. }
  5309. #u85834_img {
  5310. border-width:0px;
  5311. position:absolute;
  5312. left:0px;
  5313. top:0px;
  5314. width:79px;
  5315. height:35px;
  5316. }
  5317. #u85834 {
  5318. border-width:0px;
  5319. position:absolute;
  5320. left:962px;
  5321. top:76px;
  5322. width:79px;
  5323. height:35px;
  5324. display:flex;
  5325. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5326. font-weight:400;
  5327. font-style:normal;
  5328. font-size:12px;
  5329. color:#606266;
  5330. }
  5331. #u85834 .text {
  5332. position:absolute;
  5333. align-self:center;
  5334. padding:2px 2px 2px 0px;
  5335. box-sizing:border-box;
  5336. width:100%;
  5337. }
  5338. #u85834_text {
  5339. border-width:0px;
  5340. word-wrap:break-word;
  5341. text-transform:none;
  5342. visibility:hidden;
  5343. }
  5344. #u85835_img {
  5345. border-width:0px;
  5346. position:absolute;
  5347. left:0px;
  5348. top:0px;
  5349. width:70px;
  5350. height:35px;
  5351. }
  5352. #u85835 {
  5353. border-width:0px;
  5354. position:absolute;
  5355. left:1041px;
  5356. top:76px;
  5357. width:70px;
  5358. height:35px;
  5359. display:flex;
  5360. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5361. font-weight:400;
  5362. font-style:normal;
  5363. font-size:12px;
  5364. color:#606266;
  5365. }
  5366. #u85835 .text {
  5367. position:absolute;
  5368. align-self:center;
  5369. padding:2px 2px 2px 0px;
  5370. box-sizing:border-box;
  5371. width:100%;
  5372. }
  5373. #u85835_text {
  5374. border-width:0px;
  5375. word-wrap:break-word;
  5376. text-transform:none;
  5377. visibility:hidden;
  5378. }
  5379. #u85836_img {
  5380. border-width:0px;
  5381. position:absolute;
  5382. left:0px;
  5383. top:0px;
  5384. width:109px;
  5385. height:35px;
  5386. }
  5387. #u85836 {
  5388. border-width:0px;
  5389. position:absolute;
  5390. left:1111px;
  5391. top:76px;
  5392. width:109px;
  5393. height:35px;
  5394. display:flex;
  5395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5396. font-weight:400;
  5397. font-style:normal;
  5398. font-size:12px;
  5399. }
  5400. #u85836 .text {
  5401. position:absolute;
  5402. align-self:center;
  5403. padding:2px 2px 2px 0px;
  5404. box-sizing:border-box;
  5405. width:100%;
  5406. }
  5407. #u85836_text {
  5408. border-width:0px;
  5409. word-wrap:break-word;
  5410. text-transform:none;
  5411. }
  5412. #u85837_img {
  5413. border-width:0px;
  5414. position:absolute;
  5415. left:0px;
  5416. top:0px;
  5417. width:77px;
  5418. height:35px;
  5419. }
  5420. #u85837 {
  5421. border-width:0px;
  5422. position:absolute;
  5423. left:0px;
  5424. top:111px;
  5425. width:77px;
  5426. height:35px;
  5427. display:flex;
  5428. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5429. font-weight:400;
  5430. font-style:normal;
  5431. font-size:12px;
  5432. color:#606266;
  5433. }
  5434. #u85837 .text {
  5435. position:absolute;
  5436. align-self:center;
  5437. padding:2px 2px 2px 0px;
  5438. box-sizing:border-box;
  5439. width:100%;
  5440. }
  5441. #u85837_text {
  5442. border-width:0px;
  5443. word-wrap:break-word;
  5444. text-transform:none;
  5445. visibility:hidden;
  5446. }
  5447. #u85838_img {
  5448. border-width:0px;
  5449. position:absolute;
  5450. left:0px;
  5451. top:0px;
  5452. width:78px;
  5453. height:35px;
  5454. }
  5455. #u85838 {
  5456. border-width:0px;
  5457. position:absolute;
  5458. left:77px;
  5459. top:111px;
  5460. width:78px;
  5461. height:35px;
  5462. display:flex;
  5463. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5464. font-weight:400;
  5465. font-style:normal;
  5466. font-size:12px;
  5467. color:#606266;
  5468. }
  5469. #u85838 .text {
  5470. position:absolute;
  5471. align-self:center;
  5472. padding:2px 2px 2px 0px;
  5473. box-sizing:border-box;
  5474. width:100%;
  5475. }
  5476. #u85838_text {
  5477. border-width:0px;
  5478. word-wrap:break-word;
  5479. text-transform:none;
  5480. visibility:hidden;
  5481. }
  5482. #u85839_img {
  5483. border-width:0px;
  5484. position:absolute;
  5485. left:0px;
  5486. top:0px;
  5487. width:78px;
  5488. height:35px;
  5489. }
  5490. #u85839 {
  5491. border-width:0px;
  5492. position:absolute;
  5493. left:155px;
  5494. top:111px;
  5495. width:78px;
  5496. height:35px;
  5497. display:flex;
  5498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5499. font-weight:400;
  5500. font-style:normal;
  5501. font-size:12px;
  5502. color:#606266;
  5503. }
  5504. #u85839 .text {
  5505. position:absolute;
  5506. align-self:center;
  5507. padding:2px 2px 2px 0px;
  5508. box-sizing:border-box;
  5509. width:100%;
  5510. }
  5511. #u85839_text {
  5512. border-width:0px;
  5513. word-wrap:break-word;
  5514. text-transform:none;
  5515. }
  5516. #u85840_img {
  5517. border-width:0px;
  5518. position:absolute;
  5519. left:0px;
  5520. top:0px;
  5521. width:79px;
  5522. height:35px;
  5523. }
  5524. #u85840 {
  5525. border-width:0px;
  5526. position:absolute;
  5527. left:233px;
  5528. top:111px;
  5529. width:79px;
  5530. height:35px;
  5531. display:flex;
  5532. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5533. font-weight:400;
  5534. font-style:normal;
  5535. font-size:12px;
  5536. color:#606266;
  5537. }
  5538. #u85840 .text {
  5539. position:absolute;
  5540. align-self:center;
  5541. padding:2px 2px 2px 0px;
  5542. box-sizing:border-box;
  5543. width:100%;
  5544. }
  5545. #u85840_text {
  5546. border-width:0px;
  5547. word-wrap:break-word;
  5548. text-transform:none;
  5549. visibility:hidden;
  5550. }
  5551. #u85841_img {
  5552. border-width:0px;
  5553. position:absolute;
  5554. left:0px;
  5555. top:0px;
  5556. width:79px;
  5557. height:35px;
  5558. }
  5559. #u85841 {
  5560. border-width:0px;
  5561. position:absolute;
  5562. left:312px;
  5563. top:111px;
  5564. width:79px;
  5565. height:35px;
  5566. display:flex;
  5567. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5568. font-weight:400;
  5569. font-style:normal;
  5570. font-size:12px;
  5571. color:#606266;
  5572. }
  5573. #u85841 .text {
  5574. position:absolute;
  5575. align-self:center;
  5576. padding:2px 2px 2px 0px;
  5577. box-sizing:border-box;
  5578. width:100%;
  5579. }
  5580. #u85841_text {
  5581. border-width:0px;
  5582. word-wrap:break-word;
  5583. text-transform:none;
  5584. visibility:hidden;
  5585. }
  5586. #u85842_img {
  5587. border-width:0px;
  5588. position:absolute;
  5589. left:0px;
  5590. top:0px;
  5591. width:79px;
  5592. height:35px;
  5593. }
  5594. #u85842 {
  5595. border-width:0px;
  5596. position:absolute;
  5597. left:391px;
  5598. top:111px;
  5599. width:79px;
  5600. height:35px;
  5601. display:flex;
  5602. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5603. font-weight:400;
  5604. font-style:normal;
  5605. font-size:12px;
  5606. color:#606266;
  5607. }
  5608. #u85842 .text {
  5609. position:absolute;
  5610. align-self:center;
  5611. padding:2px 2px 2px 0px;
  5612. box-sizing:border-box;
  5613. width:100%;
  5614. }
  5615. #u85842_text {
  5616. border-width:0px;
  5617. word-wrap:break-word;
  5618. text-transform:none;
  5619. visibility:hidden;
  5620. }
  5621. #u85843_img {
  5622. border-width:0px;
  5623. position:absolute;
  5624. left:0px;
  5625. top:0px;
  5626. width:78px;
  5627. height:35px;
  5628. }
  5629. #u85843 {
  5630. border-width:0px;
  5631. position:absolute;
  5632. left:470px;
  5633. top:111px;
  5634. width:78px;
  5635. height:35px;
  5636. display:flex;
  5637. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5638. font-weight:400;
  5639. font-style:normal;
  5640. font-size:12px;
  5641. color:#606266;
  5642. }
  5643. #u85843 .text {
  5644. position:absolute;
  5645. align-self:center;
  5646. padding:2px 2px 2px 0px;
  5647. box-sizing:border-box;
  5648. width:100%;
  5649. }
  5650. #u85843_text {
  5651. border-width:0px;
  5652. word-wrap:break-word;
  5653. text-transform:none;
  5654. visibility:hidden;
  5655. }
  5656. #u85844_img {
  5657. border-width:0px;
  5658. position:absolute;
  5659. left:0px;
  5660. top:0px;
  5661. width:98px;
  5662. height:35px;
  5663. }
  5664. #u85844 {
  5665. border-width:0px;
  5666. position:absolute;
  5667. left:548px;
  5668. top:111px;
  5669. width:98px;
  5670. height:35px;
  5671. display:flex;
  5672. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5673. font-weight:400;
  5674. font-style:normal;
  5675. font-size:12px;
  5676. color:#606266;
  5677. }
  5678. #u85844 .text {
  5679. position:absolute;
  5680. align-self:center;
  5681. padding:2px 2px 2px 0px;
  5682. box-sizing:border-box;
  5683. width:100%;
  5684. }
  5685. #u85844_text {
  5686. border-width:0px;
  5687. word-wrap:break-word;
  5688. text-transform:none;
  5689. visibility:hidden;
  5690. }
  5691. #u85845_img {
  5692. border-width:0px;
  5693. position:absolute;
  5694. left:0px;
  5695. top:0px;
  5696. width:79px;
  5697. height:35px;
  5698. }
  5699. #u85845 {
  5700. border-width:0px;
  5701. position:absolute;
  5702. left:646px;
  5703. top:111px;
  5704. width:79px;
  5705. height:35px;
  5706. display:flex;
  5707. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5708. font-weight:400;
  5709. font-style:normal;
  5710. font-size:12px;
  5711. color:#606266;
  5712. }
  5713. #u85845 .text {
  5714. position:absolute;
  5715. align-self:center;
  5716. padding:2px 2px 2px 0px;
  5717. box-sizing:border-box;
  5718. width:100%;
  5719. }
  5720. #u85845_text {
  5721. border-width:0px;
  5722. word-wrap:break-word;
  5723. text-transform:none;
  5724. visibility:hidden;
  5725. }
  5726. #u85846_img {
  5727. border-width:0px;
  5728. position:absolute;
  5729. left:0px;
  5730. top:0px;
  5731. width:79px;
  5732. height:35px;
  5733. }
  5734. #u85846 {
  5735. border-width:0px;
  5736. position:absolute;
  5737. left:725px;
  5738. top:111px;
  5739. width:79px;
  5740. height:35px;
  5741. display:flex;
  5742. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5743. font-weight:400;
  5744. font-style:normal;
  5745. font-size:12px;
  5746. color:#606266;
  5747. }
  5748. #u85846 .text {
  5749. position:absolute;
  5750. align-self:center;
  5751. padding:2px 2px 2px 0px;
  5752. box-sizing:border-box;
  5753. width:100%;
  5754. }
  5755. #u85846_text {
  5756. border-width:0px;
  5757. word-wrap:break-word;
  5758. text-transform:none;
  5759. visibility:hidden;
  5760. }
  5761. #u85847_img {
  5762. border-width:0px;
  5763. position:absolute;
  5764. left:0px;
  5765. top:0px;
  5766. width:79px;
  5767. height:35px;
  5768. }
  5769. #u85847 {
  5770. border-width:0px;
  5771. position:absolute;
  5772. left:804px;
  5773. top:111px;
  5774. width:79px;
  5775. height:35px;
  5776. display:flex;
  5777. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5778. font-weight:400;
  5779. font-style:normal;
  5780. font-size:12px;
  5781. color:#606266;
  5782. }
  5783. #u85847 .text {
  5784. position:absolute;
  5785. align-self:center;
  5786. padding:2px 2px 2px 0px;
  5787. box-sizing:border-box;
  5788. width:100%;
  5789. }
  5790. #u85847_text {
  5791. border-width:0px;
  5792. word-wrap:break-word;
  5793. text-transform:none;
  5794. visibility:hidden;
  5795. }
  5796. #u85848_img {
  5797. border-width:0px;
  5798. position:absolute;
  5799. left:0px;
  5800. top:0px;
  5801. width:79px;
  5802. height:35px;
  5803. }
  5804. #u85848 {
  5805. border-width:0px;
  5806. position:absolute;
  5807. left:883px;
  5808. top:111px;
  5809. width:79px;
  5810. height:35px;
  5811. display:flex;
  5812. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5813. font-weight:400;
  5814. font-style:normal;
  5815. font-size:12px;
  5816. color:#606266;
  5817. }
  5818. #u85848 .text {
  5819. position:absolute;
  5820. align-self:center;
  5821. padding:2px 2px 2px 0px;
  5822. box-sizing:border-box;
  5823. width:100%;
  5824. }
  5825. #u85848_text {
  5826. border-width:0px;
  5827. word-wrap:break-word;
  5828. text-transform:none;
  5829. visibility:hidden;
  5830. }
  5831. #u85849_img {
  5832. border-width:0px;
  5833. position:absolute;
  5834. left:0px;
  5835. top:0px;
  5836. width:79px;
  5837. height:35px;
  5838. }
  5839. #u85849 {
  5840. border-width:0px;
  5841. position:absolute;
  5842. left:962px;
  5843. top:111px;
  5844. width:79px;
  5845. height:35px;
  5846. display:flex;
  5847. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5848. font-weight:400;
  5849. font-style:normal;
  5850. font-size:12px;
  5851. color:#606266;
  5852. }
  5853. #u85849 .text {
  5854. position:absolute;
  5855. align-self:center;
  5856. padding:2px 2px 2px 0px;
  5857. box-sizing:border-box;
  5858. width:100%;
  5859. }
  5860. #u85849_text {
  5861. border-width:0px;
  5862. word-wrap:break-word;
  5863. text-transform:none;
  5864. visibility:hidden;
  5865. }
  5866. #u85850_img {
  5867. border-width:0px;
  5868. position:absolute;
  5869. left:0px;
  5870. top:0px;
  5871. width:70px;
  5872. height:35px;
  5873. }
  5874. #u85850 {
  5875. border-width:0px;
  5876. position:absolute;
  5877. left:1041px;
  5878. top:111px;
  5879. width:70px;
  5880. height:35px;
  5881. display:flex;
  5882. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5883. font-weight:400;
  5884. font-style:normal;
  5885. font-size:12px;
  5886. color:#606266;
  5887. }
  5888. #u85850 .text {
  5889. position:absolute;
  5890. align-self:center;
  5891. padding:2px 2px 2px 0px;
  5892. box-sizing:border-box;
  5893. width:100%;
  5894. }
  5895. #u85850_text {
  5896. border-width:0px;
  5897. word-wrap:break-word;
  5898. text-transform:none;
  5899. visibility:hidden;
  5900. }
  5901. #u85851_img {
  5902. border-width:0px;
  5903. position:absolute;
  5904. left:0px;
  5905. top:0px;
  5906. width:109px;
  5907. height:35px;
  5908. }
  5909. #u85851 {
  5910. border-width:0px;
  5911. position:absolute;
  5912. left:1111px;
  5913. top:111px;
  5914. width:109px;
  5915. height:35px;
  5916. display:flex;
  5917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5918. font-weight:400;
  5919. font-style:normal;
  5920. font-size:12px;
  5921. }
  5922. #u85851 .text {
  5923. position:absolute;
  5924. align-self:center;
  5925. padding:2px 2px 2px 0px;
  5926. box-sizing:border-box;
  5927. width:100%;
  5928. }
  5929. #u85851_text {
  5930. border-width:0px;
  5931. word-wrap:break-word;
  5932. text-transform:none;
  5933. }
  5934. #u85852_img {
  5935. border-width:0px;
  5936. position:absolute;
  5937. left:0px;
  5938. top:0px;
  5939. width:77px;
  5940. height:35px;
  5941. }
  5942. #u85852 {
  5943. border-width:0px;
  5944. position:absolute;
  5945. left:0px;
  5946. top:146px;
  5947. width:77px;
  5948. height:35px;
  5949. display:flex;
  5950. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5951. font-weight:400;
  5952. font-style:normal;
  5953. font-size:12px;
  5954. color:#606266;
  5955. }
  5956. #u85852 .text {
  5957. position:absolute;
  5958. align-self:center;
  5959. padding:2px 2px 2px 0px;
  5960. box-sizing:border-box;
  5961. width:100%;
  5962. }
  5963. #u85852_text {
  5964. border-width:0px;
  5965. word-wrap:break-word;
  5966. text-transform:none;
  5967. visibility:hidden;
  5968. }
  5969. #u85853_img {
  5970. border-width:0px;
  5971. position:absolute;
  5972. left:0px;
  5973. top:0px;
  5974. width:78px;
  5975. height:35px;
  5976. }
  5977. #u85853 {
  5978. border-width:0px;
  5979. position:absolute;
  5980. left:77px;
  5981. top:146px;
  5982. width:78px;
  5983. height:35px;
  5984. display:flex;
  5985. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5986. font-weight:400;
  5987. font-style:normal;
  5988. font-size:12px;
  5989. color:#606266;
  5990. }
  5991. #u85853 .text {
  5992. position:absolute;
  5993. align-self:center;
  5994. padding:2px 2px 2px 0px;
  5995. box-sizing:border-box;
  5996. width:100%;
  5997. }
  5998. #u85853_text {
  5999. border-width:0px;
  6000. word-wrap:break-word;
  6001. text-transform:none;
  6002. visibility:hidden;
  6003. }
  6004. #u85854_img {
  6005. border-width:0px;
  6006. position:absolute;
  6007. left:0px;
  6008. top:0px;
  6009. width:78px;
  6010. height:35px;
  6011. }
  6012. #u85854 {
  6013. border-width:0px;
  6014. position:absolute;
  6015. left:155px;
  6016. top:146px;
  6017. width:78px;
  6018. height:35px;
  6019. display:flex;
  6020. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6021. font-weight:400;
  6022. font-style:normal;
  6023. font-size:12px;
  6024. color:#606266;
  6025. }
  6026. #u85854 .text {
  6027. position:absolute;
  6028. align-self:center;
  6029. padding:2px 2px 2px 0px;
  6030. box-sizing:border-box;
  6031. width:100%;
  6032. }
  6033. #u85854_text {
  6034. border-width:0px;
  6035. word-wrap:break-word;
  6036. text-transform:none;
  6037. visibility:hidden;
  6038. }
  6039. #u85855_img {
  6040. border-width:0px;
  6041. position:absolute;
  6042. left:0px;
  6043. top:0px;
  6044. width:79px;
  6045. height:35px;
  6046. }
  6047. #u85855 {
  6048. border-width:0px;
  6049. position:absolute;
  6050. left:233px;
  6051. top:146px;
  6052. width:79px;
  6053. height:35px;
  6054. display:flex;
  6055. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6056. font-weight:400;
  6057. font-style:normal;
  6058. font-size:12px;
  6059. color:#606266;
  6060. }
  6061. #u85855 .text {
  6062. position:absolute;
  6063. align-self:center;
  6064. padding:2px 2px 2px 0px;
  6065. box-sizing:border-box;
  6066. width:100%;
  6067. }
  6068. #u85855_text {
  6069. border-width:0px;
  6070. word-wrap:break-word;
  6071. text-transform:none;
  6072. visibility:hidden;
  6073. }
  6074. #u85856_img {
  6075. border-width:0px;
  6076. position:absolute;
  6077. left:0px;
  6078. top:0px;
  6079. width:79px;
  6080. height:35px;
  6081. }
  6082. #u85856 {
  6083. border-width:0px;
  6084. position:absolute;
  6085. left:312px;
  6086. top:146px;
  6087. width:79px;
  6088. height:35px;
  6089. display:flex;
  6090. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6091. font-weight:400;
  6092. font-style:normal;
  6093. font-size:12px;
  6094. color:#606266;
  6095. }
  6096. #u85856 .text {
  6097. position:absolute;
  6098. align-self:center;
  6099. padding:2px 2px 2px 0px;
  6100. box-sizing:border-box;
  6101. width:100%;
  6102. }
  6103. #u85856_text {
  6104. border-width:0px;
  6105. word-wrap:break-word;
  6106. text-transform:none;
  6107. visibility:hidden;
  6108. }
  6109. #u85857_img {
  6110. border-width:0px;
  6111. position:absolute;
  6112. left:0px;
  6113. top:0px;
  6114. width:79px;
  6115. height:35px;
  6116. }
  6117. #u85857 {
  6118. border-width:0px;
  6119. position:absolute;
  6120. left:391px;
  6121. top:146px;
  6122. width:79px;
  6123. height:35px;
  6124. display:flex;
  6125. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6126. font-weight:400;
  6127. font-style:normal;
  6128. font-size:12px;
  6129. color:#606266;
  6130. }
  6131. #u85857 .text {
  6132. position:absolute;
  6133. align-self:center;
  6134. padding:2px 2px 2px 0px;
  6135. box-sizing:border-box;
  6136. width:100%;
  6137. }
  6138. #u85857_text {
  6139. border-width:0px;
  6140. word-wrap:break-word;
  6141. text-transform:none;
  6142. visibility:hidden;
  6143. }
  6144. #u85858_img {
  6145. border-width:0px;
  6146. position:absolute;
  6147. left:0px;
  6148. top:0px;
  6149. width:78px;
  6150. height:35px;
  6151. }
  6152. #u85858 {
  6153. border-width:0px;
  6154. position:absolute;
  6155. left:470px;
  6156. top:146px;
  6157. width:78px;
  6158. height:35px;
  6159. display:flex;
  6160. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6161. font-weight:400;
  6162. font-style:normal;
  6163. font-size:12px;
  6164. color:#606266;
  6165. }
  6166. #u85858 .text {
  6167. position:absolute;
  6168. align-self:center;
  6169. padding:2px 2px 2px 0px;
  6170. box-sizing:border-box;
  6171. width:100%;
  6172. }
  6173. #u85858_text {
  6174. border-width:0px;
  6175. word-wrap:break-word;
  6176. text-transform:none;
  6177. visibility:hidden;
  6178. }
  6179. #u85859_img {
  6180. border-width:0px;
  6181. position:absolute;
  6182. left:0px;
  6183. top:0px;
  6184. width:98px;
  6185. height:35px;
  6186. }
  6187. #u85859 {
  6188. border-width:0px;
  6189. position:absolute;
  6190. left:548px;
  6191. top:146px;
  6192. width:98px;
  6193. height:35px;
  6194. display:flex;
  6195. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6196. font-weight:400;
  6197. font-style:normal;
  6198. font-size:12px;
  6199. color:#606266;
  6200. }
  6201. #u85859 .text {
  6202. position:absolute;
  6203. align-self:center;
  6204. padding:2px 2px 2px 0px;
  6205. box-sizing:border-box;
  6206. width:100%;
  6207. }
  6208. #u85859_text {
  6209. border-width:0px;
  6210. word-wrap:break-word;
  6211. text-transform:none;
  6212. visibility:hidden;
  6213. }
  6214. #u85860_img {
  6215. border-width:0px;
  6216. position:absolute;
  6217. left:0px;
  6218. top:0px;
  6219. width:79px;
  6220. height:35px;
  6221. }
  6222. #u85860 {
  6223. border-width:0px;
  6224. position:absolute;
  6225. left:646px;
  6226. top:146px;
  6227. width:79px;
  6228. height:35px;
  6229. display:flex;
  6230. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6231. font-weight:400;
  6232. font-style:normal;
  6233. font-size:12px;
  6234. color:#606266;
  6235. }
  6236. #u85860 .text {
  6237. position:absolute;
  6238. align-self:center;
  6239. padding:2px 2px 2px 0px;
  6240. box-sizing:border-box;
  6241. width:100%;
  6242. }
  6243. #u85860_text {
  6244. border-width:0px;
  6245. word-wrap:break-word;
  6246. text-transform:none;
  6247. visibility:hidden;
  6248. }
  6249. #u85861_img {
  6250. border-width:0px;
  6251. position:absolute;
  6252. left:0px;
  6253. top:0px;
  6254. width:79px;
  6255. height:35px;
  6256. }
  6257. #u85861 {
  6258. border-width:0px;
  6259. position:absolute;
  6260. left:725px;
  6261. top:146px;
  6262. width:79px;
  6263. height:35px;
  6264. display:flex;
  6265. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6266. font-weight:400;
  6267. font-style:normal;
  6268. font-size:12px;
  6269. color:#606266;
  6270. }
  6271. #u85861 .text {
  6272. position:absolute;
  6273. align-self:center;
  6274. padding:2px 2px 2px 0px;
  6275. box-sizing:border-box;
  6276. width:100%;
  6277. }
  6278. #u85861_text {
  6279. border-width:0px;
  6280. word-wrap:break-word;
  6281. text-transform:none;
  6282. visibility:hidden;
  6283. }
  6284. #u85862_img {
  6285. border-width:0px;
  6286. position:absolute;
  6287. left:0px;
  6288. top:0px;
  6289. width:79px;
  6290. height:35px;
  6291. }
  6292. #u85862 {
  6293. border-width:0px;
  6294. position:absolute;
  6295. left:804px;
  6296. top:146px;
  6297. width:79px;
  6298. height:35px;
  6299. display:flex;
  6300. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6301. font-weight:400;
  6302. font-style:normal;
  6303. font-size:12px;
  6304. color:#606266;
  6305. }
  6306. #u85862 .text {
  6307. position:absolute;
  6308. align-self:center;
  6309. padding:2px 2px 2px 0px;
  6310. box-sizing:border-box;
  6311. width:100%;
  6312. }
  6313. #u85862_text {
  6314. border-width:0px;
  6315. word-wrap:break-word;
  6316. text-transform:none;
  6317. visibility:hidden;
  6318. }
  6319. #u85863_img {
  6320. border-width:0px;
  6321. position:absolute;
  6322. left:0px;
  6323. top:0px;
  6324. width:79px;
  6325. height:35px;
  6326. }
  6327. #u85863 {
  6328. border-width:0px;
  6329. position:absolute;
  6330. left:883px;
  6331. top:146px;
  6332. width:79px;
  6333. height:35px;
  6334. display:flex;
  6335. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6336. font-weight:400;
  6337. font-style:normal;
  6338. font-size:12px;
  6339. color:#606266;
  6340. }
  6341. #u85863 .text {
  6342. position:absolute;
  6343. align-self:center;
  6344. padding:2px 2px 2px 0px;
  6345. box-sizing:border-box;
  6346. width:100%;
  6347. }
  6348. #u85863_text {
  6349. border-width:0px;
  6350. word-wrap:break-word;
  6351. text-transform:none;
  6352. visibility:hidden;
  6353. }
  6354. #u85864_img {
  6355. border-width:0px;
  6356. position:absolute;
  6357. left:0px;
  6358. top:0px;
  6359. width:79px;
  6360. height:35px;
  6361. }
  6362. #u85864 {
  6363. border-width:0px;
  6364. position:absolute;
  6365. left:962px;
  6366. top:146px;
  6367. width:79px;
  6368. height:35px;
  6369. display:flex;
  6370. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6371. font-weight:400;
  6372. font-style:normal;
  6373. font-size:12px;
  6374. color:#606266;
  6375. }
  6376. #u85864 .text {
  6377. position:absolute;
  6378. align-self:center;
  6379. padding:2px 2px 2px 0px;
  6380. box-sizing:border-box;
  6381. width:100%;
  6382. }
  6383. #u85864_text {
  6384. border-width:0px;
  6385. word-wrap:break-word;
  6386. text-transform:none;
  6387. visibility:hidden;
  6388. }
  6389. #u85865_img {
  6390. border-width:0px;
  6391. position:absolute;
  6392. left:0px;
  6393. top:0px;
  6394. width:70px;
  6395. height:35px;
  6396. }
  6397. #u85865 {
  6398. border-width:0px;
  6399. position:absolute;
  6400. left:1041px;
  6401. top:146px;
  6402. width:70px;
  6403. height:35px;
  6404. display:flex;
  6405. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6406. font-weight:400;
  6407. font-style:normal;
  6408. font-size:12px;
  6409. color:#606266;
  6410. }
  6411. #u85865 .text {
  6412. position:absolute;
  6413. align-self:center;
  6414. padding:2px 2px 2px 0px;
  6415. box-sizing:border-box;
  6416. width:100%;
  6417. }
  6418. #u85865_text {
  6419. border-width:0px;
  6420. word-wrap:break-word;
  6421. text-transform:none;
  6422. visibility:hidden;
  6423. }
  6424. #u85866_img {
  6425. border-width:0px;
  6426. position:absolute;
  6427. left:0px;
  6428. top:0px;
  6429. width:109px;
  6430. height:35px;
  6431. }
  6432. #u85866 {
  6433. border-width:0px;
  6434. position:absolute;
  6435. left:1111px;
  6436. top:146px;
  6437. width:109px;
  6438. height:35px;
  6439. display:flex;
  6440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6441. font-weight:400;
  6442. font-style:normal;
  6443. font-size:12px;
  6444. color:#02A7F0;
  6445. }
  6446. #u85866 .text {
  6447. position:absolute;
  6448. align-self:center;
  6449. padding:2px 2px 2px 0px;
  6450. box-sizing:border-box;
  6451. width:100%;
  6452. }
  6453. #u85866_text {
  6454. border-width:0px;
  6455. word-wrap:break-word;
  6456. text-transform:none;
  6457. visibility:hidden;
  6458. }
  6459. #u85867_img {
  6460. border-width:0px;
  6461. position:absolute;
  6462. left:0px;
  6463. top:0px;
  6464. width:77px;
  6465. height:35px;
  6466. }
  6467. #u85867 {
  6468. border-width:0px;
  6469. position:absolute;
  6470. left:0px;
  6471. top:181px;
  6472. width:77px;
  6473. height:35px;
  6474. display:flex;
  6475. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6476. font-weight:400;
  6477. font-style:normal;
  6478. font-size:12px;
  6479. color:#606266;
  6480. }
  6481. #u85867 .text {
  6482. position:absolute;
  6483. align-self:center;
  6484. padding:2px 2px 2px 0px;
  6485. box-sizing:border-box;
  6486. width:100%;
  6487. }
  6488. #u85867_text {
  6489. border-width:0px;
  6490. word-wrap:break-word;
  6491. text-transform:none;
  6492. visibility:hidden;
  6493. }
  6494. #u85868_img {
  6495. border-width:0px;
  6496. position:absolute;
  6497. left:0px;
  6498. top:0px;
  6499. width:78px;
  6500. height:35px;
  6501. }
  6502. #u85868 {
  6503. border-width:0px;
  6504. position:absolute;
  6505. left:77px;
  6506. top:181px;
  6507. width:78px;
  6508. height:35px;
  6509. display:flex;
  6510. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6511. font-weight:400;
  6512. font-style:normal;
  6513. font-size:12px;
  6514. color:#606266;
  6515. }
  6516. #u85868 .text {
  6517. position:absolute;
  6518. align-self:center;
  6519. padding:2px 2px 2px 0px;
  6520. box-sizing:border-box;
  6521. width:100%;
  6522. }
  6523. #u85868_text {
  6524. border-width:0px;
  6525. word-wrap:break-word;
  6526. text-transform:none;
  6527. visibility:hidden;
  6528. }
  6529. #u85869_img {
  6530. border-width:0px;
  6531. position:absolute;
  6532. left:0px;
  6533. top:0px;
  6534. width:78px;
  6535. height:35px;
  6536. }
  6537. #u85869 {
  6538. border-width:0px;
  6539. position:absolute;
  6540. left:155px;
  6541. top:181px;
  6542. width:78px;
  6543. height:35px;
  6544. display:flex;
  6545. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6546. font-weight:400;
  6547. font-style:normal;
  6548. font-size:12px;
  6549. color:#606266;
  6550. }
  6551. #u85869 .text {
  6552. position:absolute;
  6553. align-self:center;
  6554. padding:2px 2px 2px 0px;
  6555. box-sizing:border-box;
  6556. width:100%;
  6557. }
  6558. #u85869_text {
  6559. border-width:0px;
  6560. word-wrap:break-word;
  6561. text-transform:none;
  6562. visibility:hidden;
  6563. }
  6564. #u85870_img {
  6565. border-width:0px;
  6566. position:absolute;
  6567. left:0px;
  6568. top:0px;
  6569. width:79px;
  6570. height:35px;
  6571. }
  6572. #u85870 {
  6573. border-width:0px;
  6574. position:absolute;
  6575. left:233px;
  6576. top:181px;
  6577. width:79px;
  6578. height:35px;
  6579. display:flex;
  6580. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6581. font-weight:400;
  6582. font-style:normal;
  6583. font-size:12px;
  6584. color:#606266;
  6585. }
  6586. #u85870 .text {
  6587. position:absolute;
  6588. align-self:center;
  6589. padding:2px 2px 2px 0px;
  6590. box-sizing:border-box;
  6591. width:100%;
  6592. }
  6593. #u85870_text {
  6594. border-width:0px;
  6595. word-wrap:break-word;
  6596. text-transform:none;
  6597. visibility:hidden;
  6598. }
  6599. #u85871_img {
  6600. border-width:0px;
  6601. position:absolute;
  6602. left:0px;
  6603. top:0px;
  6604. width:79px;
  6605. height:35px;
  6606. }
  6607. #u85871 {
  6608. border-width:0px;
  6609. position:absolute;
  6610. left:312px;
  6611. top:181px;
  6612. width:79px;
  6613. height:35px;
  6614. display:flex;
  6615. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6616. font-weight:400;
  6617. font-style:normal;
  6618. font-size:12px;
  6619. color:#606266;
  6620. }
  6621. #u85871 .text {
  6622. position:absolute;
  6623. align-self:center;
  6624. padding:2px 2px 2px 0px;
  6625. box-sizing:border-box;
  6626. width:100%;
  6627. }
  6628. #u85871_text {
  6629. border-width:0px;
  6630. word-wrap:break-word;
  6631. text-transform:none;
  6632. visibility:hidden;
  6633. }
  6634. #u85872_img {
  6635. border-width:0px;
  6636. position:absolute;
  6637. left:0px;
  6638. top:0px;
  6639. width:79px;
  6640. height:35px;
  6641. }
  6642. #u85872 {
  6643. border-width:0px;
  6644. position:absolute;
  6645. left:391px;
  6646. top:181px;
  6647. width:79px;
  6648. height:35px;
  6649. display:flex;
  6650. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6651. font-weight:400;
  6652. font-style:normal;
  6653. font-size:12px;
  6654. color:#606266;
  6655. }
  6656. #u85872 .text {
  6657. position:absolute;
  6658. align-self:center;
  6659. padding:2px 2px 2px 0px;
  6660. box-sizing:border-box;
  6661. width:100%;
  6662. }
  6663. #u85872_text {
  6664. border-width:0px;
  6665. word-wrap:break-word;
  6666. text-transform:none;
  6667. visibility:hidden;
  6668. }
  6669. #u85873_img {
  6670. border-width:0px;
  6671. position:absolute;
  6672. left:0px;
  6673. top:0px;
  6674. width:78px;
  6675. height:35px;
  6676. }
  6677. #u85873 {
  6678. border-width:0px;
  6679. position:absolute;
  6680. left:470px;
  6681. top:181px;
  6682. width:78px;
  6683. height:35px;
  6684. display:flex;
  6685. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6686. font-weight:400;
  6687. font-style:normal;
  6688. font-size:12px;
  6689. color:#606266;
  6690. }
  6691. #u85873 .text {
  6692. position:absolute;
  6693. align-self:center;
  6694. padding:2px 2px 2px 0px;
  6695. box-sizing:border-box;
  6696. width:100%;
  6697. }
  6698. #u85873_text {
  6699. border-width:0px;
  6700. word-wrap:break-word;
  6701. text-transform:none;
  6702. visibility:hidden;
  6703. }
  6704. #u85874_img {
  6705. border-width:0px;
  6706. position:absolute;
  6707. left:0px;
  6708. top:0px;
  6709. width:98px;
  6710. height:35px;
  6711. }
  6712. #u85874 {
  6713. border-width:0px;
  6714. position:absolute;
  6715. left:548px;
  6716. top:181px;
  6717. width:98px;
  6718. height:35px;
  6719. display:flex;
  6720. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6721. font-weight:400;
  6722. font-style:normal;
  6723. font-size:12px;
  6724. color:#606266;
  6725. }
  6726. #u85874 .text {
  6727. position:absolute;
  6728. align-self:center;
  6729. padding:2px 2px 2px 0px;
  6730. box-sizing:border-box;
  6731. width:100%;
  6732. }
  6733. #u85874_text {
  6734. border-width:0px;
  6735. word-wrap:break-word;
  6736. text-transform:none;
  6737. visibility:hidden;
  6738. }
  6739. #u85875_img {
  6740. border-width:0px;
  6741. position:absolute;
  6742. left:0px;
  6743. top:0px;
  6744. width:79px;
  6745. height:35px;
  6746. }
  6747. #u85875 {
  6748. border-width:0px;
  6749. position:absolute;
  6750. left:646px;
  6751. top:181px;
  6752. width:79px;
  6753. height:35px;
  6754. display:flex;
  6755. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6756. font-weight:400;
  6757. font-style:normal;
  6758. font-size:12px;
  6759. color:#606266;
  6760. }
  6761. #u85875 .text {
  6762. position:absolute;
  6763. align-self:center;
  6764. padding:2px 2px 2px 0px;
  6765. box-sizing:border-box;
  6766. width:100%;
  6767. }
  6768. #u85875_text {
  6769. border-width:0px;
  6770. word-wrap:break-word;
  6771. text-transform:none;
  6772. visibility:hidden;
  6773. }
  6774. #u85876_img {
  6775. border-width:0px;
  6776. position:absolute;
  6777. left:0px;
  6778. top:0px;
  6779. width:79px;
  6780. height:35px;
  6781. }
  6782. #u85876 {
  6783. border-width:0px;
  6784. position:absolute;
  6785. left:725px;
  6786. top:181px;
  6787. width:79px;
  6788. height:35px;
  6789. display:flex;
  6790. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6791. font-weight:400;
  6792. font-style:normal;
  6793. font-size:12px;
  6794. color:#606266;
  6795. }
  6796. #u85876 .text {
  6797. position:absolute;
  6798. align-self:center;
  6799. padding:2px 2px 2px 0px;
  6800. box-sizing:border-box;
  6801. width:100%;
  6802. }
  6803. #u85876_text {
  6804. border-width:0px;
  6805. word-wrap:break-word;
  6806. text-transform:none;
  6807. visibility:hidden;
  6808. }
  6809. #u85877_img {
  6810. border-width:0px;
  6811. position:absolute;
  6812. left:0px;
  6813. top:0px;
  6814. width:79px;
  6815. height:35px;
  6816. }
  6817. #u85877 {
  6818. border-width:0px;
  6819. position:absolute;
  6820. left:804px;
  6821. top:181px;
  6822. width:79px;
  6823. height:35px;
  6824. display:flex;
  6825. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6826. font-weight:400;
  6827. font-style:normal;
  6828. font-size:12px;
  6829. color:#606266;
  6830. }
  6831. #u85877 .text {
  6832. position:absolute;
  6833. align-self:center;
  6834. padding:2px 2px 2px 0px;
  6835. box-sizing:border-box;
  6836. width:100%;
  6837. }
  6838. #u85877_text {
  6839. border-width:0px;
  6840. word-wrap:break-word;
  6841. text-transform:none;
  6842. visibility:hidden;
  6843. }
  6844. #u85878_img {
  6845. border-width:0px;
  6846. position:absolute;
  6847. left:0px;
  6848. top:0px;
  6849. width:79px;
  6850. height:35px;
  6851. }
  6852. #u85878 {
  6853. border-width:0px;
  6854. position:absolute;
  6855. left:883px;
  6856. top:181px;
  6857. width:79px;
  6858. height:35px;
  6859. display:flex;
  6860. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6861. font-weight:400;
  6862. font-style:normal;
  6863. font-size:12px;
  6864. color:#606266;
  6865. }
  6866. #u85878 .text {
  6867. position:absolute;
  6868. align-self:center;
  6869. padding:2px 2px 2px 0px;
  6870. box-sizing:border-box;
  6871. width:100%;
  6872. }
  6873. #u85878_text {
  6874. border-width:0px;
  6875. word-wrap:break-word;
  6876. text-transform:none;
  6877. visibility:hidden;
  6878. }
  6879. #u85879_img {
  6880. border-width:0px;
  6881. position:absolute;
  6882. left:0px;
  6883. top:0px;
  6884. width:79px;
  6885. height:35px;
  6886. }
  6887. #u85879 {
  6888. border-width:0px;
  6889. position:absolute;
  6890. left:962px;
  6891. top:181px;
  6892. width:79px;
  6893. height:35px;
  6894. display:flex;
  6895. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6896. font-weight:400;
  6897. font-style:normal;
  6898. font-size:12px;
  6899. color:#606266;
  6900. }
  6901. #u85879 .text {
  6902. position:absolute;
  6903. align-self:center;
  6904. padding:2px 2px 2px 0px;
  6905. box-sizing:border-box;
  6906. width:100%;
  6907. }
  6908. #u85879_text {
  6909. border-width:0px;
  6910. word-wrap:break-word;
  6911. text-transform:none;
  6912. visibility:hidden;
  6913. }
  6914. #u85880_img {
  6915. border-width:0px;
  6916. position:absolute;
  6917. left:0px;
  6918. top:0px;
  6919. width:70px;
  6920. height:35px;
  6921. }
  6922. #u85880 {
  6923. border-width:0px;
  6924. position:absolute;
  6925. left:1041px;
  6926. top:181px;
  6927. width:70px;
  6928. height:35px;
  6929. display:flex;
  6930. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6931. font-weight:400;
  6932. font-style:normal;
  6933. font-size:12px;
  6934. color:#606266;
  6935. }
  6936. #u85880 .text {
  6937. position:absolute;
  6938. align-self:center;
  6939. padding:2px 2px 2px 0px;
  6940. box-sizing:border-box;
  6941. width:100%;
  6942. }
  6943. #u85880_text {
  6944. border-width:0px;
  6945. word-wrap:break-word;
  6946. text-transform:none;
  6947. visibility:hidden;
  6948. }
  6949. #u85881_img {
  6950. border-width:0px;
  6951. position:absolute;
  6952. left:0px;
  6953. top:0px;
  6954. width:109px;
  6955. height:35px;
  6956. }
  6957. #u85881 {
  6958. border-width:0px;
  6959. position:absolute;
  6960. left:1111px;
  6961. top:181px;
  6962. width:109px;
  6963. height:35px;
  6964. display:flex;
  6965. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6966. font-weight:400;
  6967. font-style:normal;
  6968. font-size:12px;
  6969. color:#606266;
  6970. }
  6971. #u85881 .text {
  6972. position:absolute;
  6973. align-self:center;
  6974. padding:2px 2px 2px 0px;
  6975. box-sizing:border-box;
  6976. width:100%;
  6977. }
  6978. #u85881_text {
  6979. border-width:0px;
  6980. word-wrap:break-word;
  6981. text-transform:none;
  6982. visibility:hidden;
  6983. }
  6984. #u85882_img {
  6985. border-width:0px;
  6986. position:absolute;
  6987. left:0px;
  6988. top:0px;
  6989. width:77px;
  6990. height:38px;
  6991. }
  6992. #u85882 {
  6993. border-width:0px;
  6994. position:absolute;
  6995. left:0px;
  6996. top:216px;
  6997. width:77px;
  6998. height:38px;
  6999. display:flex;
  7000. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7001. font-weight:400;
  7002. font-style:normal;
  7003. font-size:12px;
  7004. color:#606266;
  7005. }
  7006. #u85882 .text {
  7007. position:absolute;
  7008. align-self:center;
  7009. padding:2px 2px 2px 0px;
  7010. box-sizing:border-box;
  7011. width:100%;
  7012. }
  7013. #u85882_text {
  7014. border-width:0px;
  7015. word-wrap:break-word;
  7016. text-transform:none;
  7017. visibility:hidden;
  7018. }
  7019. #u85883_img {
  7020. border-width:0px;
  7021. position:absolute;
  7022. left:0px;
  7023. top:0px;
  7024. width:78px;
  7025. height:38px;
  7026. }
  7027. #u85883 {
  7028. border-width:0px;
  7029. position:absolute;
  7030. left:77px;
  7031. top:216px;
  7032. width:78px;
  7033. height:38px;
  7034. display:flex;
  7035. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7036. font-weight:400;
  7037. font-style:normal;
  7038. font-size:12px;
  7039. color:#606266;
  7040. }
  7041. #u85883 .text {
  7042. position:absolute;
  7043. align-self:center;
  7044. padding:2px 2px 2px 0px;
  7045. box-sizing:border-box;
  7046. width:100%;
  7047. }
  7048. #u85883_text {
  7049. border-width:0px;
  7050. word-wrap:break-word;
  7051. text-transform:none;
  7052. visibility:hidden;
  7053. }
  7054. #u85884_img {
  7055. border-width:0px;
  7056. position:absolute;
  7057. left:0px;
  7058. top:0px;
  7059. width:78px;
  7060. height:38px;
  7061. }
  7062. #u85884 {
  7063. border-width:0px;
  7064. position:absolute;
  7065. left:155px;
  7066. top:216px;
  7067. width:78px;
  7068. height:38px;
  7069. display:flex;
  7070. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7071. font-weight:400;
  7072. font-style:normal;
  7073. font-size:12px;
  7074. color:#606266;
  7075. }
  7076. #u85884 .text {
  7077. position:absolute;
  7078. align-self:center;
  7079. padding:2px 2px 2px 0px;
  7080. box-sizing:border-box;
  7081. width:100%;
  7082. }
  7083. #u85884_text {
  7084. border-width:0px;
  7085. word-wrap:break-word;
  7086. text-transform:none;
  7087. visibility:hidden;
  7088. }
  7089. #u85885_img {
  7090. border-width:0px;
  7091. position:absolute;
  7092. left:0px;
  7093. top:0px;
  7094. width:79px;
  7095. height:38px;
  7096. }
  7097. #u85885 {
  7098. border-width:0px;
  7099. position:absolute;
  7100. left:233px;
  7101. top:216px;
  7102. width:79px;
  7103. height:38px;
  7104. display:flex;
  7105. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7106. font-weight:400;
  7107. font-style:normal;
  7108. font-size:12px;
  7109. color:#606266;
  7110. }
  7111. #u85885 .text {
  7112. position:absolute;
  7113. align-self:center;
  7114. padding:2px 2px 2px 0px;
  7115. box-sizing:border-box;
  7116. width:100%;
  7117. }
  7118. #u85885_text {
  7119. border-width:0px;
  7120. word-wrap:break-word;
  7121. text-transform:none;
  7122. visibility:hidden;
  7123. }
  7124. #u85886_img {
  7125. border-width:0px;
  7126. position:absolute;
  7127. left:0px;
  7128. top:0px;
  7129. width:79px;
  7130. height:38px;
  7131. }
  7132. #u85886 {
  7133. border-width:0px;
  7134. position:absolute;
  7135. left:312px;
  7136. top:216px;
  7137. width:79px;
  7138. height:38px;
  7139. display:flex;
  7140. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7141. font-weight:400;
  7142. font-style:normal;
  7143. font-size:12px;
  7144. color:#606266;
  7145. }
  7146. #u85886 .text {
  7147. position:absolute;
  7148. align-self:center;
  7149. padding:2px 2px 2px 0px;
  7150. box-sizing:border-box;
  7151. width:100%;
  7152. }
  7153. #u85886_text {
  7154. border-width:0px;
  7155. word-wrap:break-word;
  7156. text-transform:none;
  7157. visibility:hidden;
  7158. }
  7159. #u85887_img {
  7160. border-width:0px;
  7161. position:absolute;
  7162. left:0px;
  7163. top:0px;
  7164. width:79px;
  7165. height:38px;
  7166. }
  7167. #u85887 {
  7168. border-width:0px;
  7169. position:absolute;
  7170. left:391px;
  7171. top:216px;
  7172. width:79px;
  7173. height:38px;
  7174. display:flex;
  7175. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7176. font-weight:400;
  7177. font-style:normal;
  7178. font-size:12px;
  7179. color:#606266;
  7180. }
  7181. #u85887 .text {
  7182. position:absolute;
  7183. align-self:center;
  7184. padding:2px 2px 2px 0px;
  7185. box-sizing:border-box;
  7186. width:100%;
  7187. }
  7188. #u85887_text {
  7189. border-width:0px;
  7190. word-wrap:break-word;
  7191. text-transform:none;
  7192. visibility:hidden;
  7193. }
  7194. #u85888_img {
  7195. border-width:0px;
  7196. position:absolute;
  7197. left:0px;
  7198. top:0px;
  7199. width:78px;
  7200. height:38px;
  7201. }
  7202. #u85888 {
  7203. border-width:0px;
  7204. position:absolute;
  7205. left:470px;
  7206. top:216px;
  7207. width:78px;
  7208. height:38px;
  7209. display:flex;
  7210. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7211. font-weight:400;
  7212. font-style:normal;
  7213. font-size:12px;
  7214. color:#606266;
  7215. }
  7216. #u85888 .text {
  7217. position:absolute;
  7218. align-self:center;
  7219. padding:2px 2px 2px 0px;
  7220. box-sizing:border-box;
  7221. width:100%;
  7222. }
  7223. #u85888_text {
  7224. border-width:0px;
  7225. word-wrap:break-word;
  7226. text-transform:none;
  7227. visibility:hidden;
  7228. }
  7229. #u85889_img {
  7230. border-width:0px;
  7231. position:absolute;
  7232. left:0px;
  7233. top:0px;
  7234. width:98px;
  7235. height:38px;
  7236. }
  7237. #u85889 {
  7238. border-width:0px;
  7239. position:absolute;
  7240. left:548px;
  7241. top:216px;
  7242. width:98px;
  7243. height:38px;
  7244. display:flex;
  7245. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7246. font-weight:400;
  7247. font-style:normal;
  7248. font-size:12px;
  7249. color:#606266;
  7250. }
  7251. #u85889 .text {
  7252. position:absolute;
  7253. align-self:center;
  7254. padding:2px 2px 2px 0px;
  7255. box-sizing:border-box;
  7256. width:100%;
  7257. }
  7258. #u85889_text {
  7259. border-width:0px;
  7260. word-wrap:break-word;
  7261. text-transform:none;
  7262. visibility:hidden;
  7263. }
  7264. #u85890_img {
  7265. border-width:0px;
  7266. position:absolute;
  7267. left:0px;
  7268. top:0px;
  7269. width:79px;
  7270. height:38px;
  7271. }
  7272. #u85890 {
  7273. border-width:0px;
  7274. position:absolute;
  7275. left:646px;
  7276. top:216px;
  7277. width:79px;
  7278. height:38px;
  7279. display:flex;
  7280. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7281. font-weight:400;
  7282. font-style:normal;
  7283. font-size:12px;
  7284. color:#606266;
  7285. }
  7286. #u85890 .text {
  7287. position:absolute;
  7288. align-self:center;
  7289. padding:2px 2px 2px 0px;
  7290. box-sizing:border-box;
  7291. width:100%;
  7292. }
  7293. #u85890_text {
  7294. border-width:0px;
  7295. word-wrap:break-word;
  7296. text-transform:none;
  7297. visibility:hidden;
  7298. }
  7299. #u85891_img {
  7300. border-width:0px;
  7301. position:absolute;
  7302. left:0px;
  7303. top:0px;
  7304. width:79px;
  7305. height:38px;
  7306. }
  7307. #u85891 {
  7308. border-width:0px;
  7309. position:absolute;
  7310. left:725px;
  7311. top:216px;
  7312. width:79px;
  7313. height:38px;
  7314. display:flex;
  7315. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7316. font-weight:400;
  7317. font-style:normal;
  7318. font-size:12px;
  7319. color:#606266;
  7320. }
  7321. #u85891 .text {
  7322. position:absolute;
  7323. align-self:center;
  7324. padding:2px 2px 2px 0px;
  7325. box-sizing:border-box;
  7326. width:100%;
  7327. }
  7328. #u85891_text {
  7329. border-width:0px;
  7330. word-wrap:break-word;
  7331. text-transform:none;
  7332. visibility:hidden;
  7333. }
  7334. #u85892_img {
  7335. border-width:0px;
  7336. position:absolute;
  7337. left:0px;
  7338. top:0px;
  7339. width:79px;
  7340. height:38px;
  7341. }
  7342. #u85892 {
  7343. border-width:0px;
  7344. position:absolute;
  7345. left:804px;
  7346. top:216px;
  7347. width:79px;
  7348. height:38px;
  7349. display:flex;
  7350. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7351. font-weight:400;
  7352. font-style:normal;
  7353. font-size:12px;
  7354. color:#606266;
  7355. }
  7356. #u85892 .text {
  7357. position:absolute;
  7358. align-self:center;
  7359. padding:2px 2px 2px 0px;
  7360. box-sizing:border-box;
  7361. width:100%;
  7362. }
  7363. #u85892_text {
  7364. border-width:0px;
  7365. word-wrap:break-word;
  7366. text-transform:none;
  7367. visibility:hidden;
  7368. }
  7369. #u85893_img {
  7370. border-width:0px;
  7371. position:absolute;
  7372. left:0px;
  7373. top:0px;
  7374. width:79px;
  7375. height:38px;
  7376. }
  7377. #u85893 {
  7378. border-width:0px;
  7379. position:absolute;
  7380. left:883px;
  7381. top:216px;
  7382. width:79px;
  7383. height:38px;
  7384. display:flex;
  7385. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7386. font-weight:400;
  7387. font-style:normal;
  7388. font-size:12px;
  7389. color:#606266;
  7390. }
  7391. #u85893 .text {
  7392. position:absolute;
  7393. align-self:center;
  7394. padding:2px 2px 2px 0px;
  7395. box-sizing:border-box;
  7396. width:100%;
  7397. }
  7398. #u85893_text {
  7399. border-width:0px;
  7400. word-wrap:break-word;
  7401. text-transform:none;
  7402. visibility:hidden;
  7403. }
  7404. #u85894_img {
  7405. border-width:0px;
  7406. position:absolute;
  7407. left:0px;
  7408. top:0px;
  7409. width:79px;
  7410. height:38px;
  7411. }
  7412. #u85894 {
  7413. border-width:0px;
  7414. position:absolute;
  7415. left:962px;
  7416. top:216px;
  7417. width:79px;
  7418. height:38px;
  7419. display:flex;
  7420. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7421. font-weight:400;
  7422. font-style:normal;
  7423. font-size:12px;
  7424. color:#606266;
  7425. }
  7426. #u85894 .text {
  7427. position:absolute;
  7428. align-self:center;
  7429. padding:2px 2px 2px 0px;
  7430. box-sizing:border-box;
  7431. width:100%;
  7432. }
  7433. #u85894_text {
  7434. border-width:0px;
  7435. word-wrap:break-word;
  7436. text-transform:none;
  7437. visibility:hidden;
  7438. }
  7439. #u85895_img {
  7440. border-width:0px;
  7441. position:absolute;
  7442. left:0px;
  7443. top:0px;
  7444. width:70px;
  7445. height:38px;
  7446. }
  7447. #u85895 {
  7448. border-width:0px;
  7449. position:absolute;
  7450. left:1041px;
  7451. top:216px;
  7452. width:70px;
  7453. height:38px;
  7454. display:flex;
  7455. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7456. font-weight:400;
  7457. font-style:normal;
  7458. font-size:12px;
  7459. color:#606266;
  7460. }
  7461. #u85895 .text {
  7462. position:absolute;
  7463. align-self:center;
  7464. padding:2px 2px 2px 0px;
  7465. box-sizing:border-box;
  7466. width:100%;
  7467. }
  7468. #u85895_text {
  7469. border-width:0px;
  7470. word-wrap:break-word;
  7471. text-transform:none;
  7472. visibility:hidden;
  7473. }
  7474. #u85896_img {
  7475. border-width:0px;
  7476. position:absolute;
  7477. left:0px;
  7478. top:0px;
  7479. width:109px;
  7480. height:38px;
  7481. }
  7482. #u85896 {
  7483. border-width:0px;
  7484. position:absolute;
  7485. left:1111px;
  7486. top:216px;
  7487. width:109px;
  7488. height:38px;
  7489. display:flex;
  7490. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7491. font-weight:400;
  7492. font-style:normal;
  7493. font-size:12px;
  7494. color:#606266;
  7495. }
  7496. #u85896 .text {
  7497. position:absolute;
  7498. align-self:center;
  7499. padding:2px 2px 2px 0px;
  7500. box-sizing:border-box;
  7501. width:100%;
  7502. }
  7503. #u85896_text {
  7504. border-width:0px;
  7505. word-wrap:break-word;
  7506. text-transform:none;
  7507. visibility:hidden;
  7508. }
  7509. #u85897_img {
  7510. border-width:0px;
  7511. position:absolute;
  7512. left:0px;
  7513. top:0px;
  7514. width:77px;
  7515. height:32px;
  7516. }
  7517. #u85897 {
  7518. border-width:0px;
  7519. position:absolute;
  7520. left:0px;
  7521. top:254px;
  7522. width:77px;
  7523. height:32px;
  7524. display:flex;
  7525. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7526. font-weight:400;
  7527. font-style:normal;
  7528. font-size:12px;
  7529. color:#606266;
  7530. }
  7531. #u85897 .text {
  7532. position:absolute;
  7533. align-self:center;
  7534. padding:2px 2px 2px 0px;
  7535. box-sizing:border-box;
  7536. width:100%;
  7537. }
  7538. #u85897_text {
  7539. border-width:0px;
  7540. word-wrap:break-word;
  7541. text-transform:none;
  7542. visibility:hidden;
  7543. }
  7544. #u85898_img {
  7545. border-width:0px;
  7546. position:absolute;
  7547. left:0px;
  7548. top:0px;
  7549. width:78px;
  7550. height:32px;
  7551. }
  7552. #u85898 {
  7553. border-width:0px;
  7554. position:absolute;
  7555. left:77px;
  7556. top:254px;
  7557. width:78px;
  7558. height:32px;
  7559. display:flex;
  7560. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7561. font-weight:400;
  7562. font-style:normal;
  7563. font-size:12px;
  7564. color:#606266;
  7565. }
  7566. #u85898 .text {
  7567. position:absolute;
  7568. align-self:center;
  7569. padding:2px 2px 2px 0px;
  7570. box-sizing:border-box;
  7571. width:100%;
  7572. }
  7573. #u85898_text {
  7574. border-width:0px;
  7575. word-wrap:break-word;
  7576. text-transform:none;
  7577. visibility:hidden;
  7578. }
  7579. #u85899_img {
  7580. border-width:0px;
  7581. position:absolute;
  7582. left:0px;
  7583. top:0px;
  7584. width:78px;
  7585. height:32px;
  7586. }
  7587. #u85899 {
  7588. border-width:0px;
  7589. position:absolute;
  7590. left:155px;
  7591. top:254px;
  7592. width:78px;
  7593. height:32px;
  7594. display:flex;
  7595. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7596. font-weight:400;
  7597. font-style:normal;
  7598. font-size:12px;
  7599. color:#606266;
  7600. }
  7601. #u85899 .text {
  7602. position:absolute;
  7603. align-self:center;
  7604. padding:2px 2px 2px 0px;
  7605. box-sizing:border-box;
  7606. width:100%;
  7607. }
  7608. #u85899_text {
  7609. border-width:0px;
  7610. word-wrap:break-word;
  7611. text-transform:none;
  7612. visibility:hidden;
  7613. }
  7614. #u85900_img {
  7615. border-width:0px;
  7616. position:absolute;
  7617. left:0px;
  7618. top:0px;
  7619. width:79px;
  7620. height:32px;
  7621. }
  7622. #u85900 {
  7623. border-width:0px;
  7624. position:absolute;
  7625. left:233px;
  7626. top:254px;
  7627. width:79px;
  7628. height:32px;
  7629. display:flex;
  7630. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7631. font-weight:400;
  7632. font-style:normal;
  7633. font-size:12px;
  7634. color:#606266;
  7635. }
  7636. #u85900 .text {
  7637. position:absolute;
  7638. align-self:center;
  7639. padding:2px 2px 2px 0px;
  7640. box-sizing:border-box;
  7641. width:100%;
  7642. }
  7643. #u85900_text {
  7644. border-width:0px;
  7645. word-wrap:break-word;
  7646. text-transform:none;
  7647. visibility:hidden;
  7648. }
  7649. #u85901_img {
  7650. border-width:0px;
  7651. position:absolute;
  7652. left:0px;
  7653. top:0px;
  7654. width:79px;
  7655. height:32px;
  7656. }
  7657. #u85901 {
  7658. border-width:0px;
  7659. position:absolute;
  7660. left:312px;
  7661. top:254px;
  7662. width:79px;
  7663. height:32px;
  7664. display:flex;
  7665. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7666. font-weight:400;
  7667. font-style:normal;
  7668. font-size:12px;
  7669. color:#606266;
  7670. }
  7671. #u85901 .text {
  7672. position:absolute;
  7673. align-self:center;
  7674. padding:2px 2px 2px 0px;
  7675. box-sizing:border-box;
  7676. width:100%;
  7677. }
  7678. #u85901_text {
  7679. border-width:0px;
  7680. word-wrap:break-word;
  7681. text-transform:none;
  7682. visibility:hidden;
  7683. }
  7684. #u85902_img {
  7685. border-width:0px;
  7686. position:absolute;
  7687. left:0px;
  7688. top:0px;
  7689. width:79px;
  7690. height:32px;
  7691. }
  7692. #u85902 {
  7693. border-width:0px;
  7694. position:absolute;
  7695. left:391px;
  7696. top:254px;
  7697. width:79px;
  7698. height:32px;
  7699. display:flex;
  7700. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7701. font-weight:400;
  7702. font-style:normal;
  7703. font-size:12px;
  7704. color:#606266;
  7705. }
  7706. #u85902 .text {
  7707. position:absolute;
  7708. align-self:center;
  7709. padding:2px 2px 2px 0px;
  7710. box-sizing:border-box;
  7711. width:100%;
  7712. }
  7713. #u85902_text {
  7714. border-width:0px;
  7715. word-wrap:break-word;
  7716. text-transform:none;
  7717. visibility:hidden;
  7718. }
  7719. #u85903_img {
  7720. border-width:0px;
  7721. position:absolute;
  7722. left:0px;
  7723. top:0px;
  7724. width:78px;
  7725. height:32px;
  7726. }
  7727. #u85903 {
  7728. border-width:0px;
  7729. position:absolute;
  7730. left:470px;
  7731. top:254px;
  7732. width:78px;
  7733. height:32px;
  7734. display:flex;
  7735. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7736. font-weight:400;
  7737. font-style:normal;
  7738. font-size:12px;
  7739. color:#606266;
  7740. }
  7741. #u85903 .text {
  7742. position:absolute;
  7743. align-self:center;
  7744. padding:2px 2px 2px 0px;
  7745. box-sizing:border-box;
  7746. width:100%;
  7747. }
  7748. #u85903_text {
  7749. border-width:0px;
  7750. word-wrap:break-word;
  7751. text-transform:none;
  7752. visibility:hidden;
  7753. }
  7754. #u85904_img {
  7755. border-width:0px;
  7756. position:absolute;
  7757. left:0px;
  7758. top:0px;
  7759. width:98px;
  7760. height:32px;
  7761. }
  7762. #u85904 {
  7763. border-width:0px;
  7764. position:absolute;
  7765. left:548px;
  7766. top:254px;
  7767. width:98px;
  7768. height:32px;
  7769. display:flex;
  7770. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7771. font-weight:400;
  7772. font-style:normal;
  7773. font-size:12px;
  7774. color:#606266;
  7775. }
  7776. #u85904 .text {
  7777. position:absolute;
  7778. align-self:center;
  7779. padding:2px 2px 2px 0px;
  7780. box-sizing:border-box;
  7781. width:100%;
  7782. }
  7783. #u85904_text {
  7784. border-width:0px;
  7785. word-wrap:break-word;
  7786. text-transform:none;
  7787. visibility:hidden;
  7788. }
  7789. #u85905_img {
  7790. border-width:0px;
  7791. position:absolute;
  7792. left:0px;
  7793. top:0px;
  7794. width:79px;
  7795. height:32px;
  7796. }
  7797. #u85905 {
  7798. border-width:0px;
  7799. position:absolute;
  7800. left:646px;
  7801. top:254px;
  7802. width:79px;
  7803. height:32px;
  7804. display:flex;
  7805. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7806. font-weight:400;
  7807. font-style:normal;
  7808. font-size:12px;
  7809. color:#606266;
  7810. }
  7811. #u85905 .text {
  7812. position:absolute;
  7813. align-self:center;
  7814. padding:2px 2px 2px 0px;
  7815. box-sizing:border-box;
  7816. width:100%;
  7817. }
  7818. #u85905_text {
  7819. border-width:0px;
  7820. word-wrap:break-word;
  7821. text-transform:none;
  7822. visibility:hidden;
  7823. }
  7824. #u85906_img {
  7825. border-width:0px;
  7826. position:absolute;
  7827. left:0px;
  7828. top:0px;
  7829. width:79px;
  7830. height:32px;
  7831. }
  7832. #u85906 {
  7833. border-width:0px;
  7834. position:absolute;
  7835. left:725px;
  7836. top:254px;
  7837. width:79px;
  7838. height:32px;
  7839. display:flex;
  7840. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7841. font-weight:400;
  7842. font-style:normal;
  7843. font-size:12px;
  7844. color:#606266;
  7845. }
  7846. #u85906 .text {
  7847. position:absolute;
  7848. align-self:center;
  7849. padding:2px 2px 2px 0px;
  7850. box-sizing:border-box;
  7851. width:100%;
  7852. }
  7853. #u85906_text {
  7854. border-width:0px;
  7855. word-wrap:break-word;
  7856. text-transform:none;
  7857. visibility:hidden;
  7858. }
  7859. #u85907_img {
  7860. border-width:0px;
  7861. position:absolute;
  7862. left:0px;
  7863. top:0px;
  7864. width:79px;
  7865. height:32px;
  7866. }
  7867. #u85907 {
  7868. border-width:0px;
  7869. position:absolute;
  7870. left:804px;
  7871. top:254px;
  7872. width:79px;
  7873. height:32px;
  7874. display:flex;
  7875. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7876. font-weight:400;
  7877. font-style:normal;
  7878. font-size:12px;
  7879. color:#606266;
  7880. }
  7881. #u85907 .text {
  7882. position:absolute;
  7883. align-self:center;
  7884. padding:2px 2px 2px 0px;
  7885. box-sizing:border-box;
  7886. width:100%;
  7887. }
  7888. #u85907_text {
  7889. border-width:0px;
  7890. word-wrap:break-word;
  7891. text-transform:none;
  7892. visibility:hidden;
  7893. }
  7894. #u85908_img {
  7895. border-width:0px;
  7896. position:absolute;
  7897. left:0px;
  7898. top:0px;
  7899. width:79px;
  7900. height:32px;
  7901. }
  7902. #u85908 {
  7903. border-width:0px;
  7904. position:absolute;
  7905. left:883px;
  7906. top:254px;
  7907. width:79px;
  7908. height:32px;
  7909. display:flex;
  7910. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7911. font-weight:400;
  7912. font-style:normal;
  7913. font-size:12px;
  7914. color:#606266;
  7915. }
  7916. #u85908 .text {
  7917. position:absolute;
  7918. align-self:center;
  7919. padding:2px 2px 2px 0px;
  7920. box-sizing:border-box;
  7921. width:100%;
  7922. }
  7923. #u85908_text {
  7924. border-width:0px;
  7925. word-wrap:break-word;
  7926. text-transform:none;
  7927. visibility:hidden;
  7928. }
  7929. #u85909_img {
  7930. border-width:0px;
  7931. position:absolute;
  7932. left:0px;
  7933. top:0px;
  7934. width:79px;
  7935. height:32px;
  7936. }
  7937. #u85909 {
  7938. border-width:0px;
  7939. position:absolute;
  7940. left:962px;
  7941. top:254px;
  7942. width:79px;
  7943. height:32px;
  7944. display:flex;
  7945. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7946. font-weight:400;
  7947. font-style:normal;
  7948. font-size:12px;
  7949. color:#606266;
  7950. }
  7951. #u85909 .text {
  7952. position:absolute;
  7953. align-self:center;
  7954. padding:2px 2px 2px 0px;
  7955. box-sizing:border-box;
  7956. width:100%;
  7957. }
  7958. #u85909_text {
  7959. border-width:0px;
  7960. word-wrap:break-word;
  7961. text-transform:none;
  7962. visibility:hidden;
  7963. }
  7964. #u85910_img {
  7965. border-width:0px;
  7966. position:absolute;
  7967. left:0px;
  7968. top:0px;
  7969. width:70px;
  7970. height:32px;
  7971. }
  7972. #u85910 {
  7973. border-width:0px;
  7974. position:absolute;
  7975. left:1041px;
  7976. top:254px;
  7977. width:70px;
  7978. height:32px;
  7979. display:flex;
  7980. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7981. font-weight:400;
  7982. font-style:normal;
  7983. font-size:12px;
  7984. color:#606266;
  7985. }
  7986. #u85910 .text {
  7987. position:absolute;
  7988. align-self:center;
  7989. padding:2px 2px 2px 0px;
  7990. box-sizing:border-box;
  7991. width:100%;
  7992. }
  7993. #u85910_text {
  7994. border-width:0px;
  7995. word-wrap:break-word;
  7996. text-transform:none;
  7997. visibility:hidden;
  7998. }
  7999. #u85911_img {
  8000. border-width:0px;
  8001. position:absolute;
  8002. left:0px;
  8003. top:0px;
  8004. width:109px;
  8005. height:32px;
  8006. }
  8007. #u85911 {
  8008. border-width:0px;
  8009. position:absolute;
  8010. left:1111px;
  8011. top:254px;
  8012. width:109px;
  8013. height:32px;
  8014. display:flex;
  8015. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8016. font-weight:400;
  8017. font-style:normal;
  8018. font-size:12px;
  8019. color:#606266;
  8020. }
  8021. #u85911 .text {
  8022. position:absolute;
  8023. align-self:center;
  8024. padding:2px 2px 2px 0px;
  8025. box-sizing:border-box;
  8026. width:100%;
  8027. }
  8028. #u85911_text {
  8029. border-width:0px;
  8030. word-wrap:break-word;
  8031. text-transform:none;
  8032. visibility:hidden;
  8033. }
  8034. #u85912_div {
  8035. border-width:0px;
  8036. position:absolute;
  8037. left:0px;
  8038. top:0px;
  8039. width:73px;
  8040. height:50px;
  8041. background:inherit;
  8042. background-color:rgba(255, 255, 255, 0);
  8043. border:none;
  8044. border-left:0px;
  8045. border-top:0px;
  8046. border-right:0px;
  8047. border-radius:0px;
  8048. border-bottom-right-radius:0px;
  8049. border-bottom-left-radius:0px;
  8050. -moz-box-shadow:none;
  8051. -webkit-box-shadow:none;
  8052. box-shadow:none;
  8053. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8054. font-weight:500;
  8055. font-style:normal;
  8056. font-size:18px;
  8057. }
  8058. #u85912 {
  8059. border-width:0px;
  8060. position:absolute;
  8061. left:350px;
  8062. top:50px;
  8063. width:73px;
  8064. height:50px;
  8065. display:flex;
  8066. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8067. font-weight:500;
  8068. font-style:normal;
  8069. font-size:18px;
  8070. }
  8071. #u85912 .text {
  8072. position:absolute;
  8073. align-self:center;
  8074. padding:0px 0px 0px 0px;
  8075. box-sizing:border-box;
  8076. width:100%;
  8077. }
  8078. #u85912_text {
  8079. border-width:0px;
  8080. white-space:nowrap;
  8081. text-transform:none;
  8082. }
  8083. #u85913 {
  8084. border-width:0px;
  8085. position:absolute;
  8086. left:0px;
  8087. top:0px;
  8088. width:0px;
  8089. height:0px;
  8090. }
  8091. #u85914_div {
  8092. border-width:0px;
  8093. position:absolute;
  8094. left:0px;
  8095. top:0px;
  8096. width:140px;
  8097. height:30px;
  8098. background:inherit;
  8099. background-color:rgba(255, 255, 255, 1);
  8100. box-sizing:border-box;
  8101. border-width:1px;
  8102. border-style:solid;
  8103. border-color:rgba(215, 215, 215, 1);
  8104. border-radius:4px;
  8105. -moz-box-shadow:none;
  8106. -webkit-box-shadow:none;
  8107. box-shadow:none;
  8108. font-size:11px;
  8109. }
  8110. #u85914 {
  8111. border-width:0px;
  8112. position:absolute;
  8113. left:1101px;
  8114. top:110px;
  8115. width:140px;
  8116. height:30px;
  8117. display:flex;
  8118. font-size:11px;
  8119. }
  8120. #u85914 .text {
  8121. position:absolute;
  8122. align-self:center;
  8123. padding:2px 2px 2px 2px;
  8124. box-sizing:border-box;
  8125. width:100%;
  8126. }
  8127. #u85914_text {
  8128. border-width:0px;
  8129. word-wrap:break-word;
  8130. text-transform:none;
  8131. visibility:hidden;
  8132. }
  8133. #u85915_input {
  8134. position:absolute;
  8135. left:0px;
  8136. top:0px;
  8137. width:120px;
  8138. height:23px;
  8139. padding:2px 2px 2px 2px;
  8140. font-family:'ArialMT', 'Arial', sans-serif;
  8141. font-weight:400;
  8142. font-style:normal;
  8143. font-size:11px;
  8144. letter-spacing:normal;
  8145. color:#AAAAAA;
  8146. vertical-align:none;
  8147. text-align:left;
  8148. text-transform:none;
  8149. background-color:transparent;
  8150. border-color:transparent;
  8151. }
  8152. #u85915_input.disabled {
  8153. position:absolute;
  8154. left:0px;
  8155. top:0px;
  8156. width:120px;
  8157. height:23px;
  8158. padding:2px 2px 2px 2px;
  8159. font-family:'ArialMT', 'Arial', sans-serif;
  8160. font-weight:400;
  8161. font-style:normal;
  8162. font-size:11px;
  8163. letter-spacing:normal;
  8164. color:#AAAAAA;
  8165. vertical-align:none;
  8166. text-align:left;
  8167. text-transform:none;
  8168. background-color:transparent;
  8169. border-color:transparent;
  8170. }
  8171. #u85915_div {
  8172. border-width:0px;
  8173. position:absolute;
  8174. left:0px;
  8175. top:0px;
  8176. width:120px;
  8177. height:23px;
  8178. background:inherit;
  8179. background-color:rgba(255, 255, 255, 1);
  8180. border:none;
  8181. border-radius:0px;
  8182. -moz-box-shadow:none;
  8183. -webkit-box-shadow:none;
  8184. box-shadow:none;
  8185. font-size:11px;
  8186. color:#AAAAAA;
  8187. }
  8188. #u85915 {
  8189. border-width:0px;
  8190. position:absolute;
  8191. left:1108px;
  8192. top:112px;
  8193. width:120px;
  8194. height:23px;
  8195. display:flex;
  8196. font-size:11px;
  8197. color:#AAAAAA;
  8198. }
  8199. #u85915 .text {
  8200. position:absolute;
  8201. align-self:flex-start;
  8202. padding:2px 2px 2px 2px;
  8203. box-sizing:border-box;
  8204. width:100%;
  8205. }
  8206. #u85915_div.disabled {
  8207. border-width:0px;
  8208. position:absolute;
  8209. left:0px;
  8210. top:0px;
  8211. width:120px;
  8212. height:23px;
  8213. background:inherit;
  8214. background-color:rgba(240, 240, 240, 1);
  8215. border:none;
  8216. border-radius:0px;
  8217. -moz-box-shadow:none;
  8218. -webkit-box-shadow:none;
  8219. box-shadow:none;
  8220. font-size:11px;
  8221. color:#AAAAAA;
  8222. }
  8223. #u85915.disabled {
  8224. }
  8225. .u85915_input_option {
  8226. font-size:11px;
  8227. }
  8228. #u85916 {
  8229. border-width:0px;
  8230. position:absolute;
  8231. left:0px;
  8232. top:0px;
  8233. width:0px;
  8234. height:0px;
  8235. }
  8236. #u85917_div {
  8237. border-width:0px;
  8238. position:absolute;
  8239. left:0px;
  8240. top:0px;
  8241. width:59px;
  8242. height:30px;
  8243. background:inherit;
  8244. background-color:rgba(0, 153, 255, 1);
  8245. box-sizing:border-box;
  8246. border-width:1px;
  8247. border-style:solid;
  8248. border-color:rgba(0, 153, 255, 1);
  8249. border-radius:4px;
  8250. -moz-box-shadow:none;
  8251. -webkit-box-shadow:none;
  8252. box-shadow:none;
  8253. font-family:'Microsoft YaHei', sans-serif;
  8254. font-weight:400;
  8255. font-style:normal;
  8256. font-size:14px;
  8257. color:#FFFFFF;
  8258. }
  8259. #u85917 {
  8260. border-width:0px;
  8261. position:absolute;
  8262. left:1401px;
  8263. top:110px;
  8264. width:59px;
  8265. height:30px;
  8266. display:flex;
  8267. font-family:'Microsoft YaHei', sans-serif;
  8268. font-weight:400;
  8269. font-style:normal;
  8270. font-size:14px;
  8271. color:#FFFFFF;
  8272. }
  8273. #u85917 .text {
  8274. position:absolute;
  8275. align-self:center;
  8276. padding:5px 15px 5px 15px;
  8277. box-sizing:border-box;
  8278. width:100%;
  8279. }
  8280. #u85917_text {
  8281. border-width:0px;
  8282. white-space:nowrap;
  8283. text-transform:none;
  8284. }
  8285. #u85918_div {
  8286. border-width:0px;
  8287. position:absolute;
  8288. left:0px;
  8289. top:0px;
  8290. width:55px;
  8291. height:30px;
  8292. background:inherit;
  8293. background-color:rgba(255, 255, 255, 1);
  8294. box-sizing:border-box;
  8295. border-width:1px;
  8296. border-style:solid;
  8297. border-color:rgba(170, 170, 170, 1);
  8298. border-radius:4px;
  8299. -moz-box-shadow:none;
  8300. -webkit-box-shadow:none;
  8301. box-shadow:none;
  8302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8303. font-weight:400;
  8304. font-style:normal;
  8305. font-size:12px;
  8306. color:#555555;
  8307. }
  8308. #u85918 {
  8309. border-width:0px;
  8310. position:absolute;
  8311. left:1470px;
  8312. top:110px;
  8313. width:55px;
  8314. height:30px;
  8315. display:flex;
  8316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8317. font-weight:400;
  8318. font-style:normal;
  8319. font-size:12px;
  8320. color:#555555;
  8321. }
  8322. #u85918 .text {
  8323. position:absolute;
  8324. align-self:center;
  8325. padding:5px 15px 5px 15px;
  8326. box-sizing:border-box;
  8327. width:100%;
  8328. }
  8329. #u85918_text {
  8330. border-width:0px;
  8331. white-space:nowrap;
  8332. text-transform:none;
  8333. }
  8334. #u85919 {
  8335. border-width:0px;
  8336. position:absolute;
  8337. left:0px;
  8338. top:0px;
  8339. width:0px;
  8340. height:0px;
  8341. }
  8342. #u85920_div {
  8343. border-width:0px;
  8344. position:absolute;
  8345. left:0px;
  8346. top:0px;
  8347. width:140px;
  8348. height:30px;
  8349. background:inherit;
  8350. background-color:rgba(255, 255, 255, 1);
  8351. box-sizing:border-box;
  8352. border-width:1px;
  8353. border-style:solid;
  8354. border-color:rgba(215, 215, 215, 1);
  8355. border-radius:4px;
  8356. -moz-box-shadow:none;
  8357. -webkit-box-shadow:none;
  8358. box-shadow:none;
  8359. font-size:11px;
  8360. }
  8361. #u85920 {
  8362. border-width:0px;
  8363. position:absolute;
  8364. left:1251px;
  8365. top:111px;
  8366. width:140px;
  8367. height:30px;
  8368. display:flex;
  8369. font-size:11px;
  8370. }
  8371. #u85920 .text {
  8372. position:absolute;
  8373. align-self:center;
  8374. padding:2px 2px 2px 2px;
  8375. box-sizing:border-box;
  8376. width:100%;
  8377. }
  8378. #u85920_text {
  8379. border-width:0px;
  8380. word-wrap:break-word;
  8381. text-transform:none;
  8382. visibility:hidden;
  8383. }
  8384. #u85921_input {
  8385. position:absolute;
  8386. left:0px;
  8387. top:0px;
  8388. width:123px;
  8389. height:23px;
  8390. padding:2px 2px 2px 2px;
  8391. font-family:'ArialMT', 'Arial', sans-serif;
  8392. font-weight:400;
  8393. font-style:normal;
  8394. font-size:11px;
  8395. letter-spacing:normal;
  8396. color:#AAAAAA;
  8397. vertical-align:none;
  8398. text-align:left;
  8399. text-transform:none;
  8400. background-color:transparent;
  8401. border-color:transparent;
  8402. }
  8403. #u85921_input.disabled {
  8404. position:absolute;
  8405. left:0px;
  8406. top:0px;
  8407. width:123px;
  8408. height:23px;
  8409. padding:2px 2px 2px 2px;
  8410. font-family:'ArialMT', 'Arial', sans-serif;
  8411. font-weight:400;
  8412. font-style:normal;
  8413. font-size:11px;
  8414. letter-spacing:normal;
  8415. color:#AAAAAA;
  8416. vertical-align:none;
  8417. text-align:left;
  8418. text-transform:none;
  8419. background-color:transparent;
  8420. border-color:transparent;
  8421. }
  8422. #u85921_div {
  8423. border-width:0px;
  8424. position:absolute;
  8425. left:0px;
  8426. top:0px;
  8427. width:123px;
  8428. height:23px;
  8429. background:inherit;
  8430. background-color:rgba(255, 255, 255, 1);
  8431. border:none;
  8432. border-radius:0px;
  8433. -moz-box-shadow:none;
  8434. -webkit-box-shadow:none;
  8435. box-shadow:none;
  8436. font-size:11px;
  8437. color:#AAAAAA;
  8438. }
  8439. #u85921 {
  8440. border-width:0px;
  8441. position:absolute;
  8442. left:1257px;
  8443. top:113px;
  8444. width:123px;
  8445. height:23px;
  8446. display:flex;
  8447. font-size:11px;
  8448. color:#AAAAAA;
  8449. }
  8450. #u85921 .text {
  8451. position:absolute;
  8452. align-self:flex-start;
  8453. padding:2px 2px 2px 2px;
  8454. box-sizing:border-box;
  8455. width:100%;
  8456. }
  8457. #u85921_div.disabled {
  8458. border-width:0px;
  8459. position:absolute;
  8460. left:0px;
  8461. top:0px;
  8462. width:123px;
  8463. height:23px;
  8464. background:inherit;
  8465. background-color:rgba(240, 240, 240, 1);
  8466. border:none;
  8467. border-radius:0px;
  8468. -moz-box-shadow:none;
  8469. -webkit-box-shadow:none;
  8470. box-shadow:none;
  8471. font-size:11px;
  8472. color:#AAAAAA;
  8473. }
  8474. #u85921.disabled {
  8475. }
  8476. .u85921_input_option {
  8477. font-size:11px;
  8478. }
  8479. #u85922 {
  8480. border-width:0px;
  8481. position:absolute;
  8482. left:0px;
  8483. top:0px;
  8484. width:0px;
  8485. height:0px;
  8486. }
  8487. #u85923_div {
  8488. border-width:0px;
  8489. position:absolute;
  8490. left:0px;
  8491. top:0px;
  8492. width:140px;
  8493. height:30px;
  8494. background:inherit;
  8495. background-color:rgba(255, 255, 255, 1);
  8496. box-sizing:border-box;
  8497. border-width:1px;
  8498. border-style:solid;
  8499. border-color:rgba(201, 201, 201, 1);
  8500. border-radius:4px;
  8501. -moz-box-shadow:none;
  8502. -webkit-box-shadow:none;
  8503. box-shadow:none;
  8504. font-family:'Microsoft YaHei', sans-serif;
  8505. font-weight:400;
  8506. font-style:normal;
  8507. font-size:14px;
  8508. color:#CCCCCC;
  8509. text-align:left;
  8510. }
  8511. #u85923 {
  8512. border-width:0px;
  8513. position:absolute;
  8514. left:501px;
  8515. top:111px;
  8516. width:140px;
  8517. height:30px;
  8518. display:flex;
  8519. font-family:'Microsoft YaHei', sans-serif;
  8520. font-weight:400;
  8521. font-style:normal;
  8522. font-size:14px;
  8523. color:#CCCCCC;
  8524. text-align:left;
  8525. }
  8526. #u85923 .text {
  8527. position:absolute;
  8528. align-self:center;
  8529. padding:2px 8px 2px 8px;
  8530. box-sizing:border-box;
  8531. width:100%;
  8532. }
  8533. #u85923_text {
  8534. border-width:0px;
  8535. word-wrap:break-word;
  8536. text-transform:none;
  8537. visibility:hidden;
  8538. }
  8539. #u85924_input {
  8540. position:absolute;
  8541. left:0px;
  8542. top:0px;
  8543. width:127px;
  8544. height:25px;
  8545. padding:2px 2px 2px 2px;
  8546. font-family:'Microsoft YaHei', sans-serif;
  8547. font-weight:400;
  8548. font-style:normal;
  8549. font-size:10px;
  8550. letter-spacing:normal;
  8551. color:#000000;
  8552. vertical-align:none;
  8553. text-align:left;
  8554. text-transform:none;
  8555. background-color:transparent;
  8556. border-color:transparent;
  8557. }
  8558. #u85924_input.disabled {
  8559. position:absolute;
  8560. left:0px;
  8561. top:0px;
  8562. width:127px;
  8563. height:25px;
  8564. padding:2px 2px 2px 2px;
  8565. font-family:'Microsoft YaHei', sans-serif;
  8566. font-weight:400;
  8567. font-style:normal;
  8568. font-size:10px;
  8569. letter-spacing:normal;
  8570. color:#000000;
  8571. vertical-align:none;
  8572. text-align:left;
  8573. text-transform:none;
  8574. background-color:transparent;
  8575. border-color:transparent;
  8576. }
  8577. #u85924_div {
  8578. border-width:0px;
  8579. position:absolute;
  8580. left:0px;
  8581. top:0px;
  8582. width:127px;
  8583. height:25px;
  8584. background:inherit;
  8585. background-color:rgba(255, 255, 255, 1);
  8586. border:none;
  8587. border-radius:0px;
  8588. -moz-box-shadow:none;
  8589. -webkit-box-shadow:none;
  8590. box-shadow:none;
  8591. font-family:'Microsoft YaHei', sans-serif;
  8592. font-weight:400;
  8593. font-style:normal;
  8594. font-size:10px;
  8595. }
  8596. #u85924 {
  8597. border-width:0px;
  8598. position:absolute;
  8599. left:509px;
  8600. top:112px;
  8601. width:127px;
  8602. height:25px;
  8603. display:flex;
  8604. font-family:'Microsoft YaHei', sans-serif;
  8605. font-weight:400;
  8606. font-style:normal;
  8607. font-size:10px;
  8608. }
  8609. #u85924 .text {
  8610. position:absolute;
  8611. align-self:center;
  8612. padding:2px 2px 2px 2px;
  8613. box-sizing:border-box;
  8614. width:100%;
  8615. }
  8616. #u85924_div.disabled {
  8617. border-width:0px;
  8618. position:absolute;
  8619. left:0px;
  8620. top:0px;
  8621. width:127px;
  8622. height:25px;
  8623. background:inherit;
  8624. background-color:rgba(240, 240, 240, 1);
  8625. border:none;
  8626. border-radius:0px;
  8627. -moz-box-shadow:none;
  8628. -webkit-box-shadow:none;
  8629. box-shadow:none;
  8630. font-family:'Microsoft YaHei', sans-serif;
  8631. font-weight:400;
  8632. font-style:normal;
  8633. font-size:10px;
  8634. }
  8635. #u85924.disabled {
  8636. }
  8637. #u85925 {
  8638. border-width:0px;
  8639. position:absolute;
  8640. left:0px;
  8641. top:0px;
  8642. width:0px;
  8643. height:0px;
  8644. }
  8645. #u85926_div {
  8646. border-width:0px;
  8647. position:absolute;
  8648. left:0px;
  8649. top:0px;
  8650. width:140px;
  8651. height:30px;
  8652. background:inherit;
  8653. background-color:rgba(255, 255, 255, 1);
  8654. box-sizing:border-box;
  8655. border-width:1px;
  8656. border-style:solid;
  8657. border-color:rgba(201, 201, 201, 1);
  8658. border-radius:4px;
  8659. -moz-box-shadow:none;
  8660. -webkit-box-shadow:none;
  8661. box-shadow:none;
  8662. font-family:'Microsoft YaHei', sans-serif;
  8663. font-weight:400;
  8664. font-style:normal;
  8665. font-size:14px;
  8666. color:#CCCCCC;
  8667. text-align:left;
  8668. }
  8669. #u85926 {
  8670. border-width:0px;
  8671. position:absolute;
  8672. left:651px;
  8673. top:111px;
  8674. width:140px;
  8675. height:30px;
  8676. display:flex;
  8677. font-family:'Microsoft YaHei', sans-serif;
  8678. font-weight:400;
  8679. font-style:normal;
  8680. font-size:14px;
  8681. color:#CCCCCC;
  8682. text-align:left;
  8683. }
  8684. #u85926 .text {
  8685. position:absolute;
  8686. align-self:center;
  8687. padding:2px 8px 2px 8px;
  8688. box-sizing:border-box;
  8689. width:100%;
  8690. }
  8691. #u85926_text {
  8692. border-width:0px;
  8693. word-wrap:break-word;
  8694. text-transform:none;
  8695. visibility:hidden;
  8696. }
  8697. #u85927_input {
  8698. position:absolute;
  8699. left:0px;
  8700. top:0px;
  8701. width:127px;
  8702. height:25px;
  8703. padding:2px 2px 2px 2px;
  8704. font-family:'Microsoft YaHei', sans-serif;
  8705. font-weight:400;
  8706. font-style:normal;
  8707. font-size:10px;
  8708. letter-spacing:normal;
  8709. color:#000000;
  8710. vertical-align:none;
  8711. text-align:left;
  8712. text-transform:none;
  8713. background-color:transparent;
  8714. border-color:transparent;
  8715. }
  8716. #u85927_input.disabled {
  8717. position:absolute;
  8718. left:0px;
  8719. top:0px;
  8720. width:127px;
  8721. height:25px;
  8722. padding:2px 2px 2px 2px;
  8723. font-family:'Microsoft YaHei', sans-serif;
  8724. font-weight:400;
  8725. font-style:normal;
  8726. font-size:10px;
  8727. letter-spacing:normal;
  8728. color:#000000;
  8729. vertical-align:none;
  8730. text-align:left;
  8731. text-transform:none;
  8732. background-color:transparent;
  8733. border-color:transparent;
  8734. }
  8735. #u85927_div {
  8736. border-width:0px;
  8737. position:absolute;
  8738. left:0px;
  8739. top:0px;
  8740. width:127px;
  8741. height:25px;
  8742. background:inherit;
  8743. background-color:rgba(255, 255, 255, 1);
  8744. border:none;
  8745. border-radius:0px;
  8746. -moz-box-shadow:none;
  8747. -webkit-box-shadow:none;
  8748. box-shadow:none;
  8749. font-family:'Microsoft YaHei', sans-serif;
  8750. font-weight:400;
  8751. font-style:normal;
  8752. font-size:10px;
  8753. }
  8754. #u85927 {
  8755. border-width:0px;
  8756. position:absolute;
  8757. left:659px;
  8758. top:112px;
  8759. width:127px;
  8760. height:25px;
  8761. display:flex;
  8762. font-family:'Microsoft YaHei', sans-serif;
  8763. font-weight:400;
  8764. font-style:normal;
  8765. font-size:10px;
  8766. }
  8767. #u85927 .text {
  8768. position:absolute;
  8769. align-self:center;
  8770. padding:2px 2px 2px 2px;
  8771. box-sizing:border-box;
  8772. width:100%;
  8773. }
  8774. #u85927_div.disabled {
  8775. border-width:0px;
  8776. position:absolute;
  8777. left:0px;
  8778. top:0px;
  8779. width:127px;
  8780. height:25px;
  8781. background:inherit;
  8782. background-color:rgba(240, 240, 240, 1);
  8783. border:none;
  8784. border-radius:0px;
  8785. -moz-box-shadow:none;
  8786. -webkit-box-shadow:none;
  8787. box-shadow:none;
  8788. font-family:'Microsoft YaHei', sans-serif;
  8789. font-weight:400;
  8790. font-style:normal;
  8791. font-size:10px;
  8792. }
  8793. #u85927.disabled {
  8794. }
  8795. #u85928 {
  8796. border-width:0px;
  8797. position:absolute;
  8798. left:0px;
  8799. top:0px;
  8800. width:0px;
  8801. height:0px;
  8802. }
  8803. #u85929_div {
  8804. border-width:0px;
  8805. position:absolute;
  8806. left:0px;
  8807. top:0px;
  8808. width:140px;
  8809. height:30px;
  8810. background:inherit;
  8811. background-color:rgba(255, 255, 255, 1);
  8812. box-sizing:border-box;
  8813. border-width:1px;
  8814. border-style:solid;
  8815. border-color:rgba(215, 215, 215, 1);
  8816. border-radius:4px;
  8817. -moz-box-shadow:none;
  8818. -webkit-box-shadow:none;
  8819. box-shadow:none;
  8820. font-size:11px;
  8821. }
  8822. #u85929 {
  8823. border-width:0px;
  8824. position:absolute;
  8825. left:951px;
  8826. top:111px;
  8827. width:140px;
  8828. height:30px;
  8829. display:flex;
  8830. font-size:11px;
  8831. }
  8832. #u85929 .text {
  8833. position:absolute;
  8834. align-self:center;
  8835. padding:2px 2px 2px 2px;
  8836. box-sizing:border-box;
  8837. width:100%;
  8838. }
  8839. #u85929_text {
  8840. border-width:0px;
  8841. word-wrap:break-word;
  8842. text-transform:none;
  8843. visibility:hidden;
  8844. }
  8845. #u85930_input {
  8846. position:absolute;
  8847. left:0px;
  8848. top:0px;
  8849. width:120px;
  8850. height:23px;
  8851. padding:2px 2px 2px 2px;
  8852. font-family:'ArialMT', 'Arial', sans-serif;
  8853. font-weight:400;
  8854. font-style:normal;
  8855. font-size:11px;
  8856. letter-spacing:normal;
  8857. color:#AAAAAA;
  8858. vertical-align:none;
  8859. text-align:left;
  8860. text-transform:none;
  8861. background-color:transparent;
  8862. border-color:transparent;
  8863. }
  8864. #u85930_input.disabled {
  8865. position:absolute;
  8866. left:0px;
  8867. top:0px;
  8868. width:120px;
  8869. height:23px;
  8870. padding:2px 2px 2px 2px;
  8871. font-family:'ArialMT', 'Arial', sans-serif;
  8872. font-weight:400;
  8873. font-style:normal;
  8874. font-size:11px;
  8875. letter-spacing:normal;
  8876. color:#AAAAAA;
  8877. vertical-align:none;
  8878. text-align:left;
  8879. text-transform:none;
  8880. background-color:transparent;
  8881. border-color:transparent;
  8882. }
  8883. #u85930_div {
  8884. border-width:0px;
  8885. position:absolute;
  8886. left:0px;
  8887. top:0px;
  8888. width:120px;
  8889. height:23px;
  8890. background:inherit;
  8891. background-color:rgba(255, 255, 255, 1);
  8892. border:none;
  8893. border-radius:0px;
  8894. -moz-box-shadow:none;
  8895. -webkit-box-shadow:none;
  8896. box-shadow:none;
  8897. font-size:11px;
  8898. color:#AAAAAA;
  8899. }
  8900. #u85930 {
  8901. border-width:0px;
  8902. position:absolute;
  8903. left:958px;
  8904. top:113px;
  8905. width:120px;
  8906. height:23px;
  8907. display:flex;
  8908. font-size:11px;
  8909. color:#AAAAAA;
  8910. }
  8911. #u85930 .text {
  8912. position:absolute;
  8913. align-self:flex-start;
  8914. padding:2px 2px 2px 2px;
  8915. box-sizing:border-box;
  8916. width:100%;
  8917. }
  8918. #u85930_div.disabled {
  8919. border-width:0px;
  8920. position:absolute;
  8921. left:0px;
  8922. top:0px;
  8923. width:120px;
  8924. height:23px;
  8925. background:inherit;
  8926. background-color:rgba(240, 240, 240, 1);
  8927. border:none;
  8928. border-radius:0px;
  8929. -moz-box-shadow:none;
  8930. -webkit-box-shadow:none;
  8931. box-shadow:none;
  8932. font-size:11px;
  8933. color:#AAAAAA;
  8934. }
  8935. #u85930.disabled {
  8936. }
  8937. .u85930_input_option {
  8938. font-size:11px;
  8939. }
  8940. #u85931 {
  8941. border-width:0px;
  8942. position:absolute;
  8943. left:0px;
  8944. top:0px;
  8945. width:0px;
  8946. height:0px;
  8947. }
  8948. #u85932_div {
  8949. border-width:0px;
  8950. position:absolute;
  8951. left:0px;
  8952. top:0px;
  8953. width:140px;
  8954. height:30px;
  8955. background:inherit;
  8956. background-color:rgba(255, 255, 255, 1);
  8957. box-sizing:border-box;
  8958. border-width:1px;
  8959. border-style:solid;
  8960. border-color:rgba(201, 201, 201, 1);
  8961. border-radius:4px;
  8962. -moz-box-shadow:none;
  8963. -webkit-box-shadow:none;
  8964. box-shadow:none;
  8965. font-family:'Microsoft YaHei', sans-serif;
  8966. font-weight:400;
  8967. font-style:normal;
  8968. font-size:14px;
  8969. color:#CCCCCC;
  8970. text-align:left;
  8971. }
  8972. #u85932 {
  8973. border-width:0px;
  8974. position:absolute;
  8975. left:801px;
  8976. top:111px;
  8977. width:140px;
  8978. height:30px;
  8979. display:flex;
  8980. font-family:'Microsoft YaHei', sans-serif;
  8981. font-weight:400;
  8982. font-style:normal;
  8983. font-size:14px;
  8984. color:#CCCCCC;
  8985. text-align:left;
  8986. }
  8987. #u85932 .text {
  8988. position:absolute;
  8989. align-self:center;
  8990. padding:2px 8px 2px 8px;
  8991. box-sizing:border-box;
  8992. width:100%;
  8993. }
  8994. #u85932_text {
  8995. border-width:0px;
  8996. word-wrap:break-word;
  8997. text-transform:none;
  8998. visibility:hidden;
  8999. }
  9000. #u85933_input {
  9001. position:absolute;
  9002. left:0px;
  9003. top:0px;
  9004. width:127px;
  9005. height:25px;
  9006. padding:2px 2px 2px 2px;
  9007. font-family:'Microsoft YaHei', sans-serif;
  9008. font-weight:400;
  9009. font-style:normal;
  9010. font-size:10px;
  9011. letter-spacing:normal;
  9012. color:#000000;
  9013. vertical-align:none;
  9014. text-align:left;
  9015. text-transform:none;
  9016. background-color:transparent;
  9017. border-color:transparent;
  9018. }
  9019. #u85933_input.disabled {
  9020. position:absolute;
  9021. left:0px;
  9022. top:0px;
  9023. width:127px;
  9024. height:25px;
  9025. padding:2px 2px 2px 2px;
  9026. font-family:'Microsoft YaHei', sans-serif;
  9027. font-weight:400;
  9028. font-style:normal;
  9029. font-size:10px;
  9030. letter-spacing:normal;
  9031. color:#000000;
  9032. vertical-align:none;
  9033. text-align:left;
  9034. text-transform:none;
  9035. background-color:transparent;
  9036. border-color:transparent;
  9037. }
  9038. #u85933_div {
  9039. border-width:0px;
  9040. position:absolute;
  9041. left:0px;
  9042. top:0px;
  9043. width:127px;
  9044. height:25px;
  9045. background:inherit;
  9046. background-color:rgba(255, 255, 255, 1);
  9047. border:none;
  9048. border-radius:0px;
  9049. -moz-box-shadow:none;
  9050. -webkit-box-shadow:none;
  9051. box-shadow:none;
  9052. font-family:'Microsoft YaHei', sans-serif;
  9053. font-weight:400;
  9054. font-style:normal;
  9055. font-size:10px;
  9056. }
  9057. #u85933 {
  9058. border-width:0px;
  9059. position:absolute;
  9060. left:809px;
  9061. top:112px;
  9062. width:127px;
  9063. height:25px;
  9064. display:flex;
  9065. font-family:'Microsoft YaHei', sans-serif;
  9066. font-weight:400;
  9067. font-style:normal;
  9068. font-size:10px;
  9069. }
  9070. #u85933 .text {
  9071. position:absolute;
  9072. align-self:center;
  9073. padding:2px 2px 2px 2px;
  9074. box-sizing:border-box;
  9075. width:100%;
  9076. }
  9077. #u85933_div.disabled {
  9078. border-width:0px;
  9079. position:absolute;
  9080. left:0px;
  9081. top:0px;
  9082. width:127px;
  9083. height:25px;
  9084. background:inherit;
  9085. background-color:rgba(240, 240, 240, 1);
  9086. border:none;
  9087. border-radius:0px;
  9088. -moz-box-shadow:none;
  9089. -webkit-box-shadow:none;
  9090. box-shadow:none;
  9091. font-family:'Microsoft YaHei', sans-serif;
  9092. font-weight:400;
  9093. font-style:normal;
  9094. font-size:10px;
  9095. }
  9096. #u85933.disabled {
  9097. }
  9098. #u85934 {
  9099. border-width:0px;
  9100. position:absolute;
  9101. left:0px;
  9102. top:0px;
  9103. width:0px;
  9104. height:0px;
  9105. }
  9106. #u85935_div {
  9107. border-width:0px;
  9108. position:absolute;
  9109. left:0px;
  9110. top:0px;
  9111. width:140px;
  9112. height:30px;
  9113. background:inherit;
  9114. background-color:rgba(255, 255, 255, 1);
  9115. box-sizing:border-box;
  9116. border-width:1px;
  9117. border-style:solid;
  9118. border-color:rgba(215, 215, 215, 1);
  9119. border-radius:4px;
  9120. -moz-box-shadow:none;
  9121. -webkit-box-shadow:none;
  9122. box-shadow:none;
  9123. font-size:11px;
  9124. }
  9125. #u85935 {
  9126. border-width:0px;
  9127. position:absolute;
  9128. left:350px;
  9129. top:111px;
  9130. width:140px;
  9131. height:30px;
  9132. display:flex;
  9133. font-size:11px;
  9134. }
  9135. #u85935 .text {
  9136. position:absolute;
  9137. align-self:center;
  9138. padding:2px 2px 2px 2px;
  9139. box-sizing:border-box;
  9140. width:100%;
  9141. }
  9142. #u85935_text {
  9143. border-width:0px;
  9144. word-wrap:break-word;
  9145. text-transform:none;
  9146. visibility:hidden;
  9147. }
  9148. #u85936_input {
  9149. position:absolute;
  9150. left:0px;
  9151. top:0px;
  9152. width:120px;
  9153. height:23px;
  9154. padding:2px 2px 2px 2px;
  9155. font-family:'ArialMT', 'Arial', sans-serif;
  9156. font-weight:400;
  9157. font-style:normal;
  9158. font-size:11px;
  9159. letter-spacing:normal;
  9160. color:#AAAAAA;
  9161. vertical-align:none;
  9162. text-align:left;
  9163. text-transform:none;
  9164. background-color:transparent;
  9165. border-color:transparent;
  9166. }
  9167. #u85936_input.disabled {
  9168. position:absolute;
  9169. left:0px;
  9170. top:0px;
  9171. width:120px;
  9172. height:23px;
  9173. padding:2px 2px 2px 2px;
  9174. font-family:'ArialMT', 'Arial', sans-serif;
  9175. font-weight:400;
  9176. font-style:normal;
  9177. font-size:11px;
  9178. letter-spacing:normal;
  9179. color:#AAAAAA;
  9180. vertical-align:none;
  9181. text-align:left;
  9182. text-transform:none;
  9183. background-color:transparent;
  9184. border-color:transparent;
  9185. }
  9186. #u85936_div {
  9187. border-width:0px;
  9188. position:absolute;
  9189. left:0px;
  9190. top:0px;
  9191. width:120px;
  9192. height:23px;
  9193. background:inherit;
  9194. background-color:rgba(255, 255, 255, 1);
  9195. border:none;
  9196. border-radius:0px;
  9197. -moz-box-shadow:none;
  9198. -webkit-box-shadow:none;
  9199. box-shadow:none;
  9200. font-size:11px;
  9201. color:#AAAAAA;
  9202. }
  9203. #u85936 {
  9204. border-width:0px;
  9205. position:absolute;
  9206. left:357px;
  9207. top:113px;
  9208. width:120px;
  9209. height:23px;
  9210. display:flex;
  9211. font-size:11px;
  9212. color:#AAAAAA;
  9213. }
  9214. #u85936 .text {
  9215. position:absolute;
  9216. align-self:flex-start;
  9217. padding:2px 2px 2px 2px;
  9218. box-sizing:border-box;
  9219. width:100%;
  9220. }
  9221. #u85936_div.disabled {
  9222. border-width:0px;
  9223. position:absolute;
  9224. left:0px;
  9225. top:0px;
  9226. width:120px;
  9227. height:23px;
  9228. background:inherit;
  9229. background-color:rgba(240, 240, 240, 1);
  9230. border:none;
  9231. border-radius:0px;
  9232. -moz-box-shadow:none;
  9233. -webkit-box-shadow:none;
  9234. box-shadow:none;
  9235. font-size:11px;
  9236. color:#AAAAAA;
  9237. }
  9238. #u85936.disabled {
  9239. }
  9240. .u85936_input_option {
  9241. font-size:11px;
  9242. }