styles.css 152 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660
  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. #u127048_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. #u127048 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u127048 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u127048_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u127049_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. #u127049 {
  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. #u127049 .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. #u127049_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u127050_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. #u127050 {
  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. #u127050 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u127050_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u127051 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u127052_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u127052 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u127052 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u127052_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u127053_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. #u127053 {
  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. #u127053 .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. #u127053_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u127054_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. #u127054 {
  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. #u127054 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u127054_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u127055 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u127056_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. #u127056_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. #u127056_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. #u127056 {
  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. #u127056 .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. #u127056_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. #u127056.disabled {
  356. }
  357. .u127056_input_option {
  358. font-size:14px;
  359. }
  360. #u127057_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u127057 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u127057 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u127057_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u127058_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. #u127058 {
  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. #u127058 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u127058_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u127059_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. #u127059 {
  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. #u127059 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u127059_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u127060 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u127061_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. #u127061 {
  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. #u127061 .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. #u127061_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u127062_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u127062 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u127062 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u127062_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u127063 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u127064_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. #u127064 {
  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. #u127064 .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. #u127064_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u127065_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u127065 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u127065 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u127065_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u127066 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u127067_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. #u127067 {
  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. #u127067 .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. #u127067_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u127068_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u127068 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u127068 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u127068_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u127069 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u127070_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. #u127070 {
  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. #u127070 .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. #u127070_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u127071_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u127071 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u127071 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u127071_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u127072 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u127073_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. #u127073 {
  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. #u127073 .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. #u127073_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u127074_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u127074 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u127074 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u127074_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u127075 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u127076_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. #u127076 {
  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. #u127076 .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. #u127076_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u127077_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u127077 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u127077 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u127077_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u127078 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u127079_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. #u127079 {
  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. #u127079 .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. #u127079_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u127080_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u127080 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u127080 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u127080_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u127081 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u127082_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. #u127082 {
  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. #u127082 .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. #u127082_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u127083_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u127083 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u127083 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u127083_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u127084 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u127085_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. #u127085 {
  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. #u127085 .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. #u127085_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u127086_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u127086 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u127086 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u127086_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u127087 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u127088_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. #u127088 {
  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. #u127088 .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. #u127088_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u127089_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u127089 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u127089 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u127089_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u127090_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. #u127090 {
  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. #u127090 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u127090_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u127091_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u127091 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u127091 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u127091_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u127092_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. #u127092 {
  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. #u127092 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u127092_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u127093_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u127093 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u127093 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u127093_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u127094 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u127095_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. #u127095 {
  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. #u127095 .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. #u127095_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u127096_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u127096 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u127096 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u127096_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u127097 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u127098_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. #u127098 {
  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. #u127098 .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. #u127098_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u127099_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u127099 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u127099 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u127099_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u127100_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(0, 0, 0, 0.349019607843137);
  1650. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1651. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1652. }
  1653. #u127100 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:331px;
  1657. top:50px;
  1658. width:1260px;
  1659. height:1191px;
  1660. display:flex;
  1661. }
  1662. #u127100 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u127100_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u127101_div {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:73px;
  1681. height:25px;
  1682. background:inherit;
  1683. background-color:rgba(255, 255, 255, 0);
  1684. border:none;
  1685. border-radius:0px;
  1686. -moz-box-shadow:none;
  1687. -webkit-box-shadow:none;
  1688. box-shadow:none;
  1689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1690. font-weight:400;
  1691. font-style:normal;
  1692. font-size:18px;
  1693. }
  1694. #u127101 {
  1695. border-width:0px;
  1696. position:absolute;
  1697. left:351px;
  1698. top:71px;
  1699. width:73px;
  1700. height:25px;
  1701. display:flex;
  1702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1703. font-weight:400;
  1704. font-style:normal;
  1705. font-size:18px;
  1706. }
  1707. #u127101 .text {
  1708. position:absolute;
  1709. align-self:flex-start;
  1710. padding:0px 0px 0px 0px;
  1711. box-sizing:border-box;
  1712. width:100%;
  1713. }
  1714. #u127101_text {
  1715. border-width:0px;
  1716. white-space:nowrap;
  1717. text-transform:none;
  1718. }
  1719. #u127102 {
  1720. border-width:0px;
  1721. position:absolute;
  1722. left:351px;
  1723. top:213px;
  1724. width:1227px;
  1725. height:293px;
  1726. }
  1727. #u127103_img {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:0px;
  1731. top:0px;
  1732. width:74px;
  1733. height:34px;
  1734. }
  1735. #u127103 {
  1736. border-width:0px;
  1737. position:absolute;
  1738. left:0px;
  1739. top:0px;
  1740. width:74px;
  1741. height:34px;
  1742. display:flex;
  1743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1744. font-weight:400;
  1745. font-style:normal;
  1746. font-size:14px;
  1747. color:#FFFFFF;
  1748. text-align:left;
  1749. line-height:30px;
  1750. }
  1751. #u127103 .text {
  1752. position:absolute;
  1753. align-self:center;
  1754. padding:2px 10px 2px 10px;
  1755. box-sizing:border-box;
  1756. width:100%;
  1757. }
  1758. #u127103_text {
  1759. border-width:0px;
  1760. word-wrap:break-word;
  1761. text-transform:none;
  1762. }
  1763. #u127104_img {
  1764. border-width:0px;
  1765. position:absolute;
  1766. left:0px;
  1767. top:0px;
  1768. width:74px;
  1769. height:34px;
  1770. }
  1771. #u127104 {
  1772. border-width:0px;
  1773. position:absolute;
  1774. left:74px;
  1775. top:0px;
  1776. width:74px;
  1777. height:34px;
  1778. display:flex;
  1779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1780. font-weight:400;
  1781. font-style:normal;
  1782. font-size:14px;
  1783. color:#FFFFFF;
  1784. text-align:left;
  1785. line-height:30px;
  1786. }
  1787. #u127104 .text {
  1788. position:absolute;
  1789. align-self:center;
  1790. padding:2px 10px 2px 10px;
  1791. box-sizing:border-box;
  1792. width:100%;
  1793. }
  1794. #u127104_text {
  1795. border-width:0px;
  1796. word-wrap:break-word;
  1797. text-transform:none;
  1798. }
  1799. #u127105_img {
  1800. border-width:0px;
  1801. position:absolute;
  1802. left:0px;
  1803. top:0px;
  1804. width:111px;
  1805. height:34px;
  1806. }
  1807. #u127105 {
  1808. border-width:0px;
  1809. position:absolute;
  1810. left:148px;
  1811. top:0px;
  1812. width:111px;
  1813. height:34px;
  1814. display:flex;
  1815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1816. font-weight:400;
  1817. font-style:normal;
  1818. font-size:14px;
  1819. color:#FFFFFF;
  1820. text-align:left;
  1821. line-height:30px;
  1822. }
  1823. #u127105 .text {
  1824. position:absolute;
  1825. align-self:center;
  1826. padding:2px 10px 2px 10px;
  1827. box-sizing:border-box;
  1828. width:100%;
  1829. }
  1830. #u127105_text {
  1831. border-width:0px;
  1832. word-wrap:break-word;
  1833. text-transform:none;
  1834. }
  1835. #u127106_img {
  1836. border-width:0px;
  1837. position:absolute;
  1838. left:0px;
  1839. top:0px;
  1840. width:93px;
  1841. height:34px;
  1842. }
  1843. #u127106 {
  1844. border-width:0px;
  1845. position:absolute;
  1846. left:259px;
  1847. top:0px;
  1848. width:93px;
  1849. height:34px;
  1850. display:flex;
  1851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1852. font-weight:400;
  1853. font-style:normal;
  1854. font-size:14px;
  1855. color:#FFFFFF;
  1856. text-align:left;
  1857. line-height:30px;
  1858. }
  1859. #u127106 .text {
  1860. position:absolute;
  1861. align-self:center;
  1862. padding:2px 10px 2px 10px;
  1863. box-sizing:border-box;
  1864. width:100%;
  1865. }
  1866. #u127106_text {
  1867. border-width:0px;
  1868. word-wrap:break-word;
  1869. text-transform:none;
  1870. }
  1871. #u127107_img {
  1872. border-width:0px;
  1873. position:absolute;
  1874. left:0px;
  1875. top:0px;
  1876. width:93px;
  1877. height:34px;
  1878. }
  1879. #u127107 {
  1880. border-width:0px;
  1881. position:absolute;
  1882. left:352px;
  1883. top:0px;
  1884. width:93px;
  1885. height:34px;
  1886. display:flex;
  1887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1888. font-weight:400;
  1889. font-style:normal;
  1890. font-size:14px;
  1891. color:#FFFFFF;
  1892. text-align:left;
  1893. line-height:30px;
  1894. }
  1895. #u127107 .text {
  1896. position:absolute;
  1897. align-self:center;
  1898. padding:2px 10px 2px 10px;
  1899. box-sizing:border-box;
  1900. width:100%;
  1901. }
  1902. #u127107_text {
  1903. border-width:0px;
  1904. word-wrap:break-word;
  1905. text-transform:none;
  1906. }
  1907. #u127108_img {
  1908. border-width:0px;
  1909. position:absolute;
  1910. left:0px;
  1911. top:0px;
  1912. width:93px;
  1913. height:34px;
  1914. }
  1915. #u127108 {
  1916. border-width:0px;
  1917. position:absolute;
  1918. left:445px;
  1919. top:0px;
  1920. width:93px;
  1921. height:34px;
  1922. display:flex;
  1923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1924. font-weight:400;
  1925. font-style:normal;
  1926. font-size:14px;
  1927. color:#FFFFFF;
  1928. text-align:left;
  1929. line-height:30px;
  1930. }
  1931. #u127108 .text {
  1932. position:absolute;
  1933. align-self:center;
  1934. padding:2px 10px 2px 10px;
  1935. box-sizing:border-box;
  1936. width:100%;
  1937. }
  1938. #u127108_text {
  1939. border-width:0px;
  1940. word-wrap:break-word;
  1941. text-transform:none;
  1942. }
  1943. #u127109_img {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:0px;
  1947. top:0px;
  1948. width:142px;
  1949. height:34px;
  1950. }
  1951. #u127109 {
  1952. border-width:0px;
  1953. position:absolute;
  1954. left:538px;
  1955. top:0px;
  1956. width:142px;
  1957. height:34px;
  1958. display:flex;
  1959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1960. font-weight:400;
  1961. font-style:normal;
  1962. font-size:14px;
  1963. color:#FFFFFF;
  1964. text-align:left;
  1965. line-height:30px;
  1966. }
  1967. #u127109 .text {
  1968. position:absolute;
  1969. align-self:center;
  1970. padding:2px 10px 2px 10px;
  1971. box-sizing:border-box;
  1972. width:100%;
  1973. }
  1974. #u127109_text {
  1975. border-width:0px;
  1976. word-wrap:break-word;
  1977. text-transform:none;
  1978. }
  1979. #u127110_img {
  1980. border-width:0px;
  1981. position:absolute;
  1982. left:0px;
  1983. top:0px;
  1984. width:92px;
  1985. height:34px;
  1986. }
  1987. #u127110 {
  1988. border-width:0px;
  1989. position:absolute;
  1990. left:680px;
  1991. top:0px;
  1992. width:92px;
  1993. height:34px;
  1994. display:flex;
  1995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1996. font-weight:400;
  1997. font-style:normal;
  1998. font-size:14px;
  1999. color:#FFFFFF;
  2000. text-align:left;
  2001. line-height:30px;
  2002. }
  2003. #u127110 .text {
  2004. position:absolute;
  2005. align-self:center;
  2006. padding:2px 10px 2px 10px;
  2007. box-sizing:border-box;
  2008. width:100%;
  2009. }
  2010. #u127110_text {
  2011. border-width:0px;
  2012. word-wrap:break-word;
  2013. text-transform:none;
  2014. }
  2015. #u127111_img {
  2016. border-width:0px;
  2017. position:absolute;
  2018. left:0px;
  2019. top:0px;
  2020. width:102px;
  2021. height:34px;
  2022. }
  2023. #u127111 {
  2024. border-width:0px;
  2025. position:absolute;
  2026. left:772px;
  2027. top:0px;
  2028. width:102px;
  2029. height:34px;
  2030. display:flex;
  2031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2032. font-weight:400;
  2033. font-style:normal;
  2034. font-size:14px;
  2035. color:#FFFFFF;
  2036. text-align:left;
  2037. line-height:30px;
  2038. }
  2039. #u127111 .text {
  2040. position:absolute;
  2041. align-self:center;
  2042. padding:2px 10px 2px 10px;
  2043. box-sizing:border-box;
  2044. width:100%;
  2045. }
  2046. #u127111_text {
  2047. border-width:0px;
  2048. word-wrap:break-word;
  2049. text-transform:none;
  2050. }
  2051. #u127112_img {
  2052. border-width:0px;
  2053. position:absolute;
  2054. left:0px;
  2055. top:0px;
  2056. width:93px;
  2057. height:34px;
  2058. }
  2059. #u127112 {
  2060. border-width:0px;
  2061. position:absolute;
  2062. left:874px;
  2063. top:0px;
  2064. width:93px;
  2065. height:34px;
  2066. display:flex;
  2067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2068. font-weight:400;
  2069. font-style:normal;
  2070. font-size:14px;
  2071. color:#FFFFFF;
  2072. text-align:left;
  2073. line-height:30px;
  2074. }
  2075. #u127112 .text {
  2076. position:absolute;
  2077. align-self:center;
  2078. padding:2px 10px 2px 10px;
  2079. box-sizing:border-box;
  2080. width:100%;
  2081. }
  2082. #u127112_text {
  2083. border-width:0px;
  2084. word-wrap:break-word;
  2085. text-transform:none;
  2086. }
  2087. #u127113_img {
  2088. border-width:0px;
  2089. position:absolute;
  2090. left:0px;
  2091. top:0px;
  2092. width:93px;
  2093. height:34px;
  2094. }
  2095. #u127113 {
  2096. border-width:0px;
  2097. position:absolute;
  2098. left:967px;
  2099. top:0px;
  2100. width:93px;
  2101. height:34px;
  2102. display:flex;
  2103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2104. font-weight:400;
  2105. font-style:normal;
  2106. font-size:14px;
  2107. color:#FFFFFF;
  2108. text-align:left;
  2109. line-height:30px;
  2110. }
  2111. #u127113 .text {
  2112. position:absolute;
  2113. align-self:center;
  2114. padding:2px 10px 2px 10px;
  2115. box-sizing:border-box;
  2116. width:100%;
  2117. }
  2118. #u127113_text {
  2119. border-width:0px;
  2120. word-wrap:break-word;
  2121. text-transform:none;
  2122. }
  2123. #u127114_img {
  2124. border-width:0px;
  2125. position:absolute;
  2126. left:0px;
  2127. top:0px;
  2128. width:167px;
  2129. height:34px;
  2130. }
  2131. #u127114 {
  2132. border-width:0px;
  2133. position:absolute;
  2134. left:1060px;
  2135. top:0px;
  2136. width:167px;
  2137. height:34px;
  2138. display:flex;
  2139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2140. font-weight:400;
  2141. font-style:normal;
  2142. font-size:14px;
  2143. color:#FFFFFF;
  2144. text-align:left;
  2145. line-height:30px;
  2146. }
  2147. #u127114 .text {
  2148. position:absolute;
  2149. align-self:center;
  2150. padding:2px 10px 2px 10px;
  2151. box-sizing:border-box;
  2152. width:100%;
  2153. }
  2154. #u127114_text {
  2155. border-width:0px;
  2156. word-wrap:break-word;
  2157. text-transform:none;
  2158. }
  2159. #u127115_img {
  2160. border-width:0px;
  2161. position:absolute;
  2162. left:0px;
  2163. top:0px;
  2164. width:74px;
  2165. height:37px;
  2166. }
  2167. #u127115 {
  2168. border-width:0px;
  2169. position:absolute;
  2170. left:0px;
  2171. top:34px;
  2172. width:74px;
  2173. height:37px;
  2174. display:flex;
  2175. font-size:14px;
  2176. text-align:left;
  2177. }
  2178. #u127115 .text {
  2179. position:absolute;
  2180. align-self:center;
  2181. padding:2px 10px 2px 10px;
  2182. box-sizing:border-box;
  2183. width:100%;
  2184. }
  2185. #u127115_text {
  2186. border-width:0px;
  2187. word-wrap:break-word;
  2188. text-transform:none;
  2189. visibility:hidden;
  2190. }
  2191. #u127116_img {
  2192. border-width:0px;
  2193. position:absolute;
  2194. left:0px;
  2195. top:0px;
  2196. width:74px;
  2197. height:37px;
  2198. }
  2199. #u127116 {
  2200. border-width:0px;
  2201. position:absolute;
  2202. left:74px;
  2203. top:34px;
  2204. width:74px;
  2205. height:37px;
  2206. display:flex;
  2207. font-size:14px;
  2208. text-align:left;
  2209. }
  2210. #u127116 .text {
  2211. position:absolute;
  2212. align-self:center;
  2213. padding:2px 10px 2px 10px;
  2214. box-sizing:border-box;
  2215. width:100%;
  2216. }
  2217. #u127116_text {
  2218. border-width:0px;
  2219. word-wrap:break-word;
  2220. text-transform:none;
  2221. visibility:hidden;
  2222. }
  2223. #u127117_img {
  2224. border-width:0px;
  2225. position:absolute;
  2226. left:0px;
  2227. top:0px;
  2228. width:111px;
  2229. height:37px;
  2230. }
  2231. #u127117 {
  2232. border-width:0px;
  2233. position:absolute;
  2234. left:148px;
  2235. top:34px;
  2236. width:111px;
  2237. height:37px;
  2238. display:flex;
  2239. font-size:14px;
  2240. text-align:left;
  2241. }
  2242. #u127117 .text {
  2243. position:absolute;
  2244. align-self:center;
  2245. padding:2px 10px 2px 10px;
  2246. box-sizing:border-box;
  2247. width:100%;
  2248. }
  2249. #u127117_text {
  2250. border-width:0px;
  2251. word-wrap:break-word;
  2252. text-transform:none;
  2253. }
  2254. #u127118_img {
  2255. border-width:0px;
  2256. position:absolute;
  2257. left:0px;
  2258. top:0px;
  2259. width:93px;
  2260. height:37px;
  2261. }
  2262. #u127118 {
  2263. border-width:0px;
  2264. position:absolute;
  2265. left:259px;
  2266. top:34px;
  2267. width:93px;
  2268. height:37px;
  2269. display:flex;
  2270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2271. font-weight:400;
  2272. font-style:normal;
  2273. font-size:14px;
  2274. text-align:left;
  2275. }
  2276. #u127118 .text {
  2277. position:absolute;
  2278. align-self:center;
  2279. padding:2px 10px 2px 10px;
  2280. box-sizing:border-box;
  2281. width:100%;
  2282. }
  2283. #u127118_text {
  2284. border-width:0px;
  2285. word-wrap:break-word;
  2286. text-transform:none;
  2287. }
  2288. #u127119_img {
  2289. border-width:0px;
  2290. position:absolute;
  2291. left:0px;
  2292. top:0px;
  2293. width:93px;
  2294. height:37px;
  2295. }
  2296. #u127119 {
  2297. border-width:0px;
  2298. position:absolute;
  2299. left:352px;
  2300. top:34px;
  2301. width:93px;
  2302. height:37px;
  2303. display:flex;
  2304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2305. font-weight:400;
  2306. font-style:normal;
  2307. font-size:14px;
  2308. text-align:left;
  2309. }
  2310. #u127119 .text {
  2311. position:absolute;
  2312. align-self:center;
  2313. padding:2px 10px 2px 10px;
  2314. box-sizing:border-box;
  2315. width:100%;
  2316. }
  2317. #u127119_text {
  2318. border-width:0px;
  2319. word-wrap:break-word;
  2320. text-transform:none;
  2321. visibility:hidden;
  2322. }
  2323. #u127120_img {
  2324. border-width:0px;
  2325. position:absolute;
  2326. left:0px;
  2327. top:0px;
  2328. width:93px;
  2329. height:37px;
  2330. }
  2331. #u127120 {
  2332. border-width:0px;
  2333. position:absolute;
  2334. left:445px;
  2335. top:34px;
  2336. width:93px;
  2337. height:37px;
  2338. display:flex;
  2339. font-size:14px;
  2340. text-align:left;
  2341. }
  2342. #u127120 .text {
  2343. position:absolute;
  2344. align-self:center;
  2345. padding:2px 10px 2px 10px;
  2346. box-sizing:border-box;
  2347. width:100%;
  2348. }
  2349. #u127120_text {
  2350. border-width:0px;
  2351. word-wrap:break-word;
  2352. text-transform:none;
  2353. visibility:hidden;
  2354. }
  2355. #u127121_img {
  2356. border-width:0px;
  2357. position:absolute;
  2358. left:0px;
  2359. top:0px;
  2360. width:142px;
  2361. height:37px;
  2362. }
  2363. #u127121 {
  2364. border-width:0px;
  2365. position:absolute;
  2366. left:538px;
  2367. top:34px;
  2368. width:142px;
  2369. height:37px;
  2370. display:flex;
  2371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2372. font-weight:400;
  2373. font-style:normal;
  2374. text-align:left;
  2375. }
  2376. #u127121 .text {
  2377. position:absolute;
  2378. align-self:center;
  2379. padding:2px 10px 2px 10px;
  2380. box-sizing:border-box;
  2381. width:100%;
  2382. }
  2383. #u127121_text {
  2384. border-width:0px;
  2385. word-wrap:break-word;
  2386. text-transform:none;
  2387. }
  2388. #u127122_img {
  2389. border-width:0px;
  2390. position:absolute;
  2391. left:0px;
  2392. top:0px;
  2393. width:92px;
  2394. height:37px;
  2395. }
  2396. #u127122 {
  2397. border-width:0px;
  2398. position:absolute;
  2399. left:680px;
  2400. top:34px;
  2401. width:92px;
  2402. height:37px;
  2403. display:flex;
  2404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2405. font-weight:400;
  2406. font-style:normal;
  2407. text-align:left;
  2408. }
  2409. #u127122 .text {
  2410. position:absolute;
  2411. align-self:center;
  2412. padding:2px 10px 2px 10px;
  2413. box-sizing:border-box;
  2414. width:100%;
  2415. }
  2416. #u127122_text {
  2417. border-width:0px;
  2418. word-wrap:break-word;
  2419. text-transform:none;
  2420. visibility:hidden;
  2421. }
  2422. #u127123_img {
  2423. border-width:0px;
  2424. position:absolute;
  2425. left:0px;
  2426. top:0px;
  2427. width:102px;
  2428. height:37px;
  2429. }
  2430. #u127123 {
  2431. border-width:0px;
  2432. position:absolute;
  2433. left:772px;
  2434. top:34px;
  2435. width:102px;
  2436. height:37px;
  2437. display:flex;
  2438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2439. font-weight:400;
  2440. font-style:normal;
  2441. text-align:left;
  2442. }
  2443. #u127123 .text {
  2444. position:absolute;
  2445. align-self:center;
  2446. padding:2px 10px 2px 10px;
  2447. box-sizing:border-box;
  2448. width:100%;
  2449. }
  2450. #u127123_text {
  2451. border-width:0px;
  2452. word-wrap:break-word;
  2453. text-transform:none;
  2454. visibility:hidden;
  2455. }
  2456. #u127124_img {
  2457. border-width:0px;
  2458. position:absolute;
  2459. left:0px;
  2460. top:0px;
  2461. width:93px;
  2462. height:37px;
  2463. }
  2464. #u127124 {
  2465. border-width:0px;
  2466. position:absolute;
  2467. left:874px;
  2468. top:34px;
  2469. width:93px;
  2470. height:37px;
  2471. display:flex;
  2472. font-size:14px;
  2473. text-align:left;
  2474. }
  2475. #u127124 .text {
  2476. position:absolute;
  2477. align-self:center;
  2478. padding:2px 10px 2px 10px;
  2479. box-sizing:border-box;
  2480. width:100%;
  2481. }
  2482. #u127124_text {
  2483. border-width:0px;
  2484. word-wrap:break-word;
  2485. text-transform:none;
  2486. visibility:hidden;
  2487. }
  2488. #u127125_img {
  2489. border-width:0px;
  2490. position:absolute;
  2491. left:0px;
  2492. top:0px;
  2493. width:93px;
  2494. height:37px;
  2495. }
  2496. #u127125 {
  2497. border-width:0px;
  2498. position:absolute;
  2499. left:967px;
  2500. top:34px;
  2501. width:93px;
  2502. height:37px;
  2503. display:flex;
  2504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2505. font-weight:400;
  2506. font-style:normal;
  2507. font-size:14px;
  2508. text-align:left;
  2509. }
  2510. #u127125 .text {
  2511. position:absolute;
  2512. align-self:center;
  2513. padding:2px 10px 2px 10px;
  2514. box-sizing:border-box;
  2515. width:100%;
  2516. }
  2517. #u127125_text {
  2518. border-width:0px;
  2519. word-wrap:break-word;
  2520. text-transform:none;
  2521. visibility:hidden;
  2522. }
  2523. #u127126_img {
  2524. border-width:0px;
  2525. position:absolute;
  2526. left:0px;
  2527. top:0px;
  2528. width:167px;
  2529. height:37px;
  2530. }
  2531. #u127126 {
  2532. border-width:0px;
  2533. position:absolute;
  2534. left:1060px;
  2535. top:34px;
  2536. width:167px;
  2537. height:37px;
  2538. display:flex;
  2539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2540. font-weight:400;
  2541. font-style:normal;
  2542. font-size:14px;
  2543. text-align:left;
  2544. }
  2545. #u127126 .text {
  2546. position:absolute;
  2547. align-self:center;
  2548. padding:2px 10px 2px 10px;
  2549. box-sizing:border-box;
  2550. width:100%;
  2551. }
  2552. #u127126_text {
  2553. border-width:0px;
  2554. word-wrap:break-word;
  2555. text-transform:none;
  2556. }
  2557. #u127127_img {
  2558. border-width:0px;
  2559. position:absolute;
  2560. left:0px;
  2561. top:0px;
  2562. width:74px;
  2563. height:37px;
  2564. }
  2565. #u127127 {
  2566. border-width:0px;
  2567. position:absolute;
  2568. left:0px;
  2569. top:71px;
  2570. width:74px;
  2571. height:37px;
  2572. display:flex;
  2573. font-size:14px;
  2574. text-align:left;
  2575. }
  2576. #u127127 .text {
  2577. position:absolute;
  2578. align-self:center;
  2579. padding:2px 10px 2px 10px;
  2580. box-sizing:border-box;
  2581. width:100%;
  2582. }
  2583. #u127127_text {
  2584. border-width:0px;
  2585. word-wrap:break-word;
  2586. text-transform:none;
  2587. visibility:hidden;
  2588. }
  2589. #u127128_img {
  2590. border-width:0px;
  2591. position:absolute;
  2592. left:0px;
  2593. top:0px;
  2594. width:74px;
  2595. height:37px;
  2596. }
  2597. #u127128 {
  2598. border-width:0px;
  2599. position:absolute;
  2600. left:74px;
  2601. top:71px;
  2602. width:74px;
  2603. height:37px;
  2604. display:flex;
  2605. font-size:14px;
  2606. text-align:left;
  2607. }
  2608. #u127128 .text {
  2609. position:absolute;
  2610. align-self:center;
  2611. padding:2px 10px 2px 10px;
  2612. box-sizing:border-box;
  2613. width:100%;
  2614. }
  2615. #u127128_text {
  2616. border-width:0px;
  2617. word-wrap:break-word;
  2618. text-transform:none;
  2619. visibility:hidden;
  2620. }
  2621. #u127129_img {
  2622. border-width:0px;
  2623. position:absolute;
  2624. left:0px;
  2625. top:0px;
  2626. width:111px;
  2627. height:37px;
  2628. }
  2629. #u127129 {
  2630. border-width:0px;
  2631. position:absolute;
  2632. left:148px;
  2633. top:71px;
  2634. width:111px;
  2635. height:37px;
  2636. display:flex;
  2637. font-size:14px;
  2638. text-align:left;
  2639. }
  2640. #u127129 .text {
  2641. position:absolute;
  2642. align-self:center;
  2643. padding:2px 10px 2px 10px;
  2644. box-sizing:border-box;
  2645. width:100%;
  2646. }
  2647. #u127129_text {
  2648. border-width:0px;
  2649. word-wrap:break-word;
  2650. text-transform:none;
  2651. }
  2652. #u127130_img {
  2653. border-width:0px;
  2654. position:absolute;
  2655. left:0px;
  2656. top:0px;
  2657. width:93px;
  2658. height:37px;
  2659. }
  2660. #u127130 {
  2661. border-width:0px;
  2662. position:absolute;
  2663. left:259px;
  2664. top:71px;
  2665. width:93px;
  2666. height:37px;
  2667. display:flex;
  2668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2669. font-weight:400;
  2670. font-style:normal;
  2671. font-size:14px;
  2672. text-align:left;
  2673. }
  2674. #u127130 .text {
  2675. position:absolute;
  2676. align-self:center;
  2677. padding:2px 10px 2px 10px;
  2678. box-sizing:border-box;
  2679. width:100%;
  2680. }
  2681. #u127130_text {
  2682. border-width:0px;
  2683. word-wrap:break-word;
  2684. text-transform:none;
  2685. }
  2686. #u127131_img {
  2687. border-width:0px;
  2688. position:absolute;
  2689. left:0px;
  2690. top:0px;
  2691. width:93px;
  2692. height:37px;
  2693. }
  2694. #u127131 {
  2695. border-width:0px;
  2696. position:absolute;
  2697. left:352px;
  2698. top:71px;
  2699. width:93px;
  2700. height:37px;
  2701. display:flex;
  2702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2703. font-weight:400;
  2704. font-style:normal;
  2705. font-size:14px;
  2706. text-align:left;
  2707. }
  2708. #u127131 .text {
  2709. position:absolute;
  2710. align-self:center;
  2711. padding:2px 10px 2px 10px;
  2712. box-sizing:border-box;
  2713. width:100%;
  2714. }
  2715. #u127131_text {
  2716. border-width:0px;
  2717. word-wrap:break-word;
  2718. text-transform:none;
  2719. visibility:hidden;
  2720. }
  2721. #u127132_img {
  2722. border-width:0px;
  2723. position:absolute;
  2724. left:0px;
  2725. top:0px;
  2726. width:93px;
  2727. height:37px;
  2728. }
  2729. #u127132 {
  2730. border-width:0px;
  2731. position:absolute;
  2732. left:445px;
  2733. top:71px;
  2734. width:93px;
  2735. height:37px;
  2736. display:flex;
  2737. font-size:14px;
  2738. text-align:left;
  2739. }
  2740. #u127132 .text {
  2741. position:absolute;
  2742. align-self:center;
  2743. padding:2px 10px 2px 10px;
  2744. box-sizing:border-box;
  2745. width:100%;
  2746. }
  2747. #u127132_text {
  2748. border-width:0px;
  2749. word-wrap:break-word;
  2750. text-transform:none;
  2751. visibility:hidden;
  2752. }
  2753. #u127133_img {
  2754. border-width:0px;
  2755. position:absolute;
  2756. left:0px;
  2757. top:0px;
  2758. width:142px;
  2759. height:37px;
  2760. }
  2761. #u127133 {
  2762. border-width:0px;
  2763. position:absolute;
  2764. left:538px;
  2765. top:71px;
  2766. width:142px;
  2767. height:37px;
  2768. display:flex;
  2769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2770. font-weight:400;
  2771. font-style:normal;
  2772. text-align:left;
  2773. }
  2774. #u127133 .text {
  2775. position:absolute;
  2776. align-self:center;
  2777. padding:2px 10px 2px 10px;
  2778. box-sizing:border-box;
  2779. width:100%;
  2780. }
  2781. #u127133_text {
  2782. border-width:0px;
  2783. word-wrap:break-word;
  2784. text-transform:none;
  2785. }
  2786. #u127134_img {
  2787. border-width:0px;
  2788. position:absolute;
  2789. left:0px;
  2790. top:0px;
  2791. width:92px;
  2792. height:37px;
  2793. }
  2794. #u127134 {
  2795. border-width:0px;
  2796. position:absolute;
  2797. left:680px;
  2798. top:71px;
  2799. width:92px;
  2800. height:37px;
  2801. display:flex;
  2802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2803. font-weight:400;
  2804. font-style:normal;
  2805. text-align:left;
  2806. }
  2807. #u127134 .text {
  2808. position:absolute;
  2809. align-self:center;
  2810. padding:2px 10px 2px 10px;
  2811. box-sizing:border-box;
  2812. width:100%;
  2813. }
  2814. #u127134_text {
  2815. border-width:0px;
  2816. word-wrap:break-word;
  2817. text-transform:none;
  2818. visibility:hidden;
  2819. }
  2820. #u127135_img {
  2821. border-width:0px;
  2822. position:absolute;
  2823. left:0px;
  2824. top:0px;
  2825. width:102px;
  2826. height:37px;
  2827. }
  2828. #u127135 {
  2829. border-width:0px;
  2830. position:absolute;
  2831. left:772px;
  2832. top:71px;
  2833. width:102px;
  2834. height:37px;
  2835. display:flex;
  2836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2837. font-weight:400;
  2838. font-style:normal;
  2839. text-align:left;
  2840. }
  2841. #u127135 .text {
  2842. position:absolute;
  2843. align-self:center;
  2844. padding:2px 10px 2px 10px;
  2845. box-sizing:border-box;
  2846. width:100%;
  2847. }
  2848. #u127135_text {
  2849. border-width:0px;
  2850. word-wrap:break-word;
  2851. text-transform:none;
  2852. visibility:hidden;
  2853. }
  2854. #u127136_img {
  2855. border-width:0px;
  2856. position:absolute;
  2857. left:0px;
  2858. top:0px;
  2859. width:93px;
  2860. height:37px;
  2861. }
  2862. #u127136 {
  2863. border-width:0px;
  2864. position:absolute;
  2865. left:874px;
  2866. top:71px;
  2867. width:93px;
  2868. height:37px;
  2869. display:flex;
  2870. font-size:14px;
  2871. text-align:left;
  2872. }
  2873. #u127136 .text {
  2874. position:absolute;
  2875. align-self:center;
  2876. padding:2px 10px 2px 10px;
  2877. box-sizing:border-box;
  2878. width:100%;
  2879. }
  2880. #u127136_text {
  2881. border-width:0px;
  2882. word-wrap:break-word;
  2883. text-transform:none;
  2884. visibility:hidden;
  2885. }
  2886. #u127137_img {
  2887. border-width:0px;
  2888. position:absolute;
  2889. left:0px;
  2890. top:0px;
  2891. width:93px;
  2892. height:37px;
  2893. }
  2894. #u127137 {
  2895. border-width:0px;
  2896. position:absolute;
  2897. left:967px;
  2898. top:71px;
  2899. width:93px;
  2900. height:37px;
  2901. display:flex;
  2902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2903. font-weight:400;
  2904. font-style:normal;
  2905. font-size:14px;
  2906. text-align:left;
  2907. }
  2908. #u127137 .text {
  2909. position:absolute;
  2910. align-self:center;
  2911. padding:2px 10px 2px 10px;
  2912. box-sizing:border-box;
  2913. width:100%;
  2914. }
  2915. #u127137_text {
  2916. border-width:0px;
  2917. word-wrap:break-word;
  2918. text-transform:none;
  2919. visibility:hidden;
  2920. }
  2921. #u127138_img {
  2922. border-width:0px;
  2923. position:absolute;
  2924. left:0px;
  2925. top:0px;
  2926. width:167px;
  2927. height:37px;
  2928. }
  2929. #u127138 {
  2930. border-width:0px;
  2931. position:absolute;
  2932. left:1060px;
  2933. top:71px;
  2934. width:167px;
  2935. height:37px;
  2936. display:flex;
  2937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2938. font-weight:400;
  2939. font-style:normal;
  2940. font-size:14px;
  2941. text-align:left;
  2942. }
  2943. #u127138 .text {
  2944. position:absolute;
  2945. align-self:center;
  2946. padding:2px 10px 2px 10px;
  2947. box-sizing:border-box;
  2948. width:100%;
  2949. }
  2950. #u127138_text {
  2951. border-width:0px;
  2952. word-wrap:break-word;
  2953. text-transform:none;
  2954. }
  2955. #u127139_img {
  2956. border-width:0px;
  2957. position:absolute;
  2958. left:0px;
  2959. top:0px;
  2960. width:74px;
  2961. height:37px;
  2962. }
  2963. #u127139 {
  2964. border-width:0px;
  2965. position:absolute;
  2966. left:0px;
  2967. top:108px;
  2968. width:74px;
  2969. height:37px;
  2970. display:flex;
  2971. font-size:14px;
  2972. text-align:left;
  2973. }
  2974. #u127139 .text {
  2975. position:absolute;
  2976. align-self:center;
  2977. padding:2px 10px 2px 10px;
  2978. box-sizing:border-box;
  2979. width:100%;
  2980. }
  2981. #u127139_text {
  2982. border-width:0px;
  2983. word-wrap:break-word;
  2984. text-transform:none;
  2985. visibility:hidden;
  2986. }
  2987. #u127140_img {
  2988. border-width:0px;
  2989. position:absolute;
  2990. left:0px;
  2991. top:0px;
  2992. width:74px;
  2993. height:37px;
  2994. }
  2995. #u127140 {
  2996. border-width:0px;
  2997. position:absolute;
  2998. left:74px;
  2999. top:108px;
  3000. width:74px;
  3001. height:37px;
  3002. display:flex;
  3003. font-size:14px;
  3004. text-align:left;
  3005. }
  3006. #u127140 .text {
  3007. position:absolute;
  3008. align-self:center;
  3009. padding:2px 10px 2px 10px;
  3010. box-sizing:border-box;
  3011. width:100%;
  3012. }
  3013. #u127140_text {
  3014. border-width:0px;
  3015. word-wrap:break-word;
  3016. text-transform:none;
  3017. visibility:hidden;
  3018. }
  3019. #u127141_img {
  3020. border-width:0px;
  3021. position:absolute;
  3022. left:0px;
  3023. top:0px;
  3024. width:111px;
  3025. height:37px;
  3026. }
  3027. #u127141 {
  3028. border-width:0px;
  3029. position:absolute;
  3030. left:148px;
  3031. top:108px;
  3032. width:111px;
  3033. height:37px;
  3034. display:flex;
  3035. font-size:14px;
  3036. text-align:left;
  3037. }
  3038. #u127141 .text {
  3039. position:absolute;
  3040. align-self:center;
  3041. padding:2px 10px 2px 10px;
  3042. box-sizing:border-box;
  3043. width:100%;
  3044. }
  3045. #u127141_text {
  3046. border-width:0px;
  3047. word-wrap:break-word;
  3048. text-transform:none;
  3049. }
  3050. #u127142_img {
  3051. border-width:0px;
  3052. position:absolute;
  3053. left:0px;
  3054. top:0px;
  3055. width:93px;
  3056. height:37px;
  3057. }
  3058. #u127142 {
  3059. border-width:0px;
  3060. position:absolute;
  3061. left:259px;
  3062. top:108px;
  3063. width:93px;
  3064. height:37px;
  3065. display:flex;
  3066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3067. font-weight:400;
  3068. font-style:normal;
  3069. font-size:14px;
  3070. text-align:left;
  3071. }
  3072. #u127142 .text {
  3073. position:absolute;
  3074. align-self:center;
  3075. padding:2px 10px 2px 10px;
  3076. box-sizing:border-box;
  3077. width:100%;
  3078. }
  3079. #u127142_text {
  3080. border-width:0px;
  3081. word-wrap:break-word;
  3082. text-transform:none;
  3083. }
  3084. #u127143_img {
  3085. border-width:0px;
  3086. position:absolute;
  3087. left:0px;
  3088. top:0px;
  3089. width:93px;
  3090. height:37px;
  3091. }
  3092. #u127143 {
  3093. border-width:0px;
  3094. position:absolute;
  3095. left:352px;
  3096. top:108px;
  3097. width:93px;
  3098. height:37px;
  3099. display:flex;
  3100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3101. font-weight:400;
  3102. font-style:normal;
  3103. font-size:14px;
  3104. text-align:left;
  3105. }
  3106. #u127143 .text {
  3107. position:absolute;
  3108. align-self:center;
  3109. padding:2px 10px 2px 10px;
  3110. box-sizing:border-box;
  3111. width:100%;
  3112. }
  3113. #u127143_text {
  3114. border-width:0px;
  3115. word-wrap:break-word;
  3116. text-transform:none;
  3117. visibility:hidden;
  3118. }
  3119. #u127144_img {
  3120. border-width:0px;
  3121. position:absolute;
  3122. left:0px;
  3123. top:0px;
  3124. width:93px;
  3125. height:37px;
  3126. }
  3127. #u127144 {
  3128. border-width:0px;
  3129. position:absolute;
  3130. left:445px;
  3131. top:108px;
  3132. width:93px;
  3133. height:37px;
  3134. display:flex;
  3135. font-size:14px;
  3136. text-align:left;
  3137. }
  3138. #u127144 .text {
  3139. position:absolute;
  3140. align-self:center;
  3141. padding:2px 10px 2px 10px;
  3142. box-sizing:border-box;
  3143. width:100%;
  3144. }
  3145. #u127144_text {
  3146. border-width:0px;
  3147. word-wrap:break-word;
  3148. text-transform:none;
  3149. visibility:hidden;
  3150. }
  3151. #u127145_img {
  3152. border-width:0px;
  3153. position:absolute;
  3154. left:0px;
  3155. top:0px;
  3156. width:142px;
  3157. height:37px;
  3158. }
  3159. #u127145 {
  3160. border-width:0px;
  3161. position:absolute;
  3162. left:538px;
  3163. top:108px;
  3164. width:142px;
  3165. height:37px;
  3166. display:flex;
  3167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3168. font-weight:400;
  3169. font-style:normal;
  3170. text-align:left;
  3171. }
  3172. #u127145 .text {
  3173. position:absolute;
  3174. align-self:center;
  3175. padding:2px 10px 2px 10px;
  3176. box-sizing:border-box;
  3177. width:100%;
  3178. }
  3179. #u127145_text {
  3180. border-width:0px;
  3181. word-wrap:break-word;
  3182. text-transform:none;
  3183. }
  3184. #u127146_img {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:0px;
  3188. top:0px;
  3189. width:92px;
  3190. height:37px;
  3191. }
  3192. #u127146 {
  3193. border-width:0px;
  3194. position:absolute;
  3195. left:680px;
  3196. top:108px;
  3197. width:92px;
  3198. height:37px;
  3199. display:flex;
  3200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3201. font-weight:400;
  3202. font-style:normal;
  3203. text-align:left;
  3204. }
  3205. #u127146 .text {
  3206. position:absolute;
  3207. align-self:center;
  3208. padding:2px 10px 2px 10px;
  3209. box-sizing:border-box;
  3210. width:100%;
  3211. }
  3212. #u127146_text {
  3213. border-width:0px;
  3214. word-wrap:break-word;
  3215. text-transform:none;
  3216. visibility:hidden;
  3217. }
  3218. #u127147_img {
  3219. border-width:0px;
  3220. position:absolute;
  3221. left:0px;
  3222. top:0px;
  3223. width:102px;
  3224. height:37px;
  3225. }
  3226. #u127147 {
  3227. border-width:0px;
  3228. position:absolute;
  3229. left:772px;
  3230. top:108px;
  3231. width:102px;
  3232. height:37px;
  3233. display:flex;
  3234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3235. font-weight:400;
  3236. font-style:normal;
  3237. text-align:left;
  3238. }
  3239. #u127147 .text {
  3240. position:absolute;
  3241. align-self:center;
  3242. padding:2px 10px 2px 10px;
  3243. box-sizing:border-box;
  3244. width:100%;
  3245. }
  3246. #u127147_text {
  3247. border-width:0px;
  3248. word-wrap:break-word;
  3249. text-transform:none;
  3250. visibility:hidden;
  3251. }
  3252. #u127148_img {
  3253. border-width:0px;
  3254. position:absolute;
  3255. left:0px;
  3256. top:0px;
  3257. width:93px;
  3258. height:37px;
  3259. }
  3260. #u127148 {
  3261. border-width:0px;
  3262. position:absolute;
  3263. left:874px;
  3264. top:108px;
  3265. width:93px;
  3266. height:37px;
  3267. display:flex;
  3268. font-size:14px;
  3269. text-align:left;
  3270. }
  3271. #u127148 .text {
  3272. position:absolute;
  3273. align-self:center;
  3274. padding:2px 10px 2px 10px;
  3275. box-sizing:border-box;
  3276. width:100%;
  3277. }
  3278. #u127148_text {
  3279. border-width:0px;
  3280. word-wrap:break-word;
  3281. text-transform:none;
  3282. visibility:hidden;
  3283. }
  3284. #u127149_img {
  3285. border-width:0px;
  3286. position:absolute;
  3287. left:0px;
  3288. top:0px;
  3289. width:93px;
  3290. height:37px;
  3291. }
  3292. #u127149 {
  3293. border-width:0px;
  3294. position:absolute;
  3295. left:967px;
  3296. top:108px;
  3297. width:93px;
  3298. height:37px;
  3299. display:flex;
  3300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3301. font-weight:400;
  3302. font-style:normal;
  3303. font-size:14px;
  3304. text-align:left;
  3305. }
  3306. #u127149 .text {
  3307. position:absolute;
  3308. align-self:center;
  3309. padding:2px 10px 2px 10px;
  3310. box-sizing:border-box;
  3311. width:100%;
  3312. }
  3313. #u127149_text {
  3314. border-width:0px;
  3315. word-wrap:break-word;
  3316. text-transform:none;
  3317. visibility:hidden;
  3318. }
  3319. #u127150_img {
  3320. border-width:0px;
  3321. position:absolute;
  3322. left:0px;
  3323. top:0px;
  3324. width:167px;
  3325. height:37px;
  3326. }
  3327. #u127150 {
  3328. border-width:0px;
  3329. position:absolute;
  3330. left:1060px;
  3331. top:108px;
  3332. width:167px;
  3333. height:37px;
  3334. display:flex;
  3335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3336. font-weight:400;
  3337. font-style:normal;
  3338. font-size:14px;
  3339. color:#1890FF;
  3340. text-align:left;
  3341. }
  3342. #u127150 .text {
  3343. position:absolute;
  3344. align-self:center;
  3345. padding:2px 10px 2px 10px;
  3346. box-sizing:border-box;
  3347. width:100%;
  3348. }
  3349. #u127150_text {
  3350. border-width:0px;
  3351. word-wrap:break-word;
  3352. text-transform:none;
  3353. }
  3354. #u127151_img {
  3355. border-width:0px;
  3356. position:absolute;
  3357. left:0px;
  3358. top:0px;
  3359. width:74px;
  3360. height:37px;
  3361. }
  3362. #u127151 {
  3363. border-width:0px;
  3364. position:absolute;
  3365. left:0px;
  3366. top:145px;
  3367. width:74px;
  3368. height:37px;
  3369. display:flex;
  3370. font-size:14px;
  3371. text-align:left;
  3372. }
  3373. #u127151 .text {
  3374. position:absolute;
  3375. align-self:center;
  3376. padding:2px 10px 2px 10px;
  3377. box-sizing:border-box;
  3378. width:100%;
  3379. }
  3380. #u127151_text {
  3381. border-width:0px;
  3382. word-wrap:break-word;
  3383. text-transform:none;
  3384. visibility:hidden;
  3385. }
  3386. #u127152_img {
  3387. border-width:0px;
  3388. position:absolute;
  3389. left:0px;
  3390. top:0px;
  3391. width:74px;
  3392. height:37px;
  3393. }
  3394. #u127152 {
  3395. border-width:0px;
  3396. position:absolute;
  3397. left:74px;
  3398. top:145px;
  3399. width:74px;
  3400. height:37px;
  3401. display:flex;
  3402. font-size:14px;
  3403. text-align:left;
  3404. }
  3405. #u127152 .text {
  3406. position:absolute;
  3407. align-self:center;
  3408. padding:2px 10px 2px 10px;
  3409. box-sizing:border-box;
  3410. width:100%;
  3411. }
  3412. #u127152_text {
  3413. border-width:0px;
  3414. word-wrap:break-word;
  3415. text-transform:none;
  3416. visibility:hidden;
  3417. }
  3418. #u127153_img {
  3419. border-width:0px;
  3420. position:absolute;
  3421. left:0px;
  3422. top:0px;
  3423. width:111px;
  3424. height:37px;
  3425. }
  3426. #u127153 {
  3427. border-width:0px;
  3428. position:absolute;
  3429. left:148px;
  3430. top:145px;
  3431. width:111px;
  3432. height:37px;
  3433. display:flex;
  3434. font-size:14px;
  3435. text-align:left;
  3436. }
  3437. #u127153 .text {
  3438. position:absolute;
  3439. align-self:center;
  3440. padding:2px 10px 2px 10px;
  3441. box-sizing:border-box;
  3442. width:100%;
  3443. }
  3444. #u127153_text {
  3445. border-width:0px;
  3446. word-wrap:break-word;
  3447. text-transform:none;
  3448. visibility:hidden;
  3449. }
  3450. #u127154_img {
  3451. border-width:0px;
  3452. position:absolute;
  3453. left:0px;
  3454. top:0px;
  3455. width:93px;
  3456. height:37px;
  3457. }
  3458. #u127154 {
  3459. border-width:0px;
  3460. position:absolute;
  3461. left:259px;
  3462. top:145px;
  3463. width:93px;
  3464. height:37px;
  3465. display:flex;
  3466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3467. font-weight:400;
  3468. font-style:normal;
  3469. font-size:14px;
  3470. text-align:left;
  3471. }
  3472. #u127154 .text {
  3473. position:absolute;
  3474. align-self:center;
  3475. padding:2px 10px 2px 10px;
  3476. box-sizing:border-box;
  3477. width:100%;
  3478. }
  3479. #u127154_text {
  3480. border-width:0px;
  3481. word-wrap:break-word;
  3482. text-transform:none;
  3483. visibility:hidden;
  3484. }
  3485. #u127155_img {
  3486. border-width:0px;
  3487. position:absolute;
  3488. left:0px;
  3489. top:0px;
  3490. width:93px;
  3491. height:37px;
  3492. }
  3493. #u127155 {
  3494. border-width:0px;
  3495. position:absolute;
  3496. left:352px;
  3497. top:145px;
  3498. width:93px;
  3499. height:37px;
  3500. display:flex;
  3501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3502. font-weight:400;
  3503. font-style:normal;
  3504. font-size:14px;
  3505. text-align:left;
  3506. }
  3507. #u127155 .text {
  3508. position:absolute;
  3509. align-self:center;
  3510. padding:2px 10px 2px 10px;
  3511. box-sizing:border-box;
  3512. width:100%;
  3513. }
  3514. #u127155_text {
  3515. border-width:0px;
  3516. word-wrap:break-word;
  3517. text-transform:none;
  3518. visibility:hidden;
  3519. }
  3520. #u127156_img {
  3521. border-width:0px;
  3522. position:absolute;
  3523. left:0px;
  3524. top:0px;
  3525. width:93px;
  3526. height:37px;
  3527. }
  3528. #u127156 {
  3529. border-width:0px;
  3530. position:absolute;
  3531. left:445px;
  3532. top:145px;
  3533. width:93px;
  3534. height:37px;
  3535. display:flex;
  3536. font-size:14px;
  3537. text-align:left;
  3538. }
  3539. #u127156 .text {
  3540. position:absolute;
  3541. align-self:center;
  3542. padding:2px 10px 2px 10px;
  3543. box-sizing:border-box;
  3544. width:100%;
  3545. }
  3546. #u127156_text {
  3547. border-width:0px;
  3548. word-wrap:break-word;
  3549. text-transform:none;
  3550. visibility:hidden;
  3551. }
  3552. #u127157_img {
  3553. border-width:0px;
  3554. position:absolute;
  3555. left:0px;
  3556. top:0px;
  3557. width:142px;
  3558. height:37px;
  3559. }
  3560. #u127157 {
  3561. border-width:0px;
  3562. position:absolute;
  3563. left:538px;
  3564. top:145px;
  3565. width:142px;
  3566. height:37px;
  3567. display:flex;
  3568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3569. font-weight:400;
  3570. font-style:normal;
  3571. text-align:left;
  3572. }
  3573. #u127157 .text {
  3574. position:absolute;
  3575. align-self:center;
  3576. padding:2px 10px 2px 10px;
  3577. box-sizing:border-box;
  3578. width:100%;
  3579. }
  3580. #u127157_text {
  3581. border-width:0px;
  3582. word-wrap:break-word;
  3583. text-transform:none;
  3584. }
  3585. #u127158_img {
  3586. border-width:0px;
  3587. position:absolute;
  3588. left:0px;
  3589. top:0px;
  3590. width:92px;
  3591. height:37px;
  3592. }
  3593. #u127158 {
  3594. border-width:0px;
  3595. position:absolute;
  3596. left:680px;
  3597. top:145px;
  3598. width:92px;
  3599. height:37px;
  3600. display:flex;
  3601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3602. font-weight:400;
  3603. font-style:normal;
  3604. text-align:left;
  3605. }
  3606. #u127158 .text {
  3607. position:absolute;
  3608. align-self:center;
  3609. padding:2px 10px 2px 10px;
  3610. box-sizing:border-box;
  3611. width:100%;
  3612. }
  3613. #u127158_text {
  3614. border-width:0px;
  3615. word-wrap:break-word;
  3616. text-transform:none;
  3617. visibility:hidden;
  3618. }
  3619. #u127159_img {
  3620. border-width:0px;
  3621. position:absolute;
  3622. left:0px;
  3623. top:0px;
  3624. width:102px;
  3625. height:37px;
  3626. }
  3627. #u127159 {
  3628. border-width:0px;
  3629. position:absolute;
  3630. left:772px;
  3631. top:145px;
  3632. width:102px;
  3633. height:37px;
  3634. display:flex;
  3635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3636. font-weight:400;
  3637. font-style:normal;
  3638. text-align:left;
  3639. }
  3640. #u127159 .text {
  3641. position:absolute;
  3642. align-self:center;
  3643. padding:2px 10px 2px 10px;
  3644. box-sizing:border-box;
  3645. width:100%;
  3646. }
  3647. #u127159_text {
  3648. border-width:0px;
  3649. word-wrap:break-word;
  3650. text-transform:none;
  3651. visibility:hidden;
  3652. }
  3653. #u127160_img {
  3654. border-width:0px;
  3655. position:absolute;
  3656. left:0px;
  3657. top:0px;
  3658. width:93px;
  3659. height:37px;
  3660. }
  3661. #u127160 {
  3662. border-width:0px;
  3663. position:absolute;
  3664. left:874px;
  3665. top:145px;
  3666. width:93px;
  3667. height:37px;
  3668. display:flex;
  3669. font-size:14px;
  3670. text-align:left;
  3671. }
  3672. #u127160 .text {
  3673. position:absolute;
  3674. align-self:center;
  3675. padding:2px 10px 2px 10px;
  3676. box-sizing:border-box;
  3677. width:100%;
  3678. }
  3679. #u127160_text {
  3680. border-width:0px;
  3681. word-wrap:break-word;
  3682. text-transform:none;
  3683. visibility:hidden;
  3684. }
  3685. #u127161_img {
  3686. border-width:0px;
  3687. position:absolute;
  3688. left:0px;
  3689. top:0px;
  3690. width:93px;
  3691. height:37px;
  3692. }
  3693. #u127161 {
  3694. border-width:0px;
  3695. position:absolute;
  3696. left:967px;
  3697. top:145px;
  3698. width:93px;
  3699. height:37px;
  3700. display:flex;
  3701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3702. font-weight:400;
  3703. font-style:normal;
  3704. font-size:14px;
  3705. text-align:left;
  3706. }
  3707. #u127161 .text {
  3708. position:absolute;
  3709. align-self:center;
  3710. padding:2px 10px 2px 10px;
  3711. box-sizing:border-box;
  3712. width:100%;
  3713. }
  3714. #u127161_text {
  3715. border-width:0px;
  3716. word-wrap:break-word;
  3717. text-transform:none;
  3718. visibility:hidden;
  3719. }
  3720. #u127162_img {
  3721. border-width:0px;
  3722. position:absolute;
  3723. left:0px;
  3724. top:0px;
  3725. width:167px;
  3726. height:37px;
  3727. }
  3728. #u127162 {
  3729. border-width:0px;
  3730. position:absolute;
  3731. left:1060px;
  3732. top:145px;
  3733. width:167px;
  3734. height:37px;
  3735. display:flex;
  3736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3737. font-weight:400;
  3738. font-style:normal;
  3739. font-size:14px;
  3740. color:#1890FF;
  3741. text-align:left;
  3742. }
  3743. #u127162 .text {
  3744. position:absolute;
  3745. align-self:center;
  3746. padding:2px 10px 2px 10px;
  3747. box-sizing:border-box;
  3748. width:100%;
  3749. }
  3750. #u127162_text {
  3751. border-width:0px;
  3752. word-wrap:break-word;
  3753. text-transform:none;
  3754. }
  3755. #u127163_img {
  3756. border-width:0px;
  3757. position:absolute;
  3758. left:0px;
  3759. top:0px;
  3760. width:74px;
  3761. height:37px;
  3762. }
  3763. #u127163 {
  3764. border-width:0px;
  3765. position:absolute;
  3766. left:0px;
  3767. top:182px;
  3768. width:74px;
  3769. height:37px;
  3770. display:flex;
  3771. font-size:14px;
  3772. text-align:left;
  3773. }
  3774. #u127163 .text {
  3775. position:absolute;
  3776. align-self:center;
  3777. padding:2px 10px 2px 10px;
  3778. box-sizing:border-box;
  3779. width:100%;
  3780. }
  3781. #u127163_text {
  3782. border-width:0px;
  3783. word-wrap:break-word;
  3784. text-transform:none;
  3785. visibility:hidden;
  3786. }
  3787. #u127164_img {
  3788. border-width:0px;
  3789. position:absolute;
  3790. left:0px;
  3791. top:0px;
  3792. width:74px;
  3793. height:37px;
  3794. }
  3795. #u127164 {
  3796. border-width:0px;
  3797. position:absolute;
  3798. left:74px;
  3799. top:182px;
  3800. width:74px;
  3801. height:37px;
  3802. display:flex;
  3803. font-size:14px;
  3804. text-align:left;
  3805. }
  3806. #u127164 .text {
  3807. position:absolute;
  3808. align-self:center;
  3809. padding:2px 10px 2px 10px;
  3810. box-sizing:border-box;
  3811. width:100%;
  3812. }
  3813. #u127164_text {
  3814. border-width:0px;
  3815. word-wrap:break-word;
  3816. text-transform:none;
  3817. visibility:hidden;
  3818. }
  3819. #u127165_img {
  3820. border-width:0px;
  3821. position:absolute;
  3822. left:0px;
  3823. top:0px;
  3824. width:111px;
  3825. height:37px;
  3826. }
  3827. #u127165 {
  3828. border-width:0px;
  3829. position:absolute;
  3830. left:148px;
  3831. top:182px;
  3832. width:111px;
  3833. height:37px;
  3834. display:flex;
  3835. font-size:14px;
  3836. text-align:left;
  3837. }
  3838. #u127165 .text {
  3839. position:absolute;
  3840. align-self:center;
  3841. padding:2px 10px 2px 10px;
  3842. box-sizing:border-box;
  3843. width:100%;
  3844. }
  3845. #u127165_text {
  3846. border-width:0px;
  3847. word-wrap:break-word;
  3848. text-transform:none;
  3849. visibility:hidden;
  3850. }
  3851. #u127166_img {
  3852. border-width:0px;
  3853. position:absolute;
  3854. left:0px;
  3855. top:0px;
  3856. width:93px;
  3857. height:37px;
  3858. }
  3859. #u127166 {
  3860. border-width:0px;
  3861. position:absolute;
  3862. left:259px;
  3863. top:182px;
  3864. width:93px;
  3865. height:37px;
  3866. display:flex;
  3867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3868. font-weight:400;
  3869. font-style:normal;
  3870. font-size:14px;
  3871. text-align:left;
  3872. }
  3873. #u127166 .text {
  3874. position:absolute;
  3875. align-self:center;
  3876. padding:2px 10px 2px 10px;
  3877. box-sizing:border-box;
  3878. width:100%;
  3879. }
  3880. #u127166_text {
  3881. border-width:0px;
  3882. word-wrap:break-word;
  3883. text-transform:none;
  3884. visibility:hidden;
  3885. }
  3886. #u127167_img {
  3887. border-width:0px;
  3888. position:absolute;
  3889. left:0px;
  3890. top:0px;
  3891. width:93px;
  3892. height:37px;
  3893. }
  3894. #u127167 {
  3895. border-width:0px;
  3896. position:absolute;
  3897. left:352px;
  3898. top:182px;
  3899. width:93px;
  3900. height:37px;
  3901. display:flex;
  3902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3903. font-weight:400;
  3904. font-style:normal;
  3905. font-size:14px;
  3906. text-align:left;
  3907. }
  3908. #u127167 .text {
  3909. position:absolute;
  3910. align-self:center;
  3911. padding:2px 10px 2px 10px;
  3912. box-sizing:border-box;
  3913. width:100%;
  3914. }
  3915. #u127167_text {
  3916. border-width:0px;
  3917. word-wrap:break-word;
  3918. text-transform:none;
  3919. visibility:hidden;
  3920. }
  3921. #u127168_img {
  3922. border-width:0px;
  3923. position:absolute;
  3924. left:0px;
  3925. top:0px;
  3926. width:93px;
  3927. height:37px;
  3928. }
  3929. #u127168 {
  3930. border-width:0px;
  3931. position:absolute;
  3932. left:445px;
  3933. top:182px;
  3934. width:93px;
  3935. height:37px;
  3936. display:flex;
  3937. font-size:14px;
  3938. text-align:left;
  3939. }
  3940. #u127168 .text {
  3941. position:absolute;
  3942. align-self:center;
  3943. padding:2px 10px 2px 10px;
  3944. box-sizing:border-box;
  3945. width:100%;
  3946. }
  3947. #u127168_text {
  3948. border-width:0px;
  3949. word-wrap:break-word;
  3950. text-transform:none;
  3951. visibility:hidden;
  3952. }
  3953. #u127169_img {
  3954. border-width:0px;
  3955. position:absolute;
  3956. left:0px;
  3957. top:0px;
  3958. width:142px;
  3959. height:37px;
  3960. }
  3961. #u127169 {
  3962. border-width:0px;
  3963. position:absolute;
  3964. left:538px;
  3965. top:182px;
  3966. width:142px;
  3967. height:37px;
  3968. display:flex;
  3969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3970. font-weight:400;
  3971. font-style:normal;
  3972. text-align:left;
  3973. }
  3974. #u127169 .text {
  3975. position:absolute;
  3976. align-self:center;
  3977. padding:2px 10px 2px 10px;
  3978. box-sizing:border-box;
  3979. width:100%;
  3980. }
  3981. #u127169_text {
  3982. border-width:0px;
  3983. word-wrap:break-word;
  3984. text-transform:none;
  3985. }
  3986. #u127170_img {
  3987. border-width:0px;
  3988. position:absolute;
  3989. left:0px;
  3990. top:0px;
  3991. width:92px;
  3992. height:37px;
  3993. }
  3994. #u127170 {
  3995. border-width:0px;
  3996. position:absolute;
  3997. left:680px;
  3998. top:182px;
  3999. width:92px;
  4000. height:37px;
  4001. display:flex;
  4002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4003. font-weight:400;
  4004. font-style:normal;
  4005. text-align:left;
  4006. }
  4007. #u127170 .text {
  4008. position:absolute;
  4009. align-self:center;
  4010. padding:2px 10px 2px 10px;
  4011. box-sizing:border-box;
  4012. width:100%;
  4013. }
  4014. #u127170_text {
  4015. border-width:0px;
  4016. word-wrap:break-word;
  4017. text-transform:none;
  4018. visibility:hidden;
  4019. }
  4020. #u127171_img {
  4021. border-width:0px;
  4022. position:absolute;
  4023. left:0px;
  4024. top:0px;
  4025. width:102px;
  4026. height:37px;
  4027. }
  4028. #u127171 {
  4029. border-width:0px;
  4030. position:absolute;
  4031. left:772px;
  4032. top:182px;
  4033. width:102px;
  4034. height:37px;
  4035. display:flex;
  4036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4037. font-weight:400;
  4038. font-style:normal;
  4039. text-align:left;
  4040. }
  4041. #u127171 .text {
  4042. position:absolute;
  4043. align-self:center;
  4044. padding:2px 10px 2px 10px;
  4045. box-sizing:border-box;
  4046. width:100%;
  4047. }
  4048. #u127171_text {
  4049. border-width:0px;
  4050. word-wrap:break-word;
  4051. text-transform:none;
  4052. visibility:hidden;
  4053. }
  4054. #u127172_img {
  4055. border-width:0px;
  4056. position:absolute;
  4057. left:0px;
  4058. top:0px;
  4059. width:93px;
  4060. height:37px;
  4061. }
  4062. #u127172 {
  4063. border-width:0px;
  4064. position:absolute;
  4065. left:874px;
  4066. top:182px;
  4067. width:93px;
  4068. height:37px;
  4069. display:flex;
  4070. font-size:14px;
  4071. text-align:left;
  4072. }
  4073. #u127172 .text {
  4074. position:absolute;
  4075. align-self:center;
  4076. padding:2px 10px 2px 10px;
  4077. box-sizing:border-box;
  4078. width:100%;
  4079. }
  4080. #u127172_text {
  4081. border-width:0px;
  4082. word-wrap:break-word;
  4083. text-transform:none;
  4084. visibility:hidden;
  4085. }
  4086. #u127173_img {
  4087. border-width:0px;
  4088. position:absolute;
  4089. left:0px;
  4090. top:0px;
  4091. width:93px;
  4092. height:37px;
  4093. }
  4094. #u127173 {
  4095. border-width:0px;
  4096. position:absolute;
  4097. left:967px;
  4098. top:182px;
  4099. width:93px;
  4100. height:37px;
  4101. display:flex;
  4102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4103. font-weight:400;
  4104. font-style:normal;
  4105. font-size:14px;
  4106. color:#D9001B;
  4107. text-align:left;
  4108. }
  4109. #u127173 .text {
  4110. position:absolute;
  4111. align-self:center;
  4112. padding:2px 10px 2px 10px;
  4113. box-sizing:border-box;
  4114. width:100%;
  4115. }
  4116. #u127173_text {
  4117. border-width:0px;
  4118. word-wrap:break-word;
  4119. text-transform:none;
  4120. visibility:hidden;
  4121. }
  4122. #u127174_img {
  4123. border-width:0px;
  4124. position:absolute;
  4125. left:0px;
  4126. top:0px;
  4127. width:167px;
  4128. height:37px;
  4129. }
  4130. #u127174 {
  4131. border-width:0px;
  4132. position:absolute;
  4133. left:1060px;
  4134. top:182px;
  4135. width:167px;
  4136. height:37px;
  4137. display:flex;
  4138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4139. font-weight:400;
  4140. font-style:normal;
  4141. font-size:14px;
  4142. color:#1890FF;
  4143. text-align:left;
  4144. }
  4145. #u127174 .text {
  4146. position:absolute;
  4147. align-self:center;
  4148. padding:2px 10px 2px 10px;
  4149. box-sizing:border-box;
  4150. width:100%;
  4151. }
  4152. #u127174_text {
  4153. border-width:0px;
  4154. word-wrap:break-word;
  4155. text-transform:none;
  4156. }
  4157. #u127175_img {
  4158. border-width:0px;
  4159. position:absolute;
  4160. left:0px;
  4161. top:0px;
  4162. width:74px;
  4163. height:37px;
  4164. }
  4165. #u127175 {
  4166. border-width:0px;
  4167. position:absolute;
  4168. left:0px;
  4169. top:219px;
  4170. width:74px;
  4171. height:37px;
  4172. display:flex;
  4173. font-size:14px;
  4174. text-align:left;
  4175. }
  4176. #u127175 .text {
  4177. position:absolute;
  4178. align-self:center;
  4179. padding:2px 10px 2px 10px;
  4180. box-sizing:border-box;
  4181. width:100%;
  4182. }
  4183. #u127175_text {
  4184. border-width:0px;
  4185. word-wrap:break-word;
  4186. text-transform:none;
  4187. visibility:hidden;
  4188. }
  4189. #u127176_img {
  4190. border-width:0px;
  4191. position:absolute;
  4192. left:0px;
  4193. top:0px;
  4194. width:74px;
  4195. height:37px;
  4196. }
  4197. #u127176 {
  4198. border-width:0px;
  4199. position:absolute;
  4200. left:74px;
  4201. top:219px;
  4202. width:74px;
  4203. height:37px;
  4204. display:flex;
  4205. font-size:14px;
  4206. text-align:left;
  4207. }
  4208. #u127176 .text {
  4209. position:absolute;
  4210. align-self:center;
  4211. padding:2px 10px 2px 10px;
  4212. box-sizing:border-box;
  4213. width:100%;
  4214. }
  4215. #u127176_text {
  4216. border-width:0px;
  4217. word-wrap:break-word;
  4218. text-transform:none;
  4219. visibility:hidden;
  4220. }
  4221. #u127177_img {
  4222. border-width:0px;
  4223. position:absolute;
  4224. left:0px;
  4225. top:0px;
  4226. width:111px;
  4227. height:37px;
  4228. }
  4229. #u127177 {
  4230. border-width:0px;
  4231. position:absolute;
  4232. left:148px;
  4233. top:219px;
  4234. width:111px;
  4235. height:37px;
  4236. display:flex;
  4237. font-size:14px;
  4238. text-align:left;
  4239. }
  4240. #u127177 .text {
  4241. position:absolute;
  4242. align-self:center;
  4243. padding:2px 10px 2px 10px;
  4244. box-sizing:border-box;
  4245. width:100%;
  4246. }
  4247. #u127177_text {
  4248. border-width:0px;
  4249. word-wrap:break-word;
  4250. text-transform:none;
  4251. visibility:hidden;
  4252. }
  4253. #u127178_img {
  4254. border-width:0px;
  4255. position:absolute;
  4256. left:0px;
  4257. top:0px;
  4258. width:93px;
  4259. height:37px;
  4260. }
  4261. #u127178 {
  4262. border-width:0px;
  4263. position:absolute;
  4264. left:259px;
  4265. top:219px;
  4266. width:93px;
  4267. height:37px;
  4268. display:flex;
  4269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4270. font-weight:400;
  4271. font-style:normal;
  4272. font-size:14px;
  4273. text-align:left;
  4274. }
  4275. #u127178 .text {
  4276. position:absolute;
  4277. align-self:center;
  4278. padding:2px 10px 2px 10px;
  4279. box-sizing:border-box;
  4280. width:100%;
  4281. }
  4282. #u127178_text {
  4283. border-width:0px;
  4284. word-wrap:break-word;
  4285. text-transform:none;
  4286. visibility:hidden;
  4287. }
  4288. #u127179_img {
  4289. border-width:0px;
  4290. position:absolute;
  4291. left:0px;
  4292. top:0px;
  4293. width:93px;
  4294. height:37px;
  4295. }
  4296. #u127179 {
  4297. border-width:0px;
  4298. position:absolute;
  4299. left:352px;
  4300. top:219px;
  4301. width:93px;
  4302. height:37px;
  4303. display:flex;
  4304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4305. font-weight:400;
  4306. font-style:normal;
  4307. font-size:14px;
  4308. text-align:left;
  4309. }
  4310. #u127179 .text {
  4311. position:absolute;
  4312. align-self:center;
  4313. padding:2px 10px 2px 10px;
  4314. box-sizing:border-box;
  4315. width:100%;
  4316. }
  4317. #u127179_text {
  4318. border-width:0px;
  4319. word-wrap:break-word;
  4320. text-transform:none;
  4321. visibility:hidden;
  4322. }
  4323. #u127180_img {
  4324. border-width:0px;
  4325. position:absolute;
  4326. left:0px;
  4327. top:0px;
  4328. width:93px;
  4329. height:37px;
  4330. }
  4331. #u127180 {
  4332. border-width:0px;
  4333. position:absolute;
  4334. left:445px;
  4335. top:219px;
  4336. width:93px;
  4337. height:37px;
  4338. display:flex;
  4339. font-size:14px;
  4340. text-align:left;
  4341. }
  4342. #u127180 .text {
  4343. position:absolute;
  4344. align-self:center;
  4345. padding:2px 10px 2px 10px;
  4346. box-sizing:border-box;
  4347. width:100%;
  4348. }
  4349. #u127180_text {
  4350. border-width:0px;
  4351. word-wrap:break-word;
  4352. text-transform:none;
  4353. visibility:hidden;
  4354. }
  4355. #u127181_img {
  4356. border-width:0px;
  4357. position:absolute;
  4358. left:0px;
  4359. top:0px;
  4360. width:142px;
  4361. height:37px;
  4362. }
  4363. #u127181 {
  4364. border-width:0px;
  4365. position:absolute;
  4366. left:538px;
  4367. top:219px;
  4368. width:142px;
  4369. height:37px;
  4370. display:flex;
  4371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4372. font-weight:400;
  4373. font-style:normal;
  4374. text-align:left;
  4375. }
  4376. #u127181 .text {
  4377. position:absolute;
  4378. align-self:center;
  4379. padding:2px 10px 2px 10px;
  4380. box-sizing:border-box;
  4381. width:100%;
  4382. }
  4383. #u127181_text {
  4384. border-width:0px;
  4385. word-wrap:break-word;
  4386. text-transform:none;
  4387. }
  4388. #u127182_img {
  4389. border-width:0px;
  4390. position:absolute;
  4391. left:0px;
  4392. top:0px;
  4393. width:92px;
  4394. height:37px;
  4395. }
  4396. #u127182 {
  4397. border-width:0px;
  4398. position:absolute;
  4399. left:680px;
  4400. top:219px;
  4401. width:92px;
  4402. height:37px;
  4403. display:flex;
  4404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4405. font-weight:400;
  4406. font-style:normal;
  4407. text-align:left;
  4408. }
  4409. #u127182 .text {
  4410. position:absolute;
  4411. align-self:center;
  4412. padding:2px 10px 2px 10px;
  4413. box-sizing:border-box;
  4414. width:100%;
  4415. }
  4416. #u127182_text {
  4417. border-width:0px;
  4418. word-wrap:break-word;
  4419. text-transform:none;
  4420. visibility:hidden;
  4421. }
  4422. #u127183_img {
  4423. border-width:0px;
  4424. position:absolute;
  4425. left:0px;
  4426. top:0px;
  4427. width:102px;
  4428. height:37px;
  4429. }
  4430. #u127183 {
  4431. border-width:0px;
  4432. position:absolute;
  4433. left:772px;
  4434. top:219px;
  4435. width:102px;
  4436. height:37px;
  4437. display:flex;
  4438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4439. font-weight:400;
  4440. font-style:normal;
  4441. text-align:left;
  4442. }
  4443. #u127183 .text {
  4444. position:absolute;
  4445. align-self:center;
  4446. padding:2px 10px 2px 10px;
  4447. box-sizing:border-box;
  4448. width:100%;
  4449. }
  4450. #u127183_text {
  4451. border-width:0px;
  4452. word-wrap:break-word;
  4453. text-transform:none;
  4454. visibility:hidden;
  4455. }
  4456. #u127184_img {
  4457. border-width:0px;
  4458. position:absolute;
  4459. left:0px;
  4460. top:0px;
  4461. width:93px;
  4462. height:37px;
  4463. }
  4464. #u127184 {
  4465. border-width:0px;
  4466. position:absolute;
  4467. left:874px;
  4468. top:219px;
  4469. width:93px;
  4470. height:37px;
  4471. display:flex;
  4472. font-size:14px;
  4473. text-align:left;
  4474. }
  4475. #u127184 .text {
  4476. position:absolute;
  4477. align-self:center;
  4478. padding:2px 10px 2px 10px;
  4479. box-sizing:border-box;
  4480. width:100%;
  4481. }
  4482. #u127184_text {
  4483. border-width:0px;
  4484. word-wrap:break-word;
  4485. text-transform:none;
  4486. visibility:hidden;
  4487. }
  4488. #u127185_img {
  4489. border-width:0px;
  4490. position:absolute;
  4491. left:0px;
  4492. top:0px;
  4493. width:93px;
  4494. height:37px;
  4495. }
  4496. #u127185 {
  4497. border-width:0px;
  4498. position:absolute;
  4499. left:967px;
  4500. top:219px;
  4501. width:93px;
  4502. height:37px;
  4503. display:flex;
  4504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4505. font-weight:400;
  4506. font-style:normal;
  4507. font-size:14px;
  4508. text-align:left;
  4509. }
  4510. #u127185 .text {
  4511. position:absolute;
  4512. align-self:center;
  4513. padding:2px 10px 2px 10px;
  4514. box-sizing:border-box;
  4515. width:100%;
  4516. }
  4517. #u127185_text {
  4518. border-width:0px;
  4519. word-wrap:break-word;
  4520. text-transform:none;
  4521. visibility:hidden;
  4522. }
  4523. #u127186_img {
  4524. border-width:0px;
  4525. position:absolute;
  4526. left:0px;
  4527. top:0px;
  4528. width:167px;
  4529. height:37px;
  4530. }
  4531. #u127186 {
  4532. border-width:0px;
  4533. position:absolute;
  4534. left:1060px;
  4535. top:219px;
  4536. width:167px;
  4537. height:37px;
  4538. display:flex;
  4539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4540. font-weight:400;
  4541. font-style:normal;
  4542. font-size:14px;
  4543. color:#1890FF;
  4544. text-align:left;
  4545. }
  4546. #u127186 .text {
  4547. position:absolute;
  4548. align-self:center;
  4549. padding:2px 10px 2px 10px;
  4550. box-sizing:border-box;
  4551. width:100%;
  4552. }
  4553. #u127186_text {
  4554. border-width:0px;
  4555. word-wrap:break-word;
  4556. text-transform:none;
  4557. }
  4558. #u127187_img {
  4559. border-width:0px;
  4560. position:absolute;
  4561. left:0px;
  4562. top:0px;
  4563. width:74px;
  4564. height:37px;
  4565. }
  4566. #u127187 {
  4567. border-width:0px;
  4568. position:absolute;
  4569. left:0px;
  4570. top:256px;
  4571. width:74px;
  4572. height:37px;
  4573. display:flex;
  4574. font-size:14px;
  4575. text-align:left;
  4576. }
  4577. #u127187 .text {
  4578. position:absolute;
  4579. align-self:center;
  4580. padding:2px 10px 2px 10px;
  4581. box-sizing:border-box;
  4582. width:100%;
  4583. }
  4584. #u127187_text {
  4585. border-width:0px;
  4586. word-wrap:break-word;
  4587. text-transform:none;
  4588. visibility:hidden;
  4589. }
  4590. #u127188_img {
  4591. border-width:0px;
  4592. position:absolute;
  4593. left:0px;
  4594. top:0px;
  4595. width:74px;
  4596. height:37px;
  4597. }
  4598. #u127188 {
  4599. border-width:0px;
  4600. position:absolute;
  4601. left:74px;
  4602. top:256px;
  4603. width:74px;
  4604. height:37px;
  4605. display:flex;
  4606. font-size:14px;
  4607. text-align:left;
  4608. }
  4609. #u127188 .text {
  4610. position:absolute;
  4611. align-self:center;
  4612. padding:2px 10px 2px 10px;
  4613. box-sizing:border-box;
  4614. width:100%;
  4615. }
  4616. #u127188_text {
  4617. border-width:0px;
  4618. word-wrap:break-word;
  4619. text-transform:none;
  4620. visibility:hidden;
  4621. }
  4622. #u127189_img {
  4623. border-width:0px;
  4624. position:absolute;
  4625. left:0px;
  4626. top:0px;
  4627. width:111px;
  4628. height:37px;
  4629. }
  4630. #u127189 {
  4631. border-width:0px;
  4632. position:absolute;
  4633. left:148px;
  4634. top:256px;
  4635. width:111px;
  4636. height:37px;
  4637. display:flex;
  4638. font-size:14px;
  4639. text-align:left;
  4640. }
  4641. #u127189 .text {
  4642. position:absolute;
  4643. align-self:center;
  4644. padding:2px 10px 2px 10px;
  4645. box-sizing:border-box;
  4646. width:100%;
  4647. }
  4648. #u127189_text {
  4649. border-width:0px;
  4650. word-wrap:break-word;
  4651. text-transform:none;
  4652. visibility:hidden;
  4653. }
  4654. #u127190_img {
  4655. border-width:0px;
  4656. position:absolute;
  4657. left:0px;
  4658. top:0px;
  4659. width:93px;
  4660. height:37px;
  4661. }
  4662. #u127190 {
  4663. border-width:0px;
  4664. position:absolute;
  4665. left:259px;
  4666. top:256px;
  4667. width:93px;
  4668. height:37px;
  4669. display:flex;
  4670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4671. font-weight:400;
  4672. font-style:normal;
  4673. font-size:14px;
  4674. text-align:left;
  4675. }
  4676. #u127190 .text {
  4677. position:absolute;
  4678. align-self:center;
  4679. padding:2px 10px 2px 10px;
  4680. box-sizing:border-box;
  4681. width:100%;
  4682. }
  4683. #u127190_text {
  4684. border-width:0px;
  4685. word-wrap:break-word;
  4686. text-transform:none;
  4687. visibility:hidden;
  4688. }
  4689. #u127191_img {
  4690. border-width:0px;
  4691. position:absolute;
  4692. left:0px;
  4693. top:0px;
  4694. width:93px;
  4695. height:37px;
  4696. }
  4697. #u127191 {
  4698. border-width:0px;
  4699. position:absolute;
  4700. left:352px;
  4701. top:256px;
  4702. width:93px;
  4703. height:37px;
  4704. display:flex;
  4705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4706. font-weight:400;
  4707. font-style:normal;
  4708. font-size:14px;
  4709. text-align:left;
  4710. }
  4711. #u127191 .text {
  4712. position:absolute;
  4713. align-self:center;
  4714. padding:2px 10px 2px 10px;
  4715. box-sizing:border-box;
  4716. width:100%;
  4717. }
  4718. #u127191_text {
  4719. border-width:0px;
  4720. word-wrap:break-word;
  4721. text-transform:none;
  4722. visibility:hidden;
  4723. }
  4724. #u127192_img {
  4725. border-width:0px;
  4726. position:absolute;
  4727. left:0px;
  4728. top:0px;
  4729. width:93px;
  4730. height:37px;
  4731. }
  4732. #u127192 {
  4733. border-width:0px;
  4734. position:absolute;
  4735. left:445px;
  4736. top:256px;
  4737. width:93px;
  4738. height:37px;
  4739. display:flex;
  4740. font-size:14px;
  4741. text-align:left;
  4742. }
  4743. #u127192 .text {
  4744. position:absolute;
  4745. align-self:center;
  4746. padding:2px 10px 2px 10px;
  4747. box-sizing:border-box;
  4748. width:100%;
  4749. }
  4750. #u127192_text {
  4751. border-width:0px;
  4752. word-wrap:break-word;
  4753. text-transform:none;
  4754. visibility:hidden;
  4755. }
  4756. #u127193_img {
  4757. border-width:0px;
  4758. position:absolute;
  4759. left:0px;
  4760. top:0px;
  4761. width:142px;
  4762. height:37px;
  4763. }
  4764. #u127193 {
  4765. border-width:0px;
  4766. position:absolute;
  4767. left:538px;
  4768. top:256px;
  4769. width:142px;
  4770. height:37px;
  4771. display:flex;
  4772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4773. font-weight:400;
  4774. font-style:normal;
  4775. text-align:left;
  4776. }
  4777. #u127193 .text {
  4778. position:absolute;
  4779. align-self:center;
  4780. padding:2px 10px 2px 10px;
  4781. box-sizing:border-box;
  4782. width:100%;
  4783. }
  4784. #u127193_text {
  4785. border-width:0px;
  4786. word-wrap:break-word;
  4787. text-transform:none;
  4788. }
  4789. #u127194_img {
  4790. border-width:0px;
  4791. position:absolute;
  4792. left:0px;
  4793. top:0px;
  4794. width:92px;
  4795. height:37px;
  4796. }
  4797. #u127194 {
  4798. border-width:0px;
  4799. position:absolute;
  4800. left:680px;
  4801. top:256px;
  4802. width:92px;
  4803. height:37px;
  4804. display:flex;
  4805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4806. font-weight:400;
  4807. font-style:normal;
  4808. text-align:left;
  4809. }
  4810. #u127194 .text {
  4811. position:absolute;
  4812. align-self:center;
  4813. padding:2px 10px 2px 10px;
  4814. box-sizing:border-box;
  4815. width:100%;
  4816. }
  4817. #u127194_text {
  4818. border-width:0px;
  4819. word-wrap:break-word;
  4820. text-transform:none;
  4821. visibility:hidden;
  4822. }
  4823. #u127195_img {
  4824. border-width:0px;
  4825. position:absolute;
  4826. left:0px;
  4827. top:0px;
  4828. width:102px;
  4829. height:37px;
  4830. }
  4831. #u127195 {
  4832. border-width:0px;
  4833. position:absolute;
  4834. left:772px;
  4835. top:256px;
  4836. width:102px;
  4837. height:37px;
  4838. display:flex;
  4839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4840. font-weight:400;
  4841. font-style:normal;
  4842. text-align:left;
  4843. }
  4844. #u127195 .text {
  4845. position:absolute;
  4846. align-self:center;
  4847. padding:2px 10px 2px 10px;
  4848. box-sizing:border-box;
  4849. width:100%;
  4850. }
  4851. #u127195_text {
  4852. border-width:0px;
  4853. word-wrap:break-word;
  4854. text-transform:none;
  4855. visibility:hidden;
  4856. }
  4857. #u127196_img {
  4858. border-width:0px;
  4859. position:absolute;
  4860. left:0px;
  4861. top:0px;
  4862. width:93px;
  4863. height:37px;
  4864. }
  4865. #u127196 {
  4866. border-width:0px;
  4867. position:absolute;
  4868. left:874px;
  4869. top:256px;
  4870. width:93px;
  4871. height:37px;
  4872. display:flex;
  4873. font-size:14px;
  4874. text-align:left;
  4875. }
  4876. #u127196 .text {
  4877. position:absolute;
  4878. align-self:center;
  4879. padding:2px 10px 2px 10px;
  4880. box-sizing:border-box;
  4881. width:100%;
  4882. }
  4883. #u127196_text {
  4884. border-width:0px;
  4885. word-wrap:break-word;
  4886. text-transform:none;
  4887. visibility:hidden;
  4888. }
  4889. #u127197_img {
  4890. border-width:0px;
  4891. position:absolute;
  4892. left:0px;
  4893. top:0px;
  4894. width:93px;
  4895. height:37px;
  4896. }
  4897. #u127197 {
  4898. border-width:0px;
  4899. position:absolute;
  4900. left:967px;
  4901. top:256px;
  4902. width:93px;
  4903. height:37px;
  4904. display:flex;
  4905. font-size:14px;
  4906. text-align:left;
  4907. }
  4908. #u127197 .text {
  4909. position:absolute;
  4910. align-self:center;
  4911. padding:2px 10px 2px 10px;
  4912. box-sizing:border-box;
  4913. width:100%;
  4914. }
  4915. #u127197_text {
  4916. border-width:0px;
  4917. word-wrap:break-word;
  4918. text-transform:none;
  4919. visibility:hidden;
  4920. }
  4921. #u127198_img {
  4922. border-width:0px;
  4923. position:absolute;
  4924. left:0px;
  4925. top:0px;
  4926. width:167px;
  4927. height:37px;
  4928. }
  4929. #u127198 {
  4930. border-width:0px;
  4931. position:absolute;
  4932. left:1060px;
  4933. top:256px;
  4934. width:167px;
  4935. height:37px;
  4936. display:flex;
  4937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4938. font-weight:400;
  4939. font-style:normal;
  4940. font-size:14px;
  4941. color:#1890FF;
  4942. text-align:left;
  4943. }
  4944. #u127198 .text {
  4945. position:absolute;
  4946. align-self:center;
  4947. padding:2px 10px 2px 10px;
  4948. box-sizing:border-box;
  4949. width:100%;
  4950. }
  4951. #u127198_text {
  4952. border-width:0px;
  4953. word-wrap:break-word;
  4954. text-transform:none;
  4955. visibility:hidden;
  4956. }
  4957. #u127199_div {
  4958. border-width:0px;
  4959. position:absolute;
  4960. left:0px;
  4961. top:0px;
  4962. width:77px;
  4963. height:30px;
  4964. background:inherit;
  4965. background-color:rgba(41, 143, 255, 1);
  4966. border:none;
  4967. border-radius:4px;
  4968. -moz-box-shadow:none;
  4969. -webkit-box-shadow:none;
  4970. box-shadow:none;
  4971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4972. font-weight:400;
  4973. font-style:normal;
  4974. font-size:14px;
  4975. color:#FFFFFF;
  4976. }
  4977. #u127199 {
  4978. border-width:0px;
  4979. position:absolute;
  4980. left:352px;
  4981. top:165px;
  4982. width:77px;
  4983. height:30px;
  4984. display:flex;
  4985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4986. font-weight:400;
  4987. font-style:normal;
  4988. font-size:14px;
  4989. color:#FFFFFF;
  4990. }
  4991. #u127199 .text {
  4992. position:absolute;
  4993. align-self:center;
  4994. padding:5px 10px 5px 10px;
  4995. box-sizing:border-box;
  4996. width:100%;
  4997. }
  4998. #u127199_text {
  4999. border-width:0px;
  5000. white-space:nowrap;
  5001. text-transform:none;
  5002. }
  5003. #u127200_div {
  5004. border-width:0px;
  5005. position:absolute;
  5006. left:0px;
  5007. top:0px;
  5008. width:55px;
  5009. height:30px;
  5010. background:inherit;
  5011. background-color:rgba(255, 255, 255, 1);
  5012. box-sizing:border-box;
  5013. border-width:1px;
  5014. border-style:solid;
  5015. border-color:rgba(170, 170, 170, 1);
  5016. border-radius:4px;
  5017. -moz-box-shadow:none;
  5018. -webkit-box-shadow:none;
  5019. box-shadow:none;
  5020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5021. font-weight:400;
  5022. font-style:normal;
  5023. font-size:12px;
  5024. color:#555555;
  5025. }
  5026. #u127200 {
  5027. border-width:0px;
  5028. position:absolute;
  5029. left:1321px;
  5030. top:116px;
  5031. width:55px;
  5032. height:30px;
  5033. display:flex;
  5034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5035. font-weight:400;
  5036. font-style:normal;
  5037. font-size:12px;
  5038. color:#555555;
  5039. }
  5040. #u127200 .text {
  5041. position:absolute;
  5042. align-self:center;
  5043. padding:5px 15px 5px 15px;
  5044. box-sizing:border-box;
  5045. width:100%;
  5046. }
  5047. #u127200_text {
  5048. border-width:0px;
  5049. white-space:nowrap;
  5050. text-transform:none;
  5051. }
  5052. #u127201 {
  5053. border-width:0px;
  5054. position:absolute;
  5055. left:0px;
  5056. top:0px;
  5057. width:0px;
  5058. height:0px;
  5059. }
  5060. #u127202_div {
  5061. border-width:0px;
  5062. position:absolute;
  5063. left:0px;
  5064. top:0px;
  5065. width:140px;
  5066. height:30px;
  5067. background:inherit;
  5068. background-color:rgba(255, 255, 255, 1);
  5069. box-sizing:border-box;
  5070. border-width:1px;
  5071. border-style:solid;
  5072. border-color:rgba(201, 201, 201, 1);
  5073. border-radius:4px;
  5074. -moz-box-shadow:none;
  5075. -webkit-box-shadow:none;
  5076. box-shadow:none;
  5077. font-family:'Microsoft YaHei', sans-serif;
  5078. font-weight:400;
  5079. font-style:normal;
  5080. font-size:14px;
  5081. color:#CCCCCC;
  5082. text-align:left;
  5083. }
  5084. #u127202 {
  5085. border-width:0px;
  5086. position:absolute;
  5087. left:652px;
  5088. top:116px;
  5089. width:140px;
  5090. height:30px;
  5091. display:flex;
  5092. font-family:'Microsoft YaHei', sans-serif;
  5093. font-weight:400;
  5094. font-style:normal;
  5095. font-size:14px;
  5096. color:#CCCCCC;
  5097. text-align:left;
  5098. }
  5099. #u127202 .text {
  5100. position:absolute;
  5101. align-self:center;
  5102. padding:2px 8px 2px 8px;
  5103. box-sizing:border-box;
  5104. width:100%;
  5105. }
  5106. #u127202_text {
  5107. border-width:0px;
  5108. word-wrap:break-word;
  5109. text-transform:none;
  5110. visibility:hidden;
  5111. }
  5112. #u127203_input {
  5113. position:absolute;
  5114. left:0px;
  5115. top:0px;
  5116. width:127px;
  5117. height:25px;
  5118. padding:2px 2px 2px 2px;
  5119. font-family:'Microsoft YaHei', sans-serif;
  5120. font-weight:400;
  5121. font-style:normal;
  5122. font-size:10px;
  5123. letter-spacing:normal;
  5124. color:#000000;
  5125. vertical-align:none;
  5126. text-align:left;
  5127. text-transform:none;
  5128. background-color:transparent;
  5129. border-color:transparent;
  5130. }
  5131. #u127203_input.disabled {
  5132. position:absolute;
  5133. left:0px;
  5134. top:0px;
  5135. width:127px;
  5136. height:25px;
  5137. padding:2px 2px 2px 2px;
  5138. font-family:'Microsoft YaHei', sans-serif;
  5139. font-weight:400;
  5140. font-style:normal;
  5141. font-size:10px;
  5142. letter-spacing:normal;
  5143. color:#000000;
  5144. vertical-align:none;
  5145. text-align:left;
  5146. text-transform:none;
  5147. background-color:transparent;
  5148. border-color:transparent;
  5149. }
  5150. #u127203_div {
  5151. border-width:0px;
  5152. position:absolute;
  5153. left:0px;
  5154. top:0px;
  5155. width:127px;
  5156. height:25px;
  5157. background:inherit;
  5158. background-color:rgba(255, 255, 255, 1);
  5159. border:none;
  5160. border-radius:0px;
  5161. -moz-box-shadow:none;
  5162. -webkit-box-shadow:none;
  5163. box-shadow:none;
  5164. font-family:'Microsoft YaHei', sans-serif;
  5165. font-weight:400;
  5166. font-style:normal;
  5167. font-size:10px;
  5168. }
  5169. #u127203 {
  5170. border-width:0px;
  5171. position:absolute;
  5172. left:660px;
  5173. top:117px;
  5174. width:127px;
  5175. height:25px;
  5176. display:flex;
  5177. font-family:'Microsoft YaHei', sans-serif;
  5178. font-weight:400;
  5179. font-style:normal;
  5180. font-size:10px;
  5181. }
  5182. #u127203 .text {
  5183. position:absolute;
  5184. align-self:center;
  5185. padding:2px 2px 2px 2px;
  5186. box-sizing:border-box;
  5187. width:100%;
  5188. }
  5189. #u127203_div.disabled {
  5190. border-width:0px;
  5191. position:absolute;
  5192. left:0px;
  5193. top:0px;
  5194. width:127px;
  5195. height:25px;
  5196. background:inherit;
  5197. background-color:rgba(240, 240, 240, 1);
  5198. border:none;
  5199. border-radius:0px;
  5200. -moz-box-shadow:none;
  5201. -webkit-box-shadow:none;
  5202. box-shadow:none;
  5203. font-family:'Microsoft YaHei', sans-serif;
  5204. font-weight:400;
  5205. font-style:normal;
  5206. font-size:10px;
  5207. }
  5208. #u127203.disabled {
  5209. }
  5210. #u127204_div {
  5211. border-width:0px;
  5212. position:absolute;
  5213. left:0px;
  5214. top:0px;
  5215. width:59px;
  5216. height:30px;
  5217. background:inherit;
  5218. background-color:rgba(0, 153, 255, 1);
  5219. box-sizing:border-box;
  5220. border-width:1px;
  5221. border-style:solid;
  5222. border-color:rgba(0, 153, 255, 1);
  5223. border-radius:4px;
  5224. -moz-box-shadow:none;
  5225. -webkit-box-shadow:none;
  5226. box-shadow:none;
  5227. font-family:'Microsoft YaHei', sans-serif;
  5228. font-weight:400;
  5229. font-style:normal;
  5230. font-size:14px;
  5231. color:#FFFFFF;
  5232. }
  5233. #u127204 {
  5234. border-width:0px;
  5235. position:absolute;
  5236. left:1252px;
  5237. top:116px;
  5238. width:59px;
  5239. height:30px;
  5240. display:flex;
  5241. font-family:'Microsoft YaHei', sans-serif;
  5242. font-weight:400;
  5243. font-style:normal;
  5244. font-size:14px;
  5245. color:#FFFFFF;
  5246. }
  5247. #u127204 .text {
  5248. position:absolute;
  5249. align-self:center;
  5250. padding:5px 15px 5px 15px;
  5251. box-sizing:border-box;
  5252. width:100%;
  5253. }
  5254. #u127204_text {
  5255. border-width:0px;
  5256. white-space:nowrap;
  5257. text-transform:none;
  5258. }
  5259. #u127205 {
  5260. border-width:0px;
  5261. position:absolute;
  5262. left:0px;
  5263. top:0px;
  5264. width:0px;
  5265. height:0px;
  5266. }
  5267. #u127206_div {
  5268. border-width:0px;
  5269. position:absolute;
  5270. left:0px;
  5271. top:0px;
  5272. width:140px;
  5273. height:30px;
  5274. background:inherit;
  5275. background-color:rgba(255, 255, 255, 1);
  5276. box-sizing:border-box;
  5277. border-width:1px;
  5278. border-style:solid;
  5279. border-color:rgba(201, 201, 201, 1);
  5280. border-radius:4px;
  5281. -moz-box-shadow:none;
  5282. -webkit-box-shadow:none;
  5283. box-shadow:none;
  5284. font-family:'Microsoft YaHei', sans-serif;
  5285. font-weight:400;
  5286. font-style:normal;
  5287. font-size:14px;
  5288. color:#CCCCCC;
  5289. text-align:left;
  5290. }
  5291. #u127206 {
  5292. border-width:0px;
  5293. position:absolute;
  5294. left:952px;
  5295. top:116px;
  5296. width:140px;
  5297. height:30px;
  5298. display:flex;
  5299. font-family:'Microsoft YaHei', sans-serif;
  5300. font-weight:400;
  5301. font-style:normal;
  5302. font-size:14px;
  5303. color:#CCCCCC;
  5304. text-align:left;
  5305. }
  5306. #u127206 .text {
  5307. position:absolute;
  5308. align-self:center;
  5309. padding:2px 8px 2px 8px;
  5310. box-sizing:border-box;
  5311. width:100%;
  5312. }
  5313. #u127206_text {
  5314. border-width:0px;
  5315. word-wrap:break-word;
  5316. text-transform:none;
  5317. visibility:hidden;
  5318. }
  5319. #u127207_input {
  5320. position:absolute;
  5321. left:0px;
  5322. top:0px;
  5323. width:127px;
  5324. height:25px;
  5325. padding:2px 2px 2px 2px;
  5326. font-family:'Microsoft YaHei', sans-serif;
  5327. font-weight:400;
  5328. font-style:normal;
  5329. font-size:10px;
  5330. letter-spacing:normal;
  5331. color:#000000;
  5332. vertical-align:none;
  5333. text-align:left;
  5334. text-transform:none;
  5335. background-color:transparent;
  5336. border-color:transparent;
  5337. }
  5338. #u127207_input.disabled {
  5339. position:absolute;
  5340. left:0px;
  5341. top:0px;
  5342. width:127px;
  5343. height:25px;
  5344. padding:2px 2px 2px 2px;
  5345. font-family:'Microsoft YaHei', sans-serif;
  5346. font-weight:400;
  5347. font-style:normal;
  5348. font-size:10px;
  5349. letter-spacing:normal;
  5350. color:#000000;
  5351. vertical-align:none;
  5352. text-align:left;
  5353. text-transform:none;
  5354. background-color:transparent;
  5355. border-color:transparent;
  5356. }
  5357. #u127207_div {
  5358. border-width:0px;
  5359. position:absolute;
  5360. left:0px;
  5361. top:0px;
  5362. width:127px;
  5363. height:25px;
  5364. background:inherit;
  5365. background-color:rgba(255, 255, 255, 1);
  5366. border:none;
  5367. border-radius:0px;
  5368. -moz-box-shadow:none;
  5369. -webkit-box-shadow:none;
  5370. box-shadow:none;
  5371. font-family:'Microsoft YaHei', sans-serif;
  5372. font-weight:400;
  5373. font-style:normal;
  5374. font-size:10px;
  5375. }
  5376. #u127207 {
  5377. border-width:0px;
  5378. position:absolute;
  5379. left:960px;
  5380. top:117px;
  5381. width:127px;
  5382. height:25px;
  5383. display:flex;
  5384. font-family:'Microsoft YaHei', sans-serif;
  5385. font-weight:400;
  5386. font-style:normal;
  5387. font-size:10px;
  5388. }
  5389. #u127207 .text {
  5390. position:absolute;
  5391. align-self:center;
  5392. padding:2px 2px 2px 2px;
  5393. box-sizing:border-box;
  5394. width:100%;
  5395. }
  5396. #u127207_div.disabled {
  5397. border-width:0px;
  5398. position:absolute;
  5399. left:0px;
  5400. top:0px;
  5401. width:127px;
  5402. height:25px;
  5403. background:inherit;
  5404. background-color:rgba(240, 240, 240, 1);
  5405. border:none;
  5406. border-radius:0px;
  5407. -moz-box-shadow:none;
  5408. -webkit-box-shadow:none;
  5409. box-shadow:none;
  5410. font-family:'Microsoft YaHei', sans-serif;
  5411. font-weight:400;
  5412. font-style:normal;
  5413. font-size:10px;
  5414. }
  5415. #u127207.disabled {
  5416. }
  5417. #u127208 {
  5418. border-width:0px;
  5419. position:absolute;
  5420. left:0px;
  5421. top:0px;
  5422. width:0px;
  5423. height:0px;
  5424. }
  5425. #u127209_div {
  5426. border-width:0px;
  5427. position:absolute;
  5428. left:0px;
  5429. top:0px;
  5430. width:140px;
  5431. height:30px;
  5432. background:inherit;
  5433. background-color:rgba(255, 255, 255, 1);
  5434. box-sizing:border-box;
  5435. border-width:1px;
  5436. border-style:solid;
  5437. border-color:rgba(215, 215, 215, 1);
  5438. border-radius:4px;
  5439. -moz-box-shadow:none;
  5440. -webkit-box-shadow:none;
  5441. box-shadow:none;
  5442. font-size:11px;
  5443. }
  5444. #u127209 {
  5445. border-width:0px;
  5446. position:absolute;
  5447. left:502px;
  5448. top:116px;
  5449. width:140px;
  5450. height:30px;
  5451. display:flex;
  5452. font-size:11px;
  5453. }
  5454. #u127209 .text {
  5455. position:absolute;
  5456. align-self:center;
  5457. padding:2px 2px 2px 2px;
  5458. box-sizing:border-box;
  5459. width:100%;
  5460. }
  5461. #u127209_text {
  5462. border-width:0px;
  5463. word-wrap:break-word;
  5464. text-transform:none;
  5465. visibility:hidden;
  5466. }
  5467. #u127210_input {
  5468. position:absolute;
  5469. left:0px;
  5470. top:0px;
  5471. width:123px;
  5472. height:23px;
  5473. padding:2px 2px 2px 2px;
  5474. font-family:'ArialMT', 'Arial', sans-serif;
  5475. font-weight:400;
  5476. font-style:normal;
  5477. font-size:11px;
  5478. letter-spacing:normal;
  5479. color:#AAAAAA;
  5480. vertical-align:none;
  5481. text-align:left;
  5482. text-transform:none;
  5483. background-color:transparent;
  5484. border-color:transparent;
  5485. }
  5486. #u127210_input.disabled {
  5487. position:absolute;
  5488. left:0px;
  5489. top:0px;
  5490. width:123px;
  5491. height:23px;
  5492. padding:2px 2px 2px 2px;
  5493. font-family:'ArialMT', 'Arial', sans-serif;
  5494. font-weight:400;
  5495. font-style:normal;
  5496. font-size:11px;
  5497. letter-spacing:normal;
  5498. color:#AAAAAA;
  5499. vertical-align:none;
  5500. text-align:left;
  5501. text-transform:none;
  5502. background-color:transparent;
  5503. border-color:transparent;
  5504. }
  5505. #u127210_div {
  5506. border-width:0px;
  5507. position:absolute;
  5508. left:0px;
  5509. top:0px;
  5510. width:123px;
  5511. height:23px;
  5512. background:inherit;
  5513. background-color:rgba(255, 255, 255, 1);
  5514. border:none;
  5515. border-radius:0px;
  5516. -moz-box-shadow:none;
  5517. -webkit-box-shadow:none;
  5518. box-shadow:none;
  5519. font-size:11px;
  5520. color:#AAAAAA;
  5521. }
  5522. #u127210 {
  5523. border-width:0px;
  5524. position:absolute;
  5525. left:508px;
  5526. top:118px;
  5527. width:123px;
  5528. height:23px;
  5529. display:flex;
  5530. font-size:11px;
  5531. color:#AAAAAA;
  5532. }
  5533. #u127210 .text {
  5534. position:absolute;
  5535. align-self:flex-start;
  5536. padding:2px 2px 2px 2px;
  5537. box-sizing:border-box;
  5538. width:100%;
  5539. }
  5540. #u127210_div.disabled {
  5541. border-width:0px;
  5542. position:absolute;
  5543. left:0px;
  5544. top:0px;
  5545. width:123px;
  5546. height:23px;
  5547. background:inherit;
  5548. background-color:rgba(240, 240, 240, 1);
  5549. border:none;
  5550. border-radius:0px;
  5551. -moz-box-shadow:none;
  5552. -webkit-box-shadow:none;
  5553. box-shadow:none;
  5554. font-size:11px;
  5555. color:#AAAAAA;
  5556. }
  5557. #u127210.disabled {
  5558. }
  5559. .u127210_input_option {
  5560. font-size:11px;
  5561. }
  5562. #u127211 {
  5563. border-width:0px;
  5564. position:absolute;
  5565. left:0px;
  5566. top:0px;
  5567. width:0px;
  5568. height:0px;
  5569. }
  5570. #u127212_div {
  5571. border-width:0px;
  5572. position:absolute;
  5573. left:0px;
  5574. top:0px;
  5575. width:140px;
  5576. height:30px;
  5577. background:inherit;
  5578. background-color:rgba(255, 255, 255, 1);
  5579. box-sizing:border-box;
  5580. border-width:1px;
  5581. border-style:solid;
  5582. border-color:rgba(215, 215, 215, 1);
  5583. border-radius:4px;
  5584. -moz-box-shadow:none;
  5585. -webkit-box-shadow:none;
  5586. box-shadow:none;
  5587. font-size:11px;
  5588. }
  5589. #u127212 {
  5590. border-width:0px;
  5591. position:absolute;
  5592. left:802px;
  5593. top:116px;
  5594. width:140px;
  5595. height:30px;
  5596. display:flex;
  5597. font-size:11px;
  5598. }
  5599. #u127212 .text {
  5600. position:absolute;
  5601. align-self:center;
  5602. padding:2px 2px 2px 2px;
  5603. box-sizing:border-box;
  5604. width:100%;
  5605. }
  5606. #u127212_text {
  5607. border-width:0px;
  5608. word-wrap:break-word;
  5609. text-transform:none;
  5610. visibility:hidden;
  5611. }
  5612. #u127213_input {
  5613. position:absolute;
  5614. left:0px;
  5615. top:0px;
  5616. width:123px;
  5617. height:23px;
  5618. padding:2px 2px 2px 2px;
  5619. font-family:'ArialMT', 'Arial', sans-serif;
  5620. font-weight:400;
  5621. font-style:normal;
  5622. font-size:11px;
  5623. letter-spacing:normal;
  5624. color:#AAAAAA;
  5625. vertical-align:none;
  5626. text-align:left;
  5627. text-transform:none;
  5628. background-color:transparent;
  5629. border-color:transparent;
  5630. }
  5631. #u127213_input.disabled {
  5632. position:absolute;
  5633. left:0px;
  5634. top:0px;
  5635. width:123px;
  5636. height:23px;
  5637. padding:2px 2px 2px 2px;
  5638. font-family:'ArialMT', 'Arial', sans-serif;
  5639. font-weight:400;
  5640. font-style:normal;
  5641. font-size:11px;
  5642. letter-spacing:normal;
  5643. color:#AAAAAA;
  5644. vertical-align:none;
  5645. text-align:left;
  5646. text-transform:none;
  5647. background-color:transparent;
  5648. border-color:transparent;
  5649. }
  5650. #u127213_div {
  5651. border-width:0px;
  5652. position:absolute;
  5653. left:0px;
  5654. top:0px;
  5655. width:123px;
  5656. height:23px;
  5657. background:inherit;
  5658. background-color:rgba(255, 255, 255, 1);
  5659. border:none;
  5660. border-radius:0px;
  5661. -moz-box-shadow:none;
  5662. -webkit-box-shadow:none;
  5663. box-shadow:none;
  5664. font-size:11px;
  5665. color:#AAAAAA;
  5666. }
  5667. #u127213 {
  5668. border-width:0px;
  5669. position:absolute;
  5670. left:808px;
  5671. top:118px;
  5672. width:123px;
  5673. height:23px;
  5674. display:flex;
  5675. font-size:11px;
  5676. color:#AAAAAA;
  5677. }
  5678. #u127213 .text {
  5679. position:absolute;
  5680. align-self:flex-start;
  5681. padding:2px 2px 2px 2px;
  5682. box-sizing:border-box;
  5683. width:100%;
  5684. }
  5685. #u127213_div.disabled {
  5686. border-width:0px;
  5687. position:absolute;
  5688. left:0px;
  5689. top:0px;
  5690. width:123px;
  5691. height:23px;
  5692. background:inherit;
  5693. background-color:rgba(240, 240, 240, 1);
  5694. border:none;
  5695. border-radius:0px;
  5696. -moz-box-shadow:none;
  5697. -webkit-box-shadow:none;
  5698. box-shadow:none;
  5699. font-size:11px;
  5700. color:#AAAAAA;
  5701. }
  5702. #u127213.disabled {
  5703. }
  5704. .u127213_input_option {
  5705. font-size:11px;
  5706. }
  5707. #u127214 {
  5708. border-width:0px;
  5709. position:absolute;
  5710. left:0px;
  5711. top:0px;
  5712. width:0px;
  5713. height:0px;
  5714. }
  5715. #u127215_div {
  5716. border-width:0px;
  5717. position:absolute;
  5718. left:0px;
  5719. top:0px;
  5720. width:140px;
  5721. height:30px;
  5722. background:inherit;
  5723. background-color:rgba(255, 255, 255, 1);
  5724. box-sizing:border-box;
  5725. border-width:1px;
  5726. border-style:solid;
  5727. border-color:rgba(215, 215, 215, 1);
  5728. border-radius:4px;
  5729. -moz-box-shadow:none;
  5730. -webkit-box-shadow:none;
  5731. box-shadow:none;
  5732. font-size:11px;
  5733. }
  5734. #u127215 {
  5735. border-width:0px;
  5736. position:absolute;
  5737. left:352px;
  5738. top:115px;
  5739. width:140px;
  5740. height:30px;
  5741. display:flex;
  5742. font-size:11px;
  5743. }
  5744. #u127215 .text {
  5745. position:absolute;
  5746. align-self:center;
  5747. padding:2px 2px 2px 2px;
  5748. box-sizing:border-box;
  5749. width:100%;
  5750. }
  5751. #u127215_text {
  5752. border-width:0px;
  5753. word-wrap:break-word;
  5754. text-transform:none;
  5755. visibility:hidden;
  5756. }
  5757. #u127216_input {
  5758. position:absolute;
  5759. left:0px;
  5760. top:0px;
  5761. width:123px;
  5762. height:23px;
  5763. padding:2px 2px 2px 2px;
  5764. font-family:'ArialMT', 'Arial', sans-serif;
  5765. font-weight:400;
  5766. font-style:normal;
  5767. font-size:11px;
  5768. letter-spacing:normal;
  5769. color:#AAAAAA;
  5770. vertical-align:none;
  5771. text-align:left;
  5772. text-transform:none;
  5773. background-color:transparent;
  5774. border-color:transparent;
  5775. }
  5776. #u127216_input.disabled {
  5777. position:absolute;
  5778. left:0px;
  5779. top:0px;
  5780. width:123px;
  5781. height:23px;
  5782. padding:2px 2px 2px 2px;
  5783. font-family:'ArialMT', 'Arial', sans-serif;
  5784. font-weight:400;
  5785. font-style:normal;
  5786. font-size:11px;
  5787. letter-spacing:normal;
  5788. color:#AAAAAA;
  5789. vertical-align:none;
  5790. text-align:left;
  5791. text-transform:none;
  5792. background-color:transparent;
  5793. border-color:transparent;
  5794. }
  5795. #u127216_div {
  5796. border-width:0px;
  5797. position:absolute;
  5798. left:0px;
  5799. top:0px;
  5800. width:123px;
  5801. height:23px;
  5802. background:inherit;
  5803. background-color:rgba(255, 255, 255, 1);
  5804. border:none;
  5805. border-radius:0px;
  5806. -moz-box-shadow:none;
  5807. -webkit-box-shadow:none;
  5808. box-shadow:none;
  5809. font-size:11px;
  5810. color:#AAAAAA;
  5811. }
  5812. #u127216 {
  5813. border-width:0px;
  5814. position:absolute;
  5815. left:358px;
  5816. top:117px;
  5817. width:123px;
  5818. height:23px;
  5819. display:flex;
  5820. font-size:11px;
  5821. color:#AAAAAA;
  5822. }
  5823. #u127216 .text {
  5824. position:absolute;
  5825. align-self:flex-start;
  5826. padding:2px 2px 2px 2px;
  5827. box-sizing:border-box;
  5828. width:100%;
  5829. }
  5830. #u127216_div.disabled {
  5831. border-width:0px;
  5832. position:absolute;
  5833. left:0px;
  5834. top:0px;
  5835. width:123px;
  5836. height:23px;
  5837. background:inherit;
  5838. background-color:rgba(240, 240, 240, 1);
  5839. border:none;
  5840. border-radius:0px;
  5841. -moz-box-shadow:none;
  5842. -webkit-box-shadow:none;
  5843. box-shadow:none;
  5844. font-size:11px;
  5845. color:#AAAAAA;
  5846. }
  5847. #u127216.disabled {
  5848. }
  5849. .u127216_input_option {
  5850. font-size:11px;
  5851. }
  5852. #u127217 {
  5853. border-width:0px;
  5854. position:absolute;
  5855. left:0px;
  5856. top:0px;
  5857. width:0px;
  5858. height:0px;
  5859. }
  5860. #u127218_div {
  5861. border-width:0px;
  5862. position:absolute;
  5863. left:0px;
  5864. top:0px;
  5865. width:140px;
  5866. height:30px;
  5867. background:inherit;
  5868. background-color:rgba(255, 255, 255, 1);
  5869. box-sizing:border-box;
  5870. border-width:1px;
  5871. border-style:solid;
  5872. border-color:rgba(201, 201, 201, 1);
  5873. border-radius:4px;
  5874. -moz-box-shadow:none;
  5875. -webkit-box-shadow:none;
  5876. box-shadow:none;
  5877. font-family:'Microsoft YaHei', sans-serif;
  5878. font-weight:400;
  5879. font-style:normal;
  5880. font-size:14px;
  5881. color:#CCCCCC;
  5882. text-align:left;
  5883. }
  5884. #u127218 {
  5885. border-width:0px;
  5886. position:absolute;
  5887. left:1102px;
  5888. top:116px;
  5889. width:140px;
  5890. height:30px;
  5891. display:flex;
  5892. font-family:'Microsoft YaHei', sans-serif;
  5893. font-weight:400;
  5894. font-style:normal;
  5895. font-size:14px;
  5896. color:#CCCCCC;
  5897. text-align:left;
  5898. }
  5899. #u127218 .text {
  5900. position:absolute;
  5901. align-self:center;
  5902. padding:2px 8px 2px 8px;
  5903. box-sizing:border-box;
  5904. width:100%;
  5905. }
  5906. #u127218_text {
  5907. border-width:0px;
  5908. word-wrap:break-word;
  5909. text-transform:none;
  5910. visibility:hidden;
  5911. }
  5912. #u127219_input {
  5913. position:absolute;
  5914. left:0px;
  5915. top:0px;
  5916. width:127px;
  5917. height:25px;
  5918. padding:2px 2px 2px 2px;
  5919. font-family:'Microsoft YaHei', sans-serif;
  5920. font-weight:400;
  5921. font-style:normal;
  5922. font-size:10px;
  5923. letter-spacing:normal;
  5924. color:#000000;
  5925. vertical-align:none;
  5926. text-align:left;
  5927. text-transform:none;
  5928. background-color:transparent;
  5929. border-color:transparent;
  5930. }
  5931. #u127219_input.disabled {
  5932. position:absolute;
  5933. left:0px;
  5934. top:0px;
  5935. width:127px;
  5936. height:25px;
  5937. padding:2px 2px 2px 2px;
  5938. font-family:'Microsoft YaHei', sans-serif;
  5939. font-weight:400;
  5940. font-style:normal;
  5941. font-size:10px;
  5942. letter-spacing:normal;
  5943. color:#000000;
  5944. vertical-align:none;
  5945. text-align:left;
  5946. text-transform:none;
  5947. background-color:transparent;
  5948. border-color:transparent;
  5949. }
  5950. #u127219_div {
  5951. border-width:0px;
  5952. position:absolute;
  5953. left:0px;
  5954. top:0px;
  5955. width:127px;
  5956. height:25px;
  5957. background:inherit;
  5958. background-color:rgba(255, 255, 255, 1);
  5959. border:none;
  5960. border-radius:0px;
  5961. -moz-box-shadow:none;
  5962. -webkit-box-shadow:none;
  5963. box-shadow:none;
  5964. font-family:'Microsoft YaHei', sans-serif;
  5965. font-weight:400;
  5966. font-style:normal;
  5967. font-size:10px;
  5968. }
  5969. #u127219 {
  5970. border-width:0px;
  5971. position:absolute;
  5972. left:1110px;
  5973. top:117px;
  5974. width:127px;
  5975. height:25px;
  5976. display:flex;
  5977. font-family:'Microsoft YaHei', sans-serif;
  5978. font-weight:400;
  5979. font-style:normal;
  5980. font-size:10px;
  5981. }
  5982. #u127219 .text {
  5983. position:absolute;
  5984. align-self:center;
  5985. padding:2px 2px 2px 2px;
  5986. box-sizing:border-box;
  5987. width:100%;
  5988. }
  5989. #u127219_div.disabled {
  5990. border-width:0px;
  5991. position:absolute;
  5992. left:0px;
  5993. top:0px;
  5994. width:127px;
  5995. height:25px;
  5996. background:inherit;
  5997. background-color:rgba(240, 240, 240, 1);
  5998. border:none;
  5999. border-radius:0px;
  6000. -moz-box-shadow:none;
  6001. -webkit-box-shadow:none;
  6002. box-shadow:none;
  6003. font-family:'Microsoft YaHei', sans-serif;
  6004. font-weight:400;
  6005. font-style:normal;
  6006. font-size:10px;
  6007. }
  6008. #u127219.disabled {
  6009. }
  6010. #u127220_div {
  6011. border-width:0px;
  6012. position:absolute;
  6013. left:0px;
  6014. top:0px;
  6015. width:55px;
  6016. height:30px;
  6017. background:inherit;
  6018. background-color:rgba(255, 255, 255, 1);
  6019. box-sizing:border-box;
  6020. border-width:1px;
  6021. border-style:solid;
  6022. border-color:rgba(170, 170, 170, 1);
  6023. border-radius:4px;
  6024. -moz-box-shadow:none;
  6025. -webkit-box-shadow:none;
  6026. box-shadow:none;
  6027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6028. font-weight:400;
  6029. font-style:normal;
  6030. font-size:12px;
  6031. color:#555555;
  6032. }
  6033. #u127220 {
  6034. border-width:0px;
  6035. position:absolute;
  6036. left:504px;
  6037. top:165px;
  6038. width:55px;
  6039. height:30px;
  6040. display:flex;
  6041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6042. font-weight:400;
  6043. font-style:normal;
  6044. font-size:12px;
  6045. color:#555555;
  6046. }
  6047. #u127220 .text {
  6048. position:absolute;
  6049. align-self:center;
  6050. padding:5px 15px 5px 15px;
  6051. box-sizing:border-box;
  6052. width:100%;
  6053. }
  6054. #u127220_text {
  6055. border-width:0px;
  6056. white-space:nowrap;
  6057. text-transform:none;
  6058. }
  6059. #u127221_div {
  6060. border-width:0px;
  6061. position:absolute;
  6062. left:0px;
  6063. top:0px;
  6064. width:19px;
  6065. height:18px;
  6066. background:inherit;
  6067. background-color:rgba(129, 211, 248, 0.0980392156862745);
  6068. box-sizing:border-box;
  6069. border-width:1px;
  6070. border-style:solid;
  6071. border-color:rgba(0, 153, 255, 1);
  6072. border-radius:4px;
  6073. -moz-box-shadow:none;
  6074. -webkit-box-shadow:none;
  6075. box-shadow:none;
  6076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6077. font-weight:400;
  6078. font-style:normal;
  6079. font-size:10px;
  6080. color:#0099FF;
  6081. }
  6082. #u127221 {
  6083. border-width:0px;
  6084. position:absolute;
  6085. left:576px;
  6086. top:256px;
  6087. width:19px;
  6088. height:18px;
  6089. display:flex;
  6090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6091. font-weight:400;
  6092. font-style:normal;
  6093. font-size:10px;
  6094. color:#0099FF;
  6095. }
  6096. #u127221 .text {
  6097. position:absolute;
  6098. align-self:center;
  6099. padding:2px 2px 2px 2px;
  6100. box-sizing:border-box;
  6101. width:100%;
  6102. }
  6103. #u127221_text {
  6104. border-width:0px;
  6105. word-wrap:break-word;
  6106. text-transform:none;
  6107. }
  6108. #u127222_div {
  6109. border-width:0px;
  6110. position:absolute;
  6111. left:0px;
  6112. top:0px;
  6113. width:19px;
  6114. height:18px;
  6115. background:inherit;
  6116. background-color:rgba(129, 211, 248, 0.0980392156862745);
  6117. box-sizing:border-box;
  6118. border-width:1px;
  6119. border-style:solid;
  6120. border-color:rgba(0, 153, 255, 1);
  6121. border-radius:4px;
  6122. -moz-box-shadow:none;
  6123. -webkit-box-shadow:none;
  6124. box-shadow:none;
  6125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6126. font-weight:400;
  6127. font-style:normal;
  6128. font-size:10px;
  6129. color:#0099FF;
  6130. }
  6131. #u127222 {
  6132. border-width:0px;
  6133. position:absolute;
  6134. left:576px;
  6135. top:293px;
  6136. width:19px;
  6137. height:18px;
  6138. display:flex;
  6139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6140. font-weight:400;
  6141. font-style:normal;
  6142. font-size:10px;
  6143. color:#0099FF;
  6144. }
  6145. #u127222 .text {
  6146. position:absolute;
  6147. align-self:center;
  6148. padding:2px 2px 2px 2px;
  6149. box-sizing:border-box;
  6150. width:100%;
  6151. }
  6152. #u127222_text {
  6153. border-width:0px;
  6154. word-wrap:break-word;
  6155. text-transform:none;
  6156. }
  6157. #u127223_div {
  6158. border-width:0px;
  6159. position:absolute;
  6160. left:0px;
  6161. top:0px;
  6162. width:38px;
  6163. height:24px;
  6164. background:inherit;
  6165. background-color:rgba(255, 255, 255, 1);
  6166. box-sizing:border-box;
  6167. border-width:1px;
  6168. border-style:solid;
  6169. border-color:rgba(170, 170, 170, 1);
  6170. border-radius:4px;
  6171. -moz-box-shadow:none;
  6172. -webkit-box-shadow:none;
  6173. box-shadow:none;
  6174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6175. font-weight:400;
  6176. font-style:normal;
  6177. font-size:10px;
  6178. color:#555555;
  6179. }
  6180. #u127223 {
  6181. border-width:0px;
  6182. position:absolute;
  6183. left:1330px;
  6184. top:256px;
  6185. width:38px;
  6186. height:24px;
  6187. display:flex;
  6188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6189. font-weight:400;
  6190. font-style:normal;
  6191. font-size:10px;
  6192. color:#555555;
  6193. }
  6194. #u127223 .text {
  6195. position:absolute;
  6196. align-self:center;
  6197. padding:5px 0px 5px 0px;
  6198. box-sizing:border-box;
  6199. width:100%;
  6200. }
  6201. #u127223_text {
  6202. border-width:0px;
  6203. word-wrap:break-word;
  6204. text-transform:none;
  6205. }
  6206. #u127224_div {
  6207. border-width:0px;
  6208. position:absolute;
  6209. left:0px;
  6210. top:0px;
  6211. width:38px;
  6212. height:24px;
  6213. background:inherit;
  6214. background-color:rgba(255, 255, 255, 1);
  6215. box-sizing:border-box;
  6216. border-width:1px;
  6217. border-style:solid;
  6218. border-color:rgba(170, 170, 170, 1);
  6219. border-radius:4px;
  6220. -moz-box-shadow:none;
  6221. -webkit-box-shadow:none;
  6222. box-shadow:none;
  6223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6224. font-weight:400;
  6225. font-style:normal;
  6226. font-size:10px;
  6227. color:#555555;
  6228. }
  6229. #u127224 {
  6230. border-width:0px;
  6231. position:absolute;
  6232. left:1330px;
  6233. top:293px;
  6234. width:38px;
  6235. height:24px;
  6236. display:flex;
  6237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6238. font-weight:400;
  6239. font-style:normal;
  6240. font-size:10px;
  6241. color:#555555;
  6242. }
  6243. #u127224 .text {
  6244. position:absolute;
  6245. align-self:center;
  6246. padding:5px 0px 5px 0px;
  6247. box-sizing:border-box;
  6248. width:100%;
  6249. }
  6250. #u127224_text {
  6251. border-width:0px;
  6252. word-wrap:break-word;
  6253. text-transform:none;
  6254. }
  6255. #u127225_div {
  6256. border-width:0px;
  6257. position:absolute;
  6258. left:0px;
  6259. top:0px;
  6260. width:38px;
  6261. height:24px;
  6262. background:inherit;
  6263. background-color:rgba(255, 255, 255, 1);
  6264. box-sizing:border-box;
  6265. border-width:1px;
  6266. border-style:solid;
  6267. border-color:rgba(170, 170, 170, 1);
  6268. border-radius:4px;
  6269. -moz-box-shadow:none;
  6270. -webkit-box-shadow:none;
  6271. box-shadow:none;
  6272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6273. font-weight:400;
  6274. font-style:normal;
  6275. font-size:10px;
  6276. color:#555555;
  6277. }
  6278. #u127225 {
  6279. border-width:0px;
  6280. position:absolute;
  6281. left:1330px;
  6282. top:331px;
  6283. width:38px;
  6284. height:24px;
  6285. display:flex;
  6286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6287. font-weight:400;
  6288. font-style:normal;
  6289. font-size:10px;
  6290. color:#555555;
  6291. }
  6292. #u127225 .text {
  6293. position:absolute;
  6294. align-self:center;
  6295. padding:5px 0px 5px 0px;
  6296. box-sizing:border-box;
  6297. width:100%;
  6298. }
  6299. #u127225_text {
  6300. border-width:0px;
  6301. word-wrap:break-word;
  6302. text-transform:none;
  6303. }
  6304. #u127226_div {
  6305. border-width:0px;
  6306. position:absolute;
  6307. left:0px;
  6308. top:0px;
  6309. width:38px;
  6310. height:24px;
  6311. background:inherit;
  6312. background-color:rgba(255, 255, 255, 1);
  6313. box-sizing:border-box;
  6314. border-width:1px;
  6315. border-style:solid;
  6316. border-color:rgba(170, 170, 170, 1);
  6317. border-radius:4px;
  6318. -moz-box-shadow:none;
  6319. -webkit-box-shadow:none;
  6320. box-shadow:none;
  6321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6322. font-weight:400;
  6323. font-style:normal;
  6324. font-size:10px;
  6325. color:#555555;
  6326. }
  6327. #u127226 {
  6328. border-width:0px;
  6329. position:absolute;
  6330. left:1330px;
  6331. top:368px;
  6332. width:38px;
  6333. height:24px;
  6334. display:flex;
  6335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6336. font-weight:400;
  6337. font-style:normal;
  6338. font-size:10px;
  6339. color:#555555;
  6340. }
  6341. #u127226 .text {
  6342. position:absolute;
  6343. align-self:center;
  6344. padding:5px 0px 5px 0px;
  6345. box-sizing:border-box;
  6346. width:100%;
  6347. }
  6348. #u127226_text {
  6349. border-width:0px;
  6350. word-wrap:break-word;
  6351. text-transform:none;
  6352. }
  6353. #u127227_div {
  6354. border-width:0px;
  6355. position:absolute;
  6356. left:0px;
  6357. top:0px;
  6358. width:38px;
  6359. height:24px;
  6360. background:inherit;
  6361. background-color:rgba(255, 255, 255, 1);
  6362. box-sizing:border-box;
  6363. border-width:1px;
  6364. border-style:solid;
  6365. border-color:rgba(217, 0, 27, 1);
  6366. border-radius:4px;
  6367. -moz-box-shadow:none;
  6368. -webkit-box-shadow:none;
  6369. box-shadow:none;
  6370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6371. font-weight:400;
  6372. font-style:normal;
  6373. font-size:10px;
  6374. color:#D9001B;
  6375. }
  6376. #u127227 {
  6377. border-width:0px;
  6378. position:absolute;
  6379. left:1330px;
  6380. top:406px;
  6381. width:38px;
  6382. height:24px;
  6383. display:flex;
  6384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6385. font-weight:400;
  6386. font-style:normal;
  6387. font-size:10px;
  6388. color:#D9001B;
  6389. }
  6390. #u127227 .text {
  6391. position:absolute;
  6392. align-self:center;
  6393. padding:5px 0px 5px 0px;
  6394. box-sizing:border-box;
  6395. width:100%;
  6396. }
  6397. #u127227_text {
  6398. border-width:0px;
  6399. word-wrap:break-word;
  6400. text-transform:none;
  6401. }
  6402. #u127228_div {
  6403. border-width:0px;
  6404. position:absolute;
  6405. left:0px;
  6406. top:0px;
  6407. width:38px;
  6408. height:24px;
  6409. background:inherit;
  6410. background-color:rgba(255, 255, 255, 1);
  6411. box-sizing:border-box;
  6412. border-width:1px;
  6413. border-style:solid;
  6414. border-color:rgba(170, 170, 170, 1);
  6415. border-radius:4px;
  6416. -moz-box-shadow:none;
  6417. -webkit-box-shadow:none;
  6418. box-shadow:none;
  6419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6420. font-weight:400;
  6421. font-style:normal;
  6422. font-size:10px;
  6423. color:#555555;
  6424. }
  6425. #u127228 {
  6426. border-width:0px;
  6427. position:absolute;
  6428. left:1330px;
  6429. top:441px;
  6430. width:38px;
  6431. height:24px;
  6432. display:flex;
  6433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6434. font-weight:400;
  6435. font-style:normal;
  6436. font-size:10px;
  6437. color:#555555;
  6438. }
  6439. #u127228 .text {
  6440. position:absolute;
  6441. align-self:center;
  6442. padding:5px 0px 5px 0px;
  6443. box-sizing:border-box;
  6444. width:100%;
  6445. }
  6446. #u127228_text {
  6447. border-width:0px;
  6448. word-wrap:break-word;
  6449. text-transform:none;
  6450. }
  6451. #u127229_div {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:0px;
  6455. top:0px;
  6456. width:55px;
  6457. height:30px;
  6458. background:inherit;
  6459. background-color:rgba(255, 255, 255, 1);
  6460. box-sizing:border-box;
  6461. border-width:1px;
  6462. border-style:solid;
  6463. border-color:rgba(170, 170, 170, 1);
  6464. border-radius:4px;
  6465. -moz-box-shadow:none;
  6466. -webkit-box-shadow:none;
  6467. box-shadow:none;
  6468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6469. font-weight:400;
  6470. font-style:normal;
  6471. font-size:12px;
  6472. color:#555555;
  6473. }
  6474. #u127229 {
  6475. border-width:0px;
  6476. position:absolute;
  6477. left:439px;
  6478. top:165px;
  6479. width:55px;
  6480. height:30px;
  6481. display:flex;
  6482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6483. font-weight:400;
  6484. font-style:normal;
  6485. font-size:12px;
  6486. color:#555555;
  6487. }
  6488. #u127229 .text {
  6489. position:absolute;
  6490. align-self:center;
  6491. padding:5px 15px 5px 15px;
  6492. box-sizing:border-box;
  6493. width:100%;
  6494. }
  6495. #u127229_text {
  6496. border-width:0px;
  6497. white-space:nowrap;
  6498. text-transform:none;
  6499. }
  6500. #u127231 {
  6501. border-width:0px;
  6502. position:absolute;
  6503. left:0px;
  6504. top:0px;
  6505. width:0px;
  6506. height:0px;
  6507. }
  6508. #u127232_img {
  6509. border-width:0px;
  6510. position:absolute;
  6511. left:0px;
  6512. top:0px;
  6513. width:200px;
  6514. height:1191px;
  6515. }
  6516. #u127232 {
  6517. border-width:0px;
  6518. position:absolute;
  6519. left:120px;
  6520. top:50px;
  6521. width:200px;
  6522. height:1191px;
  6523. display:flex;
  6524. }
  6525. #u127232 .text {
  6526. position:absolute;
  6527. align-self:center;
  6528. padding:2px 2px 2px 2px;
  6529. box-sizing:border-box;
  6530. width:100%;
  6531. }
  6532. #u127232_text {
  6533. border-width:0px;
  6534. word-wrap:break-word;
  6535. text-transform:none;
  6536. visibility:hidden;
  6537. }
  6538. #u127233_div {
  6539. border-width:0px;
  6540. position:absolute;
  6541. left:0px;
  6542. top:0px;
  6543. width:200px;
  6544. height:60px;
  6545. background:inherit;
  6546. background-color:rgba(224, 231, 247, 1);
  6547. border:none;
  6548. border-radius:0px;
  6549. -moz-box-shadow:none;
  6550. -webkit-box-shadow:none;
  6551. box-shadow:none;
  6552. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6553. font-weight:500;
  6554. font-style:normal;
  6555. font-size:18px;
  6556. }
  6557. #u127233 {
  6558. border-width:0px;
  6559. position:absolute;
  6560. left:120px;
  6561. top:50px;
  6562. width:200px;
  6563. height:60px;
  6564. display:flex;
  6565. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6566. font-weight:500;
  6567. font-style:normal;
  6568. font-size:18px;
  6569. }
  6570. #u127233 .text {
  6571. position:absolute;
  6572. align-self:center;
  6573. padding:0px 0px 0px 20px;
  6574. box-sizing:border-box;
  6575. width:100%;
  6576. }
  6577. #u127233_text {
  6578. border-width:0px;
  6579. word-wrap:break-word;
  6580. text-transform:none;
  6581. }
  6582. #u127234 {
  6583. border-width:0px;
  6584. position:absolute;
  6585. left:120px;
  6586. top:130px;
  6587. width:200px;
  6588. height:1078px;
  6589. }
  6590. #u127234_state0 {
  6591. border-width:0px;
  6592. position:absolute;
  6593. left:0px;
  6594. top:0px;
  6595. width:200px;
  6596. height:1078px;
  6597. overflow:auto;
  6598. -webkit-overflow-scrolling:touch;
  6599. -ms-overflow-x:hidden;
  6600. overflow-x:hidden;
  6601. background-image:none;
  6602. border:none;
  6603. border-radius:0px;
  6604. -moz-box-shadow:none;
  6605. -webkit-box-shadow:none;
  6606. box-shadow:none;
  6607. }
  6608. #u127234_state0_content {
  6609. border-width:0px;
  6610. position:absolute;
  6611. left:0px;
  6612. top:0px;
  6613. width:1px;
  6614. height:1px;
  6615. }
  6616. #u127235_div {
  6617. border-width:0px;
  6618. position:absolute;
  6619. left:0px;
  6620. top:0px;
  6621. width:97px;
  6622. height:22px;
  6623. background:inherit;
  6624. background-color:rgba(255, 255, 255, 0);
  6625. border:none;
  6626. border-radius:0px;
  6627. -moz-box-shadow:none;
  6628. -webkit-box-shadow:none;
  6629. box-shadow:none;
  6630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6631. font-weight:400;
  6632. font-style:normal;
  6633. font-size:16px;
  6634. }
  6635. #u127235 {
  6636. border-width:0px;
  6637. position:absolute;
  6638. left:30px;
  6639. top:0px;
  6640. width:97px;
  6641. height:22px;
  6642. display:flex;
  6643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6644. font-weight:400;
  6645. font-style:normal;
  6646. font-size:16px;
  6647. }
  6648. #u127235 .text {
  6649. position:absolute;
  6650. align-self:flex-start;
  6651. padding:0px 0px 0px 0px;
  6652. box-sizing:border-box;
  6653. width:100%;
  6654. }
  6655. #u127235_text {
  6656. border-width:0px;
  6657. word-wrap:break-word;
  6658. text-transform:none;
  6659. }
  6660. #u127236_div {
  6661. border-width:0px;
  6662. position:absolute;
  6663. left:0px;
  6664. top:0px;
  6665. width:65px;
  6666. height:22px;
  6667. background:inherit;
  6668. background-color:rgba(255, 255, 255, 0);
  6669. border:none;
  6670. border-radius:0px;
  6671. -moz-box-shadow:none;
  6672. -webkit-box-shadow:none;
  6673. box-shadow:none;
  6674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6675. font-weight:400;
  6676. font-style:normal;
  6677. font-size:16px;
  6678. }
  6679. #u127236 {
  6680. border-width:0px;
  6681. position:absolute;
  6682. left:30px;
  6683. top:42px;
  6684. width:65px;
  6685. height:22px;
  6686. display:flex;
  6687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6688. font-weight:400;
  6689. font-style:normal;
  6690. font-size:16px;
  6691. }
  6692. #u127236 .text {
  6693. position:absolute;
  6694. align-self:flex-start;
  6695. padding:0px 0px 0px 0px;
  6696. box-sizing:border-box;
  6697. width:100%;
  6698. }
  6699. #u127236_text {
  6700. border-width:0px;
  6701. white-space:nowrap;
  6702. text-transform:none;
  6703. }
  6704. #u127237_div {
  6705. border-width:0px;
  6706. position:absolute;
  6707. left:0px;
  6708. top:0px;
  6709. width:49px;
  6710. height:22px;
  6711. background:inherit;
  6712. background-color:rgba(255, 255, 255, 0);
  6713. border:none;
  6714. border-radius:0px;
  6715. -moz-box-shadow:none;
  6716. -webkit-box-shadow:none;
  6717. box-shadow:none;
  6718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6719. font-weight:400;
  6720. font-style:normal;
  6721. font-size:16px;
  6722. }
  6723. #u127237 {
  6724. border-width:0px;
  6725. position:absolute;
  6726. left:30px;
  6727. top:145px;
  6728. width:49px;
  6729. height:22px;
  6730. display:flex;
  6731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6732. font-weight:400;
  6733. font-style:normal;
  6734. font-size:16px;
  6735. }
  6736. #u127237 .text {
  6737. position:absolute;
  6738. align-self:flex-start;
  6739. padding:0px 0px 0px 0px;
  6740. box-sizing:border-box;
  6741. width:100%;
  6742. }
  6743. #u127237_text {
  6744. border-width:0px;
  6745. white-space:nowrap;
  6746. text-transform:none;
  6747. }
  6748. #u127238_div {
  6749. border-width:0px;
  6750. position:absolute;
  6751. left:0px;
  6752. top:0px;
  6753. width:97px;
  6754. height:22px;
  6755. background:inherit;
  6756. background-color:rgba(255, 255, 255, 0);
  6757. border:none;
  6758. border-radius:0px;
  6759. -moz-box-shadow:none;
  6760. -webkit-box-shadow:none;
  6761. box-shadow:none;
  6762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6763. font-weight:400;
  6764. font-style:normal;
  6765. font-size:16px;
  6766. }
  6767. #u127238 {
  6768. border-width:0px;
  6769. position:absolute;
  6770. left:30px;
  6771. top:187px;
  6772. width:97px;
  6773. height:22px;
  6774. display:flex;
  6775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6776. font-weight:400;
  6777. font-style:normal;
  6778. font-size:16px;
  6779. }
  6780. #u127238 .text {
  6781. position:absolute;
  6782. align-self:flex-start;
  6783. padding:0px 0px 0px 0px;
  6784. box-sizing:border-box;
  6785. width:100%;
  6786. }
  6787. #u127238_text {
  6788. border-width:0px;
  6789. word-wrap:break-word;
  6790. text-transform:none;
  6791. }
  6792. #u127239_img {
  6793. border-width:0px;
  6794. position:absolute;
  6795. left:0px;
  6796. top:0px;
  6797. width:201px;
  6798. height:2px;
  6799. }
  6800. #u127239 {
  6801. border-width:0px;
  6802. position:absolute;
  6803. left:0px;
  6804. top:84px;
  6805. width:200px;
  6806. height:1px;
  6807. display:flex;
  6808. }
  6809. #u127239 .text {
  6810. position:absolute;
  6811. align-self:center;
  6812. padding:2px 2px 2px 2px;
  6813. box-sizing:border-box;
  6814. width:100%;
  6815. }
  6816. #u127239_text {
  6817. border-width:0px;
  6818. word-wrap:break-word;
  6819. text-transform:none;
  6820. visibility:hidden;
  6821. }
  6822. #u127240_div {
  6823. border-width:0px;
  6824. position:absolute;
  6825. left:0px;
  6826. top:0px;
  6827. width:49px;
  6828. height:17px;
  6829. background:inherit;
  6830. background-color:rgba(255, 255, 255, 0);
  6831. border:none;
  6832. border-radius:0px;
  6833. -moz-box-shadow:none;
  6834. -webkit-box-shadow:none;
  6835. box-shadow:none;
  6836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6837. font-weight:400;
  6838. font-style:normal;
  6839. font-size:12px;
  6840. color:#AAAAAA;
  6841. }
  6842. #u127240 {
  6843. border-width:0px;
  6844. position:absolute;
  6845. left:30px;
  6846. top:105px;
  6847. width:49px;
  6848. height:17px;
  6849. display:flex;
  6850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6851. font-weight:400;
  6852. font-style:normal;
  6853. font-size:12px;
  6854. color:#AAAAAA;
  6855. }
  6856. #u127240 .text {
  6857. position:absolute;
  6858. align-self:flex-start;
  6859. padding:0px 0px 0px 0px;
  6860. box-sizing:border-box;
  6861. width:100%;
  6862. }
  6863. #u127240_text {
  6864. border-width:0px;
  6865. white-space:nowrap;
  6866. text-transform:none;
  6867. }
  6868. #u127241_div {
  6869. border-width:0px;
  6870. position:absolute;
  6871. left:0px;
  6872. top:0px;
  6873. width:97px;
  6874. height:22px;
  6875. background:inherit;
  6876. background-color:rgba(255, 255, 255, 0);
  6877. border:none;
  6878. border-radius:0px;
  6879. -moz-box-shadow:none;
  6880. -webkit-box-shadow:none;
  6881. box-shadow:none;
  6882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6883. font-weight:400;
  6884. font-style:normal;
  6885. font-size:16px;
  6886. }
  6887. #u127241 {
  6888. border-width:0px;
  6889. position:absolute;
  6890. left:30px;
  6891. top:229px;
  6892. width:97px;
  6893. height:22px;
  6894. display:flex;
  6895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6896. font-weight:400;
  6897. font-style:normal;
  6898. font-size:16px;
  6899. }
  6900. #u127241 .text {
  6901. position:absolute;
  6902. align-self:flex-start;
  6903. padding:0px 0px 0px 0px;
  6904. box-sizing:border-box;
  6905. width:100%;
  6906. }
  6907. #u127241_text {
  6908. border-width:0px;
  6909. word-wrap:break-word;
  6910. text-transform:none;
  6911. }
  6912. #u127242_div {
  6913. border-width:0px;
  6914. position:absolute;
  6915. left:0px;
  6916. top:0px;
  6917. width:65px;
  6918. height:22px;
  6919. background:inherit;
  6920. background-color:rgba(255, 255, 255, 0);
  6921. border:none;
  6922. border-radius:0px;
  6923. -moz-box-shadow:none;
  6924. -webkit-box-shadow:none;
  6925. box-shadow:none;
  6926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6927. font-weight:400;
  6928. font-style:normal;
  6929. font-size:16px;
  6930. }
  6931. #u127242 {
  6932. border-width:0px;
  6933. position:absolute;
  6934. left:30px;
  6935. top:271px;
  6936. width:65px;
  6937. height:22px;
  6938. display:flex;
  6939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6940. font-weight:400;
  6941. font-style:normal;
  6942. font-size:16px;
  6943. }
  6944. #u127242 .text {
  6945. position:absolute;
  6946. align-self:flex-start;
  6947. padding:0px 0px 0px 0px;
  6948. box-sizing:border-box;
  6949. width:100%;
  6950. }
  6951. #u127242_text {
  6952. border-width:0px;
  6953. white-space:nowrap;
  6954. text-transform:none;
  6955. }
  6956. #u127243_img {
  6957. border-width:0px;
  6958. position:absolute;
  6959. left:0px;
  6960. top:0px;
  6961. width:201px;
  6962. height:2px;
  6963. }
  6964. #u127243 {
  6965. border-width:0px;
  6966. position:absolute;
  6967. left:0px;
  6968. top:313px;
  6969. width:200px;
  6970. height:1px;
  6971. display:flex;
  6972. }
  6973. #u127243 .text {
  6974. position:absolute;
  6975. align-self:center;
  6976. padding:2px 2px 2px 2px;
  6977. box-sizing:border-box;
  6978. width:100%;
  6979. }
  6980. #u127243_text {
  6981. border-width:0px;
  6982. word-wrap:break-word;
  6983. text-transform:none;
  6984. visibility:hidden;
  6985. }
  6986. #u127244_div {
  6987. border-width:0px;
  6988. position:absolute;
  6989. left:0px;
  6990. top:0px;
  6991. width:65px;
  6992. height:22px;
  6993. background:inherit;
  6994. background-color:rgba(255, 255, 255, 0);
  6995. border:none;
  6996. border-radius:0px;
  6997. -moz-box-shadow:none;
  6998. -webkit-box-shadow:none;
  6999. box-shadow:none;
  7000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7001. font-weight:400;
  7002. font-style:normal;
  7003. font-size:16px;
  7004. }
  7005. #u127244 {
  7006. border-width:0px;
  7007. position:absolute;
  7008. left:30px;
  7009. top:370px;
  7010. width:65px;
  7011. height:22px;
  7012. display:flex;
  7013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7014. font-weight:400;
  7015. font-style:normal;
  7016. font-size:16px;
  7017. }
  7018. #u127244 .text {
  7019. position:absolute;
  7020. align-self:flex-start;
  7021. padding:0px 0px 0px 0px;
  7022. box-sizing:border-box;
  7023. width:100%;
  7024. }
  7025. #u127244_text {
  7026. border-width:0px;
  7027. white-space:nowrap;
  7028. text-transform:none;
  7029. }
  7030. #u127245_div {
  7031. border-width:0px;
  7032. position:absolute;
  7033. left:0px;
  7034. top:0px;
  7035. width:49px;
  7036. height:17px;
  7037. background:inherit;
  7038. background-color:rgba(255, 255, 255, 0);
  7039. border:none;
  7040. border-radius:0px;
  7041. -moz-box-shadow:none;
  7042. -webkit-box-shadow:none;
  7043. box-shadow:none;
  7044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7045. font-weight:400;
  7046. font-style:normal;
  7047. font-size:12px;
  7048. color:#AAAAAA;
  7049. }
  7050. #u127245 {
  7051. border-width:0px;
  7052. position:absolute;
  7053. left:30px;
  7054. top:334px;
  7055. width:49px;
  7056. height:17px;
  7057. display:flex;
  7058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7059. font-weight:400;
  7060. font-style:normal;
  7061. font-size:12px;
  7062. color:#AAAAAA;
  7063. }
  7064. #u127245 .text {
  7065. position:absolute;
  7066. align-self:flex-start;
  7067. padding:0px 0px 0px 0px;
  7068. box-sizing:border-box;
  7069. width:100%;
  7070. }
  7071. #u127245_text {
  7072. border-width:0px;
  7073. white-space:nowrap;
  7074. text-transform:none;
  7075. }
  7076. #u127246_div {
  7077. border-width:0px;
  7078. position:absolute;
  7079. left:0px;
  7080. top:0px;
  7081. width:65px;
  7082. height:22px;
  7083. background:inherit;
  7084. background-color:rgba(255, 255, 255, 0);
  7085. border:none;
  7086. border-radius:0px;
  7087. -moz-box-shadow:none;
  7088. -webkit-box-shadow:none;
  7089. box-shadow:none;
  7090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7091. font-weight:400;
  7092. font-style:normal;
  7093. font-size:16px;
  7094. }
  7095. #u127246 {
  7096. border-width:0px;
  7097. position:absolute;
  7098. left:30px;
  7099. top:412px;
  7100. width:65px;
  7101. height:22px;
  7102. display:flex;
  7103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7104. font-weight:400;
  7105. font-style:normal;
  7106. font-size:16px;
  7107. }
  7108. #u127246 .text {
  7109. position:absolute;
  7110. align-self:flex-start;
  7111. padding:0px 0px 0px 0px;
  7112. box-sizing:border-box;
  7113. width:100%;
  7114. }
  7115. #u127246_text {
  7116. border-width:0px;
  7117. white-space:nowrap;
  7118. text-transform:none;
  7119. }
  7120. #u127247_div {
  7121. border-width:0px;
  7122. position:absolute;
  7123. left:0px;
  7124. top:0px;
  7125. width:65px;
  7126. height:22px;
  7127. background:inherit;
  7128. background-color:rgba(255, 255, 255, 0);
  7129. border:none;
  7130. border-radius:0px;
  7131. -moz-box-shadow:none;
  7132. -webkit-box-shadow:none;
  7133. box-shadow:none;
  7134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7135. font-weight:400;
  7136. font-style:normal;
  7137. font-size:16px;
  7138. }
  7139. #u127247 {
  7140. border-width:0px;
  7141. position:absolute;
  7142. left:30px;
  7143. top:454px;
  7144. width:65px;
  7145. height:22px;
  7146. display:flex;
  7147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7148. font-weight:400;
  7149. font-style:normal;
  7150. font-size:16px;
  7151. }
  7152. #u127247 .text {
  7153. position:absolute;
  7154. align-self:flex-start;
  7155. padding:0px 0px 0px 0px;
  7156. box-sizing:border-box;
  7157. width:100%;
  7158. }
  7159. #u127247_text {
  7160. border-width:0px;
  7161. white-space:nowrap;
  7162. text-transform:none;
  7163. }
  7164. #u127248_div {
  7165. border-width:0px;
  7166. position:absolute;
  7167. left:0px;
  7168. top:0px;
  7169. width:65px;
  7170. height:22px;
  7171. background:inherit;
  7172. background-color:rgba(255, 255, 255, 0);
  7173. border:none;
  7174. border-radius:0px;
  7175. -moz-box-shadow:none;
  7176. -webkit-box-shadow:none;
  7177. box-shadow:none;
  7178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7179. font-weight:400;
  7180. font-style:normal;
  7181. font-size:16px;
  7182. }
  7183. #u127248 {
  7184. border-width:0px;
  7185. position:absolute;
  7186. left:30px;
  7187. top:496px;
  7188. width:65px;
  7189. height:22px;
  7190. display:flex;
  7191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7192. font-weight:400;
  7193. font-style:normal;
  7194. font-size:16px;
  7195. }
  7196. #u127248 .text {
  7197. position:absolute;
  7198. align-self:flex-start;
  7199. padding:0px 0px 0px 0px;
  7200. box-sizing:border-box;
  7201. width:100%;
  7202. }
  7203. #u127248_text {
  7204. border-width:0px;
  7205. white-space:nowrap;
  7206. text-transform:none;
  7207. }
  7208. #u127249_div {
  7209. border-width:0px;
  7210. position:absolute;
  7211. left:0px;
  7212. top:0px;
  7213. width:65px;
  7214. height:22px;
  7215. background:inherit;
  7216. background-color:rgba(255, 255, 255, 0);
  7217. border:none;
  7218. border-radius:0px;
  7219. -moz-box-shadow:none;
  7220. -webkit-box-shadow:none;
  7221. box-shadow:none;
  7222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7223. font-weight:400;
  7224. font-style:normal;
  7225. font-size:16px;
  7226. }
  7227. #u127249 {
  7228. border-width:0px;
  7229. position:absolute;
  7230. left:30px;
  7231. top:538px;
  7232. width:65px;
  7233. height:22px;
  7234. display:flex;
  7235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7236. font-weight:400;
  7237. font-style:normal;
  7238. font-size:16px;
  7239. }
  7240. #u127249 .text {
  7241. position:absolute;
  7242. align-self:flex-start;
  7243. padding:0px 0px 0px 0px;
  7244. box-sizing:border-box;
  7245. width:100%;
  7246. }
  7247. #u127249_text {
  7248. border-width:0px;
  7249. white-space:nowrap;
  7250. text-transform:none;
  7251. }
  7252. #u127250_div {
  7253. border-width:0px;
  7254. position:absolute;
  7255. left:0px;
  7256. top:0px;
  7257. width:65px;
  7258. height:22px;
  7259. background:inherit;
  7260. background-color:rgba(255, 255, 255, 0);
  7261. border:none;
  7262. border-radius:0px;
  7263. -moz-box-shadow:none;
  7264. -webkit-box-shadow:none;
  7265. box-shadow:none;
  7266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7267. font-weight:400;
  7268. font-style:normal;
  7269. font-size:16px;
  7270. }
  7271. #u127250 {
  7272. border-width:0px;
  7273. position:absolute;
  7274. left:30px;
  7275. top:580px;
  7276. width:65px;
  7277. height:22px;
  7278. display:flex;
  7279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7280. font-weight:400;
  7281. font-style:normal;
  7282. font-size:16px;
  7283. }
  7284. #u127250 .text {
  7285. position:absolute;
  7286. align-self:flex-start;
  7287. padding:0px 0px 0px 0px;
  7288. box-sizing:border-box;
  7289. width:100%;
  7290. }
  7291. #u127250_text {
  7292. border-width:0px;
  7293. white-space:nowrap;
  7294. text-transform:none;
  7295. }
  7296. #u127251_img {
  7297. border-width:0px;
  7298. position:absolute;
  7299. left:0px;
  7300. top:0px;
  7301. width:201px;
  7302. height:2px;
  7303. }
  7304. #u127251 {
  7305. border-width:0px;
  7306. position:absolute;
  7307. left:0px;
  7308. top:1209px;
  7309. width:200px;
  7310. height:1px;
  7311. display:flex;
  7312. }
  7313. #u127251 .text {
  7314. position:absolute;
  7315. align-self:center;
  7316. padding:2px 2px 2px 2px;
  7317. box-sizing:border-box;
  7318. width:100%;
  7319. }
  7320. #u127251_text {
  7321. border-width:0px;
  7322. word-wrap:break-word;
  7323. text-transform:none;
  7324. visibility:hidden;
  7325. }
  7326. #u127252_div {
  7327. border-width:0px;
  7328. position:absolute;
  7329. left:0px;
  7330. top:0px;
  7331. width:65px;
  7332. height:22px;
  7333. background:inherit;
  7334. background-color:rgba(255, 255, 255, 0);
  7335. border:none;
  7336. border-radius:0px;
  7337. -moz-box-shadow:none;
  7338. -webkit-box-shadow:none;
  7339. box-shadow:none;
  7340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7341. font-weight:400;
  7342. font-style:normal;
  7343. font-size:16px;
  7344. }
  7345. #u127252 {
  7346. border-width:0px;
  7347. position:absolute;
  7348. left:30px;
  7349. top:1266px;
  7350. width:65px;
  7351. height:22px;
  7352. display:flex;
  7353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7354. font-weight:400;
  7355. font-style:normal;
  7356. font-size:16px;
  7357. }
  7358. #u127252 .text {
  7359. position:absolute;
  7360. align-self:flex-start;
  7361. padding:0px 0px 0px 0px;
  7362. box-sizing:border-box;
  7363. width:100%;
  7364. }
  7365. #u127252_text {
  7366. border-width:0px;
  7367. white-space:nowrap;
  7368. text-transform:none;
  7369. }
  7370. #u127253_div {
  7371. border-width:0px;
  7372. position:absolute;
  7373. left:0px;
  7374. top:0px;
  7375. width:49px;
  7376. height:17px;
  7377. background:inherit;
  7378. background-color:rgba(255, 255, 255, 0);
  7379. border:none;
  7380. border-radius:0px;
  7381. -moz-box-shadow:none;
  7382. -webkit-box-shadow:none;
  7383. box-shadow:none;
  7384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7385. font-weight:400;
  7386. font-style:normal;
  7387. font-size:12px;
  7388. color:#AAAAAA;
  7389. }
  7390. #u127253 {
  7391. border-width:0px;
  7392. position:absolute;
  7393. left:30px;
  7394. top:1230px;
  7395. width:49px;
  7396. height:17px;
  7397. display:flex;
  7398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7399. font-weight:400;
  7400. font-style:normal;
  7401. font-size:12px;
  7402. color:#AAAAAA;
  7403. }
  7404. #u127253 .text {
  7405. position:absolute;
  7406. align-self:flex-start;
  7407. padding:0px 0px 0px 0px;
  7408. box-sizing:border-box;
  7409. width:100%;
  7410. }
  7411. #u127253_text {
  7412. border-width:0px;
  7413. white-space:nowrap;
  7414. text-transform:none;
  7415. }
  7416. #u127254_div {
  7417. border-width:0px;
  7418. position:absolute;
  7419. left:0px;
  7420. top:0px;
  7421. width:65px;
  7422. height:22px;
  7423. background:inherit;
  7424. background-color:rgba(255, 255, 255, 0);
  7425. border:none;
  7426. border-radius:0px;
  7427. -moz-box-shadow:none;
  7428. -webkit-box-shadow:none;
  7429. box-shadow:none;
  7430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7431. font-weight:400;
  7432. font-style:normal;
  7433. font-size:16px;
  7434. }
  7435. #u127254 {
  7436. border-width:0px;
  7437. position:absolute;
  7438. left:30px;
  7439. top:1308px;
  7440. width:65px;
  7441. height:22px;
  7442. display:flex;
  7443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7444. font-weight:400;
  7445. font-style:normal;
  7446. font-size:16px;
  7447. }
  7448. #u127254 .text {
  7449. position:absolute;
  7450. align-self:flex-start;
  7451. padding:0px 0px 0px 0px;
  7452. box-sizing:border-box;
  7453. width:100%;
  7454. }
  7455. #u127254_text {
  7456. border-width:0px;
  7457. white-space:nowrap;
  7458. text-transform:none;
  7459. }
  7460. #u127255_div {
  7461. border-width:0px;
  7462. position:absolute;
  7463. left:0px;
  7464. top:0px;
  7465. width:65px;
  7466. height:22px;
  7467. background:inherit;
  7468. background-color:rgba(255, 255, 255, 0);
  7469. border:none;
  7470. border-radius:0px;
  7471. -moz-box-shadow:none;
  7472. -webkit-box-shadow:none;
  7473. box-shadow:none;
  7474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7475. font-weight:400;
  7476. font-style:normal;
  7477. font-size:16px;
  7478. }
  7479. #u127255 {
  7480. border-width:0px;
  7481. position:absolute;
  7482. left:30px;
  7483. top:1392px;
  7484. width:65px;
  7485. height:22px;
  7486. display:flex;
  7487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7488. font-weight:400;
  7489. font-style:normal;
  7490. font-size:16px;
  7491. }
  7492. #u127255 .text {
  7493. position:absolute;
  7494. align-self:flex-start;
  7495. padding:0px 0px 0px 0px;
  7496. box-sizing:border-box;
  7497. width:100%;
  7498. }
  7499. #u127255_text {
  7500. border-width:0px;
  7501. white-space:nowrap;
  7502. text-transform:none;
  7503. }
  7504. #u127256_img {
  7505. border-width:0px;
  7506. position:absolute;
  7507. left:0px;
  7508. top:0px;
  7509. width:201px;
  7510. height:2px;
  7511. }
  7512. #u127256 {
  7513. border-width:0px;
  7514. position:absolute;
  7515. left:0px;
  7516. top:1434px;
  7517. width:200px;
  7518. height:1px;
  7519. display:flex;
  7520. }
  7521. #u127256 .text {
  7522. position:absolute;
  7523. align-self:center;
  7524. padding:2px 2px 2px 2px;
  7525. box-sizing:border-box;
  7526. width:100%;
  7527. }
  7528. #u127256_text {
  7529. border-width:0px;
  7530. word-wrap:break-word;
  7531. text-transform:none;
  7532. visibility:hidden;
  7533. }
  7534. #u127257_div {
  7535. border-width:0px;
  7536. position:absolute;
  7537. left:0px;
  7538. top:0px;
  7539. width:49px;
  7540. height:22px;
  7541. background:inherit;
  7542. background-color:rgba(255, 255, 255, 0);
  7543. border:none;
  7544. border-radius:0px;
  7545. -moz-box-shadow:none;
  7546. -webkit-box-shadow:none;
  7547. box-shadow:none;
  7548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7549. font-weight:400;
  7550. font-style:normal;
  7551. font-size:16px;
  7552. }
  7553. #u127257 {
  7554. border-width:0px;
  7555. position:absolute;
  7556. left:30px;
  7557. top:1491px;
  7558. width:49px;
  7559. height:22px;
  7560. display:flex;
  7561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7562. font-weight:400;
  7563. font-style:normal;
  7564. font-size:16px;
  7565. }
  7566. #u127257 .text {
  7567. position:absolute;
  7568. align-self:flex-start;
  7569. padding:0px 0px 0px 0px;
  7570. box-sizing:border-box;
  7571. width:100%;
  7572. }
  7573. #u127257_text {
  7574. border-width:0px;
  7575. white-space:nowrap;
  7576. text-transform:none;
  7577. }
  7578. #u127258_div {
  7579. border-width:0px;
  7580. position:absolute;
  7581. left:0px;
  7582. top:0px;
  7583. width:49px;
  7584. height:17px;
  7585. background:inherit;
  7586. background-color:rgba(255, 255, 255, 0);
  7587. border:none;
  7588. border-radius:0px;
  7589. -moz-box-shadow:none;
  7590. -webkit-box-shadow:none;
  7591. box-shadow:none;
  7592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7593. font-weight:400;
  7594. font-style:normal;
  7595. font-size:12px;
  7596. color:#AAAAAA;
  7597. }
  7598. #u127258 {
  7599. border-width:0px;
  7600. position:absolute;
  7601. left:30px;
  7602. top:1455px;
  7603. width:49px;
  7604. height:17px;
  7605. display:flex;
  7606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7607. font-weight:400;
  7608. font-style:normal;
  7609. font-size:12px;
  7610. color:#AAAAAA;
  7611. }
  7612. #u127258 .text {
  7613. position:absolute;
  7614. align-self:flex-start;
  7615. padding:0px 0px 0px 0px;
  7616. box-sizing:border-box;
  7617. width:100%;
  7618. }
  7619. #u127258_text {
  7620. border-width:0px;
  7621. white-space:nowrap;
  7622. text-transform:none;
  7623. }
  7624. #u127259_div {
  7625. border-width:0px;
  7626. position:absolute;
  7627. left:0px;
  7628. top:0px;
  7629. width:49px;
  7630. height:22px;
  7631. background:inherit;
  7632. background-color:rgba(255, 255, 255, 0);
  7633. border:none;
  7634. border-radius:0px;
  7635. -moz-box-shadow:none;
  7636. -webkit-box-shadow:none;
  7637. box-shadow:none;
  7638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7639. font-weight:400;
  7640. font-style:normal;
  7641. font-size:16px;
  7642. }
  7643. #u127259 {
  7644. border-width:0px;
  7645. position:absolute;
  7646. left:30px;
  7647. top:1533px;
  7648. width:49px;
  7649. height:22px;
  7650. display:flex;
  7651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7652. font-weight:400;
  7653. font-style:normal;
  7654. font-size:16px;
  7655. }
  7656. #u127259 .text {
  7657. position:absolute;
  7658. align-self:flex-start;
  7659. padding:0px 0px 0px 0px;
  7660. box-sizing:border-box;
  7661. width:100%;
  7662. }
  7663. #u127259_text {
  7664. border-width:0px;
  7665. white-space:nowrap;
  7666. text-transform:none;
  7667. }
  7668. #u127260_div {
  7669. border-width:0px;
  7670. position:absolute;
  7671. left:0px;
  7672. top:0px;
  7673. width:65px;
  7674. height:22px;
  7675. background:inherit;
  7676. background-color:rgba(255, 255, 255, 0);
  7677. border:none;
  7678. border-radius:0px;
  7679. -moz-box-shadow:none;
  7680. -webkit-box-shadow:none;
  7681. box-shadow:none;
  7682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7683. font-weight:400;
  7684. font-style:normal;
  7685. font-size:16px;
  7686. }
  7687. #u127260 {
  7688. border-width:0px;
  7689. position:absolute;
  7690. left:30px;
  7691. top:1575px;
  7692. width:65px;
  7693. height:22px;
  7694. display:flex;
  7695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7696. font-weight:400;
  7697. font-style:normal;
  7698. font-size:16px;
  7699. }
  7700. #u127260 .text {
  7701. position:absolute;
  7702. align-self:flex-start;
  7703. padding:0px 0px 0px 0px;
  7704. box-sizing:border-box;
  7705. width:100%;
  7706. }
  7707. #u127260_text {
  7708. border-width:0px;
  7709. white-space:nowrap;
  7710. text-transform:none;
  7711. }
  7712. #u127261_img {
  7713. border-width:0px;
  7714. position:absolute;
  7715. left:0px;
  7716. top:0px;
  7717. width:201px;
  7718. height:2px;
  7719. }
  7720. #u127261 {
  7721. border-width:0px;
  7722. position:absolute;
  7723. left:0px;
  7724. top:1617px;
  7725. width:200px;
  7726. height:1px;
  7727. display:flex;
  7728. }
  7729. #u127261 .text {
  7730. position:absolute;
  7731. align-self:center;
  7732. padding:2px 2px 2px 2px;
  7733. box-sizing:border-box;
  7734. width:100%;
  7735. }
  7736. #u127261_text {
  7737. border-width:0px;
  7738. word-wrap:break-word;
  7739. text-transform:none;
  7740. visibility:hidden;
  7741. }
  7742. #u127262_div {
  7743. border-width:0px;
  7744. position:absolute;
  7745. left:0px;
  7746. top:0px;
  7747. width:81px;
  7748. height:22px;
  7749. background:inherit;
  7750. background-color:rgba(255, 255, 255, 0);
  7751. border:none;
  7752. border-radius:0px;
  7753. -moz-box-shadow:none;
  7754. -webkit-box-shadow:none;
  7755. box-shadow:none;
  7756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7757. font-weight:400;
  7758. font-style:normal;
  7759. font-size:16px;
  7760. }
  7761. #u127262 {
  7762. border-width:0px;
  7763. position:absolute;
  7764. left:30px;
  7765. top:1674px;
  7766. width:81px;
  7767. height:22px;
  7768. display:flex;
  7769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7770. font-weight:400;
  7771. font-style:normal;
  7772. font-size:16px;
  7773. }
  7774. #u127262 .text {
  7775. position:absolute;
  7776. align-self:flex-start;
  7777. padding:0px 0px 0px 0px;
  7778. box-sizing:border-box;
  7779. width:100%;
  7780. }
  7781. #u127262_text {
  7782. border-width:0px;
  7783. white-space:nowrap;
  7784. text-transform:none;
  7785. }
  7786. #u127263_div {
  7787. border-width:0px;
  7788. position:absolute;
  7789. left:0px;
  7790. top:0px;
  7791. width:49px;
  7792. height:17px;
  7793. background:inherit;
  7794. background-color:rgba(255, 255, 255, 0);
  7795. border:none;
  7796. border-radius:0px;
  7797. -moz-box-shadow:none;
  7798. -webkit-box-shadow:none;
  7799. box-shadow:none;
  7800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7801. font-weight:400;
  7802. font-style:normal;
  7803. font-size:12px;
  7804. color:#AAAAAA;
  7805. }
  7806. #u127263 {
  7807. border-width:0px;
  7808. position:absolute;
  7809. left:30px;
  7810. top:1638px;
  7811. width:49px;
  7812. height:17px;
  7813. display:flex;
  7814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7815. font-weight:400;
  7816. font-style:normal;
  7817. font-size:12px;
  7818. color:#AAAAAA;
  7819. }
  7820. #u127263 .text {
  7821. position:absolute;
  7822. align-self:flex-start;
  7823. padding:0px 0px 0px 0px;
  7824. box-sizing:border-box;
  7825. width:100%;
  7826. }
  7827. #u127263_text {
  7828. border-width:0px;
  7829. white-space:nowrap;
  7830. text-transform:none;
  7831. }
  7832. #u127264_div {
  7833. border-width:0px;
  7834. position:absolute;
  7835. left:0px;
  7836. top:0px;
  7837. width:81px;
  7838. height:22px;
  7839. background:inherit;
  7840. background-color:rgba(255, 255, 255, 0);
  7841. border:none;
  7842. border-radius:0px;
  7843. -moz-box-shadow:none;
  7844. -webkit-box-shadow:none;
  7845. box-shadow:none;
  7846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7847. font-weight:400;
  7848. font-style:normal;
  7849. font-size:16px;
  7850. }
  7851. #u127264 {
  7852. border-width:0px;
  7853. position:absolute;
  7854. left:30px;
  7855. top:1716px;
  7856. width:81px;
  7857. height:22px;
  7858. display:flex;
  7859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7860. font-weight:400;
  7861. font-style:normal;
  7862. font-size:16px;
  7863. }
  7864. #u127264 .text {
  7865. position:absolute;
  7866. align-self:flex-start;
  7867. padding:0px 0px 0px 0px;
  7868. box-sizing:border-box;
  7869. width:100%;
  7870. }
  7871. #u127264_text {
  7872. border-width:0px;
  7873. white-space:nowrap;
  7874. text-transform:none;
  7875. }
  7876. #u127265_div {
  7877. border-width:0px;
  7878. position:absolute;
  7879. left:0px;
  7880. top:0px;
  7881. width:81px;
  7882. height:22px;
  7883. background:inherit;
  7884. background-color:rgba(255, 255, 255, 0);
  7885. border:none;
  7886. border-radius:0px;
  7887. -moz-box-shadow:none;
  7888. -webkit-box-shadow:none;
  7889. box-shadow:none;
  7890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7891. font-weight:400;
  7892. font-style:normal;
  7893. font-size:16px;
  7894. }
  7895. #u127265 {
  7896. border-width:0px;
  7897. position:absolute;
  7898. left:30px;
  7899. top:1758px;
  7900. width:81px;
  7901. height:22px;
  7902. display:flex;
  7903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7904. font-weight:400;
  7905. font-style:normal;
  7906. font-size:16px;
  7907. }
  7908. #u127265 .text {
  7909. position:absolute;
  7910. align-self:flex-start;
  7911. padding:0px 0px 0px 0px;
  7912. box-sizing:border-box;
  7913. width:100%;
  7914. }
  7915. #u127265_text {
  7916. border-width:0px;
  7917. white-space:nowrap;
  7918. text-transform:none;
  7919. }
  7920. #u127266_div {
  7921. border-width:0px;
  7922. position:absolute;
  7923. left:0px;
  7924. top:0px;
  7925. width:65px;
  7926. height:22px;
  7927. background:inherit;
  7928. background-color:rgba(255, 255, 255, 0);
  7929. border:none;
  7930. border-radius:0px;
  7931. -moz-box-shadow:none;
  7932. -webkit-box-shadow:none;
  7933. box-shadow:none;
  7934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7935. font-weight:400;
  7936. font-style:normal;
  7937. font-size:16px;
  7938. }
  7939. #u127266 {
  7940. border-width:0px;
  7941. position:absolute;
  7942. left:30px;
  7943. top:1350px;
  7944. width:65px;
  7945. height:22px;
  7946. display:flex;
  7947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7948. font-weight:400;
  7949. font-style:normal;
  7950. font-size:16px;
  7951. }
  7952. #u127266 .text {
  7953. position:absolute;
  7954. align-self:flex-start;
  7955. padding:0px 0px 0px 0px;
  7956. box-sizing:border-box;
  7957. width:100%;
  7958. }
  7959. #u127266_text {
  7960. border-width:0px;
  7961. white-space:nowrap;
  7962. text-transform:none;
  7963. }
  7964. #u127267_img {
  7965. border-width:0px;
  7966. position:absolute;
  7967. left:0px;
  7968. top:0px;
  7969. width:201px;
  7970. height:2px;
  7971. }
  7972. #u127267 {
  7973. border-width:0px;
  7974. position:absolute;
  7975. left:0px;
  7976. top:629px;
  7977. width:200px;
  7978. height:1px;
  7979. display:flex;
  7980. }
  7981. #u127267 .text {
  7982. position:absolute;
  7983. align-self:center;
  7984. padding:2px 2px 2px 2px;
  7985. box-sizing:border-box;
  7986. width:100%;
  7987. }
  7988. #u127267_text {
  7989. border-width:0px;
  7990. word-wrap:break-word;
  7991. text-transform:none;
  7992. visibility:hidden;
  7993. }
  7994. #u127268_div {
  7995. border-width:0px;
  7996. position:absolute;
  7997. left:0px;
  7998. top:0px;
  7999. width:65px;
  8000. height:22px;
  8001. background:inherit;
  8002. background-color:rgba(255, 255, 255, 0);
  8003. border:none;
  8004. border-radius:0px;
  8005. -moz-box-shadow:none;
  8006. -webkit-box-shadow:none;
  8007. box-shadow:none;
  8008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8009. font-weight:400;
  8010. font-style:normal;
  8011. font-size:16px;
  8012. }
  8013. #u127268 {
  8014. border-width:0px;
  8015. position:absolute;
  8016. left:30px;
  8017. top:686px;
  8018. width:65px;
  8019. height:22px;
  8020. display:flex;
  8021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8022. font-weight:400;
  8023. font-style:normal;
  8024. font-size:16px;
  8025. }
  8026. #u127268 .text {
  8027. position:absolute;
  8028. align-self:flex-start;
  8029. padding:0px 0px 0px 0px;
  8030. box-sizing:border-box;
  8031. width:100%;
  8032. }
  8033. #u127268_text {
  8034. border-width:0px;
  8035. white-space:nowrap;
  8036. text-transform:none;
  8037. }
  8038. #u127269_div {
  8039. border-width:0px;
  8040. position:absolute;
  8041. left:0px;
  8042. top:0px;
  8043. width:49px;
  8044. height:17px;
  8045. background:inherit;
  8046. background-color:rgba(255, 255, 255, 0);
  8047. border:none;
  8048. border-radius:0px;
  8049. -moz-box-shadow:none;
  8050. -webkit-box-shadow:none;
  8051. box-shadow:none;
  8052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8053. font-weight:400;
  8054. font-style:normal;
  8055. font-size:12px;
  8056. color:#AAAAAA;
  8057. }
  8058. #u127269 {
  8059. border-width:0px;
  8060. position:absolute;
  8061. left:30px;
  8062. top:650px;
  8063. width:49px;
  8064. height:17px;
  8065. display:flex;
  8066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8067. font-weight:400;
  8068. font-style:normal;
  8069. font-size:12px;
  8070. color:#AAAAAA;
  8071. }
  8072. #u127269 .text {
  8073. position:absolute;
  8074. align-self:flex-start;
  8075. padding:0px 0px 0px 0px;
  8076. box-sizing:border-box;
  8077. width:100%;
  8078. }
  8079. #u127269_text {
  8080. border-width:0px;
  8081. white-space:nowrap;
  8082. text-transform:none;
  8083. }
  8084. #u127270_div {
  8085. border-width:0px;
  8086. position:absolute;
  8087. left:0px;
  8088. top:0px;
  8089. width:65px;
  8090. height:22px;
  8091. background:inherit;
  8092. background-color:rgba(255, 255, 255, 0);
  8093. border:none;
  8094. border-radius:0px;
  8095. -moz-box-shadow:none;
  8096. -webkit-box-shadow:none;
  8097. box-shadow:none;
  8098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8099. font-weight:400;
  8100. font-style:normal;
  8101. font-size:16px;
  8102. }
  8103. #u127270 {
  8104. border-width:0px;
  8105. position:absolute;
  8106. left:30px;
  8107. top:728px;
  8108. width:65px;
  8109. height:22px;
  8110. display:flex;
  8111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8112. font-weight:400;
  8113. font-style:normal;
  8114. font-size:16px;
  8115. }
  8116. #u127270 .text {
  8117. position:absolute;
  8118. align-self:flex-start;
  8119. padding:0px 0px 0px 0px;
  8120. box-sizing:border-box;
  8121. width:100%;
  8122. }
  8123. #u127270_text {
  8124. border-width:0px;
  8125. white-space:nowrap;
  8126. text-transform:none;
  8127. }
  8128. #u127271_div {
  8129. border-width:0px;
  8130. position:absolute;
  8131. left:0px;
  8132. top:0px;
  8133. width:65px;
  8134. height:22px;
  8135. background:inherit;
  8136. background-color:rgba(255, 255, 255, 0);
  8137. border:none;
  8138. border-radius:0px;
  8139. -moz-box-shadow:none;
  8140. -webkit-box-shadow:none;
  8141. box-shadow:none;
  8142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8143. font-weight:400;
  8144. font-style:normal;
  8145. font-size:16px;
  8146. }
  8147. #u127271 {
  8148. border-width:0px;
  8149. position:absolute;
  8150. left:30px;
  8151. top:812px;
  8152. width:65px;
  8153. height:22px;
  8154. display:flex;
  8155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8156. font-weight:400;
  8157. font-style:normal;
  8158. font-size:16px;
  8159. }
  8160. #u127271 .text {
  8161. position:absolute;
  8162. align-self:flex-start;
  8163. padding:0px 0px 0px 0px;
  8164. box-sizing:border-box;
  8165. width:100%;
  8166. }
  8167. #u127271_text {
  8168. border-width:0px;
  8169. white-space:nowrap;
  8170. text-transform:none;
  8171. }
  8172. #u127272_div {
  8173. border-width:0px;
  8174. position:absolute;
  8175. left:0px;
  8176. top:0px;
  8177. width:65px;
  8178. height:22px;
  8179. background:inherit;
  8180. background-color:rgba(255, 255, 255, 0);
  8181. border:none;
  8182. border-radius:0px;
  8183. -moz-box-shadow:none;
  8184. -webkit-box-shadow:none;
  8185. box-shadow:none;
  8186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8187. font-weight:400;
  8188. font-style:normal;
  8189. font-size:16px;
  8190. }
  8191. #u127272 {
  8192. border-width:0px;
  8193. position:absolute;
  8194. left:30px;
  8195. top:770px;
  8196. width:65px;
  8197. height:22px;
  8198. display:flex;
  8199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8200. font-weight:400;
  8201. font-style:normal;
  8202. font-size:16px;
  8203. }
  8204. #u127272 .text {
  8205. position:absolute;
  8206. align-self:flex-start;
  8207. padding:0px 0px 0px 0px;
  8208. box-sizing:border-box;
  8209. width:100%;
  8210. }
  8211. #u127272_text {
  8212. border-width:0px;
  8213. white-space:nowrap;
  8214. text-transform:none;
  8215. }
  8216. #u127273_div {
  8217. border-width:0px;
  8218. position:absolute;
  8219. left:0px;
  8220. top:0px;
  8221. width:65px;
  8222. height:22px;
  8223. background:inherit;
  8224. background-color:rgba(255, 255, 255, 0);
  8225. border:none;
  8226. border-radius:0px;
  8227. -moz-box-shadow:none;
  8228. -webkit-box-shadow:none;
  8229. box-shadow:none;
  8230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8231. font-weight:400;
  8232. font-style:normal;
  8233. font-size:16px;
  8234. }
  8235. #u127273 {
  8236. border-width:0px;
  8237. position:absolute;
  8238. left:30px;
  8239. top:854px;
  8240. width:65px;
  8241. height:22px;
  8242. display:flex;
  8243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8244. font-weight:400;
  8245. font-style:normal;
  8246. font-size:16px;
  8247. }
  8248. #u127273 .text {
  8249. position:absolute;
  8250. align-self:flex-start;
  8251. padding:0px 0px 0px 0px;
  8252. box-sizing:border-box;
  8253. width:100%;
  8254. }
  8255. #u127273_text {
  8256. border-width:0px;
  8257. white-space:nowrap;
  8258. text-transform:none;
  8259. }
  8260. #u127274_div {
  8261. border-width:0px;
  8262. position:absolute;
  8263. left:0px;
  8264. top:0px;
  8265. width:65px;
  8266. height:22px;
  8267. background:inherit;
  8268. background-color:rgba(255, 255, 255, 0);
  8269. border:none;
  8270. border-radius:0px;
  8271. -moz-box-shadow:none;
  8272. -webkit-box-shadow:none;
  8273. box-shadow:none;
  8274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8275. font-weight:400;
  8276. font-style:normal;
  8277. font-size:16px;
  8278. }
  8279. #u127274 {
  8280. border-width:0px;
  8281. position:absolute;
  8282. left:30px;
  8283. top:896px;
  8284. width:65px;
  8285. height:22px;
  8286. display:flex;
  8287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8288. font-weight:400;
  8289. font-style:normal;
  8290. font-size:16px;
  8291. }
  8292. #u127274 .text {
  8293. position:absolute;
  8294. align-self:flex-start;
  8295. padding:0px 0px 0px 0px;
  8296. box-sizing:border-box;
  8297. width:100%;
  8298. }
  8299. #u127274_text {
  8300. border-width:0px;
  8301. white-space:nowrap;
  8302. text-transform:none;
  8303. }
  8304. #u127275_img {
  8305. border-width:0px;
  8306. position:absolute;
  8307. left:0px;
  8308. top:0px;
  8309. width:201px;
  8310. height:2px;
  8311. }
  8312. #u127275 {
  8313. border-width:0px;
  8314. position:absolute;
  8315. left:0px;
  8316. top:938px;
  8317. width:200px;
  8318. height:1px;
  8319. display:flex;
  8320. }
  8321. #u127275 .text {
  8322. position:absolute;
  8323. align-self:center;
  8324. padding:2px 2px 2px 2px;
  8325. box-sizing:border-box;
  8326. width:100%;
  8327. }
  8328. #u127275_text {
  8329. border-width:0px;
  8330. word-wrap:break-word;
  8331. text-transform:none;
  8332. visibility:hidden;
  8333. }
  8334. #u127276_div {
  8335. border-width:0px;
  8336. position:absolute;
  8337. left:0px;
  8338. top:0px;
  8339. width:65px;
  8340. height:22px;
  8341. background:inherit;
  8342. background-color:rgba(255, 255, 255, 0);
  8343. border:none;
  8344. border-radius:0px;
  8345. -moz-box-shadow:none;
  8346. -webkit-box-shadow:none;
  8347. box-shadow:none;
  8348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8349. font-weight:400;
  8350. font-style:normal;
  8351. font-size:16px;
  8352. }
  8353. #u127276 {
  8354. border-width:0px;
  8355. position:absolute;
  8356. left:30px;
  8357. top:995px;
  8358. width:65px;
  8359. height:22px;
  8360. display:flex;
  8361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8362. font-weight:400;
  8363. font-style:normal;
  8364. font-size:16px;
  8365. }
  8366. #u127276 .text {
  8367. position:absolute;
  8368. align-self:flex-start;
  8369. padding:0px 0px 0px 0px;
  8370. box-sizing:border-box;
  8371. width:100%;
  8372. }
  8373. #u127276_text {
  8374. border-width:0px;
  8375. white-space:nowrap;
  8376. text-transform:none;
  8377. }
  8378. #u127277_div {
  8379. border-width:0px;
  8380. position:absolute;
  8381. left:0px;
  8382. top:0px;
  8383. width:49px;
  8384. height:17px;
  8385. background:inherit;
  8386. background-color:rgba(255, 255, 255, 0);
  8387. border:none;
  8388. border-radius:0px;
  8389. -moz-box-shadow:none;
  8390. -webkit-box-shadow:none;
  8391. box-shadow:none;
  8392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8393. font-weight:400;
  8394. font-style:normal;
  8395. font-size:12px;
  8396. color:#AAAAAA;
  8397. }
  8398. #u127277 {
  8399. border-width:0px;
  8400. position:absolute;
  8401. left:30px;
  8402. top:959px;
  8403. width:49px;
  8404. height:17px;
  8405. display:flex;
  8406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8407. font-weight:400;
  8408. font-style:normal;
  8409. font-size:12px;
  8410. color:#AAAAAA;
  8411. }
  8412. #u127277 .text {
  8413. position:absolute;
  8414. align-self:flex-start;
  8415. padding:0px 0px 0px 0px;
  8416. box-sizing:border-box;
  8417. width:100%;
  8418. }
  8419. #u127277_text {
  8420. border-width:0px;
  8421. white-space:nowrap;
  8422. text-transform:none;
  8423. }
  8424. #u127278_div {
  8425. border-width:0px;
  8426. position:absolute;
  8427. left:0px;
  8428. top:0px;
  8429. width:65px;
  8430. height:22px;
  8431. background:inherit;
  8432. background-color:rgba(255, 255, 255, 0);
  8433. border:none;
  8434. border-radius:0px;
  8435. -moz-box-shadow:none;
  8436. -webkit-box-shadow:none;
  8437. box-shadow:none;
  8438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8439. font-weight:400;
  8440. font-style:normal;
  8441. font-size:16px;
  8442. }
  8443. #u127278 {
  8444. border-width:0px;
  8445. position:absolute;
  8446. left:30px;
  8447. top:1037px;
  8448. width:65px;
  8449. height:22px;
  8450. display:flex;
  8451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8452. font-weight:400;
  8453. font-style:normal;
  8454. font-size:16px;
  8455. }
  8456. #u127278 .text {
  8457. position:absolute;
  8458. align-self:flex-start;
  8459. padding:0px 0px 0px 0px;
  8460. box-sizing:border-box;
  8461. width:100%;
  8462. }
  8463. #u127278_text {
  8464. border-width:0px;
  8465. white-space:nowrap;
  8466. text-transform:none;
  8467. }
  8468. #u127279_div {
  8469. border-width:0px;
  8470. position:absolute;
  8471. left:0px;
  8472. top:0px;
  8473. width:65px;
  8474. height:22px;
  8475. background:inherit;
  8476. background-color:rgba(255, 255, 255, 0);
  8477. border:none;
  8478. border-radius:0px;
  8479. -moz-box-shadow:none;
  8480. -webkit-box-shadow:none;
  8481. box-shadow:none;
  8482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8483. font-weight:400;
  8484. font-style:normal;
  8485. font-size:16px;
  8486. }
  8487. #u127279 {
  8488. border-width:0px;
  8489. position:absolute;
  8490. left:30px;
  8491. top:1121px;
  8492. width:65px;
  8493. height:22px;
  8494. display:flex;
  8495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8496. font-weight:400;
  8497. font-style:normal;
  8498. font-size:16px;
  8499. }
  8500. #u127279 .text {
  8501. position:absolute;
  8502. align-self:flex-start;
  8503. padding:0px 0px 0px 0px;
  8504. box-sizing:border-box;
  8505. width:100%;
  8506. }
  8507. #u127279_text {
  8508. border-width:0px;
  8509. white-space:nowrap;
  8510. text-transform:none;
  8511. }
  8512. #u127280_div {
  8513. border-width:0px;
  8514. position:absolute;
  8515. left:0px;
  8516. top:0px;
  8517. width:65px;
  8518. height:22px;
  8519. background:inherit;
  8520. background-color:rgba(255, 255, 255, 0);
  8521. border:none;
  8522. border-radius:0px;
  8523. -moz-box-shadow:none;
  8524. -webkit-box-shadow:none;
  8525. box-shadow:none;
  8526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8527. font-weight:400;
  8528. font-style:normal;
  8529. font-size:16px;
  8530. }
  8531. #u127280 {
  8532. border-width:0px;
  8533. position:absolute;
  8534. left:30px;
  8535. top:1079px;
  8536. width:65px;
  8537. height:22px;
  8538. display:flex;
  8539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8540. font-weight:400;
  8541. font-style:normal;
  8542. font-size:16px;
  8543. }
  8544. #u127280 .text {
  8545. position:absolute;
  8546. align-self:flex-start;
  8547. padding:0px 0px 0px 0px;
  8548. box-sizing:border-box;
  8549. width:100%;
  8550. }
  8551. #u127280_text {
  8552. border-width:0px;
  8553. white-space:nowrap;
  8554. text-transform:none;
  8555. }
  8556. #u127281_div {
  8557. border-width:0px;
  8558. position:absolute;
  8559. left:0px;
  8560. top:0px;
  8561. width:65px;
  8562. height:22px;
  8563. background:inherit;
  8564. background-color:rgba(255, 255, 255, 0);
  8565. border:none;
  8566. border-radius:0px;
  8567. -moz-box-shadow:none;
  8568. -webkit-box-shadow:none;
  8569. box-shadow:none;
  8570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8571. font-weight:400;
  8572. font-style:normal;
  8573. font-size:16px;
  8574. }
  8575. #u127281 {
  8576. border-width:0px;
  8577. position:absolute;
  8578. left:30px;
  8579. top:1163px;
  8580. width:65px;
  8581. height:22px;
  8582. display:flex;
  8583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8584. font-weight:400;
  8585. font-style:normal;
  8586. font-size:16px;
  8587. }
  8588. #u127281 .text {
  8589. position:absolute;
  8590. align-self:flex-start;
  8591. padding:0px 0px 0px 0px;
  8592. box-sizing:border-box;
  8593. width:100%;
  8594. }
  8595. #u127281_text {
  8596. border-width:0px;
  8597. white-space:nowrap;
  8598. text-transform:none;
  8599. }
  8600. #u127282 label {
  8601. left:0px;
  8602. width:100%;
  8603. }
  8604. #u127282_img {
  8605. border-width:0px;
  8606. position:absolute;
  8607. left:0px;
  8608. top:4px;
  8609. width:12px;
  8610. height:12px;
  8611. }
  8612. #u127282 {
  8613. border-width:0px;
  8614. position:absolute;
  8615. left:576px;
  8616. top:173px;
  8617. width:100px;
  8618. height:20px;
  8619. display:flex;
  8620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8621. font-weight:400;
  8622. font-style:normal;
  8623. font-size:14px;
  8624. }
  8625. #u127282 .text {
  8626. position:absolute;
  8627. align-self:center;
  8628. padding:0px 2px 0px 2px;
  8629. box-sizing:border-box;
  8630. }
  8631. #u127282_img.selected {
  8632. }
  8633. #u127282.selected {
  8634. }
  8635. #u127282_img.disabled {
  8636. }
  8637. #u127282.disabled {
  8638. }
  8639. #u127282_img.selectedDisabled {
  8640. }
  8641. #u127282.selectedDisabled {
  8642. }
  8643. #u127282_text {
  8644. border-width:0px;
  8645. position:absolute;
  8646. left:14px;
  8647. top:0px;
  8648. width:84px;
  8649. word-wrap:break-word;
  8650. text-transform:none;
  8651. }
  8652. #u127282_input {
  8653. border-width:0px;
  8654. position:absolute;
  8655. left:0px;
  8656. top:0px;
  8657. width:0px;
  8658. height:0px;
  8659. opacity:0;
  8660. }