styles.css 131 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2376px;
  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. #u126581_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. #u126581 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u126581 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u126581_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u126582_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. #u126582 {
  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. #u126582 .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. #u126582_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u126583_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. #u126583 {
  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. #u126583 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u126583_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u126584 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u126585_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u126585 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u126585 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u126585_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u126586_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. #u126586 {
  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. #u126586 .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. #u126586_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u126587_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. #u126587 {
  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. #u126587 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u126587_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u126588 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u126589_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. #u126589_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. #u126589_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. #u126589 {
  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. #u126589 .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. #u126589_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. #u126589.disabled {
  356. }
  357. .u126589_input_option {
  358. font-size:14px;
  359. }
  360. #u126590_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u126590 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u126590 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u126590_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u126591_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. #u126591 {
  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. #u126591 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u126591_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u126592_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. #u126592 {
  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. #u126592 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u126592_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u126593 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u126594_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. #u126594 {
  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. #u126594 .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. #u126594_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u126595_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u126595 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u126595 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u126595_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u126596 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u126597_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. #u126597 {
  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. #u126597 .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. #u126597_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u126598_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u126598 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u126598 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u126598_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u126599 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u126600_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. #u126600 {
  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. #u126600 .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. #u126600_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u126601_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u126601 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u126601 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u126601_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u126602 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u126603_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. #u126603 {
  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. #u126603 .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. #u126603_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u126604_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u126604 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u126604 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u126604_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u126605 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u126606_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. #u126606 {
  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. #u126606 .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. #u126606_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u126607_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u126607 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u126607 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u126607_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u126608 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u126609_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. #u126609 {
  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. #u126609 .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. #u126609_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u126610_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u126610 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u126610 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u126610_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u126611 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u126612_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. #u126612 {
  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. #u126612 .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. #u126612_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u126613_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u126613 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u126613 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u126613_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u126614 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u126615_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. #u126615 {
  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. #u126615 .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. #u126615_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u126616_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u126616 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u126616 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u126616_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u126617 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u126618_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. #u126618 {
  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. #u126618 .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. #u126618_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u126619_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u126619 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u126619 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u126619_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u126620 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u126621_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. #u126621 {
  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. #u126621 .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. #u126621_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u126622_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u126622 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u126622 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u126622_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u126623_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. #u126623 {
  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. #u126623 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u126623_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u126624_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u126624 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u126624 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u126624_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u126625_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. #u126625 {
  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. #u126625 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u126625_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u126626_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u126626 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u126626 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u126626_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u126627 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u126628_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. #u126628 {
  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. #u126628 .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. #u126628_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u126629_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u126629 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u126629 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u126629_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u126630 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u126631_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. #u126631 {
  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. #u126631 .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. #u126631_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u126632_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u126632 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u126632 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u126632_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u126633_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1261px;
  1644. height:1191px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1650. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1651. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1652. }
  1653. #u126633 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:330px;
  1657. top:50px;
  1658. width:1261px;
  1659. height:1191px;
  1660. display:flex;
  1661. }
  1662. #u126633 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u126633_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u126634 {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:0px;
  1681. height:0px;
  1682. }
  1683. #u126635_div {
  1684. border-width:0px;
  1685. position:absolute;
  1686. left:0px;
  1687. top:0px;
  1688. width:199px;
  1689. height:40px;
  1690. background:inherit;
  1691. background-color:rgba(255, 255, 255, 0);
  1692. border:none;
  1693. border-radius:0px;
  1694. -moz-box-shadow:none;
  1695. -webkit-box-shadow:none;
  1696. box-shadow:none;
  1697. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1698. font-weight:500;
  1699. font-style:normal;
  1700. font-size:18px;
  1701. line-height:40px;
  1702. }
  1703. #u126635 {
  1704. border-width:0px;
  1705. position:absolute;
  1706. left:743px;
  1707. top:82px;
  1708. width:199px;
  1709. height:40px;
  1710. display:flex;
  1711. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1712. font-weight:500;
  1713. font-style:normal;
  1714. font-size:18px;
  1715. line-height:40px;
  1716. }
  1717. #u126635 .text {
  1718. position:absolute;
  1719. align-self:flex-start;
  1720. padding:0px 0px 0px 0px;
  1721. box-sizing:border-box;
  1722. width:100%;
  1723. }
  1724. #u126635_text {
  1725. border-width:0px;
  1726. white-space:nowrap;
  1727. text-transform:none;
  1728. }
  1729. #u126636_img {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:0px;
  1733. top:0px;
  1734. width:30px;
  1735. height:30px;
  1736. }
  1737. #u126636 {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:703px;
  1741. top:87px;
  1742. width:30px;
  1743. height:30px;
  1744. display:flex;
  1745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1746. font-weight:400;
  1747. font-style:normal;
  1748. font-size:10px;
  1749. color:#FFFFFF;
  1750. }
  1751. #u126636 .text {
  1752. position:absolute;
  1753. align-self:center;
  1754. padding:2px 2px 2px 2px;
  1755. box-sizing:border-box;
  1756. width:100%;
  1757. }
  1758. #u126636_text {
  1759. border-width:0px;
  1760. word-wrap:break-word;
  1761. text-transform:none;
  1762. }
  1763. #u126637_div {
  1764. border-width:0px;
  1765. position:absolute;
  1766. left:0px;
  1767. top:0px;
  1768. width:85px;
  1769. height:40px;
  1770. background:inherit;
  1771. background-color:rgba(255, 255, 255, 0);
  1772. border:none;
  1773. border-radius:0px;
  1774. -moz-box-shadow:none;
  1775. -webkit-box-shadow:none;
  1776. box-shadow:none;
  1777. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1778. font-weight:500;
  1779. font-style:normal;
  1780. line-height:40px;
  1781. }
  1782. #u126637 {
  1783. border-width:0px;
  1784. position:absolute;
  1785. left:729px;
  1786. top:140px;
  1787. width:85px;
  1788. height:40px;
  1789. display:flex;
  1790. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1791. font-weight:500;
  1792. font-style:normal;
  1793. line-height:40px;
  1794. }
  1795. #u126637 .text {
  1796. position:absolute;
  1797. align-self:flex-start;
  1798. padding:0px 0px 0px 0px;
  1799. box-sizing:border-box;
  1800. width:100%;
  1801. }
  1802. #u126637_text {
  1803. border-width:0px;
  1804. white-space:nowrap;
  1805. text-transform:none;
  1806. }
  1807. #u126638_div {
  1808. border-width:0px;
  1809. position:absolute;
  1810. left:0px;
  1811. top:0px;
  1812. width:85px;
  1813. height:40px;
  1814. background:inherit;
  1815. background-color:rgba(255, 255, 255, 0);
  1816. border:none;
  1817. border-radius:0px;
  1818. -moz-box-shadow:none;
  1819. -webkit-box-shadow:none;
  1820. box-shadow:none;
  1821. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1822. font-weight:500;
  1823. font-style:normal;
  1824. line-height:40px;
  1825. }
  1826. #u126638 {
  1827. border-width:0px;
  1828. position:absolute;
  1829. left:844px;
  1830. top:140px;
  1831. width:85px;
  1832. height:40px;
  1833. display:flex;
  1834. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1835. font-weight:500;
  1836. font-style:normal;
  1837. line-height:40px;
  1838. }
  1839. #u126638 .text {
  1840. position:absolute;
  1841. align-self:flex-start;
  1842. padding:0px 0px 0px 0px;
  1843. box-sizing:border-box;
  1844. width:100%;
  1845. }
  1846. #u126638_text {
  1847. border-width:0px;
  1848. white-space:nowrap;
  1849. text-transform:none;
  1850. }
  1851. #u126639_div {
  1852. border-width:0px;
  1853. position:absolute;
  1854. left:0px;
  1855. top:0px;
  1856. width:113px;
  1857. height:40px;
  1858. background:inherit;
  1859. background-color:rgba(255, 255, 255, 0);
  1860. border:none;
  1861. border-radius:0px;
  1862. -moz-box-shadow:none;
  1863. -webkit-box-shadow:none;
  1864. box-shadow:none;
  1865. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1866. font-weight:500;
  1867. font-style:normal;
  1868. line-height:40px;
  1869. }
  1870. #u126639 {
  1871. border-width:0px;
  1872. position:absolute;
  1873. left:959px;
  1874. top:140px;
  1875. width:113px;
  1876. height:40px;
  1877. display:flex;
  1878. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1879. font-weight:500;
  1880. font-style:normal;
  1881. line-height:40px;
  1882. }
  1883. #u126639 .text {
  1884. position:absolute;
  1885. align-self:flex-start;
  1886. padding:0px 0px 0px 0px;
  1887. box-sizing:border-box;
  1888. width:100%;
  1889. }
  1890. #u126639_text {
  1891. border-width:0px;
  1892. white-space:nowrap;
  1893. text-transform:none;
  1894. }
  1895. #u126640_div {
  1896. border-width:0px;
  1897. position:absolute;
  1898. left:0px;
  1899. top:0px;
  1900. width:57px;
  1901. height:40px;
  1902. background:inherit;
  1903. background-color:rgba(255, 255, 255, 0);
  1904. border:none;
  1905. border-radius:0px;
  1906. -moz-box-shadow:none;
  1907. -webkit-box-shadow:none;
  1908. box-shadow:none;
  1909. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1910. font-weight:500;
  1911. font-style:normal;
  1912. color:#1890FF;
  1913. line-height:40px;
  1914. }
  1915. #u126640 {
  1916. border-width:0px;
  1917. position:absolute;
  1918. left:1102px;
  1919. top:140px;
  1920. width:57px;
  1921. height:40px;
  1922. display:flex;
  1923. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1924. font-weight:500;
  1925. font-style:normal;
  1926. color:#1890FF;
  1927. line-height:40px;
  1928. }
  1929. #u126640 .text {
  1930. position:absolute;
  1931. align-self:flex-start;
  1932. padding:0px 0px 0px 0px;
  1933. box-sizing:border-box;
  1934. width:100%;
  1935. }
  1936. #u126640_text {
  1937. border-width:0px;
  1938. white-space:nowrap;
  1939. text-transform:none;
  1940. }
  1941. #u126641 {
  1942. border-width:0px;
  1943. position:absolute;
  1944. left:0px;
  1945. top:0px;
  1946. width:0px;
  1947. height:0px;
  1948. }
  1949. #u126642_div {
  1950. border-width:0px;
  1951. position:absolute;
  1952. left:0px;
  1953. top:0px;
  1954. width:680px;
  1955. height:60px;
  1956. background:inherit;
  1957. background-color:rgba(255, 255, 255, 1);
  1958. box-sizing:border-box;
  1959. border-width:1px;
  1960. border-style:solid;
  1961. border-color:rgba(215, 215, 215, 1);
  1962. border-radius:0px;
  1963. -moz-box-shadow:none;
  1964. -webkit-box-shadow:none;
  1965. box-shadow:none;
  1966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1967. font-weight:400;
  1968. font-style:normal;
  1969. font-size:14px;
  1970. color:#AAAAAA;
  1971. text-align:center;
  1972. line-height:30px;
  1973. }
  1974. #u126642 {
  1975. border-width:0px;
  1976. position:absolute;
  1977. left:1696px;
  1978. top:1528px;
  1979. width:680px;
  1980. height:60px;
  1981. display:flex;
  1982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1983. font-weight:400;
  1984. font-style:normal;
  1985. font-size:14px;
  1986. color:#AAAAAA;
  1987. text-align:center;
  1988. line-height:30px;
  1989. }
  1990. #u126642 .text {
  1991. position:absolute;
  1992. align-self:center;
  1993. padding:5px 10px 5px 10px;
  1994. box-sizing:border-box;
  1995. width:100%;
  1996. }
  1997. #u126642_text {
  1998. border-width:0px;
  1999. word-wrap:break-word;
  2000. text-transform:none;
  2001. visibility:hidden;
  2002. }
  2003. #u126643_div {
  2004. border-width:0px;
  2005. position:absolute;
  2006. left:0px;
  2007. top:0px;
  2008. width:80px;
  2009. height:30px;
  2010. background:inherit;
  2011. background-color:rgba(24, 144, 255, 1);
  2012. border:none;
  2013. border-radius:4px;
  2014. -moz-box-shadow:none;
  2015. -webkit-box-shadow:none;
  2016. box-shadow:none;
  2017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2018. font-weight:400;
  2019. font-style:normal;
  2020. font-size:14px;
  2021. color:#FFFFFF;
  2022. }
  2023. #u126643 {
  2024. border-width:0px;
  2025. position:absolute;
  2026. left:2251px;
  2027. top:1543px;
  2028. width:80px;
  2029. height:30px;
  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. }
  2037. #u126643 .text {
  2038. position:absolute;
  2039. align-self:center;
  2040. padding:2px 2px 2px 2px;
  2041. box-sizing:border-box;
  2042. width:100%;
  2043. }
  2044. #u126643_text {
  2045. border-width:0px;
  2046. word-wrap:break-word;
  2047. text-transform:none;
  2048. }
  2049. #u126644_div {
  2050. border-width:0px;
  2051. position:absolute;
  2052. left:0px;
  2053. top:0px;
  2054. width:80px;
  2055. height:30px;
  2056. background:inherit;
  2057. background-color:rgba(255, 255, 255, 1);
  2058. box-sizing:border-box;
  2059. border-width:1px;
  2060. border-style:solid;
  2061. border-color:rgba(170, 170, 170, 1);
  2062. border-radius:4px;
  2063. -moz-box-shadow:none;
  2064. -webkit-box-shadow:none;
  2065. box-shadow:none;
  2066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2067. font-weight:400;
  2068. font-style:normal;
  2069. font-size:14px;
  2070. }
  2071. #u126644 {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:2152px;
  2075. top:1543px;
  2076. width:80px;
  2077. height:30px;
  2078. display:flex;
  2079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2080. font-weight:400;
  2081. font-style:normal;
  2082. font-size:14px;
  2083. }
  2084. #u126644 .text {
  2085. position:absolute;
  2086. align-self:center;
  2087. padding:2px 2px 2px 2px;
  2088. box-sizing:border-box;
  2089. width:100%;
  2090. }
  2091. #u126644_text {
  2092. border-width:0px;
  2093. word-wrap:break-word;
  2094. text-transform:none;
  2095. }
  2096. #u126645_div {
  2097. border-width:0px;
  2098. position:absolute;
  2099. left:0px;
  2100. top:0px;
  2101. width:113px;
  2102. height:40px;
  2103. background:inherit;
  2104. background-color:rgba(255, 255, 255, 0);
  2105. border:none;
  2106. border-radius:0px;
  2107. -moz-box-shadow:none;
  2108. -webkit-box-shadow:none;
  2109. box-shadow:none;
  2110. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2111. font-weight:500;
  2112. font-style:normal;
  2113. line-height:40px;
  2114. }
  2115. #u126645 {
  2116. border-width:0px;
  2117. position:absolute;
  2118. left:729px;
  2119. top:200px;
  2120. width:113px;
  2121. height:40px;
  2122. display:flex;
  2123. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2124. font-weight:500;
  2125. font-style:normal;
  2126. line-height:40px;
  2127. }
  2128. #u126645 .text {
  2129. position:absolute;
  2130. align-self:flex-start;
  2131. padding:0px 0px 0px 0px;
  2132. box-sizing:border-box;
  2133. width:100%;
  2134. }
  2135. #u126645_text {
  2136. border-width:0px;
  2137. white-space:nowrap;
  2138. text-transform:none;
  2139. }
  2140. #u126646_div {
  2141. border-width:0px;
  2142. position:absolute;
  2143. left:0px;
  2144. top:0px;
  2145. width:445px;
  2146. height:40px;
  2147. background:inherit;
  2148. background-color:rgba(255, 255, 255, 0);
  2149. border:none;
  2150. border-radius:0px;
  2151. -moz-box-shadow:none;
  2152. -webkit-box-shadow:none;
  2153. box-shadow:none;
  2154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2155. font-weight:400;
  2156. font-style:normal;
  2157. font-size:12px;
  2158. color:#AAAAAA;
  2159. line-height:40px;
  2160. }
  2161. #u126646 {
  2162. border-width:0px;
  2163. position:absolute;
  2164. left:729px;
  2165. top:282px;
  2166. width:445px;
  2167. height:40px;
  2168. display:flex;
  2169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2170. font-weight:400;
  2171. font-style:normal;
  2172. font-size:12px;
  2173. color:#AAAAAA;
  2174. line-height:40px;
  2175. }
  2176. #u126646 .text {
  2177. position:absolute;
  2178. align-self:flex-start;
  2179. padding:0px 0px 0px 0px;
  2180. box-sizing:border-box;
  2181. width:100%;
  2182. }
  2183. #u126646_text {
  2184. border-width:0px;
  2185. white-space:nowrap;
  2186. text-transform:none;
  2187. }
  2188. #u126647_div {
  2189. border-width:0px;
  2190. position:absolute;
  2191. left:0px;
  2192. top:0px;
  2193. width:183px;
  2194. height:40px;
  2195. background:inherit;
  2196. background-color:rgba(255, 255, 255, 0);
  2197. border:none;
  2198. border-radius:0px;
  2199. -moz-box-shadow:none;
  2200. -webkit-box-shadow:none;
  2201. box-shadow:none;
  2202. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2203. font-weight:500;
  2204. font-style:normal;
  2205. line-height:40px;
  2206. }
  2207. #u126647 {
  2208. border-width:0px;
  2209. position:absolute;
  2210. left:729px;
  2211. top:424px;
  2212. width:183px;
  2213. height:40px;
  2214. display:flex;
  2215. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2216. font-weight:500;
  2217. font-style:normal;
  2218. line-height:40px;
  2219. }
  2220. #u126647 .text {
  2221. position:absolute;
  2222. align-self:flex-start;
  2223. padding:0px 0px 0px 0px;
  2224. box-sizing:border-box;
  2225. width:100%;
  2226. }
  2227. #u126647_text {
  2228. border-width:0px;
  2229. white-space:nowrap;
  2230. text-transform:none;
  2231. }
  2232. #u126648_div {
  2233. border-width:0px;
  2234. position:absolute;
  2235. left:0px;
  2236. top:0px;
  2237. width:385px;
  2238. height:17px;
  2239. background:inherit;
  2240. background-color:rgba(255, 255, 255, 0);
  2241. border:none;
  2242. border-radius:0px;
  2243. -moz-box-shadow:none;
  2244. -webkit-box-shadow:none;
  2245. box-shadow:none;
  2246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2247. font-weight:400;
  2248. font-style:normal;
  2249. font-size:12px;
  2250. color:#1890FF;
  2251. }
  2252. #u126648 {
  2253. border-width:0px;
  2254. position:absolute;
  2255. left:792px;
  2256. top:472px;
  2257. width:385px;
  2258. height:17px;
  2259. display:flex;
  2260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2261. font-weight:400;
  2262. font-style:normal;
  2263. font-size:12px;
  2264. color:#1890FF;
  2265. }
  2266. #u126648 .text {
  2267. position:absolute;
  2268. align-self:flex-start;
  2269. padding:0px 0px 0px 0px;
  2270. box-sizing:border-box;
  2271. width:100%;
  2272. }
  2273. #u126648_text {
  2274. border-width:0px;
  2275. white-space:nowrap;
  2276. text-transform:none;
  2277. }
  2278. #u126649_div {
  2279. border-width:0px;
  2280. position:absolute;
  2281. left:0px;
  2282. top:0px;
  2283. width:155px;
  2284. height:40px;
  2285. background:inherit;
  2286. background-color:rgba(255, 255, 255, 0);
  2287. border:none;
  2288. border-radius:0px;
  2289. -moz-box-shadow:none;
  2290. -webkit-box-shadow:none;
  2291. box-shadow:none;
  2292. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2293. font-weight:500;
  2294. font-style:normal;
  2295. line-height:40px;
  2296. }
  2297. #u126649 {
  2298. border-width:0px;
  2299. position:absolute;
  2300. left:729px;
  2301. top:332px;
  2302. width:155px;
  2303. height:40px;
  2304. display:flex;
  2305. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2306. font-weight:500;
  2307. font-style:normal;
  2308. line-height:40px;
  2309. }
  2310. #u126649 .text {
  2311. position:absolute;
  2312. align-self:flex-start;
  2313. padding:0px 0px 0px 0px;
  2314. box-sizing:border-box;
  2315. width:100%;
  2316. }
  2317. #u126649_text {
  2318. border-width:0px;
  2319. white-space:nowrap;
  2320. text-transform:none;
  2321. }
  2322. #u126650 {
  2323. border-width:0px;
  2324. position:absolute;
  2325. left:0px;
  2326. top:0px;
  2327. width:0px;
  2328. height:0px;
  2329. }
  2330. #u126651_input {
  2331. position:absolute;
  2332. left:0px;
  2333. top:0px;
  2334. width:600px;
  2335. height:40px;
  2336. padding:5px 5px 10px 10px;
  2337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2338. font-weight:400;
  2339. font-style:normal;
  2340. font-size:13px;
  2341. letter-spacing:normal;
  2342. color:#000000;
  2343. vertical-align:none;
  2344. text-align:right;
  2345. text-transform:none;
  2346. background-color:transparent;
  2347. border-color:transparent;
  2348. }
  2349. #u126651_input.disabled {
  2350. position:absolute;
  2351. left:0px;
  2352. top:0px;
  2353. width:600px;
  2354. height:40px;
  2355. padding:5px 5px 10px 10px;
  2356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2357. font-weight:400;
  2358. font-style:normal;
  2359. font-size:13px;
  2360. letter-spacing:normal;
  2361. color:#000000;
  2362. vertical-align:none;
  2363. text-align:right;
  2364. text-transform:none;
  2365. background-color:transparent;
  2366. border-color:transparent;
  2367. }
  2368. #u126651_div {
  2369. border-width:0px;
  2370. position:absolute;
  2371. left:0px;
  2372. top:0px;
  2373. width:600px;
  2374. height:40px;
  2375. background:inherit;
  2376. background-color:rgba(255, 255, 255, 1);
  2377. box-sizing:border-box;
  2378. border-width:1px;
  2379. border-style:solid;
  2380. border-color:rgba(215, 215, 215, 1);
  2381. border-radius:0px;
  2382. -moz-box-shadow:none;
  2383. -webkit-box-shadow:none;
  2384. box-shadow:none;
  2385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2386. font-weight:400;
  2387. font-style:normal;
  2388. text-align:right;
  2389. }
  2390. #u126651 {
  2391. border-width:0px;
  2392. position:absolute;
  2393. left:729px;
  2394. top:243px;
  2395. width:600px;
  2396. height:40px;
  2397. display:flex;
  2398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2399. font-weight:400;
  2400. font-style:normal;
  2401. text-align:right;
  2402. }
  2403. #u126651 .text {
  2404. position:absolute;
  2405. align-self:center;
  2406. padding:5px 5px 10px 10px;
  2407. box-sizing:border-box;
  2408. width:100%;
  2409. }
  2410. #u126651_div.disabled {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:0px;
  2414. top:0px;
  2415. width:600px;
  2416. height:40px;
  2417. background:inherit;
  2418. background-color:rgba(240, 240, 240, 1);
  2419. box-sizing:border-box;
  2420. border-width:1px;
  2421. border-style:solid;
  2422. border-color:rgba(215, 215, 215, 1);
  2423. border-radius:0px;
  2424. -moz-box-shadow:none;
  2425. -webkit-box-shadow:none;
  2426. box-shadow:none;
  2427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2428. font-weight:400;
  2429. font-style:normal;
  2430. text-align:right;
  2431. }
  2432. #u126651.disabled {
  2433. }
  2434. #u126652_div {
  2435. border-width:0px;
  2436. position:absolute;
  2437. left:0px;
  2438. top:0px;
  2439. width:534px;
  2440. height:40px;
  2441. background:inherit;
  2442. background-color:rgba(255, 255, 255, 0);
  2443. border:none;
  2444. border-radius:0px;
  2445. -moz-box-shadow:none;
  2446. -webkit-box-shadow:none;
  2447. box-shadow:none;
  2448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2449. font-weight:400;
  2450. font-style:normal;
  2451. font-size:12px;
  2452. color:#AAAAAA;
  2453. line-height:40px;
  2454. }
  2455. #u126652 {
  2456. border-width:0px;
  2457. position:absolute;
  2458. left:738px;
  2459. top:242px;
  2460. width:534px;
  2461. height:40px;
  2462. display:flex;
  2463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2464. font-weight:400;
  2465. font-style:normal;
  2466. font-size:12px;
  2467. color:#AAAAAA;
  2468. line-height:40px;
  2469. }
  2470. #u126652 .text {
  2471. position:absolute;
  2472. align-self:flex-start;
  2473. padding:0px 0px 0px 0px;
  2474. box-sizing:border-box;
  2475. width:100%;
  2476. }
  2477. #u126652_text {
  2478. border-width:0px;
  2479. word-wrap:break-word;
  2480. text-transform:none;
  2481. }
  2482. #u126653_img {
  2483. border-width:0px;
  2484. position:absolute;
  2485. left:0px;
  2486. top:0px;
  2487. width:50px;
  2488. height:31px;
  2489. }
  2490. #u126653 {
  2491. border-width:0px;
  2492. position:absolute;
  2493. left:729px;
  2494. top:465px;
  2495. width:50px;
  2496. height:31px;
  2497. display:flex;
  2498. }
  2499. #u126653 .text {
  2500. position:absolute;
  2501. align-self:center;
  2502. padding:2px 2px 2px 2px;
  2503. box-sizing:border-box;
  2504. width:100%;
  2505. }
  2506. #u126653_text {
  2507. border-width:0px;
  2508. word-wrap:break-word;
  2509. text-transform:none;
  2510. visibility:hidden;
  2511. }
  2512. #u126654_div {
  2513. border-width:0px;
  2514. position:absolute;
  2515. left:0px;
  2516. top:0px;
  2517. width:313px;
  2518. height:17px;
  2519. background:inherit;
  2520. background-color:rgba(255, 255, 255, 0);
  2521. border:none;
  2522. border-radius:0px;
  2523. -moz-box-shadow:none;
  2524. -webkit-box-shadow:none;
  2525. box-shadow:none;
  2526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2527. font-weight:400;
  2528. font-style:normal;
  2529. font-size:12px;
  2530. color:#1890FF;
  2531. }
  2532. #u126654 {
  2533. border-width:0px;
  2534. position:absolute;
  2535. left:792px;
  2536. top:380px;
  2537. width:313px;
  2538. height:17px;
  2539. display:flex;
  2540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2541. font-weight:400;
  2542. font-style:normal;
  2543. font-size:12px;
  2544. color:#1890FF;
  2545. }
  2546. #u126654 .text {
  2547. position:absolute;
  2548. align-self:flex-start;
  2549. padding:0px 0px 0px 0px;
  2550. box-sizing:border-box;
  2551. width:100%;
  2552. }
  2553. #u126654_text {
  2554. border-width:0px;
  2555. white-space:nowrap;
  2556. text-transform:none;
  2557. }
  2558. #u126655_img {
  2559. border-width:0px;
  2560. position:absolute;
  2561. left:0px;
  2562. top:0px;
  2563. width:50px;
  2564. height:31px;
  2565. }
  2566. #u126655 {
  2567. border-width:0px;
  2568. position:absolute;
  2569. left:729px;
  2570. top:372px;
  2571. width:50px;
  2572. height:31px;
  2573. display:flex;
  2574. }
  2575. #u126655 .text {
  2576. position:absolute;
  2577. align-self:center;
  2578. padding:2px 2px 2px 2px;
  2579. box-sizing:border-box;
  2580. width:100%;
  2581. }
  2582. #u126655_text {
  2583. border-width:0px;
  2584. word-wrap:break-word;
  2585. text-transform:none;
  2586. visibility:hidden;
  2587. }
  2588. #u126656 {
  2589. border-width:0px;
  2590. position:absolute;
  2591. left:0px;
  2592. top:0px;
  2593. width:0px;
  2594. height:0px;
  2595. }
  2596. #u126657_div {
  2597. border-width:0px;
  2598. position:absolute;
  2599. left:0px;
  2600. top:0px;
  2601. width:350px;
  2602. height:1126px;
  2603. background:inherit;
  2604. background-color:rgba(240, 242, 245, 1);
  2605. border:none;
  2606. border-radius:0px;
  2607. -moz-box-shadow:none;
  2608. -webkit-box-shadow:none;
  2609. box-shadow:none;
  2610. }
  2611. #u126657 {
  2612. border-width:0px;
  2613. position:absolute;
  2614. left:331px;
  2615. top:50px;
  2616. width:350px;
  2617. height:1126px;
  2618. display:flex;
  2619. }
  2620. #u126657 .text {
  2621. position:absolute;
  2622. align-self:center;
  2623. padding:2px 2px 2px 2px;
  2624. box-sizing:border-box;
  2625. width:100%;
  2626. }
  2627. #u126657_text {
  2628. border-width:0px;
  2629. word-wrap:break-word;
  2630. text-transform:none;
  2631. visibility:hidden;
  2632. }
  2633. #u126658 {
  2634. border-width:0px;
  2635. position:absolute;
  2636. left:0px;
  2637. top:0px;
  2638. width:0px;
  2639. height:0px;
  2640. }
  2641. #u126659_div {
  2642. border-width:0px;
  2643. position:absolute;
  2644. left:0px;
  2645. top:0px;
  2646. width:300px;
  2647. height:40px;
  2648. background:inherit;
  2649. background-color:rgba(255, 255, 255, 1);
  2650. box-sizing:border-box;
  2651. border-width:1px;
  2652. border-style:solid;
  2653. border-color:rgba(242, 242, 242, 1);
  2654. border-radius:4px;
  2655. -moz-box-shadow:none;
  2656. -webkit-box-shadow:none;
  2657. box-shadow:none;
  2658. font-family:'Microsoft YaHei', sans-serif;
  2659. font-weight:400;
  2660. font-style:normal;
  2661. font-size:14px;
  2662. color:#CCCCCC;
  2663. text-align:left;
  2664. }
  2665. #u126659 {
  2666. border-width:0px;
  2667. position:absolute;
  2668. left:351px;
  2669. top:119px;
  2670. width:300px;
  2671. height:40px;
  2672. display:flex;
  2673. font-family:'Microsoft YaHei', sans-serif;
  2674. font-weight:400;
  2675. font-style:normal;
  2676. font-size:14px;
  2677. color:#CCCCCC;
  2678. text-align:left;
  2679. }
  2680. #u126659 .text {
  2681. position:absolute;
  2682. align-self:center;
  2683. padding:2px 8px 2px 8px;
  2684. box-sizing:border-box;
  2685. width:100%;
  2686. }
  2687. #u126659_text {
  2688. border-width:0px;
  2689. word-wrap:break-word;
  2690. text-transform:none;
  2691. visibility:hidden;
  2692. }
  2693. #u126660_input {
  2694. position:absolute;
  2695. left:0px;
  2696. top:0px;
  2697. width:263px;
  2698. height:33px;
  2699. padding:2px 2px 2px 2px;
  2700. font-family:'Microsoft YaHei', sans-serif;
  2701. font-weight:400;
  2702. font-style:normal;
  2703. font-size:14px;
  2704. letter-spacing:normal;
  2705. color:#000000;
  2706. vertical-align:none;
  2707. text-align:left;
  2708. text-transform:none;
  2709. background-color:transparent;
  2710. border-color:transparent;
  2711. }
  2712. #u126660_input.disabled {
  2713. position:absolute;
  2714. left:0px;
  2715. top:0px;
  2716. width:263px;
  2717. height:33px;
  2718. padding:2px 2px 2px 2px;
  2719. font-family:'Microsoft YaHei', sans-serif;
  2720. font-weight:400;
  2721. font-style:normal;
  2722. font-size:14px;
  2723. letter-spacing:normal;
  2724. color:#000000;
  2725. vertical-align:none;
  2726. text-align:left;
  2727. text-transform:none;
  2728. background-color:transparent;
  2729. border-color:transparent;
  2730. }
  2731. #u126660_div {
  2732. border-width:0px;
  2733. position:absolute;
  2734. left:0px;
  2735. top:0px;
  2736. width:263px;
  2737. height:33px;
  2738. background:inherit;
  2739. background-color:rgba(255, 255, 255, 1);
  2740. border:none;
  2741. border-radius:0px;
  2742. -moz-box-shadow:none;
  2743. -webkit-box-shadow:none;
  2744. box-shadow:none;
  2745. font-family:'Microsoft YaHei', sans-serif;
  2746. font-weight:400;
  2747. font-style:normal;
  2748. font-size:14px;
  2749. }
  2750. #u126660 {
  2751. border-width:0px;
  2752. position:absolute;
  2753. left:359px;
  2754. top:120px;
  2755. width:263px;
  2756. height:33px;
  2757. display:flex;
  2758. font-family:'Microsoft YaHei', sans-serif;
  2759. font-weight:400;
  2760. font-style:normal;
  2761. font-size:14px;
  2762. }
  2763. #u126660 .text {
  2764. position:absolute;
  2765. align-self:center;
  2766. padding:2px 2px 2px 2px;
  2767. box-sizing:border-box;
  2768. width:100%;
  2769. }
  2770. #u126660_div.disabled {
  2771. border-width:0px;
  2772. position:absolute;
  2773. left:0px;
  2774. top:0px;
  2775. width:263px;
  2776. height:33px;
  2777. background:inherit;
  2778. background-color:rgba(240, 240, 240, 1);
  2779. border:none;
  2780. border-radius:0px;
  2781. -moz-box-shadow:none;
  2782. -webkit-box-shadow:none;
  2783. box-shadow:none;
  2784. font-family:'Microsoft YaHei', sans-serif;
  2785. font-weight:400;
  2786. font-style:normal;
  2787. font-size:14px;
  2788. }
  2789. #u126660.disabled {
  2790. }
  2791. #u126661_img {
  2792. border-width:0px;
  2793. position:absolute;
  2794. left:0px;
  2795. top:0px;
  2796. width:14px;
  2797. height:14px;
  2798. }
  2799. #u126661 {
  2800. border-width:0px;
  2801. position:absolute;
  2802. left:626px;
  2803. top:131px;
  2804. width:14px;
  2805. height:14px;
  2806. display:flex;
  2807. }
  2808. #u126661 .text {
  2809. position:absolute;
  2810. align-self:center;
  2811. padding:2px 2px 2px 2px;
  2812. box-sizing:border-box;
  2813. width:100%;
  2814. }
  2815. #u126661_text {
  2816. border-width:0px;
  2817. word-wrap:break-word;
  2818. text-transform:none;
  2819. visibility:hidden;
  2820. }
  2821. #u126662 {
  2822. border-width:0px;
  2823. position:absolute;
  2824. left:0px;
  2825. top:0px;
  2826. width:0px;
  2827. height:0px;
  2828. }
  2829. #u126663_div {
  2830. border-width:0px;
  2831. position:absolute;
  2832. left:0px;
  2833. top:0px;
  2834. width:300px;
  2835. height:50px;
  2836. background:inherit;
  2837. background-color:rgba(242, 242, 242, 0);
  2838. border:none;
  2839. border-radius:4px;
  2840. -moz-box-shadow:none;
  2841. -webkit-box-shadow:none;
  2842. box-shadow:none;
  2843. font-family:'Microsoft YaHei', sans-serif;
  2844. font-weight:400;
  2845. font-style:normal;
  2846. font-size:14px;
  2847. color:#CCCCCC;
  2848. text-align:left;
  2849. }
  2850. #u126663 {
  2851. border-width:0px;
  2852. position:absolute;
  2853. left:351px;
  2854. top:169px;
  2855. width:300px;
  2856. height:50px;
  2857. display:flex;
  2858. font-family:'Microsoft YaHei', sans-serif;
  2859. font-weight:400;
  2860. font-style:normal;
  2861. font-size:14px;
  2862. color:#CCCCCC;
  2863. text-align:left;
  2864. }
  2865. #u126663 .text {
  2866. position:absolute;
  2867. align-self:center;
  2868. padding:2px 8px 2px 8px;
  2869. box-sizing:border-box;
  2870. width:100%;
  2871. }
  2872. #u126663_text {
  2873. border-width:0px;
  2874. word-wrap:break-word;
  2875. text-transform:none;
  2876. visibility:hidden;
  2877. }
  2878. #u126664_div {
  2879. border-width:0px;
  2880. position:absolute;
  2881. left:0px;
  2882. top:0px;
  2883. width:15px;
  2884. height:15px;
  2885. background:inherit;
  2886. background-color:rgba(51, 51, 51, 1);
  2887. border:none;
  2888. border-radius:8px;
  2889. -moz-box-shadow:none;
  2890. -webkit-box-shadow:none;
  2891. box-shadow:none;
  2892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2893. font-weight:400;
  2894. font-style:normal;
  2895. font-size:10px;
  2896. color:#FFFFFF;
  2897. }
  2898. #u126664 {
  2899. border-width:0px;
  2900. position:absolute;
  2901. left:364px;
  2902. top:187px;
  2903. width:15px;
  2904. height:15px;
  2905. display:flex;
  2906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2907. font-weight:400;
  2908. font-style:normal;
  2909. font-size:10px;
  2910. color:#FFFFFF;
  2911. }
  2912. #u126664 .text {
  2913. position:absolute;
  2914. align-self:center;
  2915. padding:0px 0px 0px 0px;
  2916. box-sizing:border-box;
  2917. width:100%;
  2918. }
  2919. #u126664_text {
  2920. border-width:0px;
  2921. word-wrap:break-word;
  2922. text-transform:none;
  2923. }
  2924. #u126665_div {
  2925. border-width:0px;
  2926. position:absolute;
  2927. left:0px;
  2928. top:0px;
  2929. width:127px;
  2930. height:20px;
  2931. background:inherit;
  2932. background-color:rgba(51, 51, 51, 0);
  2933. border:none;
  2934. border-radius:4px;
  2935. -moz-box-shadow:none;
  2936. -webkit-box-shadow:none;
  2937. box-shadow:none;
  2938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2939. font-weight:400;
  2940. font-style:normal;
  2941. font-size:14px;
  2942. text-align:left;
  2943. }
  2944. #u126665 {
  2945. border-width:0px;
  2946. position:absolute;
  2947. left:385px;
  2948. top:184px;
  2949. width:127px;
  2950. height:20px;
  2951. display:flex;
  2952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2953. font-weight:400;
  2954. font-style:normal;
  2955. font-size:14px;
  2956. text-align:left;
  2957. }
  2958. #u126665 .text {
  2959. position:absolute;
  2960. align-self:center;
  2961. padding:0px 0px 0px 0px;
  2962. box-sizing:border-box;
  2963. width:100%;
  2964. }
  2965. #u126665_text {
  2966. border-width:0px;
  2967. white-space:nowrap;
  2968. text-transform:none;
  2969. }
  2970. #u126666 {
  2971. border-width:0px;
  2972. position:absolute;
  2973. left:0px;
  2974. top:0px;
  2975. width:0px;
  2976. height:0px;
  2977. }
  2978. #u126667 {
  2979. border-width:0px;
  2980. position:absolute;
  2981. left:0px;
  2982. top:0px;
  2983. width:0px;
  2984. height:0px;
  2985. }
  2986. #u126668_div {
  2987. border-width:0px;
  2988. position:absolute;
  2989. left:0px;
  2990. top:0px;
  2991. width:300px;
  2992. height:50px;
  2993. background:inherit;
  2994. background-color:rgba(242, 242, 242, 1);
  2995. border:none;
  2996. border-radius:4px;
  2997. -moz-box-shadow:none;
  2998. -webkit-box-shadow:none;
  2999. box-shadow:none;
  3000. font-family:'Microsoft YaHei', sans-serif;
  3001. font-weight:400;
  3002. font-style:normal;
  3003. font-size:14px;
  3004. color:#CCCCCC;
  3005. text-align:left;
  3006. }
  3007. #u126668 {
  3008. border-width:0px;
  3009. position:absolute;
  3010. left:351px;
  3011. top:219px;
  3012. width:300px;
  3013. height:50px;
  3014. display:flex;
  3015. font-family:'Microsoft YaHei', sans-serif;
  3016. font-weight:400;
  3017. font-style:normal;
  3018. font-size:14px;
  3019. color:#CCCCCC;
  3020. text-align:left;
  3021. }
  3022. #u126668 .text {
  3023. position:absolute;
  3024. align-self:center;
  3025. padding:2px 8px 2px 8px;
  3026. box-sizing:border-box;
  3027. width:100%;
  3028. }
  3029. #u126668_text {
  3030. border-width:0px;
  3031. word-wrap:break-word;
  3032. text-transform:none;
  3033. visibility:hidden;
  3034. }
  3035. #u126669_div {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:0px;
  3039. top:0px;
  3040. width:57px;
  3041. height:20px;
  3042. background:inherit;
  3043. background-color:rgba(51, 51, 51, 0);
  3044. border:none;
  3045. border-radius:4px;
  3046. -moz-box-shadow:none;
  3047. -webkit-box-shadow:none;
  3048. box-shadow:none;
  3049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3050. font-weight:400;
  3051. font-style:normal;
  3052. font-size:14px;
  3053. text-align:left;
  3054. }
  3055. #u126669 {
  3056. border-width:0px;
  3057. position:absolute;
  3058. left:429px;
  3059. top:234px;
  3060. width:57px;
  3061. height:20px;
  3062. display:flex;
  3063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3064. font-weight:400;
  3065. font-style:normal;
  3066. font-size:14px;
  3067. text-align:left;
  3068. }
  3069. #u126669 .text {
  3070. position:absolute;
  3071. align-self:center;
  3072. padding:0px 0px 0px 0px;
  3073. box-sizing:border-box;
  3074. width:100%;
  3075. }
  3076. #u126669_text {
  3077. border-width:0px;
  3078. white-space:nowrap;
  3079. text-transform:none;
  3080. }
  3081. #u126670_img {
  3082. border-width:0px;
  3083. position:absolute;
  3084. left:0px;
  3085. top:0px;
  3086. width:15px;
  3087. height:15px;
  3088. }
  3089. #u126670 {
  3090. border-width:0px;
  3091. position:absolute;
  3092. left:410px;
  3093. top:237px;
  3094. width:15px;
  3095. height:15px;
  3096. display:flex;
  3097. }
  3098. #u126670 .text {
  3099. position:absolute;
  3100. align-self:center;
  3101. padding:2px 2px 2px 2px;
  3102. box-sizing:border-box;
  3103. width:100%;
  3104. }
  3105. #u126670_text {
  3106. border-width:0px;
  3107. word-wrap:break-word;
  3108. text-transform:none;
  3109. visibility:hidden;
  3110. }
  3111. #u126671 {
  3112. border-width:0px;
  3113. position:absolute;
  3114. left:0px;
  3115. top:0px;
  3116. width:0px;
  3117. height:0px;
  3118. }
  3119. #u126672_div {
  3120. border-width:0px;
  3121. position:absolute;
  3122. left:0px;
  3123. top:0px;
  3124. width:300px;
  3125. height:50px;
  3126. background:inherit;
  3127. background-color:rgba(216, 233, 245, 1);
  3128. border:none;
  3129. border-radius:4px;
  3130. -moz-box-shadow:none;
  3131. -webkit-box-shadow:none;
  3132. box-shadow:none;
  3133. font-family:'Microsoft YaHei', sans-serif;
  3134. font-weight:400;
  3135. font-style:normal;
  3136. font-size:14px;
  3137. color:#CCCCCC;
  3138. text-align:left;
  3139. }
  3140. #u126672 {
  3141. border-width:0px;
  3142. position:absolute;
  3143. left:351px;
  3144. top:269px;
  3145. width:300px;
  3146. height:50px;
  3147. display:flex;
  3148. font-family:'Microsoft YaHei', sans-serif;
  3149. font-weight:400;
  3150. font-style:normal;
  3151. font-size:14px;
  3152. color:#CCCCCC;
  3153. text-align:left;
  3154. }
  3155. #u126672 .text {
  3156. position:absolute;
  3157. align-self:center;
  3158. padding:2px 8px 2px 8px;
  3159. box-sizing:border-box;
  3160. width:100%;
  3161. }
  3162. #u126672_text {
  3163. border-width:0px;
  3164. word-wrap:break-word;
  3165. text-transform:none;
  3166. visibility:hidden;
  3167. }
  3168. #u126673_div {
  3169. border-width:0px;
  3170. position:absolute;
  3171. left:0px;
  3172. top:0px;
  3173. width:85px;
  3174. height:20px;
  3175. background:inherit;
  3176. background-color:rgba(51, 51, 51, 0);
  3177. border:none;
  3178. border-radius:4px;
  3179. -moz-box-shadow:none;
  3180. -webkit-box-shadow:none;
  3181. box-shadow:none;
  3182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3183. font-weight:400;
  3184. font-style:normal;
  3185. font-size:14px;
  3186. text-align:left;
  3187. }
  3188. #u126673 {
  3189. border-width:0px;
  3190. position:absolute;
  3191. left:450px;
  3192. top:284px;
  3193. width:85px;
  3194. height:20px;
  3195. display:flex;
  3196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3197. font-weight:400;
  3198. font-style:normal;
  3199. font-size:14px;
  3200. text-align:left;
  3201. }
  3202. #u126673 .text {
  3203. position:absolute;
  3204. align-self:center;
  3205. padding:0px 0px 0px 0px;
  3206. box-sizing:border-box;
  3207. width:100%;
  3208. }
  3209. #u126673_text {
  3210. border-width:0px;
  3211. white-space:nowrap;
  3212. text-transform:none;
  3213. }
  3214. #u126674_img {
  3215. border-width:0px;
  3216. position:absolute;
  3217. left:0px;
  3218. top:0px;
  3219. width:14px;
  3220. height:14px;
  3221. }
  3222. #u126674 {
  3223. border-width:0px;
  3224. position:absolute;
  3225. left:431px;
  3226. top:287px;
  3227. width:14px;
  3228. height:14px;
  3229. display:flex;
  3230. }
  3231. #u126674 .text {
  3232. position:absolute;
  3233. align-self:center;
  3234. padding:2px 2px 2px 2px;
  3235. box-sizing:border-box;
  3236. width:100%;
  3237. }
  3238. #u126674_text {
  3239. border-width:0px;
  3240. word-wrap:break-word;
  3241. text-transform:none;
  3242. visibility:hidden;
  3243. }
  3244. #u126675 {
  3245. border-width:0px;
  3246. position:absolute;
  3247. left:0px;
  3248. top:0px;
  3249. width:0px;
  3250. height:0px;
  3251. }
  3252. #u126676_div {
  3253. border-width:0px;
  3254. position:absolute;
  3255. left:0px;
  3256. top:0px;
  3257. width:300px;
  3258. height:50px;
  3259. background:inherit;
  3260. background-color:rgba(255, 255, 255, 0);
  3261. border:none;
  3262. border-radius:4px;
  3263. -moz-box-shadow:none;
  3264. -webkit-box-shadow:none;
  3265. box-shadow:none;
  3266. font-family:'Microsoft YaHei', sans-serif;
  3267. font-weight:400;
  3268. font-style:normal;
  3269. font-size:14px;
  3270. color:#CCCCCC;
  3271. text-align:left;
  3272. }
  3273. #u126676 {
  3274. border-width:0px;
  3275. position:absolute;
  3276. left:351px;
  3277. top:313px;
  3278. width:300px;
  3279. height:50px;
  3280. display:flex;
  3281. font-family:'Microsoft YaHei', sans-serif;
  3282. font-weight:400;
  3283. font-style:normal;
  3284. font-size:14px;
  3285. color:#CCCCCC;
  3286. text-align:left;
  3287. }
  3288. #u126676 .text {
  3289. position:absolute;
  3290. align-self:center;
  3291. padding:2px 8px 2px 8px;
  3292. box-sizing:border-box;
  3293. width:100%;
  3294. }
  3295. #u126676_text {
  3296. border-width:0px;
  3297. word-wrap:break-word;
  3298. text-transform:none;
  3299. visibility:hidden;
  3300. }
  3301. #u126677_div {
  3302. border-width:0px;
  3303. position:absolute;
  3304. left:0px;
  3305. top:0px;
  3306. width:57px;
  3307. height:20px;
  3308. background:inherit;
  3309. background-color:rgba(51, 51, 51, 0);
  3310. border:none;
  3311. border-radius:4px;
  3312. -moz-box-shadow:none;
  3313. -webkit-box-shadow:none;
  3314. box-shadow:none;
  3315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3316. font-weight:400;
  3317. font-style:normal;
  3318. font-size:14px;
  3319. text-align:left;
  3320. }
  3321. #u126677 {
  3322. border-width:0px;
  3323. position:absolute;
  3324. left:429px;
  3325. top:328px;
  3326. width:57px;
  3327. height:20px;
  3328. display:flex;
  3329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3330. font-weight:400;
  3331. font-style:normal;
  3332. font-size:14px;
  3333. text-align:left;
  3334. }
  3335. #u126677 .text {
  3336. position:absolute;
  3337. align-self:center;
  3338. padding:0px 0px 0px 0px;
  3339. box-sizing:border-box;
  3340. width:100%;
  3341. }
  3342. #u126677_text {
  3343. border-width:0px;
  3344. white-space:nowrap;
  3345. text-transform:none;
  3346. }
  3347. #u126678_img {
  3348. border-width:0px;
  3349. position:absolute;
  3350. left:0px;
  3351. top:0px;
  3352. width:15px;
  3353. height:15px;
  3354. }
  3355. #u126678 {
  3356. border-width:0px;
  3357. position:absolute;
  3358. left:410px;
  3359. top:331px;
  3360. width:15px;
  3361. height:15px;
  3362. display:flex;
  3363. }
  3364. #u126678 .text {
  3365. position:absolute;
  3366. align-self:center;
  3367. padding:2px 2px 2px 2px;
  3368. box-sizing:border-box;
  3369. width:100%;
  3370. }
  3371. #u126678_text {
  3372. border-width:0px;
  3373. word-wrap:break-word;
  3374. text-transform:none;
  3375. visibility:hidden;
  3376. }
  3377. #u126679 {
  3378. border-width:0px;
  3379. position:absolute;
  3380. left:0px;
  3381. top:0px;
  3382. width:0px;
  3383. height:0px;
  3384. }
  3385. #u126680_div {
  3386. border-width:0px;
  3387. position:absolute;
  3388. left:0px;
  3389. top:0px;
  3390. width:300px;
  3391. height:50px;
  3392. background:inherit;
  3393. background-color:rgba(255, 255, 255, 0);
  3394. border:none;
  3395. border-radius:4px;
  3396. -moz-box-shadow:none;
  3397. -webkit-box-shadow:none;
  3398. box-shadow:none;
  3399. font-family:'Microsoft YaHei', sans-serif;
  3400. font-weight:400;
  3401. font-style:normal;
  3402. font-size:14px;
  3403. color:#CCCCCC;
  3404. text-align:left;
  3405. }
  3406. #u126680 {
  3407. border-width:0px;
  3408. position:absolute;
  3409. left:351px;
  3410. top:358px;
  3411. width:300px;
  3412. height:50px;
  3413. display:flex;
  3414. font-family:'Microsoft YaHei', sans-serif;
  3415. font-weight:400;
  3416. font-style:normal;
  3417. font-size:14px;
  3418. color:#CCCCCC;
  3419. text-align:left;
  3420. }
  3421. #u126680 .text {
  3422. position:absolute;
  3423. align-self:center;
  3424. padding:2px 8px 2px 8px;
  3425. box-sizing:border-box;
  3426. width:100%;
  3427. }
  3428. #u126680_text {
  3429. border-width:0px;
  3430. word-wrap:break-word;
  3431. text-transform:none;
  3432. visibility:hidden;
  3433. }
  3434. #u126681_div {
  3435. border-width:0px;
  3436. position:absolute;
  3437. left:0px;
  3438. top:0px;
  3439. width:85px;
  3440. height:20px;
  3441. background:inherit;
  3442. background-color:rgba(51, 51, 51, 0);
  3443. border:none;
  3444. border-radius:4px;
  3445. -moz-box-shadow:none;
  3446. -webkit-box-shadow:none;
  3447. box-shadow:none;
  3448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3449. font-weight:400;
  3450. font-style:normal;
  3451. font-size:14px;
  3452. text-align:left;
  3453. }
  3454. #u126681 {
  3455. border-width:0px;
  3456. position:absolute;
  3457. left:450px;
  3458. top:373px;
  3459. width:85px;
  3460. height:20px;
  3461. display:flex;
  3462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3463. font-weight:400;
  3464. font-style:normal;
  3465. font-size:14px;
  3466. text-align:left;
  3467. }
  3468. #u126681 .text {
  3469. position:absolute;
  3470. align-self:center;
  3471. padding:0px 0px 0px 0px;
  3472. box-sizing:border-box;
  3473. width:100%;
  3474. }
  3475. #u126681_text {
  3476. border-width:0px;
  3477. white-space:nowrap;
  3478. text-transform:none;
  3479. }
  3480. #u126682_img {
  3481. border-width:0px;
  3482. position:absolute;
  3483. left:0px;
  3484. top:0px;
  3485. width:14px;
  3486. height:14px;
  3487. }
  3488. #u126682 {
  3489. border-width:0px;
  3490. position:absolute;
  3491. left:431px;
  3492. top:376px;
  3493. width:14px;
  3494. height:14px;
  3495. display:flex;
  3496. }
  3497. #u126682 .text {
  3498. position:absolute;
  3499. align-self:center;
  3500. padding:2px 2px 2px 2px;
  3501. box-sizing:border-box;
  3502. width:100%;
  3503. }
  3504. #u126682_text {
  3505. border-width:0px;
  3506. word-wrap:break-word;
  3507. text-transform:none;
  3508. visibility:hidden;
  3509. }
  3510. #u126683 {
  3511. border-width:0px;
  3512. position:absolute;
  3513. left:0px;
  3514. top:0px;
  3515. width:0px;
  3516. height:0px;
  3517. }
  3518. #u126684_div {
  3519. border-width:0px;
  3520. position:absolute;
  3521. left:0px;
  3522. top:0px;
  3523. width:300px;
  3524. height:50px;
  3525. background:inherit;
  3526. background-color:rgba(255, 255, 255, 0);
  3527. border:none;
  3528. border-radius:4px;
  3529. -moz-box-shadow:none;
  3530. -webkit-box-shadow:none;
  3531. box-shadow:none;
  3532. font-family:'Microsoft YaHei', sans-serif;
  3533. font-weight:400;
  3534. font-style:normal;
  3535. font-size:14px;
  3536. color:#CCCCCC;
  3537. text-align:left;
  3538. }
  3539. #u126684 {
  3540. border-width:0px;
  3541. position:absolute;
  3542. left:351px;
  3543. top:408px;
  3544. width:300px;
  3545. height:50px;
  3546. display:flex;
  3547. font-family:'Microsoft YaHei', sans-serif;
  3548. font-weight:400;
  3549. font-style:normal;
  3550. font-size:14px;
  3551. color:#CCCCCC;
  3552. text-align:left;
  3553. }
  3554. #u126684 .text {
  3555. position:absolute;
  3556. align-self:center;
  3557. padding:2px 8px 2px 8px;
  3558. box-sizing:border-box;
  3559. width:100%;
  3560. }
  3561. #u126684_text {
  3562. border-width:0px;
  3563. word-wrap:break-word;
  3564. text-transform:none;
  3565. visibility:hidden;
  3566. }
  3567. #u126685_div {
  3568. border-width:0px;
  3569. position:absolute;
  3570. left:0px;
  3571. top:0px;
  3572. width:51px;
  3573. height:20px;
  3574. background:inherit;
  3575. background-color:rgba(51, 51, 51, 0);
  3576. border:none;
  3577. border-radius:4px;
  3578. -moz-box-shadow:none;
  3579. -webkit-box-shadow:none;
  3580. box-shadow:none;
  3581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3582. font-weight:400;
  3583. font-style:normal;
  3584. font-size:14px;
  3585. text-align:left;
  3586. }
  3587. #u126685 {
  3588. border-width:0px;
  3589. position:absolute;
  3590. left:429px;
  3591. top:423px;
  3592. width:51px;
  3593. height:20px;
  3594. display:flex;
  3595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3596. font-weight:400;
  3597. font-style:normal;
  3598. font-size:14px;
  3599. text-align:left;
  3600. }
  3601. #u126685 .text {
  3602. position:absolute;
  3603. align-self:center;
  3604. padding:0px 0px 0px 0px;
  3605. box-sizing:border-box;
  3606. width:100%;
  3607. }
  3608. #u126685_text {
  3609. border-width:0px;
  3610. white-space:nowrap;
  3611. text-transform:none;
  3612. }
  3613. #u126686_img {
  3614. border-width:0px;
  3615. position:absolute;
  3616. left:0px;
  3617. top:0px;
  3618. width:15px;
  3619. height:15px;
  3620. }
  3621. #u126686 {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:410px;
  3625. top:426px;
  3626. width:15px;
  3627. height:15px;
  3628. display:flex;
  3629. }
  3630. #u126686 .text {
  3631. position:absolute;
  3632. align-self:center;
  3633. padding:2px 2px 2px 2px;
  3634. box-sizing:border-box;
  3635. width:100%;
  3636. }
  3637. #u126686_text {
  3638. border-width:0px;
  3639. word-wrap:break-word;
  3640. text-transform:none;
  3641. visibility:hidden;
  3642. }
  3643. #u126687 {
  3644. border-width:0px;
  3645. position:absolute;
  3646. left:0px;
  3647. top:0px;
  3648. width:0px;
  3649. height:0px;
  3650. }
  3651. #u126688_div {
  3652. border-width:0px;
  3653. position:absolute;
  3654. left:0px;
  3655. top:0px;
  3656. width:300px;
  3657. height:50px;
  3658. background:inherit;
  3659. background-color:rgba(255, 255, 255, 0);
  3660. border:none;
  3661. border-radius:4px;
  3662. -moz-box-shadow:none;
  3663. -webkit-box-shadow:none;
  3664. box-shadow:none;
  3665. font-family:'Microsoft YaHei', sans-serif;
  3666. font-weight:400;
  3667. font-style:normal;
  3668. font-size:14px;
  3669. color:#CCCCCC;
  3670. text-align:left;
  3671. }
  3672. #u126688 {
  3673. border-width:0px;
  3674. position:absolute;
  3675. left:351px;
  3676. top:458px;
  3677. width:300px;
  3678. height:50px;
  3679. display:flex;
  3680. font-family:'Microsoft YaHei', sans-serif;
  3681. font-weight:400;
  3682. font-style:normal;
  3683. font-size:14px;
  3684. color:#CCCCCC;
  3685. text-align:left;
  3686. }
  3687. #u126688 .text {
  3688. position:absolute;
  3689. align-self:center;
  3690. padding:2px 8px 2px 8px;
  3691. box-sizing:border-box;
  3692. width:100%;
  3693. }
  3694. #u126688_text {
  3695. border-width:0px;
  3696. word-wrap:break-word;
  3697. text-transform:none;
  3698. visibility:hidden;
  3699. }
  3700. #u126689_div {
  3701. border-width:0px;
  3702. position:absolute;
  3703. left:0px;
  3704. top:0px;
  3705. width:51px;
  3706. height:20px;
  3707. background:inherit;
  3708. background-color:rgba(51, 51, 51, 0);
  3709. border:none;
  3710. border-radius:4px;
  3711. -moz-box-shadow:none;
  3712. -webkit-box-shadow:none;
  3713. box-shadow:none;
  3714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3715. font-weight:400;
  3716. font-style:normal;
  3717. font-size:14px;
  3718. text-align:left;
  3719. }
  3720. #u126689 {
  3721. border-width:0px;
  3722. position:absolute;
  3723. left:450px;
  3724. top:473px;
  3725. width:51px;
  3726. height:20px;
  3727. display:flex;
  3728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3729. font-weight:400;
  3730. font-style:normal;
  3731. font-size:14px;
  3732. text-align:left;
  3733. }
  3734. #u126689 .text {
  3735. position:absolute;
  3736. align-self:center;
  3737. padding:0px 0px 0px 0px;
  3738. box-sizing:border-box;
  3739. width:100%;
  3740. }
  3741. #u126689_text {
  3742. border-width:0px;
  3743. white-space:nowrap;
  3744. text-transform:none;
  3745. }
  3746. #u126690_img {
  3747. border-width:0px;
  3748. position:absolute;
  3749. left:0px;
  3750. top:0px;
  3751. width:14px;
  3752. height:14px;
  3753. }
  3754. #u126690 {
  3755. border-width:0px;
  3756. position:absolute;
  3757. left:431px;
  3758. top:476px;
  3759. width:14px;
  3760. height:14px;
  3761. display:flex;
  3762. }
  3763. #u126690 .text {
  3764. position:absolute;
  3765. align-self:center;
  3766. padding:2px 2px 2px 2px;
  3767. box-sizing:border-box;
  3768. width:100%;
  3769. }
  3770. #u126690_text {
  3771. border-width:0px;
  3772. word-wrap:break-word;
  3773. text-transform:none;
  3774. visibility:hidden;
  3775. }
  3776. #u126691 {
  3777. border-width:0px;
  3778. position:absolute;
  3779. left:0px;
  3780. top:0px;
  3781. width:0px;
  3782. height:0px;
  3783. }
  3784. #u126692_div {
  3785. border-width:0px;
  3786. position:absolute;
  3787. left:0px;
  3788. top:0px;
  3789. width:300px;
  3790. height:50px;
  3791. background:inherit;
  3792. background-color:rgba(255, 255, 255, 0);
  3793. border:none;
  3794. border-radius:4px;
  3795. -moz-box-shadow:none;
  3796. -webkit-box-shadow:none;
  3797. box-shadow:none;
  3798. font-family:'Microsoft YaHei', sans-serif;
  3799. font-weight:400;
  3800. font-style:normal;
  3801. font-size:14px;
  3802. color:#CCCCCC;
  3803. text-align:left;
  3804. }
  3805. #u126692 {
  3806. border-width:0px;
  3807. position:absolute;
  3808. left:351px;
  3809. top:502px;
  3810. width:300px;
  3811. height:50px;
  3812. display:flex;
  3813. font-family:'Microsoft YaHei', sans-serif;
  3814. font-weight:400;
  3815. font-style:normal;
  3816. font-size:14px;
  3817. color:#CCCCCC;
  3818. text-align:left;
  3819. }
  3820. #u126692 .text {
  3821. position:absolute;
  3822. align-self:center;
  3823. padding:2px 8px 2px 8px;
  3824. box-sizing:border-box;
  3825. width:100%;
  3826. }
  3827. #u126692_text {
  3828. border-width:0px;
  3829. word-wrap:break-word;
  3830. text-transform:none;
  3831. visibility:hidden;
  3832. }
  3833. #u126693_div {
  3834. border-width:0px;
  3835. position:absolute;
  3836. left:0px;
  3837. top:0px;
  3838. width:49px;
  3839. height:20px;
  3840. background:inherit;
  3841. background-color:rgba(51, 51, 51, 0);
  3842. border:none;
  3843. border-radius:4px;
  3844. -moz-box-shadow:none;
  3845. -webkit-box-shadow:none;
  3846. box-shadow:none;
  3847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3848. font-weight:400;
  3849. font-style:normal;
  3850. font-size:14px;
  3851. text-align:left;
  3852. }
  3853. #u126693 {
  3854. border-width:0px;
  3855. position:absolute;
  3856. left:429px;
  3857. top:517px;
  3858. width:49px;
  3859. height:20px;
  3860. display:flex;
  3861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3862. font-weight:400;
  3863. font-style:normal;
  3864. font-size:14px;
  3865. text-align:left;
  3866. }
  3867. #u126693 .text {
  3868. position:absolute;
  3869. align-self:center;
  3870. padding:0px 0px 0px 0px;
  3871. box-sizing:border-box;
  3872. width:100%;
  3873. }
  3874. #u126693_text {
  3875. border-width:0px;
  3876. white-space:nowrap;
  3877. text-transform:none;
  3878. }
  3879. #u126694_img {
  3880. border-width:0px;
  3881. position:absolute;
  3882. left:0px;
  3883. top:0px;
  3884. width:15px;
  3885. height:15px;
  3886. }
  3887. #u126694 {
  3888. border-width:0px;
  3889. position:absolute;
  3890. left:410px;
  3891. top:520px;
  3892. width:15px;
  3893. height:15px;
  3894. display:flex;
  3895. }
  3896. #u126694 .text {
  3897. position:absolute;
  3898. align-self:center;
  3899. padding:2px 2px 2px 2px;
  3900. box-sizing:border-box;
  3901. width:100%;
  3902. }
  3903. #u126694_text {
  3904. border-width:0px;
  3905. word-wrap:break-word;
  3906. text-transform:none;
  3907. visibility:hidden;
  3908. }
  3909. #u126695 {
  3910. border-width:0px;
  3911. position:absolute;
  3912. left:0px;
  3913. top:0px;
  3914. width:0px;
  3915. height:0px;
  3916. }
  3917. #u126696_div {
  3918. border-width:0px;
  3919. position:absolute;
  3920. left:0px;
  3921. top:0px;
  3922. width:300px;
  3923. height:50px;
  3924. background:inherit;
  3925. background-color:rgba(255, 255, 255, 0);
  3926. border:none;
  3927. border-radius:4px;
  3928. -moz-box-shadow:none;
  3929. -webkit-box-shadow:none;
  3930. box-shadow:none;
  3931. font-family:'Microsoft YaHei', sans-serif;
  3932. font-weight:400;
  3933. font-style:normal;
  3934. font-size:14px;
  3935. color:#CCCCCC;
  3936. text-align:left;
  3937. }
  3938. #u126696 {
  3939. border-width:0px;
  3940. position:absolute;
  3941. left:351px;
  3942. top:552px;
  3943. width:300px;
  3944. height:50px;
  3945. display:flex;
  3946. font-family:'Microsoft YaHei', sans-serif;
  3947. font-weight:400;
  3948. font-style:normal;
  3949. font-size:14px;
  3950. color:#CCCCCC;
  3951. text-align:left;
  3952. }
  3953. #u126696 .text {
  3954. position:absolute;
  3955. align-self:center;
  3956. padding:2px 8px 2px 8px;
  3957. box-sizing:border-box;
  3958. width:100%;
  3959. }
  3960. #u126696_text {
  3961. border-width:0px;
  3962. word-wrap:break-word;
  3963. text-transform:none;
  3964. visibility:hidden;
  3965. }
  3966. #u126697_div {
  3967. border-width:0px;
  3968. position:absolute;
  3969. left:0px;
  3970. top:0px;
  3971. width:49px;
  3972. height:20px;
  3973. background:inherit;
  3974. background-color:rgba(51, 51, 51, 0);
  3975. border:none;
  3976. border-radius:4px;
  3977. -moz-box-shadow:none;
  3978. -webkit-box-shadow:none;
  3979. box-shadow:none;
  3980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3981. font-weight:400;
  3982. font-style:normal;
  3983. font-size:14px;
  3984. text-align:left;
  3985. }
  3986. #u126697 {
  3987. border-width:0px;
  3988. position:absolute;
  3989. left:450px;
  3990. top:567px;
  3991. width:49px;
  3992. height:20px;
  3993. display:flex;
  3994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3995. font-weight:400;
  3996. font-style:normal;
  3997. font-size:14px;
  3998. text-align:left;
  3999. }
  4000. #u126697 .text {
  4001. position:absolute;
  4002. align-self:center;
  4003. padding:0px 0px 0px 0px;
  4004. box-sizing:border-box;
  4005. width:100%;
  4006. }
  4007. #u126697_text {
  4008. border-width:0px;
  4009. white-space:nowrap;
  4010. text-transform:none;
  4011. }
  4012. #u126698_img {
  4013. border-width:0px;
  4014. position:absolute;
  4015. left:0px;
  4016. top:0px;
  4017. width:14px;
  4018. height:14px;
  4019. }
  4020. #u126698 {
  4021. border-width:0px;
  4022. position:absolute;
  4023. left:431px;
  4024. top:570px;
  4025. width:14px;
  4026. height:14px;
  4027. display:flex;
  4028. }
  4029. #u126698 .text {
  4030. position:absolute;
  4031. align-self:center;
  4032. padding:2px 2px 2px 2px;
  4033. box-sizing:border-box;
  4034. width:100%;
  4035. }
  4036. #u126698_text {
  4037. border-width:0px;
  4038. word-wrap:break-word;
  4039. text-transform:none;
  4040. visibility:hidden;
  4041. }
  4042. #u126699 {
  4043. border-width:0px;
  4044. position:absolute;
  4045. left:0px;
  4046. top:0px;
  4047. width:0px;
  4048. height:0px;
  4049. }
  4050. #u126700_div {
  4051. border-width:0px;
  4052. position:absolute;
  4053. left:0px;
  4054. top:0px;
  4055. width:300px;
  4056. height:50px;
  4057. background:inherit;
  4058. background-color:rgba(255, 255, 255, 0);
  4059. border:none;
  4060. border-radius:4px;
  4061. -moz-box-shadow:none;
  4062. -webkit-box-shadow:none;
  4063. box-shadow:none;
  4064. font-family:'Microsoft YaHei', sans-serif;
  4065. font-weight:400;
  4066. font-style:normal;
  4067. font-size:14px;
  4068. color:#CCCCCC;
  4069. text-align:left;
  4070. }
  4071. #u126700 {
  4072. border-width:0px;
  4073. position:absolute;
  4074. left:351px;
  4075. top:662px;
  4076. width:300px;
  4077. height:50px;
  4078. display:flex;
  4079. font-family:'Microsoft YaHei', sans-serif;
  4080. font-weight:400;
  4081. font-style:normal;
  4082. font-size:14px;
  4083. color:#CCCCCC;
  4084. text-align:left;
  4085. }
  4086. #u126700 .text {
  4087. position:absolute;
  4088. align-self:center;
  4089. padding:2px 8px 2px 8px;
  4090. box-sizing:border-box;
  4091. width:100%;
  4092. }
  4093. #u126700_text {
  4094. border-width:0px;
  4095. word-wrap:break-word;
  4096. text-transform:none;
  4097. visibility:hidden;
  4098. }
  4099. #u126701_div {
  4100. border-width:0px;
  4101. position:absolute;
  4102. left:0px;
  4103. top:0px;
  4104. width:51px;
  4105. height:20px;
  4106. background:inherit;
  4107. background-color:rgba(51, 51, 51, 0);
  4108. border:none;
  4109. border-radius:4px;
  4110. -moz-box-shadow:none;
  4111. -webkit-box-shadow:none;
  4112. box-shadow:none;
  4113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4114. font-weight:400;
  4115. font-style:normal;
  4116. font-size:14px;
  4117. text-align:left;
  4118. }
  4119. #u126701 {
  4120. border-width:0px;
  4121. position:absolute;
  4122. left:429px;
  4123. top:677px;
  4124. width:51px;
  4125. height:20px;
  4126. display:flex;
  4127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4128. font-weight:400;
  4129. font-style:normal;
  4130. font-size:14px;
  4131. text-align:left;
  4132. }
  4133. #u126701 .text {
  4134. position:absolute;
  4135. align-self:center;
  4136. padding:0px 0px 0px 0px;
  4137. box-sizing:border-box;
  4138. width:100%;
  4139. }
  4140. #u126701_text {
  4141. border-width:0px;
  4142. white-space:nowrap;
  4143. text-transform:none;
  4144. }
  4145. #u126702_img {
  4146. border-width:0px;
  4147. position:absolute;
  4148. left:0px;
  4149. top:0px;
  4150. width:15px;
  4151. height:15px;
  4152. }
  4153. #u126702 {
  4154. border-width:0px;
  4155. position:absolute;
  4156. left:410px;
  4157. top:680px;
  4158. width:15px;
  4159. height:15px;
  4160. display:flex;
  4161. }
  4162. #u126702 .text {
  4163. position:absolute;
  4164. align-self:center;
  4165. padding:2px 2px 2px 2px;
  4166. box-sizing:border-box;
  4167. width:100%;
  4168. }
  4169. #u126702_text {
  4170. border-width:0px;
  4171. word-wrap:break-word;
  4172. text-transform:none;
  4173. visibility:hidden;
  4174. }
  4175. #u126703 {
  4176. border-width:0px;
  4177. position:absolute;
  4178. left:0px;
  4179. top:0px;
  4180. width:0px;
  4181. height:0px;
  4182. }
  4183. #u126704_div {
  4184. border-width:0px;
  4185. position:absolute;
  4186. left:0px;
  4187. top:0px;
  4188. width:300px;
  4189. height:50px;
  4190. background:inherit;
  4191. background-color:rgba(255, 255, 255, 0);
  4192. border:none;
  4193. border-radius:4px;
  4194. -moz-box-shadow:none;
  4195. -webkit-box-shadow:none;
  4196. box-shadow:none;
  4197. font-family:'Microsoft YaHei', sans-serif;
  4198. font-weight:400;
  4199. font-style:normal;
  4200. font-size:14px;
  4201. color:#CCCCCC;
  4202. text-align:left;
  4203. }
  4204. #u126704 {
  4205. border-width:0px;
  4206. position:absolute;
  4207. left:351px;
  4208. top:712px;
  4209. width:300px;
  4210. height:50px;
  4211. display:flex;
  4212. font-family:'Microsoft YaHei', sans-serif;
  4213. font-weight:400;
  4214. font-style:normal;
  4215. font-size:14px;
  4216. color:#CCCCCC;
  4217. text-align:left;
  4218. }
  4219. #u126704 .text {
  4220. position:absolute;
  4221. align-self:center;
  4222. padding:2px 8px 2px 8px;
  4223. box-sizing:border-box;
  4224. width:100%;
  4225. }
  4226. #u126704_text {
  4227. border-width:0px;
  4228. word-wrap:break-word;
  4229. text-transform:none;
  4230. visibility:hidden;
  4231. }
  4232. #u126705_div {
  4233. border-width:0px;
  4234. position:absolute;
  4235. left:0px;
  4236. top:0px;
  4237. width:51px;
  4238. height:20px;
  4239. background:inherit;
  4240. background-color:rgba(51, 51, 51, 0);
  4241. border:none;
  4242. border-radius:4px;
  4243. -moz-box-shadow:none;
  4244. -webkit-box-shadow:none;
  4245. box-shadow:none;
  4246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4247. font-weight:400;
  4248. font-style:normal;
  4249. font-size:14px;
  4250. text-align:left;
  4251. }
  4252. #u126705 {
  4253. border-width:0px;
  4254. position:absolute;
  4255. left:450px;
  4256. top:727px;
  4257. width:51px;
  4258. height:20px;
  4259. display:flex;
  4260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4261. font-weight:400;
  4262. font-style:normal;
  4263. font-size:14px;
  4264. text-align:left;
  4265. }
  4266. #u126705 .text {
  4267. position:absolute;
  4268. align-self:center;
  4269. padding:0px 0px 0px 0px;
  4270. box-sizing:border-box;
  4271. width:100%;
  4272. }
  4273. #u126705_text {
  4274. border-width:0px;
  4275. white-space:nowrap;
  4276. text-transform:none;
  4277. }
  4278. #u126706_img {
  4279. border-width:0px;
  4280. position:absolute;
  4281. left:0px;
  4282. top:0px;
  4283. width:14px;
  4284. height:14px;
  4285. }
  4286. #u126706 {
  4287. border-width:0px;
  4288. position:absolute;
  4289. left:431px;
  4290. top:730px;
  4291. width:14px;
  4292. height:14px;
  4293. display:flex;
  4294. }
  4295. #u126706 .text {
  4296. position:absolute;
  4297. align-self:center;
  4298. padding:2px 2px 2px 2px;
  4299. box-sizing:border-box;
  4300. width:100%;
  4301. }
  4302. #u126706_text {
  4303. border-width:0px;
  4304. word-wrap:break-word;
  4305. text-transform:none;
  4306. visibility:hidden;
  4307. }
  4308. #u126707 {
  4309. border-width:0px;
  4310. position:absolute;
  4311. left:0px;
  4312. top:0px;
  4313. width:0px;
  4314. height:0px;
  4315. }
  4316. #u126708_div {
  4317. border-width:0px;
  4318. position:absolute;
  4319. left:0px;
  4320. top:0px;
  4321. width:300px;
  4322. height:50px;
  4323. background:inherit;
  4324. background-color:rgba(242, 242, 242, 1);
  4325. border:none;
  4326. border-radius:4px;
  4327. -moz-box-shadow:none;
  4328. -webkit-box-shadow:none;
  4329. box-shadow:none;
  4330. font-family:'Microsoft YaHei', sans-serif;
  4331. font-weight:400;
  4332. font-style:normal;
  4333. font-size:14px;
  4334. color:#CCCCCC;
  4335. text-align:left;
  4336. }
  4337. #u126708 {
  4338. border-width:0px;
  4339. position:absolute;
  4340. left:351px;
  4341. top:612px;
  4342. width:300px;
  4343. height:50px;
  4344. display:flex;
  4345. font-family:'Microsoft YaHei', sans-serif;
  4346. font-weight:400;
  4347. font-style:normal;
  4348. font-size:14px;
  4349. color:#CCCCCC;
  4350. text-align:left;
  4351. }
  4352. #u126708 .text {
  4353. position:absolute;
  4354. align-self:center;
  4355. padding:2px 8px 2px 8px;
  4356. box-sizing:border-box;
  4357. width:100%;
  4358. }
  4359. #u126708_text {
  4360. border-width:0px;
  4361. word-wrap:break-word;
  4362. text-transform:none;
  4363. visibility:hidden;
  4364. }
  4365. #u126709_div {
  4366. border-width:0px;
  4367. position:absolute;
  4368. left:0px;
  4369. top:0px;
  4370. width:15px;
  4371. height:15px;
  4372. background:inherit;
  4373. background-color:rgba(51, 51, 51, 0);
  4374. box-sizing:border-box;
  4375. border-width:1px;
  4376. border-style:solid;
  4377. border-color:rgba(51, 51, 51, 1);
  4378. border-radius:8px;
  4379. -moz-box-shadow:none;
  4380. -webkit-box-shadow:none;
  4381. box-shadow:none;
  4382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4383. font-weight:400;
  4384. font-style:normal;
  4385. font-size:10px;
  4386. }
  4387. #u126709 {
  4388. border-width:0px;
  4389. position:absolute;
  4390. left:384px;
  4391. top:630px;
  4392. width:15px;
  4393. height:15px;
  4394. display:flex;
  4395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4396. font-weight:400;
  4397. font-style:normal;
  4398. font-size:10px;
  4399. }
  4400. #u126709 .text {
  4401. position:absolute;
  4402. align-self:center;
  4403. padding:0px 0px 0px 0px;
  4404. box-sizing:border-box;
  4405. width:100%;
  4406. }
  4407. #u126709_text {
  4408. border-width:0px;
  4409. word-wrap:break-word;
  4410. text-transform:none;
  4411. }
  4412. #u126710_div {
  4413. border-width:0px;
  4414. position:absolute;
  4415. left:0px;
  4416. top:0px;
  4417. width:127px;
  4418. height:20px;
  4419. background:inherit;
  4420. background-color:rgba(51, 51, 51, 0);
  4421. border:none;
  4422. border-radius:4px;
  4423. -moz-box-shadow:none;
  4424. -webkit-box-shadow:none;
  4425. box-shadow:none;
  4426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4427. font-weight:400;
  4428. font-style:normal;
  4429. font-size:14px;
  4430. text-align:left;
  4431. }
  4432. #u126710 {
  4433. border-width:0px;
  4434. position:absolute;
  4435. left:405px;
  4436. top:627px;
  4437. width:127px;
  4438. height:20px;
  4439. display:flex;
  4440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4441. font-weight:400;
  4442. font-style:normal;
  4443. font-size:14px;
  4444. text-align:left;
  4445. }
  4446. #u126710 .text {
  4447. position:absolute;
  4448. align-self:center;
  4449. padding:0px 0px 0px 0px;
  4450. box-sizing:border-box;
  4451. width:100%;
  4452. }
  4453. #u126710_text {
  4454. border-width:0px;
  4455. white-space:nowrap;
  4456. text-transform:none;
  4457. }
  4458. #u126711_img {
  4459. border-width:0px;
  4460. position:absolute;
  4461. left:0px;
  4462. top:0px;
  4463. width:14px;
  4464. height:8px;
  4465. }
  4466. #u126711 {
  4467. border-width:0px;
  4468. position:absolute;
  4469. left:620px;
  4470. top:633px;
  4471. width:14px;
  4472. height:8px;
  4473. display:flex;
  4474. }
  4475. #u126711 .text {
  4476. position:absolute;
  4477. align-self:center;
  4478. padding:2px 2px 2px 2px;
  4479. box-sizing:border-box;
  4480. width:100%;
  4481. }
  4482. #u126711_text {
  4483. border-width:0px;
  4484. word-wrap:break-word;
  4485. text-transform:none;
  4486. visibility:hidden;
  4487. }
  4488. #u126712_div {
  4489. border-width:0px;
  4490. position:absolute;
  4491. left:0px;
  4492. top:0px;
  4493. width:73px;
  4494. height:50px;
  4495. background:inherit;
  4496. background-color:rgba(255, 255, 255, 0);
  4497. border:none;
  4498. border-left:0px;
  4499. border-top:0px;
  4500. border-right:0px;
  4501. border-radius:0px;
  4502. border-bottom-right-radius:0px;
  4503. border-bottom-left-radius:0px;
  4504. -moz-box-shadow:none;
  4505. -webkit-box-shadow:none;
  4506. box-shadow:none;
  4507. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4508. font-weight:500;
  4509. font-style:normal;
  4510. font-size:18px;
  4511. line-height:40px;
  4512. }
  4513. #u126712 {
  4514. border-width:0px;
  4515. position:absolute;
  4516. left:345px;
  4517. top:63px;
  4518. width:73px;
  4519. height:50px;
  4520. display:flex;
  4521. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4522. font-weight:500;
  4523. font-style:normal;
  4524. font-size:18px;
  4525. line-height:40px;
  4526. }
  4527. #u126712 .text {
  4528. position:absolute;
  4529. align-self:center;
  4530. padding:5px 0px 5px 0px;
  4531. box-sizing:border-box;
  4532. width:100%;
  4533. }
  4534. #u126712_text {
  4535. border-width:0px;
  4536. white-space:nowrap;
  4537. text-transform:none;
  4538. }
  4539. #u126713 {
  4540. border-width:0px;
  4541. position:absolute;
  4542. left:0px;
  4543. top:0px;
  4544. width:0px;
  4545. height:0px;
  4546. }
  4547. #u126714_div {
  4548. border-width:0px;
  4549. position:absolute;
  4550. left:0px;
  4551. top:0px;
  4552. width:300px;
  4553. height:50px;
  4554. background:inherit;
  4555. background-color:rgba(242, 242, 242, 0.0980392156862745);
  4556. border:none;
  4557. border-radius:4px;
  4558. -moz-box-shadow:none;
  4559. -webkit-box-shadow:none;
  4560. box-shadow:none;
  4561. font-family:'Microsoft YaHei', sans-serif;
  4562. font-weight:400;
  4563. font-style:normal;
  4564. font-size:14px;
  4565. color:#CCCCCC;
  4566. text-align:left;
  4567. }
  4568. #u126714 {
  4569. border-width:0px;
  4570. position:absolute;
  4571. left:351px;
  4572. top:219px;
  4573. width:300px;
  4574. height:50px;
  4575. display:flex;
  4576. font-family:'Microsoft YaHei', sans-serif;
  4577. font-weight:400;
  4578. font-style:normal;
  4579. font-size:14px;
  4580. color:#CCCCCC;
  4581. text-align:left;
  4582. }
  4583. #u126714 .text {
  4584. position:absolute;
  4585. align-self:center;
  4586. padding:2px 8px 2px 8px;
  4587. box-sizing:border-box;
  4588. width:100%;
  4589. }
  4590. #u126714_text {
  4591. border-width:0px;
  4592. word-wrap:break-word;
  4593. text-transform:none;
  4594. visibility:hidden;
  4595. }
  4596. #u126715_div {
  4597. border-width:0px;
  4598. position:absolute;
  4599. left:0px;
  4600. top:0px;
  4601. width:15px;
  4602. height:15px;
  4603. background:inherit;
  4604. background-color:rgba(51, 51, 51, 1);
  4605. border:none;
  4606. border-radius:8px;
  4607. -moz-box-shadow:none;
  4608. -webkit-box-shadow:none;
  4609. box-shadow:none;
  4610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4611. font-weight:400;
  4612. font-style:normal;
  4613. font-size:10px;
  4614. color:#FFFFFF;
  4615. }
  4616. #u126715 {
  4617. border-width:0px;
  4618. position:absolute;
  4619. left:364px;
  4620. top:237px;
  4621. width:15px;
  4622. height:15px;
  4623. display:flex;
  4624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4625. font-weight:400;
  4626. font-style:normal;
  4627. font-size:10px;
  4628. color:#FFFFFF;
  4629. }
  4630. #u126715 .text {
  4631. position:absolute;
  4632. align-self:center;
  4633. padding:0px 0px 0px 0px;
  4634. box-sizing:border-box;
  4635. width:100%;
  4636. }
  4637. #u126715_text {
  4638. border-width:0px;
  4639. word-wrap:break-word;
  4640. text-transform:none;
  4641. }
  4642. #u126716_div {
  4643. border-width:0px;
  4644. position:absolute;
  4645. left:0px;
  4646. top:0px;
  4647. width:127px;
  4648. height:20px;
  4649. background:inherit;
  4650. background-color:rgba(51, 51, 51, 0);
  4651. border:none;
  4652. border-radius:4px;
  4653. -moz-box-shadow:none;
  4654. -webkit-box-shadow:none;
  4655. box-shadow:none;
  4656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4657. font-weight:400;
  4658. font-style:normal;
  4659. font-size:14px;
  4660. text-align:left;
  4661. }
  4662. #u126716 {
  4663. border-width:0px;
  4664. position:absolute;
  4665. left:385px;
  4666. top:234px;
  4667. width:127px;
  4668. height:20px;
  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. #u126716 .text {
  4677. position:absolute;
  4678. align-self:center;
  4679. padding:0px 0px 0px 0px;
  4680. box-sizing:border-box;
  4681. width:100%;
  4682. }
  4683. #u126716_text {
  4684. border-width:0px;
  4685. white-space:nowrap;
  4686. text-transform:none;
  4687. }
  4688. #u126717 {
  4689. border-width:0px;
  4690. position:absolute;
  4691. left:0px;
  4692. top:0px;
  4693. width:0px;
  4694. height:0px;
  4695. }
  4696. #u126718_div {
  4697. border-width:0px;
  4698. position:absolute;
  4699. left:0px;
  4700. top:0px;
  4701. width:300px;
  4702. height:50px;
  4703. background:inherit;
  4704. background-color:rgba(242, 242, 242, 1);
  4705. border:none;
  4706. border-radius:4px;
  4707. -moz-box-shadow:none;
  4708. -webkit-box-shadow:none;
  4709. box-shadow:none;
  4710. font-family:'Microsoft YaHei', sans-serif;
  4711. font-weight:400;
  4712. font-style:normal;
  4713. font-size:14px;
  4714. color:#CCCCCC;
  4715. text-align:left;
  4716. }
  4717. #u126718 {
  4718. border-width:0px;
  4719. position:absolute;
  4720. left:351px;
  4721. top:269px;
  4722. width:300px;
  4723. height:50px;
  4724. display:flex;
  4725. font-family:'Microsoft YaHei', sans-serif;
  4726. font-weight:400;
  4727. font-style:normal;
  4728. font-size:14px;
  4729. color:#CCCCCC;
  4730. text-align:left;
  4731. }
  4732. #u126718 .text {
  4733. position:absolute;
  4734. align-self:center;
  4735. padding:2px 8px 2px 8px;
  4736. box-sizing:border-box;
  4737. width:100%;
  4738. }
  4739. #u126718_text {
  4740. border-width:0px;
  4741. word-wrap:break-word;
  4742. text-transform:none;
  4743. visibility:hidden;
  4744. }
  4745. #u126719_div {
  4746. border-width:0px;
  4747. position:absolute;
  4748. left:0px;
  4749. top:0px;
  4750. width:15px;
  4751. height:15px;
  4752. background:inherit;
  4753. background-color:rgba(51, 51, 51, 0);
  4754. box-sizing:border-box;
  4755. border-width:1px;
  4756. border-style:solid;
  4757. border-color:rgba(51, 51, 51, 1);
  4758. border-radius:8px;
  4759. -moz-box-shadow:none;
  4760. -webkit-box-shadow:none;
  4761. box-shadow:none;
  4762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4763. font-weight:400;
  4764. font-style:normal;
  4765. font-size:10px;
  4766. }
  4767. #u126719 {
  4768. border-width:0px;
  4769. position:absolute;
  4770. left:384px;
  4771. top:287px;
  4772. width:15px;
  4773. height:15px;
  4774. display:flex;
  4775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4776. font-weight:400;
  4777. font-style:normal;
  4778. font-size:10px;
  4779. }
  4780. #u126719 .text {
  4781. position:absolute;
  4782. align-self:center;
  4783. padding:0px 0px 0px 0px;
  4784. box-sizing:border-box;
  4785. width:100%;
  4786. }
  4787. #u126719_text {
  4788. border-width:0px;
  4789. word-wrap:break-word;
  4790. text-transform:none;
  4791. }
  4792. #u126720_div {
  4793. border-width:0px;
  4794. position:absolute;
  4795. left:0px;
  4796. top:0px;
  4797. width:155px;
  4798. height:20px;
  4799. background:inherit;
  4800. background-color:rgba(51, 51, 51, 0);
  4801. border:none;
  4802. border-radius:4px;
  4803. -moz-box-shadow:none;
  4804. -webkit-box-shadow:none;
  4805. box-shadow:none;
  4806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4807. font-weight:400;
  4808. font-style:normal;
  4809. font-size:14px;
  4810. text-align:left;
  4811. }
  4812. #u126720 {
  4813. border-width:0px;
  4814. position:absolute;
  4815. left:405px;
  4816. top:284px;
  4817. width:155px;
  4818. height:20px;
  4819. display:flex;
  4820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4821. font-weight:400;
  4822. font-style:normal;
  4823. font-size:14px;
  4824. text-align:left;
  4825. }
  4826. #u126720 .text {
  4827. position:absolute;
  4828. align-self:center;
  4829. padding:0px 0px 0px 0px;
  4830. box-sizing:border-box;
  4831. width:100%;
  4832. }
  4833. #u126720_text {
  4834. border-width:0px;
  4835. white-space:nowrap;
  4836. text-transform:none;
  4837. }
  4838. #u126721 {
  4839. border-width:0px;
  4840. position:absolute;
  4841. left:0px;
  4842. top:0px;
  4843. width:0px;
  4844. height:0px;
  4845. }
  4846. #u126722_div {
  4847. border-width:0px;
  4848. position:absolute;
  4849. left:0px;
  4850. top:0px;
  4851. width:300px;
  4852. height:50px;
  4853. background:inherit;
  4854. background-color:rgba(242, 242, 242, 0.0980392156862745);
  4855. border:none;
  4856. border-radius:4px;
  4857. -moz-box-shadow:none;
  4858. -webkit-box-shadow:none;
  4859. box-shadow:none;
  4860. font-family:'Microsoft YaHei', sans-serif;
  4861. font-weight:400;
  4862. font-style:normal;
  4863. font-size:14px;
  4864. color:#CCCCCC;
  4865. text-align:left;
  4866. }
  4867. #u126722 {
  4868. border-width:0px;
  4869. position:absolute;
  4870. left:351px;
  4871. top:319px;
  4872. width:300px;
  4873. height:50px;
  4874. display:flex;
  4875. font-family:'Microsoft YaHei', sans-serif;
  4876. font-weight:400;
  4877. font-style:normal;
  4878. font-size:14px;
  4879. color:#CCCCCC;
  4880. text-align:left;
  4881. }
  4882. #u126722 .text {
  4883. position:absolute;
  4884. align-self:center;
  4885. padding:2px 8px 2px 8px;
  4886. box-sizing:border-box;
  4887. width:100%;
  4888. }
  4889. #u126722_text {
  4890. border-width:0px;
  4891. word-wrap:break-word;
  4892. text-transform:none;
  4893. visibility:hidden;
  4894. }
  4895. #u126723_div {
  4896. border-width:0px;
  4897. position:absolute;
  4898. left:0px;
  4899. top:0px;
  4900. width:15px;
  4901. height:15px;
  4902. background:inherit;
  4903. background-color:rgba(51, 51, 51, 1);
  4904. border:none;
  4905. border-radius:8px;
  4906. -moz-box-shadow:none;
  4907. -webkit-box-shadow:none;
  4908. box-shadow:none;
  4909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4910. font-weight:400;
  4911. font-style:normal;
  4912. font-size:10px;
  4913. color:#FFFFFF;
  4914. }
  4915. #u126723 {
  4916. border-width:0px;
  4917. position:absolute;
  4918. left:364px;
  4919. top:337px;
  4920. width:15px;
  4921. height:15px;
  4922. display:flex;
  4923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4924. font-weight:400;
  4925. font-style:normal;
  4926. font-size:10px;
  4927. color:#FFFFFF;
  4928. }
  4929. #u126723 .text {
  4930. position:absolute;
  4931. align-self:center;
  4932. padding:0px 0px 0px 0px;
  4933. box-sizing:border-box;
  4934. width:100%;
  4935. }
  4936. #u126723_text {
  4937. border-width:0px;
  4938. word-wrap:break-word;
  4939. text-transform:none;
  4940. }
  4941. #u126724_div {
  4942. border-width:0px;
  4943. position:absolute;
  4944. left:0px;
  4945. top:0px;
  4946. width:113px;
  4947. height:20px;
  4948. background:inherit;
  4949. background-color:rgba(51, 51, 51, 0);
  4950. border:none;
  4951. border-radius:4px;
  4952. -moz-box-shadow:none;
  4953. -webkit-box-shadow:none;
  4954. box-shadow:none;
  4955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4956. font-weight:400;
  4957. font-style:normal;
  4958. font-size:14px;
  4959. text-align:left;
  4960. }
  4961. #u126724 {
  4962. border-width:0px;
  4963. position:absolute;
  4964. left:385px;
  4965. top:334px;
  4966. width:113px;
  4967. height:20px;
  4968. display:flex;
  4969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4970. font-weight:400;
  4971. font-style:normal;
  4972. font-size:14px;
  4973. text-align:left;
  4974. }
  4975. #u126724 .text {
  4976. position:absolute;
  4977. align-self:center;
  4978. padding:0px 0px 0px 0px;
  4979. box-sizing:border-box;
  4980. width:100%;
  4981. }
  4982. #u126724_text {
  4983. border-width:0px;
  4984. white-space:nowrap;
  4985. text-transform:none;
  4986. }
  4987. #u126725 {
  4988. border-width:0px;
  4989. position:absolute;
  4990. left:0px;
  4991. top:0px;
  4992. width:0px;
  4993. height:0px;
  4994. }
  4995. #u126726_div {
  4996. border-width:0px;
  4997. position:absolute;
  4998. left:0px;
  4999. top:0px;
  5000. width:300px;
  5001. height:50px;
  5002. background:inherit;
  5003. background-color:rgba(242, 242, 242, 0.0980392156862745);
  5004. border:none;
  5005. border-radius:4px;
  5006. -moz-box-shadow:none;
  5007. -webkit-box-shadow:none;
  5008. box-shadow:none;
  5009. font-family:'Microsoft YaHei', sans-serif;
  5010. font-weight:400;
  5011. font-style:normal;
  5012. font-size:14px;
  5013. color:#CCCCCC;
  5014. text-align:left;
  5015. }
  5016. #u126726 {
  5017. border-width:0px;
  5018. position:absolute;
  5019. left:351px;
  5020. top:369px;
  5021. width:300px;
  5022. height:50px;
  5023. display:flex;
  5024. font-family:'Microsoft YaHei', sans-serif;
  5025. font-weight:400;
  5026. font-style:normal;
  5027. font-size:14px;
  5028. color:#CCCCCC;
  5029. text-align:left;
  5030. }
  5031. #u126726 .text {
  5032. position:absolute;
  5033. align-self:center;
  5034. padding:2px 8px 2px 8px;
  5035. box-sizing:border-box;
  5036. width:100%;
  5037. }
  5038. #u126726_text {
  5039. border-width:0px;
  5040. word-wrap:break-word;
  5041. text-transform:none;
  5042. visibility:hidden;
  5043. }
  5044. #u126727_div {
  5045. border-width:0px;
  5046. position:absolute;
  5047. left:0px;
  5048. top:0px;
  5049. width:15px;
  5050. height:15px;
  5051. background:inherit;
  5052. background-color:rgba(51, 51, 51, 1);
  5053. border:none;
  5054. border-radius:8px;
  5055. -moz-box-shadow:none;
  5056. -webkit-box-shadow:none;
  5057. box-shadow:none;
  5058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5059. font-weight:400;
  5060. font-style:normal;
  5061. font-size:10px;
  5062. color:#FFFFFF;
  5063. }
  5064. #u126727 {
  5065. border-width:0px;
  5066. position:absolute;
  5067. left:364px;
  5068. top:387px;
  5069. width:15px;
  5070. height:15px;
  5071. display:flex;
  5072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5073. font-weight:400;
  5074. font-style:normal;
  5075. font-size:10px;
  5076. color:#FFFFFF;
  5077. }
  5078. #u126727 .text {
  5079. position:absolute;
  5080. align-self:center;
  5081. padding:0px 0px 0px 0px;
  5082. box-sizing:border-box;
  5083. width:100%;
  5084. }
  5085. #u126727_text {
  5086. border-width:0px;
  5087. word-wrap:break-word;
  5088. text-transform:none;
  5089. }
  5090. #u126728_div {
  5091. border-width:0px;
  5092. position:absolute;
  5093. left:0px;
  5094. top:0px;
  5095. width:127px;
  5096. height:20px;
  5097. background:inherit;
  5098. background-color:rgba(51, 51, 51, 0);
  5099. border:none;
  5100. border-radius:4px;
  5101. -moz-box-shadow:none;
  5102. -webkit-box-shadow:none;
  5103. box-shadow:none;
  5104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5105. font-weight:400;
  5106. font-style:normal;
  5107. font-size:14px;
  5108. text-align:left;
  5109. }
  5110. #u126728 {
  5111. border-width:0px;
  5112. position:absolute;
  5113. left:385px;
  5114. top:384px;
  5115. width:127px;
  5116. height:20px;
  5117. display:flex;
  5118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5119. font-weight:400;
  5120. font-style:normal;
  5121. font-size:14px;
  5122. text-align:left;
  5123. }
  5124. #u126728 .text {
  5125. position:absolute;
  5126. align-self:center;
  5127. padding:0px 0px 0px 0px;
  5128. box-sizing:border-box;
  5129. width:100%;
  5130. }
  5131. #u126728_text {
  5132. border-width:0px;
  5133. white-space:nowrap;
  5134. text-transform:none;
  5135. }
  5136. #u126730 {
  5137. border-width:0px;
  5138. position:absolute;
  5139. left:0px;
  5140. top:0px;
  5141. width:0px;
  5142. height:0px;
  5143. }
  5144. #u126731_img {
  5145. border-width:0px;
  5146. position:absolute;
  5147. left:0px;
  5148. top:0px;
  5149. width:200px;
  5150. height:1191px;
  5151. }
  5152. #u126731 {
  5153. border-width:0px;
  5154. position:absolute;
  5155. left:120px;
  5156. top:50px;
  5157. width:200px;
  5158. height:1191px;
  5159. display:flex;
  5160. }
  5161. #u126731 .text {
  5162. position:absolute;
  5163. align-self:center;
  5164. padding:2px 2px 2px 2px;
  5165. box-sizing:border-box;
  5166. width:100%;
  5167. }
  5168. #u126731_text {
  5169. border-width:0px;
  5170. word-wrap:break-word;
  5171. text-transform:none;
  5172. visibility:hidden;
  5173. }
  5174. #u126732_div {
  5175. border-width:0px;
  5176. position:absolute;
  5177. left:0px;
  5178. top:0px;
  5179. width:200px;
  5180. height:60px;
  5181. background:inherit;
  5182. background-color:rgba(224, 231, 247, 1);
  5183. border:none;
  5184. border-radius:0px;
  5185. -moz-box-shadow:none;
  5186. -webkit-box-shadow:none;
  5187. box-shadow:none;
  5188. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5189. font-weight:500;
  5190. font-style:normal;
  5191. font-size:18px;
  5192. }
  5193. #u126732 {
  5194. border-width:0px;
  5195. position:absolute;
  5196. left:120px;
  5197. top:50px;
  5198. width:200px;
  5199. height:60px;
  5200. display:flex;
  5201. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5202. font-weight:500;
  5203. font-style:normal;
  5204. font-size:18px;
  5205. }
  5206. #u126732 .text {
  5207. position:absolute;
  5208. align-self:center;
  5209. padding:0px 0px 0px 20px;
  5210. box-sizing:border-box;
  5211. width:100%;
  5212. }
  5213. #u126732_text {
  5214. border-width:0px;
  5215. word-wrap:break-word;
  5216. text-transform:none;
  5217. }
  5218. #u126733 {
  5219. border-width:0px;
  5220. position:absolute;
  5221. left:120px;
  5222. top:130px;
  5223. width:200px;
  5224. height:1078px;
  5225. }
  5226. #u126733_state0 {
  5227. border-width:0px;
  5228. position:absolute;
  5229. left:0px;
  5230. top:0px;
  5231. width:200px;
  5232. height:1078px;
  5233. overflow:auto;
  5234. -webkit-overflow-scrolling:touch;
  5235. -ms-overflow-x:hidden;
  5236. overflow-x:hidden;
  5237. background-image:none;
  5238. border:none;
  5239. border-radius:0px;
  5240. -moz-box-shadow:none;
  5241. -webkit-box-shadow:none;
  5242. box-shadow:none;
  5243. }
  5244. #u126733_state0_content {
  5245. border-width:0px;
  5246. position:absolute;
  5247. left:0px;
  5248. top:0px;
  5249. width:1px;
  5250. height:1px;
  5251. }
  5252. #u126734_div {
  5253. border-width:0px;
  5254. position:absolute;
  5255. left:0px;
  5256. top:0px;
  5257. width:97px;
  5258. height:22px;
  5259. background:inherit;
  5260. background-color:rgba(255, 255, 255, 0);
  5261. border:none;
  5262. border-radius:0px;
  5263. -moz-box-shadow:none;
  5264. -webkit-box-shadow:none;
  5265. box-shadow:none;
  5266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5267. font-weight:400;
  5268. font-style:normal;
  5269. font-size:16px;
  5270. }
  5271. #u126734 {
  5272. border-width:0px;
  5273. position:absolute;
  5274. left:30px;
  5275. top:0px;
  5276. width:97px;
  5277. height:22px;
  5278. display:flex;
  5279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5280. font-weight:400;
  5281. font-style:normal;
  5282. font-size:16px;
  5283. }
  5284. #u126734 .text {
  5285. position:absolute;
  5286. align-self:flex-start;
  5287. padding:0px 0px 0px 0px;
  5288. box-sizing:border-box;
  5289. width:100%;
  5290. }
  5291. #u126734_text {
  5292. border-width:0px;
  5293. word-wrap:break-word;
  5294. text-transform:none;
  5295. }
  5296. #u126735_div {
  5297. border-width:0px;
  5298. position:absolute;
  5299. left:0px;
  5300. top:0px;
  5301. width:65px;
  5302. height:22px;
  5303. background:inherit;
  5304. background-color:rgba(255, 255, 255, 0);
  5305. border:none;
  5306. border-radius:0px;
  5307. -moz-box-shadow:none;
  5308. -webkit-box-shadow:none;
  5309. box-shadow:none;
  5310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5311. font-weight:400;
  5312. font-style:normal;
  5313. font-size:16px;
  5314. }
  5315. #u126735 {
  5316. border-width:0px;
  5317. position:absolute;
  5318. left:30px;
  5319. top:42px;
  5320. width:65px;
  5321. height:22px;
  5322. display:flex;
  5323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5324. font-weight:400;
  5325. font-style:normal;
  5326. font-size:16px;
  5327. }
  5328. #u126735 .text {
  5329. position:absolute;
  5330. align-self:flex-start;
  5331. padding:0px 0px 0px 0px;
  5332. box-sizing:border-box;
  5333. width:100%;
  5334. }
  5335. #u126735_text {
  5336. border-width:0px;
  5337. white-space:nowrap;
  5338. text-transform:none;
  5339. }
  5340. #u126736_div {
  5341. border-width:0px;
  5342. position:absolute;
  5343. left:0px;
  5344. top:0px;
  5345. width:49px;
  5346. height:22px;
  5347. background:inherit;
  5348. background-color:rgba(255, 255, 255, 0);
  5349. border:none;
  5350. border-radius:0px;
  5351. -moz-box-shadow:none;
  5352. -webkit-box-shadow:none;
  5353. box-shadow:none;
  5354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5355. font-weight:400;
  5356. font-style:normal;
  5357. font-size:16px;
  5358. }
  5359. #u126736 {
  5360. border-width:0px;
  5361. position:absolute;
  5362. left:30px;
  5363. top:145px;
  5364. width:49px;
  5365. height:22px;
  5366. display:flex;
  5367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5368. font-weight:400;
  5369. font-style:normal;
  5370. font-size:16px;
  5371. }
  5372. #u126736 .text {
  5373. position:absolute;
  5374. align-self:flex-start;
  5375. padding:0px 0px 0px 0px;
  5376. box-sizing:border-box;
  5377. width:100%;
  5378. }
  5379. #u126736_text {
  5380. border-width:0px;
  5381. white-space:nowrap;
  5382. text-transform:none;
  5383. }
  5384. #u126737_div {
  5385. border-width:0px;
  5386. position:absolute;
  5387. left:0px;
  5388. top:0px;
  5389. width:97px;
  5390. height:22px;
  5391. background:inherit;
  5392. background-color:rgba(255, 255, 255, 0);
  5393. border:none;
  5394. border-radius:0px;
  5395. -moz-box-shadow:none;
  5396. -webkit-box-shadow:none;
  5397. box-shadow:none;
  5398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5399. font-weight:400;
  5400. font-style:normal;
  5401. font-size:16px;
  5402. }
  5403. #u126737 {
  5404. border-width:0px;
  5405. position:absolute;
  5406. left:30px;
  5407. top:187px;
  5408. width:97px;
  5409. height:22px;
  5410. display:flex;
  5411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5412. font-weight:400;
  5413. font-style:normal;
  5414. font-size:16px;
  5415. }
  5416. #u126737 .text {
  5417. position:absolute;
  5418. align-self:flex-start;
  5419. padding:0px 0px 0px 0px;
  5420. box-sizing:border-box;
  5421. width:100%;
  5422. }
  5423. #u126737_text {
  5424. border-width:0px;
  5425. word-wrap:break-word;
  5426. text-transform:none;
  5427. }
  5428. #u126738_img {
  5429. border-width:0px;
  5430. position:absolute;
  5431. left:0px;
  5432. top:0px;
  5433. width:201px;
  5434. height:2px;
  5435. }
  5436. #u126738 {
  5437. border-width:0px;
  5438. position:absolute;
  5439. left:0px;
  5440. top:84px;
  5441. width:200px;
  5442. height:1px;
  5443. display:flex;
  5444. }
  5445. #u126738 .text {
  5446. position:absolute;
  5447. align-self:center;
  5448. padding:2px 2px 2px 2px;
  5449. box-sizing:border-box;
  5450. width:100%;
  5451. }
  5452. #u126738_text {
  5453. border-width:0px;
  5454. word-wrap:break-word;
  5455. text-transform:none;
  5456. visibility:hidden;
  5457. }
  5458. #u126739_div {
  5459. border-width:0px;
  5460. position:absolute;
  5461. left:0px;
  5462. top:0px;
  5463. width:49px;
  5464. height:17px;
  5465. background:inherit;
  5466. background-color:rgba(255, 255, 255, 0);
  5467. border:none;
  5468. border-radius:0px;
  5469. -moz-box-shadow:none;
  5470. -webkit-box-shadow:none;
  5471. box-shadow:none;
  5472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5473. font-weight:400;
  5474. font-style:normal;
  5475. font-size:12px;
  5476. color:#AAAAAA;
  5477. }
  5478. #u126739 {
  5479. border-width:0px;
  5480. position:absolute;
  5481. left:30px;
  5482. top:105px;
  5483. width:49px;
  5484. height:17px;
  5485. display:flex;
  5486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5487. font-weight:400;
  5488. font-style:normal;
  5489. font-size:12px;
  5490. color:#AAAAAA;
  5491. }
  5492. #u126739 .text {
  5493. position:absolute;
  5494. align-self:flex-start;
  5495. padding:0px 0px 0px 0px;
  5496. box-sizing:border-box;
  5497. width:100%;
  5498. }
  5499. #u126739_text {
  5500. border-width:0px;
  5501. white-space:nowrap;
  5502. text-transform:none;
  5503. }
  5504. #u126740_div {
  5505. border-width:0px;
  5506. position:absolute;
  5507. left:0px;
  5508. top:0px;
  5509. width:97px;
  5510. height:22px;
  5511. background:inherit;
  5512. background-color:rgba(255, 255, 255, 0);
  5513. border:none;
  5514. border-radius:0px;
  5515. -moz-box-shadow:none;
  5516. -webkit-box-shadow:none;
  5517. box-shadow:none;
  5518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5519. font-weight:400;
  5520. font-style:normal;
  5521. font-size:16px;
  5522. }
  5523. #u126740 {
  5524. border-width:0px;
  5525. position:absolute;
  5526. left:30px;
  5527. top:229px;
  5528. width:97px;
  5529. height:22px;
  5530. display:flex;
  5531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5532. font-weight:400;
  5533. font-style:normal;
  5534. font-size:16px;
  5535. }
  5536. #u126740 .text {
  5537. position:absolute;
  5538. align-self:flex-start;
  5539. padding:0px 0px 0px 0px;
  5540. box-sizing:border-box;
  5541. width:100%;
  5542. }
  5543. #u126740_text {
  5544. border-width:0px;
  5545. word-wrap:break-word;
  5546. text-transform:none;
  5547. }
  5548. #u126741_div {
  5549. border-width:0px;
  5550. position:absolute;
  5551. left:0px;
  5552. top:0px;
  5553. width:65px;
  5554. height:22px;
  5555. background:inherit;
  5556. background-color:rgba(255, 255, 255, 0);
  5557. border:none;
  5558. border-radius:0px;
  5559. -moz-box-shadow:none;
  5560. -webkit-box-shadow:none;
  5561. box-shadow:none;
  5562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5563. font-weight:400;
  5564. font-style:normal;
  5565. font-size:16px;
  5566. }
  5567. #u126741 {
  5568. border-width:0px;
  5569. position:absolute;
  5570. left:30px;
  5571. top:271px;
  5572. width:65px;
  5573. height:22px;
  5574. display:flex;
  5575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5576. font-weight:400;
  5577. font-style:normal;
  5578. font-size:16px;
  5579. }
  5580. #u126741 .text {
  5581. position:absolute;
  5582. align-self:flex-start;
  5583. padding:0px 0px 0px 0px;
  5584. box-sizing:border-box;
  5585. width:100%;
  5586. }
  5587. #u126741_text {
  5588. border-width:0px;
  5589. white-space:nowrap;
  5590. text-transform:none;
  5591. }
  5592. #u126742_img {
  5593. border-width:0px;
  5594. position:absolute;
  5595. left:0px;
  5596. top:0px;
  5597. width:201px;
  5598. height:2px;
  5599. }
  5600. #u126742 {
  5601. border-width:0px;
  5602. position:absolute;
  5603. left:0px;
  5604. top:313px;
  5605. width:200px;
  5606. height:1px;
  5607. display:flex;
  5608. }
  5609. #u126742 .text {
  5610. position:absolute;
  5611. align-self:center;
  5612. padding:2px 2px 2px 2px;
  5613. box-sizing:border-box;
  5614. width:100%;
  5615. }
  5616. #u126742_text {
  5617. border-width:0px;
  5618. word-wrap:break-word;
  5619. text-transform:none;
  5620. visibility:hidden;
  5621. }
  5622. #u126743_div {
  5623. border-width:0px;
  5624. position:absolute;
  5625. left:0px;
  5626. top:0px;
  5627. width:65px;
  5628. height:22px;
  5629. background:inherit;
  5630. background-color:rgba(255, 255, 255, 0);
  5631. border:none;
  5632. border-radius:0px;
  5633. -moz-box-shadow:none;
  5634. -webkit-box-shadow:none;
  5635. box-shadow:none;
  5636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5637. font-weight:400;
  5638. font-style:normal;
  5639. font-size:16px;
  5640. }
  5641. #u126743 {
  5642. border-width:0px;
  5643. position:absolute;
  5644. left:30px;
  5645. top:370px;
  5646. width:65px;
  5647. height:22px;
  5648. display:flex;
  5649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5650. font-weight:400;
  5651. font-style:normal;
  5652. font-size:16px;
  5653. }
  5654. #u126743 .text {
  5655. position:absolute;
  5656. align-self:flex-start;
  5657. padding:0px 0px 0px 0px;
  5658. box-sizing:border-box;
  5659. width:100%;
  5660. }
  5661. #u126743_text {
  5662. border-width:0px;
  5663. white-space:nowrap;
  5664. text-transform:none;
  5665. }
  5666. #u126744_div {
  5667. border-width:0px;
  5668. position:absolute;
  5669. left:0px;
  5670. top:0px;
  5671. width:49px;
  5672. height:17px;
  5673. background:inherit;
  5674. background-color:rgba(255, 255, 255, 0);
  5675. border:none;
  5676. border-radius:0px;
  5677. -moz-box-shadow:none;
  5678. -webkit-box-shadow:none;
  5679. box-shadow:none;
  5680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5681. font-weight:400;
  5682. font-style:normal;
  5683. font-size:12px;
  5684. color:#AAAAAA;
  5685. }
  5686. #u126744 {
  5687. border-width:0px;
  5688. position:absolute;
  5689. left:30px;
  5690. top:334px;
  5691. width:49px;
  5692. height:17px;
  5693. display:flex;
  5694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5695. font-weight:400;
  5696. font-style:normal;
  5697. font-size:12px;
  5698. color:#AAAAAA;
  5699. }
  5700. #u126744 .text {
  5701. position:absolute;
  5702. align-self:flex-start;
  5703. padding:0px 0px 0px 0px;
  5704. box-sizing:border-box;
  5705. width:100%;
  5706. }
  5707. #u126744_text {
  5708. border-width:0px;
  5709. white-space:nowrap;
  5710. text-transform:none;
  5711. }
  5712. #u126745_div {
  5713. border-width:0px;
  5714. position:absolute;
  5715. left:0px;
  5716. top:0px;
  5717. width:65px;
  5718. height:22px;
  5719. background:inherit;
  5720. background-color:rgba(255, 255, 255, 0);
  5721. border:none;
  5722. border-radius:0px;
  5723. -moz-box-shadow:none;
  5724. -webkit-box-shadow:none;
  5725. box-shadow:none;
  5726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5727. font-weight:400;
  5728. font-style:normal;
  5729. font-size:16px;
  5730. }
  5731. #u126745 {
  5732. border-width:0px;
  5733. position:absolute;
  5734. left:30px;
  5735. top:412px;
  5736. width:65px;
  5737. height:22px;
  5738. display:flex;
  5739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5740. font-weight:400;
  5741. font-style:normal;
  5742. font-size:16px;
  5743. }
  5744. #u126745 .text {
  5745. position:absolute;
  5746. align-self:flex-start;
  5747. padding:0px 0px 0px 0px;
  5748. box-sizing:border-box;
  5749. width:100%;
  5750. }
  5751. #u126745_text {
  5752. border-width:0px;
  5753. white-space:nowrap;
  5754. text-transform:none;
  5755. }
  5756. #u126746_div {
  5757. border-width:0px;
  5758. position:absolute;
  5759. left:0px;
  5760. top:0px;
  5761. width:65px;
  5762. height:22px;
  5763. background:inherit;
  5764. background-color:rgba(255, 255, 255, 0);
  5765. border:none;
  5766. border-radius:0px;
  5767. -moz-box-shadow:none;
  5768. -webkit-box-shadow:none;
  5769. box-shadow:none;
  5770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5771. font-weight:400;
  5772. font-style:normal;
  5773. font-size:16px;
  5774. }
  5775. #u126746 {
  5776. border-width:0px;
  5777. position:absolute;
  5778. left:30px;
  5779. top:454px;
  5780. width:65px;
  5781. height:22px;
  5782. display:flex;
  5783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5784. font-weight:400;
  5785. font-style:normal;
  5786. font-size:16px;
  5787. }
  5788. #u126746 .text {
  5789. position:absolute;
  5790. align-self:flex-start;
  5791. padding:0px 0px 0px 0px;
  5792. box-sizing:border-box;
  5793. width:100%;
  5794. }
  5795. #u126746_text {
  5796. border-width:0px;
  5797. white-space:nowrap;
  5798. text-transform:none;
  5799. }
  5800. #u126747_div {
  5801. border-width:0px;
  5802. position:absolute;
  5803. left:0px;
  5804. top:0px;
  5805. width:65px;
  5806. height:22px;
  5807. background:inherit;
  5808. background-color:rgba(255, 255, 255, 0);
  5809. border:none;
  5810. border-radius:0px;
  5811. -moz-box-shadow:none;
  5812. -webkit-box-shadow:none;
  5813. box-shadow:none;
  5814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5815. font-weight:400;
  5816. font-style:normal;
  5817. font-size:16px;
  5818. }
  5819. #u126747 {
  5820. border-width:0px;
  5821. position:absolute;
  5822. left:30px;
  5823. top:496px;
  5824. width:65px;
  5825. height:22px;
  5826. display:flex;
  5827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5828. font-weight:400;
  5829. font-style:normal;
  5830. font-size:16px;
  5831. }
  5832. #u126747 .text {
  5833. position:absolute;
  5834. align-self:flex-start;
  5835. padding:0px 0px 0px 0px;
  5836. box-sizing:border-box;
  5837. width:100%;
  5838. }
  5839. #u126747_text {
  5840. border-width:0px;
  5841. white-space:nowrap;
  5842. text-transform:none;
  5843. }
  5844. #u126748_div {
  5845. border-width:0px;
  5846. position:absolute;
  5847. left:0px;
  5848. top:0px;
  5849. width:65px;
  5850. height:22px;
  5851. background:inherit;
  5852. background-color:rgba(255, 255, 255, 0);
  5853. border:none;
  5854. border-radius:0px;
  5855. -moz-box-shadow:none;
  5856. -webkit-box-shadow:none;
  5857. box-shadow:none;
  5858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5859. font-weight:400;
  5860. font-style:normal;
  5861. font-size:16px;
  5862. }
  5863. #u126748 {
  5864. border-width:0px;
  5865. position:absolute;
  5866. left:30px;
  5867. top:538px;
  5868. width:65px;
  5869. height:22px;
  5870. display:flex;
  5871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5872. font-weight:400;
  5873. font-style:normal;
  5874. font-size:16px;
  5875. }
  5876. #u126748 .text {
  5877. position:absolute;
  5878. align-self:flex-start;
  5879. padding:0px 0px 0px 0px;
  5880. box-sizing:border-box;
  5881. width:100%;
  5882. }
  5883. #u126748_text {
  5884. border-width:0px;
  5885. white-space:nowrap;
  5886. text-transform:none;
  5887. }
  5888. #u126749_div {
  5889. border-width:0px;
  5890. position:absolute;
  5891. left:0px;
  5892. top:0px;
  5893. width:65px;
  5894. height:22px;
  5895. background:inherit;
  5896. background-color:rgba(255, 255, 255, 0);
  5897. border:none;
  5898. border-radius:0px;
  5899. -moz-box-shadow:none;
  5900. -webkit-box-shadow:none;
  5901. box-shadow:none;
  5902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5903. font-weight:400;
  5904. font-style:normal;
  5905. font-size:16px;
  5906. }
  5907. #u126749 {
  5908. border-width:0px;
  5909. position:absolute;
  5910. left:30px;
  5911. top:580px;
  5912. width:65px;
  5913. height:22px;
  5914. display:flex;
  5915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5916. font-weight:400;
  5917. font-style:normal;
  5918. font-size:16px;
  5919. }
  5920. #u126749 .text {
  5921. position:absolute;
  5922. align-self:flex-start;
  5923. padding:0px 0px 0px 0px;
  5924. box-sizing:border-box;
  5925. width:100%;
  5926. }
  5927. #u126749_text {
  5928. border-width:0px;
  5929. white-space:nowrap;
  5930. text-transform:none;
  5931. }
  5932. #u126750_img {
  5933. border-width:0px;
  5934. position:absolute;
  5935. left:0px;
  5936. top:0px;
  5937. width:201px;
  5938. height:2px;
  5939. }
  5940. #u126750 {
  5941. border-width:0px;
  5942. position:absolute;
  5943. left:0px;
  5944. top:1209px;
  5945. width:200px;
  5946. height:1px;
  5947. display:flex;
  5948. }
  5949. #u126750 .text {
  5950. position:absolute;
  5951. align-self:center;
  5952. padding:2px 2px 2px 2px;
  5953. box-sizing:border-box;
  5954. width:100%;
  5955. }
  5956. #u126750_text {
  5957. border-width:0px;
  5958. word-wrap:break-word;
  5959. text-transform:none;
  5960. visibility:hidden;
  5961. }
  5962. #u126751_div {
  5963. border-width:0px;
  5964. position:absolute;
  5965. left:0px;
  5966. top:0px;
  5967. width:65px;
  5968. height:22px;
  5969. background:inherit;
  5970. background-color:rgba(255, 255, 255, 0);
  5971. border:none;
  5972. border-radius:0px;
  5973. -moz-box-shadow:none;
  5974. -webkit-box-shadow:none;
  5975. box-shadow:none;
  5976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5977. font-weight:400;
  5978. font-style:normal;
  5979. font-size:16px;
  5980. }
  5981. #u126751 {
  5982. border-width:0px;
  5983. position:absolute;
  5984. left:30px;
  5985. top:1266px;
  5986. width:65px;
  5987. height:22px;
  5988. display:flex;
  5989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5990. font-weight:400;
  5991. font-style:normal;
  5992. font-size:16px;
  5993. }
  5994. #u126751 .text {
  5995. position:absolute;
  5996. align-self:flex-start;
  5997. padding:0px 0px 0px 0px;
  5998. box-sizing:border-box;
  5999. width:100%;
  6000. }
  6001. #u126751_text {
  6002. border-width:0px;
  6003. white-space:nowrap;
  6004. text-transform:none;
  6005. }
  6006. #u126752_div {
  6007. border-width:0px;
  6008. position:absolute;
  6009. left:0px;
  6010. top:0px;
  6011. width:49px;
  6012. height:17px;
  6013. background:inherit;
  6014. background-color:rgba(255, 255, 255, 0);
  6015. border:none;
  6016. border-radius:0px;
  6017. -moz-box-shadow:none;
  6018. -webkit-box-shadow:none;
  6019. box-shadow:none;
  6020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6021. font-weight:400;
  6022. font-style:normal;
  6023. font-size:12px;
  6024. color:#AAAAAA;
  6025. }
  6026. #u126752 {
  6027. border-width:0px;
  6028. position:absolute;
  6029. left:30px;
  6030. top:1230px;
  6031. width:49px;
  6032. height:17px;
  6033. display:flex;
  6034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6035. font-weight:400;
  6036. font-style:normal;
  6037. font-size:12px;
  6038. color:#AAAAAA;
  6039. }
  6040. #u126752 .text {
  6041. position:absolute;
  6042. align-self:flex-start;
  6043. padding:0px 0px 0px 0px;
  6044. box-sizing:border-box;
  6045. width:100%;
  6046. }
  6047. #u126752_text {
  6048. border-width:0px;
  6049. white-space:nowrap;
  6050. text-transform:none;
  6051. }
  6052. #u126753_div {
  6053. border-width:0px;
  6054. position:absolute;
  6055. left:0px;
  6056. top:0px;
  6057. width:65px;
  6058. height:22px;
  6059. background:inherit;
  6060. background-color:rgba(255, 255, 255, 0);
  6061. border:none;
  6062. border-radius:0px;
  6063. -moz-box-shadow:none;
  6064. -webkit-box-shadow:none;
  6065. box-shadow:none;
  6066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6067. font-weight:400;
  6068. font-style:normal;
  6069. font-size:16px;
  6070. }
  6071. #u126753 {
  6072. border-width:0px;
  6073. position:absolute;
  6074. left:30px;
  6075. top:1308px;
  6076. width:65px;
  6077. height:22px;
  6078. display:flex;
  6079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6080. font-weight:400;
  6081. font-style:normal;
  6082. font-size:16px;
  6083. }
  6084. #u126753 .text {
  6085. position:absolute;
  6086. align-self:flex-start;
  6087. padding:0px 0px 0px 0px;
  6088. box-sizing:border-box;
  6089. width:100%;
  6090. }
  6091. #u126753_text {
  6092. border-width:0px;
  6093. white-space:nowrap;
  6094. text-transform:none;
  6095. }
  6096. #u126754_div {
  6097. border-width:0px;
  6098. position:absolute;
  6099. left:0px;
  6100. top:0px;
  6101. width:65px;
  6102. height:22px;
  6103. background:inherit;
  6104. background-color:rgba(255, 255, 255, 0);
  6105. border:none;
  6106. border-radius:0px;
  6107. -moz-box-shadow:none;
  6108. -webkit-box-shadow:none;
  6109. box-shadow:none;
  6110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6111. font-weight:400;
  6112. font-style:normal;
  6113. font-size:16px;
  6114. }
  6115. #u126754 {
  6116. border-width:0px;
  6117. position:absolute;
  6118. left:30px;
  6119. top:1392px;
  6120. width:65px;
  6121. height:22px;
  6122. display:flex;
  6123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6124. font-weight:400;
  6125. font-style:normal;
  6126. font-size:16px;
  6127. }
  6128. #u126754 .text {
  6129. position:absolute;
  6130. align-self:flex-start;
  6131. padding:0px 0px 0px 0px;
  6132. box-sizing:border-box;
  6133. width:100%;
  6134. }
  6135. #u126754_text {
  6136. border-width:0px;
  6137. white-space:nowrap;
  6138. text-transform:none;
  6139. }
  6140. #u126755_img {
  6141. border-width:0px;
  6142. position:absolute;
  6143. left:0px;
  6144. top:0px;
  6145. width:201px;
  6146. height:2px;
  6147. }
  6148. #u126755 {
  6149. border-width:0px;
  6150. position:absolute;
  6151. left:0px;
  6152. top:1434px;
  6153. width:200px;
  6154. height:1px;
  6155. display:flex;
  6156. }
  6157. #u126755 .text {
  6158. position:absolute;
  6159. align-self:center;
  6160. padding:2px 2px 2px 2px;
  6161. box-sizing:border-box;
  6162. width:100%;
  6163. }
  6164. #u126755_text {
  6165. border-width:0px;
  6166. word-wrap:break-word;
  6167. text-transform:none;
  6168. visibility:hidden;
  6169. }
  6170. #u126756_div {
  6171. border-width:0px;
  6172. position:absolute;
  6173. left:0px;
  6174. top:0px;
  6175. width:49px;
  6176. height:22px;
  6177. background:inherit;
  6178. background-color:rgba(255, 255, 255, 0);
  6179. border:none;
  6180. border-radius:0px;
  6181. -moz-box-shadow:none;
  6182. -webkit-box-shadow:none;
  6183. box-shadow:none;
  6184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6185. font-weight:400;
  6186. font-style:normal;
  6187. font-size:16px;
  6188. }
  6189. #u126756 {
  6190. border-width:0px;
  6191. position:absolute;
  6192. left:30px;
  6193. top:1491px;
  6194. width:49px;
  6195. height:22px;
  6196. display:flex;
  6197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6198. font-weight:400;
  6199. font-style:normal;
  6200. font-size:16px;
  6201. }
  6202. #u126756 .text {
  6203. position:absolute;
  6204. align-self:flex-start;
  6205. padding:0px 0px 0px 0px;
  6206. box-sizing:border-box;
  6207. width:100%;
  6208. }
  6209. #u126756_text {
  6210. border-width:0px;
  6211. white-space:nowrap;
  6212. text-transform:none;
  6213. }
  6214. #u126757_div {
  6215. border-width:0px;
  6216. position:absolute;
  6217. left:0px;
  6218. top:0px;
  6219. width:49px;
  6220. height:17px;
  6221. background:inherit;
  6222. background-color:rgba(255, 255, 255, 0);
  6223. border:none;
  6224. border-radius:0px;
  6225. -moz-box-shadow:none;
  6226. -webkit-box-shadow:none;
  6227. box-shadow:none;
  6228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6229. font-weight:400;
  6230. font-style:normal;
  6231. font-size:12px;
  6232. color:#AAAAAA;
  6233. }
  6234. #u126757 {
  6235. border-width:0px;
  6236. position:absolute;
  6237. left:30px;
  6238. top:1455px;
  6239. width:49px;
  6240. height:17px;
  6241. display:flex;
  6242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6243. font-weight:400;
  6244. font-style:normal;
  6245. font-size:12px;
  6246. color:#AAAAAA;
  6247. }
  6248. #u126757 .text {
  6249. position:absolute;
  6250. align-self:flex-start;
  6251. padding:0px 0px 0px 0px;
  6252. box-sizing:border-box;
  6253. width:100%;
  6254. }
  6255. #u126757_text {
  6256. border-width:0px;
  6257. white-space:nowrap;
  6258. text-transform:none;
  6259. }
  6260. #u126758_div {
  6261. border-width:0px;
  6262. position:absolute;
  6263. left:0px;
  6264. top:0px;
  6265. width:49px;
  6266. height:22px;
  6267. background:inherit;
  6268. background-color:rgba(255, 255, 255, 0);
  6269. border:none;
  6270. border-radius:0px;
  6271. -moz-box-shadow:none;
  6272. -webkit-box-shadow:none;
  6273. box-shadow:none;
  6274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6275. font-weight:400;
  6276. font-style:normal;
  6277. font-size:16px;
  6278. }
  6279. #u126758 {
  6280. border-width:0px;
  6281. position:absolute;
  6282. left:30px;
  6283. top:1533px;
  6284. width:49px;
  6285. height:22px;
  6286. display:flex;
  6287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6288. font-weight:400;
  6289. font-style:normal;
  6290. font-size:16px;
  6291. }
  6292. #u126758 .text {
  6293. position:absolute;
  6294. align-self:flex-start;
  6295. padding:0px 0px 0px 0px;
  6296. box-sizing:border-box;
  6297. width:100%;
  6298. }
  6299. #u126758_text {
  6300. border-width:0px;
  6301. white-space:nowrap;
  6302. text-transform:none;
  6303. }
  6304. #u126759_div {
  6305. border-width:0px;
  6306. position:absolute;
  6307. left:0px;
  6308. top:0px;
  6309. width:65px;
  6310. height:22px;
  6311. background:inherit;
  6312. background-color:rgba(255, 255, 255, 0);
  6313. border:none;
  6314. border-radius:0px;
  6315. -moz-box-shadow:none;
  6316. -webkit-box-shadow:none;
  6317. box-shadow:none;
  6318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6319. font-weight:400;
  6320. font-style:normal;
  6321. font-size:16px;
  6322. }
  6323. #u126759 {
  6324. border-width:0px;
  6325. position:absolute;
  6326. left:30px;
  6327. top:1575px;
  6328. width:65px;
  6329. height:22px;
  6330. display:flex;
  6331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6332. font-weight:400;
  6333. font-style:normal;
  6334. font-size:16px;
  6335. }
  6336. #u126759 .text {
  6337. position:absolute;
  6338. align-self:flex-start;
  6339. padding:0px 0px 0px 0px;
  6340. box-sizing:border-box;
  6341. width:100%;
  6342. }
  6343. #u126759_text {
  6344. border-width:0px;
  6345. white-space:nowrap;
  6346. text-transform:none;
  6347. }
  6348. #u126760_img {
  6349. border-width:0px;
  6350. position:absolute;
  6351. left:0px;
  6352. top:0px;
  6353. width:201px;
  6354. height:2px;
  6355. }
  6356. #u126760 {
  6357. border-width:0px;
  6358. position:absolute;
  6359. left:0px;
  6360. top:1617px;
  6361. width:200px;
  6362. height:1px;
  6363. display:flex;
  6364. }
  6365. #u126760 .text {
  6366. position:absolute;
  6367. align-self:center;
  6368. padding:2px 2px 2px 2px;
  6369. box-sizing:border-box;
  6370. width:100%;
  6371. }
  6372. #u126760_text {
  6373. border-width:0px;
  6374. word-wrap:break-word;
  6375. text-transform:none;
  6376. visibility:hidden;
  6377. }
  6378. #u126761_div {
  6379. border-width:0px;
  6380. position:absolute;
  6381. left:0px;
  6382. top:0px;
  6383. width:81px;
  6384. height:22px;
  6385. background:inherit;
  6386. background-color:rgba(255, 255, 255, 0);
  6387. border:none;
  6388. border-radius:0px;
  6389. -moz-box-shadow:none;
  6390. -webkit-box-shadow:none;
  6391. box-shadow:none;
  6392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6393. font-weight:400;
  6394. font-style:normal;
  6395. font-size:16px;
  6396. }
  6397. #u126761 {
  6398. border-width:0px;
  6399. position:absolute;
  6400. left:30px;
  6401. top:1674px;
  6402. width:81px;
  6403. height:22px;
  6404. display:flex;
  6405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6406. font-weight:400;
  6407. font-style:normal;
  6408. font-size:16px;
  6409. }
  6410. #u126761 .text {
  6411. position:absolute;
  6412. align-self:flex-start;
  6413. padding:0px 0px 0px 0px;
  6414. box-sizing:border-box;
  6415. width:100%;
  6416. }
  6417. #u126761_text {
  6418. border-width:0px;
  6419. white-space:nowrap;
  6420. text-transform:none;
  6421. }
  6422. #u126762_div {
  6423. border-width:0px;
  6424. position:absolute;
  6425. left:0px;
  6426. top:0px;
  6427. width:49px;
  6428. height:17px;
  6429. background:inherit;
  6430. background-color:rgba(255, 255, 255, 0);
  6431. border:none;
  6432. border-radius:0px;
  6433. -moz-box-shadow:none;
  6434. -webkit-box-shadow:none;
  6435. box-shadow:none;
  6436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6437. font-weight:400;
  6438. font-style:normal;
  6439. font-size:12px;
  6440. color:#AAAAAA;
  6441. }
  6442. #u126762 {
  6443. border-width:0px;
  6444. position:absolute;
  6445. left:30px;
  6446. top:1638px;
  6447. width:49px;
  6448. height:17px;
  6449. display:flex;
  6450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6451. font-weight:400;
  6452. font-style:normal;
  6453. font-size:12px;
  6454. color:#AAAAAA;
  6455. }
  6456. #u126762 .text {
  6457. position:absolute;
  6458. align-self:flex-start;
  6459. padding:0px 0px 0px 0px;
  6460. box-sizing:border-box;
  6461. width:100%;
  6462. }
  6463. #u126762_text {
  6464. border-width:0px;
  6465. white-space:nowrap;
  6466. text-transform:none;
  6467. }
  6468. #u126763_div {
  6469. border-width:0px;
  6470. position:absolute;
  6471. left:0px;
  6472. top:0px;
  6473. width:81px;
  6474. height:22px;
  6475. background:inherit;
  6476. background-color:rgba(255, 255, 255, 0);
  6477. border:none;
  6478. border-radius:0px;
  6479. -moz-box-shadow:none;
  6480. -webkit-box-shadow:none;
  6481. box-shadow:none;
  6482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6483. font-weight:400;
  6484. font-style:normal;
  6485. font-size:16px;
  6486. }
  6487. #u126763 {
  6488. border-width:0px;
  6489. position:absolute;
  6490. left:30px;
  6491. top:1716px;
  6492. width:81px;
  6493. height:22px;
  6494. display:flex;
  6495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6496. font-weight:400;
  6497. font-style:normal;
  6498. font-size:16px;
  6499. }
  6500. #u126763 .text {
  6501. position:absolute;
  6502. align-self:flex-start;
  6503. padding:0px 0px 0px 0px;
  6504. box-sizing:border-box;
  6505. width:100%;
  6506. }
  6507. #u126763_text {
  6508. border-width:0px;
  6509. white-space:nowrap;
  6510. text-transform:none;
  6511. }
  6512. #u126764_div {
  6513. border-width:0px;
  6514. position:absolute;
  6515. left:0px;
  6516. top:0px;
  6517. width:81px;
  6518. height:22px;
  6519. background:inherit;
  6520. background-color:rgba(255, 255, 255, 0);
  6521. border:none;
  6522. border-radius:0px;
  6523. -moz-box-shadow:none;
  6524. -webkit-box-shadow:none;
  6525. box-shadow:none;
  6526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6527. font-weight:400;
  6528. font-style:normal;
  6529. font-size:16px;
  6530. }
  6531. #u126764 {
  6532. border-width:0px;
  6533. position:absolute;
  6534. left:30px;
  6535. top:1758px;
  6536. width:81px;
  6537. height:22px;
  6538. display:flex;
  6539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6540. font-weight:400;
  6541. font-style:normal;
  6542. font-size:16px;
  6543. }
  6544. #u126764 .text {
  6545. position:absolute;
  6546. align-self:flex-start;
  6547. padding:0px 0px 0px 0px;
  6548. box-sizing:border-box;
  6549. width:100%;
  6550. }
  6551. #u126764_text {
  6552. border-width:0px;
  6553. white-space:nowrap;
  6554. text-transform:none;
  6555. }
  6556. #u126765_div {
  6557. border-width:0px;
  6558. position:absolute;
  6559. left:0px;
  6560. top:0px;
  6561. width:65px;
  6562. height:22px;
  6563. background:inherit;
  6564. background-color:rgba(255, 255, 255, 0);
  6565. border:none;
  6566. border-radius:0px;
  6567. -moz-box-shadow:none;
  6568. -webkit-box-shadow:none;
  6569. box-shadow:none;
  6570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6571. font-weight:400;
  6572. font-style:normal;
  6573. font-size:16px;
  6574. }
  6575. #u126765 {
  6576. border-width:0px;
  6577. position:absolute;
  6578. left:30px;
  6579. top:1350px;
  6580. width:65px;
  6581. height:22px;
  6582. display:flex;
  6583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6584. font-weight:400;
  6585. font-style:normal;
  6586. font-size:16px;
  6587. }
  6588. #u126765 .text {
  6589. position:absolute;
  6590. align-self:flex-start;
  6591. padding:0px 0px 0px 0px;
  6592. box-sizing:border-box;
  6593. width:100%;
  6594. }
  6595. #u126765_text {
  6596. border-width:0px;
  6597. white-space:nowrap;
  6598. text-transform:none;
  6599. }
  6600. #u126766_img {
  6601. border-width:0px;
  6602. position:absolute;
  6603. left:0px;
  6604. top:0px;
  6605. width:201px;
  6606. height:2px;
  6607. }
  6608. #u126766 {
  6609. border-width:0px;
  6610. position:absolute;
  6611. left:0px;
  6612. top:629px;
  6613. width:200px;
  6614. height:1px;
  6615. display:flex;
  6616. }
  6617. #u126766 .text {
  6618. position:absolute;
  6619. align-self:center;
  6620. padding:2px 2px 2px 2px;
  6621. box-sizing:border-box;
  6622. width:100%;
  6623. }
  6624. #u126766_text {
  6625. border-width:0px;
  6626. word-wrap:break-word;
  6627. text-transform:none;
  6628. visibility:hidden;
  6629. }
  6630. #u126767_div {
  6631. border-width:0px;
  6632. position:absolute;
  6633. left:0px;
  6634. top:0px;
  6635. width:65px;
  6636. height:22px;
  6637. background:inherit;
  6638. background-color:rgba(255, 255, 255, 0);
  6639. border:none;
  6640. border-radius:0px;
  6641. -moz-box-shadow:none;
  6642. -webkit-box-shadow:none;
  6643. box-shadow:none;
  6644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6645. font-weight:400;
  6646. font-style:normal;
  6647. font-size:16px;
  6648. }
  6649. #u126767 {
  6650. border-width:0px;
  6651. position:absolute;
  6652. left:30px;
  6653. top:686px;
  6654. width:65px;
  6655. height:22px;
  6656. display:flex;
  6657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6658. font-weight:400;
  6659. font-style:normal;
  6660. font-size:16px;
  6661. }
  6662. #u126767 .text {
  6663. position:absolute;
  6664. align-self:flex-start;
  6665. padding:0px 0px 0px 0px;
  6666. box-sizing:border-box;
  6667. width:100%;
  6668. }
  6669. #u126767_text {
  6670. border-width:0px;
  6671. white-space:nowrap;
  6672. text-transform:none;
  6673. }
  6674. #u126768_div {
  6675. border-width:0px;
  6676. position:absolute;
  6677. left:0px;
  6678. top:0px;
  6679. width:49px;
  6680. height:17px;
  6681. background:inherit;
  6682. background-color:rgba(255, 255, 255, 0);
  6683. border:none;
  6684. border-radius:0px;
  6685. -moz-box-shadow:none;
  6686. -webkit-box-shadow:none;
  6687. box-shadow:none;
  6688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6689. font-weight:400;
  6690. font-style:normal;
  6691. font-size:12px;
  6692. color:#AAAAAA;
  6693. }
  6694. #u126768 {
  6695. border-width:0px;
  6696. position:absolute;
  6697. left:30px;
  6698. top:650px;
  6699. width:49px;
  6700. height:17px;
  6701. display:flex;
  6702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6703. font-weight:400;
  6704. font-style:normal;
  6705. font-size:12px;
  6706. color:#AAAAAA;
  6707. }
  6708. #u126768 .text {
  6709. position:absolute;
  6710. align-self:flex-start;
  6711. padding:0px 0px 0px 0px;
  6712. box-sizing:border-box;
  6713. width:100%;
  6714. }
  6715. #u126768_text {
  6716. border-width:0px;
  6717. white-space:nowrap;
  6718. text-transform:none;
  6719. }
  6720. #u126769_div {
  6721. border-width:0px;
  6722. position:absolute;
  6723. left:0px;
  6724. top:0px;
  6725. width:65px;
  6726. height:22px;
  6727. background:inherit;
  6728. background-color:rgba(255, 255, 255, 0);
  6729. border:none;
  6730. border-radius:0px;
  6731. -moz-box-shadow:none;
  6732. -webkit-box-shadow:none;
  6733. box-shadow:none;
  6734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6735. font-weight:400;
  6736. font-style:normal;
  6737. font-size:16px;
  6738. }
  6739. #u126769 {
  6740. border-width:0px;
  6741. position:absolute;
  6742. left:30px;
  6743. top:728px;
  6744. width:65px;
  6745. height:22px;
  6746. display:flex;
  6747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6748. font-weight:400;
  6749. font-style:normal;
  6750. font-size:16px;
  6751. }
  6752. #u126769 .text {
  6753. position:absolute;
  6754. align-self:flex-start;
  6755. padding:0px 0px 0px 0px;
  6756. box-sizing:border-box;
  6757. width:100%;
  6758. }
  6759. #u126769_text {
  6760. border-width:0px;
  6761. white-space:nowrap;
  6762. text-transform:none;
  6763. }
  6764. #u126770_div {
  6765. border-width:0px;
  6766. position:absolute;
  6767. left:0px;
  6768. top:0px;
  6769. width:65px;
  6770. height:22px;
  6771. background:inherit;
  6772. background-color:rgba(255, 255, 255, 0);
  6773. border:none;
  6774. border-radius:0px;
  6775. -moz-box-shadow:none;
  6776. -webkit-box-shadow:none;
  6777. box-shadow:none;
  6778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6779. font-weight:400;
  6780. font-style:normal;
  6781. font-size:16px;
  6782. }
  6783. #u126770 {
  6784. border-width:0px;
  6785. position:absolute;
  6786. left:30px;
  6787. top:812px;
  6788. width:65px;
  6789. height:22px;
  6790. display:flex;
  6791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6792. font-weight:400;
  6793. font-style:normal;
  6794. font-size:16px;
  6795. }
  6796. #u126770 .text {
  6797. position:absolute;
  6798. align-self:flex-start;
  6799. padding:0px 0px 0px 0px;
  6800. box-sizing:border-box;
  6801. width:100%;
  6802. }
  6803. #u126770_text {
  6804. border-width:0px;
  6805. white-space:nowrap;
  6806. text-transform:none;
  6807. }
  6808. #u126771_div {
  6809. border-width:0px;
  6810. position:absolute;
  6811. left:0px;
  6812. top:0px;
  6813. width:65px;
  6814. height:22px;
  6815. background:inherit;
  6816. background-color:rgba(255, 255, 255, 0);
  6817. border:none;
  6818. border-radius:0px;
  6819. -moz-box-shadow:none;
  6820. -webkit-box-shadow:none;
  6821. box-shadow:none;
  6822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6823. font-weight:400;
  6824. font-style:normal;
  6825. font-size:16px;
  6826. }
  6827. #u126771 {
  6828. border-width:0px;
  6829. position:absolute;
  6830. left:30px;
  6831. top:770px;
  6832. width:65px;
  6833. height:22px;
  6834. display:flex;
  6835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6836. font-weight:400;
  6837. font-style:normal;
  6838. font-size:16px;
  6839. }
  6840. #u126771 .text {
  6841. position:absolute;
  6842. align-self:flex-start;
  6843. padding:0px 0px 0px 0px;
  6844. box-sizing:border-box;
  6845. width:100%;
  6846. }
  6847. #u126771_text {
  6848. border-width:0px;
  6849. white-space:nowrap;
  6850. text-transform:none;
  6851. }
  6852. #u126772_div {
  6853. border-width:0px;
  6854. position:absolute;
  6855. left:0px;
  6856. top:0px;
  6857. width:65px;
  6858. height:22px;
  6859. background:inherit;
  6860. background-color:rgba(255, 255, 255, 0);
  6861. border:none;
  6862. border-radius:0px;
  6863. -moz-box-shadow:none;
  6864. -webkit-box-shadow:none;
  6865. box-shadow:none;
  6866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6867. font-weight:400;
  6868. font-style:normal;
  6869. font-size:16px;
  6870. }
  6871. #u126772 {
  6872. border-width:0px;
  6873. position:absolute;
  6874. left:30px;
  6875. top:854px;
  6876. width:65px;
  6877. height:22px;
  6878. display:flex;
  6879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6880. font-weight:400;
  6881. font-style:normal;
  6882. font-size:16px;
  6883. }
  6884. #u126772 .text {
  6885. position:absolute;
  6886. align-self:flex-start;
  6887. padding:0px 0px 0px 0px;
  6888. box-sizing:border-box;
  6889. width:100%;
  6890. }
  6891. #u126772_text {
  6892. border-width:0px;
  6893. white-space:nowrap;
  6894. text-transform:none;
  6895. }
  6896. #u126773_div {
  6897. border-width:0px;
  6898. position:absolute;
  6899. left:0px;
  6900. top:0px;
  6901. width:65px;
  6902. height:22px;
  6903. background:inherit;
  6904. background-color:rgba(255, 255, 255, 0);
  6905. border:none;
  6906. border-radius:0px;
  6907. -moz-box-shadow:none;
  6908. -webkit-box-shadow:none;
  6909. box-shadow:none;
  6910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6911. font-weight:400;
  6912. font-style:normal;
  6913. font-size:16px;
  6914. }
  6915. #u126773 {
  6916. border-width:0px;
  6917. position:absolute;
  6918. left:30px;
  6919. top:896px;
  6920. width:65px;
  6921. height:22px;
  6922. display:flex;
  6923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6924. font-weight:400;
  6925. font-style:normal;
  6926. font-size:16px;
  6927. }
  6928. #u126773 .text {
  6929. position:absolute;
  6930. align-self:flex-start;
  6931. padding:0px 0px 0px 0px;
  6932. box-sizing:border-box;
  6933. width:100%;
  6934. }
  6935. #u126773_text {
  6936. border-width:0px;
  6937. white-space:nowrap;
  6938. text-transform:none;
  6939. }
  6940. #u126774_img {
  6941. border-width:0px;
  6942. position:absolute;
  6943. left:0px;
  6944. top:0px;
  6945. width:201px;
  6946. height:2px;
  6947. }
  6948. #u126774 {
  6949. border-width:0px;
  6950. position:absolute;
  6951. left:0px;
  6952. top:938px;
  6953. width:200px;
  6954. height:1px;
  6955. display:flex;
  6956. }
  6957. #u126774 .text {
  6958. position:absolute;
  6959. align-self:center;
  6960. padding:2px 2px 2px 2px;
  6961. box-sizing:border-box;
  6962. width:100%;
  6963. }
  6964. #u126774_text {
  6965. border-width:0px;
  6966. word-wrap:break-word;
  6967. text-transform:none;
  6968. visibility:hidden;
  6969. }
  6970. #u126775_div {
  6971. border-width:0px;
  6972. position:absolute;
  6973. left:0px;
  6974. top:0px;
  6975. width:65px;
  6976. height:22px;
  6977. background:inherit;
  6978. background-color:rgba(255, 255, 255, 0);
  6979. border:none;
  6980. border-radius:0px;
  6981. -moz-box-shadow:none;
  6982. -webkit-box-shadow:none;
  6983. box-shadow:none;
  6984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6985. font-weight:400;
  6986. font-style:normal;
  6987. font-size:16px;
  6988. }
  6989. #u126775 {
  6990. border-width:0px;
  6991. position:absolute;
  6992. left:30px;
  6993. top:995px;
  6994. width:65px;
  6995. height:22px;
  6996. display:flex;
  6997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6998. font-weight:400;
  6999. font-style:normal;
  7000. font-size:16px;
  7001. }
  7002. #u126775 .text {
  7003. position:absolute;
  7004. align-self:flex-start;
  7005. padding:0px 0px 0px 0px;
  7006. box-sizing:border-box;
  7007. width:100%;
  7008. }
  7009. #u126775_text {
  7010. border-width:0px;
  7011. white-space:nowrap;
  7012. text-transform:none;
  7013. }
  7014. #u126776_div {
  7015. border-width:0px;
  7016. position:absolute;
  7017. left:0px;
  7018. top:0px;
  7019. width:49px;
  7020. height:17px;
  7021. background:inherit;
  7022. background-color:rgba(255, 255, 255, 0);
  7023. border:none;
  7024. border-radius:0px;
  7025. -moz-box-shadow:none;
  7026. -webkit-box-shadow:none;
  7027. box-shadow:none;
  7028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7029. font-weight:400;
  7030. font-style:normal;
  7031. font-size:12px;
  7032. color:#AAAAAA;
  7033. }
  7034. #u126776 {
  7035. border-width:0px;
  7036. position:absolute;
  7037. left:30px;
  7038. top:959px;
  7039. width:49px;
  7040. height:17px;
  7041. display:flex;
  7042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7043. font-weight:400;
  7044. font-style:normal;
  7045. font-size:12px;
  7046. color:#AAAAAA;
  7047. }
  7048. #u126776 .text {
  7049. position:absolute;
  7050. align-self:flex-start;
  7051. padding:0px 0px 0px 0px;
  7052. box-sizing:border-box;
  7053. width:100%;
  7054. }
  7055. #u126776_text {
  7056. border-width:0px;
  7057. white-space:nowrap;
  7058. text-transform:none;
  7059. }
  7060. #u126777_div {
  7061. border-width:0px;
  7062. position:absolute;
  7063. left:0px;
  7064. top:0px;
  7065. width:65px;
  7066. height:22px;
  7067. background:inherit;
  7068. background-color:rgba(255, 255, 255, 0);
  7069. border:none;
  7070. border-radius:0px;
  7071. -moz-box-shadow:none;
  7072. -webkit-box-shadow:none;
  7073. box-shadow:none;
  7074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7075. font-weight:400;
  7076. font-style:normal;
  7077. font-size:16px;
  7078. }
  7079. #u126777 {
  7080. border-width:0px;
  7081. position:absolute;
  7082. left:30px;
  7083. top:1037px;
  7084. width:65px;
  7085. height:22px;
  7086. display:flex;
  7087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7088. font-weight:400;
  7089. font-style:normal;
  7090. font-size:16px;
  7091. }
  7092. #u126777 .text {
  7093. position:absolute;
  7094. align-self:flex-start;
  7095. padding:0px 0px 0px 0px;
  7096. box-sizing:border-box;
  7097. width:100%;
  7098. }
  7099. #u126777_text {
  7100. border-width:0px;
  7101. white-space:nowrap;
  7102. text-transform:none;
  7103. }
  7104. #u126778_div {
  7105. border-width:0px;
  7106. position:absolute;
  7107. left:0px;
  7108. top:0px;
  7109. width:65px;
  7110. height:22px;
  7111. background:inherit;
  7112. background-color:rgba(255, 255, 255, 0);
  7113. border:none;
  7114. border-radius:0px;
  7115. -moz-box-shadow:none;
  7116. -webkit-box-shadow:none;
  7117. box-shadow:none;
  7118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7119. font-weight:400;
  7120. font-style:normal;
  7121. font-size:16px;
  7122. }
  7123. #u126778 {
  7124. border-width:0px;
  7125. position:absolute;
  7126. left:30px;
  7127. top:1121px;
  7128. width:65px;
  7129. height:22px;
  7130. display:flex;
  7131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7132. font-weight:400;
  7133. font-style:normal;
  7134. font-size:16px;
  7135. }
  7136. #u126778 .text {
  7137. position:absolute;
  7138. align-self:flex-start;
  7139. padding:0px 0px 0px 0px;
  7140. box-sizing:border-box;
  7141. width:100%;
  7142. }
  7143. #u126778_text {
  7144. border-width:0px;
  7145. white-space:nowrap;
  7146. text-transform:none;
  7147. }
  7148. #u126779_div {
  7149. border-width:0px;
  7150. position:absolute;
  7151. left:0px;
  7152. top:0px;
  7153. width:65px;
  7154. height:22px;
  7155. background:inherit;
  7156. background-color:rgba(255, 255, 255, 0);
  7157. border:none;
  7158. border-radius:0px;
  7159. -moz-box-shadow:none;
  7160. -webkit-box-shadow:none;
  7161. box-shadow:none;
  7162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7163. font-weight:400;
  7164. font-style:normal;
  7165. font-size:16px;
  7166. }
  7167. #u126779 {
  7168. border-width:0px;
  7169. position:absolute;
  7170. left:30px;
  7171. top:1079px;
  7172. width:65px;
  7173. height:22px;
  7174. display:flex;
  7175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7176. font-weight:400;
  7177. font-style:normal;
  7178. font-size:16px;
  7179. }
  7180. #u126779 .text {
  7181. position:absolute;
  7182. align-self:flex-start;
  7183. padding:0px 0px 0px 0px;
  7184. box-sizing:border-box;
  7185. width:100%;
  7186. }
  7187. #u126779_text {
  7188. border-width:0px;
  7189. white-space:nowrap;
  7190. text-transform:none;
  7191. }
  7192. #u126780_div {
  7193. border-width:0px;
  7194. position:absolute;
  7195. left:0px;
  7196. top:0px;
  7197. width:65px;
  7198. height:22px;
  7199. background:inherit;
  7200. background-color:rgba(255, 255, 255, 0);
  7201. border:none;
  7202. border-radius:0px;
  7203. -moz-box-shadow:none;
  7204. -webkit-box-shadow:none;
  7205. box-shadow:none;
  7206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7207. font-weight:400;
  7208. font-style:normal;
  7209. font-size:16px;
  7210. }
  7211. #u126780 {
  7212. border-width:0px;
  7213. position:absolute;
  7214. left:30px;
  7215. top:1163px;
  7216. width:65px;
  7217. height:22px;
  7218. display:flex;
  7219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7220. font-weight:400;
  7221. font-style:normal;
  7222. font-size:16px;
  7223. }
  7224. #u126780 .text {
  7225. position:absolute;
  7226. align-self:flex-start;
  7227. padding:0px 0px 0px 0px;
  7228. box-sizing:border-box;
  7229. width:100%;
  7230. }
  7231. #u126780_text {
  7232. border-width:0px;
  7233. white-space:nowrap;
  7234. text-transform:none;
  7235. }