styles.css 244 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:5491px;
  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. #u134347_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. #u134347 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u134347 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u134347_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u134348_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. #u134348 {
  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. #u134348 .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. #u134348_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u134349_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. #u134349 {
  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. #u134349 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u134349_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u134350 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u134351_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u134351 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u134351 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u134351_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u134352_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. #u134352 {
  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. #u134352 .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. #u134352_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u134353_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. #u134353 {
  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. #u134353 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u134353_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u134354 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u134355_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. #u134355_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. #u134355_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. #u134355 {
  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. #u134355 .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. #u134355_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. #u134355.disabled {
  356. }
  357. .u134355_input_option {
  358. font-size:14px;
  359. }
  360. #u134356_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u134356 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u134356 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u134356_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u134357_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. #u134357 {
  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. #u134357 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u134357_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u134358_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. #u134358 {
  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. #u134358 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u134358_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u134359 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u134360_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. #u134360 {
  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. #u134360 .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. #u134360_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u134361_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u134361 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u134361 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u134361_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u134362 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u134363_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. #u134363 {
  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. #u134363 .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. #u134363_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u134364_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u134364 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u134364 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u134364_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u134365 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u134366_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. #u134366 {
  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. #u134366 .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. #u134366_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u134367_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u134367 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u134367 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u134367_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u134368 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u134369_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. #u134369 {
  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. #u134369 .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. #u134369_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u134370_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u134370 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u134370 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u134370_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u134371 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u134372_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. #u134372 {
  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. #u134372 .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. #u134372_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u134373_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u134373 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u134373 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u134373_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u134374 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u134375_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. #u134375 {
  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. #u134375 .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. #u134375_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u134376_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u134376 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u134376 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u134376_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u134377 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u134378_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. #u134378 {
  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. #u134378 .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. #u134378_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u134379_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u134379 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u134379 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u134379_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u134380 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u134381_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. #u134381 {
  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. #u134381 .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. #u134381_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u134382_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u134382 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u134382 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u134382_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u134383 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u134384_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. #u134384 {
  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. #u134384 .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. #u134384_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u134385_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u134385 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u134385 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u134385_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u134386 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u134387_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. #u134387 {
  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. #u134387 .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. #u134387_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u134388_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u134388 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u134388 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u134388_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u134389_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. #u134389 {
  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. #u134389 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u134389_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u134390_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u134390 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u134390 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u134390_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u134391_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. #u134391 {
  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. #u134391 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u134391_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u134392_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u134392 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u134392 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u134392_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u134393 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u134394_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. #u134394 {
  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. #u134394 .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. #u134394_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u134395_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u134395 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u134395 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u134395_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u134396 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u134397_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. #u134397 {
  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. #u134397 .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. #u134397_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u134398_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u134398 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u134398 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u134398_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u134399_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1265px;
  1644. height:1193px;
  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. color:#1890FF;
  1653. }
  1654. #u134399 {
  1655. border-width:0px;
  1656. position:absolute;
  1657. left:329px;
  1658. top:50px;
  1659. width:1265px;
  1660. height:1193px;
  1661. display:flex;
  1662. color:#1890FF;
  1663. }
  1664. #u134399 .text {
  1665. position:absolute;
  1666. align-self:center;
  1667. padding:2px 2px 2px 2px;
  1668. box-sizing:border-box;
  1669. width:100%;
  1670. }
  1671. #u134399_text {
  1672. border-width:0px;
  1673. word-wrap:break-word;
  1674. text-transform:none;
  1675. visibility:hidden;
  1676. }
  1677. #u134400_div {
  1678. border-width:0px;
  1679. position:absolute;
  1680. left:0px;
  1681. top:0px;
  1682. width:73px;
  1683. height:50px;
  1684. background:inherit;
  1685. background-color:rgba(255, 255, 255, 0);
  1686. border:none;
  1687. border-left:0px;
  1688. border-top:0px;
  1689. border-right:0px;
  1690. border-radius:0px;
  1691. border-bottom-right-radius:0px;
  1692. border-bottom-left-radius:0px;
  1693. -moz-box-shadow:none;
  1694. -webkit-box-shadow:none;
  1695. box-shadow:none;
  1696. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1697. font-weight:500;
  1698. font-style:normal;
  1699. font-size:18px;
  1700. color:#1890FF;
  1701. }
  1702. #u134400 {
  1703. border-width:0px;
  1704. position:absolute;
  1705. left:348px;
  1706. top:50px;
  1707. width:73px;
  1708. height:50px;
  1709. display:flex;
  1710. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1711. font-weight:500;
  1712. font-style:normal;
  1713. font-size:18px;
  1714. color:#1890FF;
  1715. }
  1716. #u134400 .text {
  1717. position:absolute;
  1718. align-self:center;
  1719. padding:0px 0px 0px 0px;
  1720. box-sizing:border-box;
  1721. width:100%;
  1722. }
  1723. #u134400_text {
  1724. border-width:0px;
  1725. white-space:nowrap;
  1726. text-transform:none;
  1727. }
  1728. #u134401 {
  1729. border-width:0px;
  1730. position:absolute;
  1731. left:0px;
  1732. top:0px;
  1733. width:0px;
  1734. height:0px;
  1735. }
  1736. #u134402_div {
  1737. border-width:0px;
  1738. position:absolute;
  1739. left:0px;
  1740. top:0px;
  1741. width:140px;
  1742. height:30px;
  1743. background:inherit;
  1744. background-color:rgba(255, 255, 255, 1);
  1745. box-sizing:border-box;
  1746. border-width:1px;
  1747. border-style:solid;
  1748. border-color:rgba(215, 215, 215, 1);
  1749. border-radius:4px;
  1750. -moz-box-shadow:none;
  1751. -webkit-box-shadow:none;
  1752. box-shadow:none;
  1753. font-size:14px;
  1754. }
  1755. #u134402 {
  1756. border-width:0px;
  1757. position:absolute;
  1758. left:348px;
  1759. top:110px;
  1760. width:140px;
  1761. height:30px;
  1762. display:flex;
  1763. font-size:14px;
  1764. }
  1765. #u134402 .text {
  1766. position:absolute;
  1767. align-self:center;
  1768. padding:2px 2px 2px 2px;
  1769. box-sizing:border-box;
  1770. width:100%;
  1771. }
  1772. #u134402_text {
  1773. border-width:0px;
  1774. word-wrap:break-word;
  1775. text-transform:none;
  1776. visibility:hidden;
  1777. }
  1778. #u134403_input {
  1779. position:absolute;
  1780. left:0px;
  1781. top:0px;
  1782. width:134px;
  1783. height:23px;
  1784. padding:2px 2px 2px 2px;
  1785. font-family:'ArialMT', 'Arial', sans-serif;
  1786. font-weight:400;
  1787. font-style:normal;
  1788. font-size:12px;
  1789. letter-spacing:normal;
  1790. color:#AAAAAA;
  1791. vertical-align:none;
  1792. text-align:left;
  1793. text-transform:none;
  1794. background-color:transparent;
  1795. border-color:transparent;
  1796. }
  1797. #u134403_input.disabled {
  1798. position:absolute;
  1799. left:0px;
  1800. top:0px;
  1801. width:134px;
  1802. height:23px;
  1803. padding:2px 2px 2px 2px;
  1804. font-family:'ArialMT', 'Arial', sans-serif;
  1805. font-weight:400;
  1806. font-style:normal;
  1807. font-size:12px;
  1808. letter-spacing:normal;
  1809. color:#AAAAAA;
  1810. vertical-align:none;
  1811. text-align:left;
  1812. text-transform:none;
  1813. background-color:transparent;
  1814. border-color:transparent;
  1815. }
  1816. #u134403_div {
  1817. border-width:0px;
  1818. position:absolute;
  1819. left:0px;
  1820. top:0px;
  1821. width:134px;
  1822. height:23px;
  1823. background:inherit;
  1824. background-color:rgba(255, 255, 255, 1);
  1825. border:none;
  1826. border-radius:0px;
  1827. -moz-box-shadow:none;
  1828. -webkit-box-shadow:none;
  1829. box-shadow:none;
  1830. font-size:12px;
  1831. color:#AAAAAA;
  1832. }
  1833. #u134403 {
  1834. border-width:0px;
  1835. position:absolute;
  1836. left:352px;
  1837. top:112px;
  1838. width:134px;
  1839. height:23px;
  1840. display:flex;
  1841. font-size:12px;
  1842. color:#AAAAAA;
  1843. }
  1844. #u134403 .text {
  1845. position:absolute;
  1846. align-self:flex-start;
  1847. padding:2px 2px 2px 2px;
  1848. box-sizing:border-box;
  1849. width:100%;
  1850. }
  1851. #u134403_div.disabled {
  1852. border-width:0px;
  1853. position:absolute;
  1854. left:0px;
  1855. top:0px;
  1856. width:134px;
  1857. height:23px;
  1858. background:inherit;
  1859. background-color:rgba(240, 240, 240, 1);
  1860. border:none;
  1861. border-radius:0px;
  1862. -moz-box-shadow:none;
  1863. -webkit-box-shadow:none;
  1864. box-shadow:none;
  1865. font-size:12px;
  1866. color:#AAAAAA;
  1867. }
  1868. #u134403.disabled {
  1869. }
  1870. .u134403_input_option {
  1871. font-size:12px;
  1872. }
  1873. #u134404 {
  1874. border-width:0px;
  1875. position:absolute;
  1876. left:0px;
  1877. top:0px;
  1878. width:0px;
  1879. height:0px;
  1880. }
  1881. #u134405_div {
  1882. border-width:0px;
  1883. position:absolute;
  1884. left:0px;
  1885. top:0px;
  1886. width:140px;
  1887. height:30px;
  1888. background:inherit;
  1889. background-color:rgba(255, 255, 255, 1);
  1890. box-sizing:border-box;
  1891. border-width:1px;
  1892. border-style:solid;
  1893. border-color:rgba(215, 215, 215, 1);
  1894. border-radius:4px;
  1895. -moz-box-shadow:none;
  1896. -webkit-box-shadow:none;
  1897. box-shadow:none;
  1898. font-size:11px;
  1899. }
  1900. #u134405 {
  1901. border-width:0px;
  1902. position:absolute;
  1903. left:948px;
  1904. top:110px;
  1905. width:140px;
  1906. height:30px;
  1907. display:flex;
  1908. font-size:11px;
  1909. }
  1910. #u134405 .text {
  1911. position:absolute;
  1912. align-self:center;
  1913. padding:2px 2px 2px 2px;
  1914. box-sizing:border-box;
  1915. width:100%;
  1916. }
  1917. #u134405_text {
  1918. border-width:0px;
  1919. word-wrap:break-word;
  1920. text-transform:none;
  1921. visibility:hidden;
  1922. }
  1923. #u134406_input {
  1924. position:absolute;
  1925. left:0px;
  1926. top:0px;
  1927. width:120px;
  1928. height:23px;
  1929. padding:2px 2px 2px 2px;
  1930. font-family:'ArialMT', 'Arial', sans-serif;
  1931. font-weight:400;
  1932. font-style:normal;
  1933. font-size:12px;
  1934. letter-spacing:normal;
  1935. color:#AAAAAA;
  1936. vertical-align:none;
  1937. text-align:left;
  1938. text-transform:none;
  1939. background-color:transparent;
  1940. border-color:transparent;
  1941. }
  1942. #u134406_input.disabled {
  1943. position:absolute;
  1944. left:0px;
  1945. top:0px;
  1946. width:120px;
  1947. height:23px;
  1948. padding:2px 2px 2px 2px;
  1949. font-family:'ArialMT', 'Arial', sans-serif;
  1950. font-weight:400;
  1951. font-style:normal;
  1952. font-size:12px;
  1953. letter-spacing:normal;
  1954. color:#AAAAAA;
  1955. vertical-align:none;
  1956. text-align:left;
  1957. text-transform:none;
  1958. background-color:transparent;
  1959. border-color:transparent;
  1960. }
  1961. #u134406_div {
  1962. border-width:0px;
  1963. position:absolute;
  1964. left:0px;
  1965. top:0px;
  1966. width:120px;
  1967. height:23px;
  1968. background:inherit;
  1969. background-color:rgba(255, 255, 255, 1);
  1970. border:none;
  1971. border-radius:0px;
  1972. -moz-box-shadow:none;
  1973. -webkit-box-shadow:none;
  1974. box-shadow:none;
  1975. font-size:12px;
  1976. color:#AAAAAA;
  1977. }
  1978. #u134406 {
  1979. border-width:0px;
  1980. position:absolute;
  1981. left:955px;
  1982. top:112px;
  1983. width:120px;
  1984. height:23px;
  1985. display:flex;
  1986. font-size:12px;
  1987. color:#AAAAAA;
  1988. }
  1989. #u134406 .text {
  1990. position:absolute;
  1991. align-self:flex-start;
  1992. padding:2px 2px 2px 2px;
  1993. box-sizing:border-box;
  1994. width:100%;
  1995. }
  1996. #u134406_div.disabled {
  1997. border-width:0px;
  1998. position:absolute;
  1999. left:0px;
  2000. top:0px;
  2001. width:120px;
  2002. height:23px;
  2003. background:inherit;
  2004. background-color:rgba(240, 240, 240, 1);
  2005. border:none;
  2006. border-radius:0px;
  2007. -moz-box-shadow:none;
  2008. -webkit-box-shadow:none;
  2009. box-shadow:none;
  2010. font-size:12px;
  2011. color:#AAAAAA;
  2012. }
  2013. #u134406.disabled {
  2014. }
  2015. .u134406_input_option {
  2016. font-size:12px;
  2017. }
  2018. #u134407_div {
  2019. border-width:0px;
  2020. position:absolute;
  2021. left:0px;
  2022. top:0px;
  2023. width:73px;
  2024. height:50px;
  2025. background:inherit;
  2026. background-color:rgba(255, 255, 255, 0);
  2027. border:none;
  2028. border-left:0px;
  2029. border-top:0px;
  2030. border-right:0px;
  2031. border-radius:0px;
  2032. border-bottom-right-radius:0px;
  2033. border-bottom-left-radius:0px;
  2034. -moz-box-shadow:none;
  2035. -webkit-box-shadow:none;
  2036. box-shadow:none;
  2037. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2038. font-weight:500;
  2039. font-style:normal;
  2040. font-size:18px;
  2041. }
  2042. #u134407 {
  2043. border-width:0px;
  2044. position:absolute;
  2045. left:451px;
  2046. top:50px;
  2047. width:73px;
  2048. height:50px;
  2049. display:flex;
  2050. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2051. font-weight:500;
  2052. font-style:normal;
  2053. font-size:18px;
  2054. }
  2055. #u134407 .text {
  2056. position:absolute;
  2057. align-self:center;
  2058. padding:0px 0px 0px 0px;
  2059. box-sizing:border-box;
  2060. width:100%;
  2061. }
  2062. #u134407_text {
  2063. border-width:0px;
  2064. white-space:nowrap;
  2065. text-transform:none;
  2066. }
  2067. #u134408 {
  2068. border-width:0px;
  2069. position:absolute;
  2070. left:0px;
  2071. top:0px;
  2072. width:0px;
  2073. height:0px;
  2074. }
  2075. #u134409_div {
  2076. border-width:0px;
  2077. position:absolute;
  2078. left:0px;
  2079. top:0px;
  2080. width:59px;
  2081. height:30px;
  2082. background:inherit;
  2083. background-color:rgba(24, 144, 255, 1);
  2084. box-sizing:border-box;
  2085. border-width:1px;
  2086. border-style:solid;
  2087. border-color:rgba(0, 153, 255, 1);
  2088. border-radius:4px;
  2089. -moz-box-shadow:none;
  2090. -webkit-box-shadow:none;
  2091. box-shadow:none;
  2092. font-family:'Microsoft YaHei', sans-serif;
  2093. font-weight:400;
  2094. font-style:normal;
  2095. font-size:14px;
  2096. color:#FFFFFF;
  2097. }
  2098. #u134409 {
  2099. border-width:0px;
  2100. position:absolute;
  2101. left:1098px;
  2102. top:110px;
  2103. width:59px;
  2104. height:30px;
  2105. display:flex;
  2106. font-family:'Microsoft YaHei', sans-serif;
  2107. font-weight:400;
  2108. font-style:normal;
  2109. font-size:14px;
  2110. color:#FFFFFF;
  2111. }
  2112. #u134409 .text {
  2113. position:absolute;
  2114. align-self:center;
  2115. padding:5px 15px 5px 15px;
  2116. box-sizing:border-box;
  2117. width:100%;
  2118. }
  2119. #u134409_text {
  2120. border-width:0px;
  2121. white-space:nowrap;
  2122. text-transform:none;
  2123. }
  2124. #u134410_div {
  2125. border-width:0px;
  2126. position:absolute;
  2127. left:0px;
  2128. top:0px;
  2129. width:55px;
  2130. height:30px;
  2131. background:inherit;
  2132. background-color:rgba(255, 255, 255, 1);
  2133. box-sizing:border-box;
  2134. border-width:1px;
  2135. border-style:solid;
  2136. border-color:rgba(170, 170, 170, 1);
  2137. border-radius:4px;
  2138. -moz-box-shadow:none;
  2139. -webkit-box-shadow:none;
  2140. box-shadow:none;
  2141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2142. font-weight:400;
  2143. font-style:normal;
  2144. font-size:12px;
  2145. color:#555555;
  2146. }
  2147. #u134410 {
  2148. border-width:0px;
  2149. position:absolute;
  2150. left:1167px;
  2151. top:110px;
  2152. width:55px;
  2153. height:30px;
  2154. display:flex;
  2155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2156. font-weight:400;
  2157. font-style:normal;
  2158. font-size:12px;
  2159. color:#555555;
  2160. }
  2161. #u134410 .text {
  2162. position:absolute;
  2163. align-self:center;
  2164. padding:5px 15px 5px 15px;
  2165. box-sizing:border-box;
  2166. width:100%;
  2167. }
  2168. #u134410_text {
  2169. border-width:0px;
  2170. white-space:nowrap;
  2171. text-transform:none;
  2172. }
  2173. #u134411 {
  2174. border-width:0px;
  2175. position:absolute;
  2176. left:0px;
  2177. top:0px;
  2178. width:0px;
  2179. height:0px;
  2180. }
  2181. #u134412_div {
  2182. border-width:0px;
  2183. position:absolute;
  2184. left:0px;
  2185. top:0px;
  2186. width:140px;
  2187. height:30px;
  2188. background:inherit;
  2189. background-color:rgba(255, 255, 255, 1);
  2190. box-sizing:border-box;
  2191. border-width:1px;
  2192. border-style:solid;
  2193. border-color:rgba(201, 201, 201, 1);
  2194. border-radius:4px;
  2195. -moz-box-shadow:none;
  2196. -webkit-box-shadow:none;
  2197. box-shadow:none;
  2198. font-family:'Microsoft YaHei', sans-serif;
  2199. font-weight:400;
  2200. font-style:normal;
  2201. font-size:14px;
  2202. color:#CCCCCC;
  2203. text-align:left;
  2204. }
  2205. #u134412 {
  2206. border-width:0px;
  2207. position:absolute;
  2208. left:648px;
  2209. top:110px;
  2210. width:140px;
  2211. height:30px;
  2212. display:flex;
  2213. font-family:'Microsoft YaHei', sans-serif;
  2214. font-weight:400;
  2215. font-style:normal;
  2216. font-size:14px;
  2217. color:#CCCCCC;
  2218. text-align:left;
  2219. }
  2220. #u134412 .text {
  2221. position:absolute;
  2222. align-self:center;
  2223. padding:2px 8px 2px 8px;
  2224. box-sizing:border-box;
  2225. width:100%;
  2226. }
  2227. #u134412_text {
  2228. border-width:0px;
  2229. word-wrap:break-word;
  2230. text-transform:none;
  2231. visibility:hidden;
  2232. }
  2233. #u134413_input {
  2234. position:absolute;
  2235. left:0px;
  2236. top:0px;
  2237. width:127px;
  2238. height:25px;
  2239. padding:2px 2px 2px 2px;
  2240. font-family:'Microsoft YaHei', sans-serif;
  2241. font-weight:400;
  2242. font-style:normal;
  2243. font-size:10px;
  2244. letter-spacing:normal;
  2245. color:#000000;
  2246. vertical-align:none;
  2247. text-align:left;
  2248. text-transform:none;
  2249. background-color:transparent;
  2250. border-color:transparent;
  2251. }
  2252. #u134413_input.disabled {
  2253. position:absolute;
  2254. left:0px;
  2255. top:0px;
  2256. width:127px;
  2257. height:25px;
  2258. padding:2px 2px 2px 2px;
  2259. font-family:'Microsoft YaHei', sans-serif;
  2260. font-weight:400;
  2261. font-style:normal;
  2262. font-size:10px;
  2263. letter-spacing:normal;
  2264. color:#000000;
  2265. vertical-align:none;
  2266. text-align:left;
  2267. text-transform:none;
  2268. background-color:transparent;
  2269. border-color:transparent;
  2270. }
  2271. #u134413_div {
  2272. border-width:0px;
  2273. position:absolute;
  2274. left:0px;
  2275. top:0px;
  2276. width:127px;
  2277. height:25px;
  2278. background:inherit;
  2279. background-color:rgba(255, 255, 255, 1);
  2280. border:none;
  2281. border-radius:0px;
  2282. -moz-box-shadow:none;
  2283. -webkit-box-shadow:none;
  2284. box-shadow:none;
  2285. font-family:'Microsoft YaHei', sans-serif;
  2286. font-weight:400;
  2287. font-style:normal;
  2288. font-size:10px;
  2289. }
  2290. #u134413 {
  2291. border-width:0px;
  2292. position:absolute;
  2293. left:656px;
  2294. top:111px;
  2295. width:127px;
  2296. height:25px;
  2297. display:flex;
  2298. font-family:'Microsoft YaHei', sans-serif;
  2299. font-weight:400;
  2300. font-style:normal;
  2301. font-size:10px;
  2302. }
  2303. #u134413 .text {
  2304. position:absolute;
  2305. align-self:center;
  2306. padding:2px 2px 2px 2px;
  2307. box-sizing:border-box;
  2308. width:100%;
  2309. }
  2310. #u134413_div.disabled {
  2311. border-width:0px;
  2312. position:absolute;
  2313. left:0px;
  2314. top:0px;
  2315. width:127px;
  2316. height:25px;
  2317. background:inherit;
  2318. background-color:rgba(240, 240, 240, 1);
  2319. border:none;
  2320. border-radius:0px;
  2321. -moz-box-shadow:none;
  2322. -webkit-box-shadow:none;
  2323. box-shadow:none;
  2324. font-family:'Microsoft YaHei', sans-serif;
  2325. font-weight:400;
  2326. font-style:normal;
  2327. font-size:10px;
  2328. }
  2329. #u134413.disabled {
  2330. }
  2331. #u134414 {
  2332. border-width:0px;
  2333. position:absolute;
  2334. left:0px;
  2335. top:0px;
  2336. width:0px;
  2337. height:0px;
  2338. }
  2339. #u134415_div {
  2340. border-width:0px;
  2341. position:absolute;
  2342. left:0px;
  2343. top:0px;
  2344. width:140px;
  2345. height:30px;
  2346. background:inherit;
  2347. background-color:rgba(255, 255, 255, 1);
  2348. box-sizing:border-box;
  2349. border-width:1px;
  2350. border-style:solid;
  2351. border-color:rgba(215, 215, 215, 1);
  2352. border-radius:4px;
  2353. -moz-box-shadow:none;
  2354. -webkit-box-shadow:none;
  2355. box-shadow:none;
  2356. font-size:11px;
  2357. }
  2358. #u134415 {
  2359. border-width:0px;
  2360. position:absolute;
  2361. left:798px;
  2362. top:110px;
  2363. width:140px;
  2364. height:30px;
  2365. display:flex;
  2366. font-size:11px;
  2367. }
  2368. #u134415 .text {
  2369. position:absolute;
  2370. align-self:center;
  2371. padding:2px 2px 2px 2px;
  2372. box-sizing:border-box;
  2373. width:100%;
  2374. }
  2375. #u134415_text {
  2376. border-width:0px;
  2377. word-wrap:break-word;
  2378. text-transform:none;
  2379. visibility:hidden;
  2380. }
  2381. #u134416_input {
  2382. position:absolute;
  2383. left:0px;
  2384. top:0px;
  2385. width:120px;
  2386. height:23px;
  2387. padding:2px 2px 2px 2px;
  2388. font-family:'ArialMT', 'Arial', sans-serif;
  2389. font-weight:400;
  2390. font-style:normal;
  2391. font-size:12px;
  2392. letter-spacing:normal;
  2393. color:#AAAAAA;
  2394. vertical-align:none;
  2395. text-align:left;
  2396. text-transform:none;
  2397. background-color:transparent;
  2398. border-color:transparent;
  2399. }
  2400. #u134416_input.disabled {
  2401. position:absolute;
  2402. left:0px;
  2403. top:0px;
  2404. width:120px;
  2405. height:23px;
  2406. padding:2px 2px 2px 2px;
  2407. font-family:'ArialMT', 'Arial', sans-serif;
  2408. font-weight:400;
  2409. font-style:normal;
  2410. font-size:12px;
  2411. letter-spacing:normal;
  2412. color:#AAAAAA;
  2413. vertical-align:none;
  2414. text-align:left;
  2415. text-transform:none;
  2416. background-color:transparent;
  2417. border-color:transparent;
  2418. }
  2419. #u134416_div {
  2420. border-width:0px;
  2421. position:absolute;
  2422. left:0px;
  2423. top:0px;
  2424. width:120px;
  2425. height:23px;
  2426. background:inherit;
  2427. background-color:rgba(255, 255, 255, 1);
  2428. border:none;
  2429. border-radius:0px;
  2430. -moz-box-shadow:none;
  2431. -webkit-box-shadow:none;
  2432. box-shadow:none;
  2433. font-size:12px;
  2434. color:#AAAAAA;
  2435. }
  2436. #u134416 {
  2437. border-width:0px;
  2438. position:absolute;
  2439. left:805px;
  2440. top:112px;
  2441. width:120px;
  2442. height:23px;
  2443. display:flex;
  2444. font-size:12px;
  2445. color:#AAAAAA;
  2446. }
  2447. #u134416 .text {
  2448. position:absolute;
  2449. align-self:flex-start;
  2450. padding:2px 2px 2px 2px;
  2451. box-sizing:border-box;
  2452. width:100%;
  2453. }
  2454. #u134416_div.disabled {
  2455. border-width:0px;
  2456. position:absolute;
  2457. left:0px;
  2458. top:0px;
  2459. width:120px;
  2460. height:23px;
  2461. background:inherit;
  2462. background-color:rgba(240, 240, 240, 1);
  2463. border:none;
  2464. border-radius:0px;
  2465. -moz-box-shadow:none;
  2466. -webkit-box-shadow:none;
  2467. box-shadow:none;
  2468. font-size:12px;
  2469. color:#AAAAAA;
  2470. }
  2471. #u134416.disabled {
  2472. }
  2473. .u134416_input_option {
  2474. font-size:12px;
  2475. }
  2476. #u134417 {
  2477. border-width:0px;
  2478. position:absolute;
  2479. left:0px;
  2480. top:0px;
  2481. width:0px;
  2482. height:0px;
  2483. }
  2484. #u134418_div {
  2485. border-width:0px;
  2486. position:absolute;
  2487. left:0px;
  2488. top:0px;
  2489. width:67px;
  2490. height:24px;
  2491. background:inherit;
  2492. background-color:rgba(24, 144, 255, 1);
  2493. box-sizing:border-box;
  2494. border-width:1px;
  2495. border-style:solid;
  2496. border-color:rgba(0, 153, 255, 1);
  2497. border-radius:0px;
  2498. -moz-box-shadow:none;
  2499. -webkit-box-shadow:none;
  2500. box-shadow:none;
  2501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2502. font-weight:400;
  2503. font-style:normal;
  2504. font-size:12px;
  2505. color:#FFFFFF;
  2506. }
  2507. #u134418 {
  2508. border-width:0px;
  2509. position:absolute;
  2510. left:354px;
  2511. top:160px;
  2512. width:67px;
  2513. height:24px;
  2514. display:flex;
  2515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2516. font-weight:400;
  2517. font-style:normal;
  2518. font-size:12px;
  2519. color:#FFFFFF;
  2520. }
  2521. #u134418 .text {
  2522. position:absolute;
  2523. align-self:center;
  2524. padding:5px 15px 5px 15px;
  2525. box-sizing:border-box;
  2526. width:100%;
  2527. }
  2528. #u134418_text {
  2529. border-width:0px;
  2530. white-space:nowrap;
  2531. text-transform:none;
  2532. }
  2533. #u134419_div {
  2534. border-width:0px;
  2535. position:absolute;
  2536. left:0px;
  2537. top:0px;
  2538. width:67px;
  2539. height:24px;
  2540. background:inherit;
  2541. background-color:rgba(255, 255, 255, 1);
  2542. box-sizing:border-box;
  2543. border-width:1px;
  2544. border-style:solid;
  2545. border-color:rgba(170, 170, 170, 1);
  2546. border-radius:0px;
  2547. -moz-box-shadow:none;
  2548. -webkit-box-shadow:none;
  2549. box-shadow:none;
  2550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2551. font-weight:400;
  2552. font-style:normal;
  2553. font-size:12px;
  2554. color:#555555;
  2555. }
  2556. #u134419 {
  2557. border-width:0px;
  2558. position:absolute;
  2559. left:500px;
  2560. top:160px;
  2561. width:67px;
  2562. height:24px;
  2563. display:flex;
  2564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2565. font-weight:400;
  2566. font-style:normal;
  2567. font-size:12px;
  2568. color:#555555;
  2569. }
  2570. #u134419 .text {
  2571. position:absolute;
  2572. align-self:center;
  2573. padding:5px 15px 5px 15px;
  2574. box-sizing:border-box;
  2575. width:100%;
  2576. }
  2577. #u134419_text {
  2578. border-width:0px;
  2579. white-space:nowrap;
  2580. text-transform:none;
  2581. }
  2582. #u134420_div {
  2583. border-width:0px;
  2584. position:absolute;
  2585. left:0px;
  2586. top:0px;
  2587. width:79px;
  2588. height:24px;
  2589. background:inherit;
  2590. background-color:rgba(255, 255, 255, 1);
  2591. box-sizing:border-box;
  2592. border-width:1px;
  2593. border-style:solid;
  2594. border-color:rgba(170, 170, 170, 1);
  2595. border-radius:0px;
  2596. -moz-box-shadow:none;
  2597. -webkit-box-shadow:none;
  2598. box-shadow:none;
  2599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2600. font-weight:400;
  2601. font-style:normal;
  2602. font-size:12px;
  2603. color:#555555;
  2604. }
  2605. #u134420 {
  2606. border-width:0px;
  2607. position:absolute;
  2608. left:421px;
  2609. top:160px;
  2610. width:79px;
  2611. height:24px;
  2612. display:flex;
  2613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2614. font-weight:400;
  2615. font-style:normal;
  2616. font-size:12px;
  2617. color:#555555;
  2618. }
  2619. #u134420 .text {
  2620. position:absolute;
  2621. align-self:center;
  2622. padding:5px 15px 5px 15px;
  2623. box-sizing:border-box;
  2624. width:100%;
  2625. }
  2626. #u134420_text {
  2627. border-width:0px;
  2628. white-space:nowrap;
  2629. text-transform:none;
  2630. }
  2631. #u134421 {
  2632. border-width:0px;
  2633. position:absolute;
  2634. left:0px;
  2635. top:0px;
  2636. width:0px;
  2637. height:0px;
  2638. }
  2639. #u134422_div {
  2640. border-width:0px;
  2641. position:absolute;
  2642. left:0px;
  2643. top:0px;
  2644. width:1265px;
  2645. height:1193px;
  2646. background:inherit;
  2647. background-color:rgba(255, 255, 255, 1);
  2648. border:none;
  2649. border-radius:0px;
  2650. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2651. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2652. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2653. color:#1890FF;
  2654. }
  2655. #u134422 {
  2656. border-width:0px;
  2657. position:absolute;
  2658. left:4226px;
  2659. top:50px;
  2660. width:1265px;
  2661. height:1193px;
  2662. display:flex;
  2663. color:#1890FF;
  2664. }
  2665. #u134422 .text {
  2666. position:absolute;
  2667. align-self:center;
  2668. padding:2px 2px 2px 2px;
  2669. box-sizing:border-box;
  2670. width:100%;
  2671. }
  2672. #u134422_text {
  2673. border-width:0px;
  2674. word-wrap:break-word;
  2675. text-transform:none;
  2676. visibility:hidden;
  2677. }
  2678. #u134423_div {
  2679. border-width:0px;
  2680. position:absolute;
  2681. left:0px;
  2682. top:0px;
  2683. width:73px;
  2684. height:50px;
  2685. background:inherit;
  2686. background-color:rgba(255, 255, 255, 0);
  2687. border:none;
  2688. border-left:0px;
  2689. border-top:0px;
  2690. border-right:0px;
  2691. border-radius:0px;
  2692. border-bottom-right-radius:0px;
  2693. border-bottom-left-radius:0px;
  2694. -moz-box-shadow:none;
  2695. -webkit-box-shadow:none;
  2696. box-shadow:none;
  2697. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2698. font-weight:500;
  2699. font-style:normal;
  2700. font-size:18px;
  2701. }
  2702. #u134423 {
  2703. border-width:0px;
  2704. position:absolute;
  2705. left:4245px;
  2706. top:50px;
  2707. width:73px;
  2708. height:50px;
  2709. display:flex;
  2710. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2711. font-weight:500;
  2712. font-style:normal;
  2713. font-size:18px;
  2714. }
  2715. #u134423 .text {
  2716. position:absolute;
  2717. align-self:center;
  2718. padding:0px 0px 0px 0px;
  2719. box-sizing:border-box;
  2720. width:100%;
  2721. }
  2722. #u134423_text {
  2723. border-width:0px;
  2724. white-space:nowrap;
  2725. text-transform:none;
  2726. }
  2727. #u134424_div {
  2728. border-width:0px;
  2729. position:absolute;
  2730. left:0px;
  2731. top:0px;
  2732. width:73px;
  2733. height:50px;
  2734. background:inherit;
  2735. background-color:rgba(255, 255, 255, 0);
  2736. border:none;
  2737. border-left:0px;
  2738. border-top:0px;
  2739. border-right:0px;
  2740. border-radius:0px;
  2741. border-bottom-right-radius:0px;
  2742. border-bottom-left-radius:0px;
  2743. -moz-box-shadow:none;
  2744. -webkit-box-shadow:none;
  2745. box-shadow:none;
  2746. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2747. font-weight:500;
  2748. font-style:normal;
  2749. font-size:18px;
  2750. color:#1890FF;
  2751. }
  2752. #u134424 {
  2753. border-width:0px;
  2754. position:absolute;
  2755. left:4348px;
  2756. top:50px;
  2757. width:73px;
  2758. height:50px;
  2759. display:flex;
  2760. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2761. font-weight:500;
  2762. font-style:normal;
  2763. font-size:18px;
  2764. color:#1890FF;
  2765. }
  2766. #u134424 .text {
  2767. position:absolute;
  2768. align-self:center;
  2769. padding:0px 0px 0px 0px;
  2770. box-sizing:border-box;
  2771. width:100%;
  2772. }
  2773. #u134424_text {
  2774. border-width:0px;
  2775. white-space:nowrap;
  2776. text-transform:none;
  2777. }
  2778. #u134425 {
  2779. border-width:0px;
  2780. position:absolute;
  2781. left:0px;
  2782. top:0px;
  2783. width:0px;
  2784. height:0px;
  2785. }
  2786. #u134426 {
  2787. border-width:0px;
  2788. position:absolute;
  2789. left:0px;
  2790. top:0px;
  2791. width:0px;
  2792. height:0px;
  2793. }
  2794. #u134427_img {
  2795. border-width:0px;
  2796. position:absolute;
  2797. left:0px;
  2798. top:0px;
  2799. width:993px;
  2800. height:950px;
  2801. }
  2802. #u134427 {
  2803. border-width:0px;
  2804. position:absolute;
  2805. left:4475px;
  2806. top:115px;
  2807. width:993px;
  2808. height:950px;
  2809. display:flex;
  2810. }
  2811. #u134427 .text {
  2812. position:absolute;
  2813. align-self:center;
  2814. padding:2px 2px 2px 2px;
  2815. box-sizing:border-box;
  2816. width:100%;
  2817. }
  2818. #u134427_text {
  2819. border-width:0px;
  2820. word-wrap:break-word;
  2821. text-transform:none;
  2822. visibility:hidden;
  2823. }
  2824. #u134428_div {
  2825. border-width:0px;
  2826. position:absolute;
  2827. left:0px;
  2828. top:0px;
  2829. width:29px;
  2830. height:17px;
  2831. background:inherit;
  2832. background-color:rgba(0, 191, 191, 1);
  2833. border:none;
  2834. border-radius:4px;
  2835. -moz-box-shadow:none;
  2836. -webkit-box-shadow:none;
  2837. box-shadow:none;
  2838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2839. font-weight:400;
  2840. font-style:normal;
  2841. font-size:10px;
  2842. color:#FFFFFF;
  2843. }
  2844. #u134428 {
  2845. border-width:0px;
  2846. position:absolute;
  2847. left:4475px;
  2848. top:118px;
  2849. width:29px;
  2850. height:17px;
  2851. display:flex;
  2852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2853. font-weight:400;
  2854. font-style:normal;
  2855. font-size:10px;
  2856. color:#FFFFFF;
  2857. }
  2858. #u134428 .text {
  2859. position:absolute;
  2860. align-self:center;
  2861. padding:5px 0px 5px 0px;
  2862. box-sizing:border-box;
  2863. width:100%;
  2864. }
  2865. #u134428_text {
  2866. border-width:0px;
  2867. word-wrap:break-word;
  2868. text-transform:none;
  2869. }
  2870. #u134429_div {
  2871. border-width:0px;
  2872. position:absolute;
  2873. left:0px;
  2874. top:0px;
  2875. width:29px;
  2876. height:17px;
  2877. background:inherit;
  2878. background-color:rgba(217, 0, 27, 1);
  2879. border:none;
  2880. border-radius:4px;
  2881. -moz-box-shadow:none;
  2882. -webkit-box-shadow:none;
  2883. box-shadow:none;
  2884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2885. font-weight:400;
  2886. font-style:normal;
  2887. font-size:10px;
  2888. color:#FFFFFF;
  2889. }
  2890. #u134429 {
  2891. border-width:0px;
  2892. position:absolute;
  2893. left:5142px;
  2894. top:115px;
  2895. width:29px;
  2896. height:17px;
  2897. display:flex;
  2898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2899. font-weight:400;
  2900. font-style:normal;
  2901. font-size:10px;
  2902. color:#FFFFFF;
  2903. }
  2904. #u134429 .text {
  2905. position:absolute;
  2906. align-self:center;
  2907. padding:5px 0px 5px 0px;
  2908. box-sizing:border-box;
  2909. width:100%;
  2910. }
  2911. #u134429_text {
  2912. border-width:0px;
  2913. word-wrap:break-word;
  2914. text-transform:none;
  2915. }
  2916. #u134430_div {
  2917. border-width:0px;
  2918. position:absolute;
  2919. left:0px;
  2920. top:0px;
  2921. width:29px;
  2922. height:17px;
  2923. background:inherit;
  2924. background-color:rgba(245, 154, 35, 1);
  2925. border:none;
  2926. border-radius:4px;
  2927. -moz-box-shadow:none;
  2928. -webkit-box-shadow:none;
  2929. box-shadow:none;
  2930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2931. font-weight:400;
  2932. font-style:normal;
  2933. font-size:10px;
  2934. color:#FFFFFF;
  2935. }
  2936. #u134430 {
  2937. border-width:0px;
  2938. position:absolute;
  2939. left:4475px;
  2940. top:346px;
  2941. width:29px;
  2942. height:17px;
  2943. display:flex;
  2944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2945. font-weight:400;
  2946. font-style:normal;
  2947. font-size:10px;
  2948. color:#FFFFFF;
  2949. }
  2950. #u134430 .text {
  2951. position:absolute;
  2952. align-self:center;
  2953. padding:5px 0px 5px 0px;
  2954. box-sizing:border-box;
  2955. width:100%;
  2956. }
  2957. #u134430_text {
  2958. border-width:0px;
  2959. word-wrap:break-word;
  2960. text-transform:none;
  2961. }
  2962. #u134431_div {
  2963. border-width:0px;
  2964. position:absolute;
  2965. left:0px;
  2966. top:0px;
  2967. width:29px;
  2968. height:17px;
  2969. background:inherit;
  2970. background-color:rgba(0, 191, 191, 1);
  2971. border:none;
  2972. border-radius:4px;
  2973. -moz-box-shadow:none;
  2974. -webkit-box-shadow:none;
  2975. box-shadow:none;
  2976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2977. font-weight:400;
  2978. font-style:normal;
  2979. font-size:10px;
  2980. color:#FFFFFF;
  2981. }
  2982. #u134431 {
  2983. border-width:0px;
  2984. position:absolute;
  2985. left:4806px;
  2986. top:115px;
  2987. width:29px;
  2988. height:17px;
  2989. display:flex;
  2990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2991. font-weight:400;
  2992. font-style:normal;
  2993. font-size:10px;
  2994. color:#FFFFFF;
  2995. }
  2996. #u134431 .text {
  2997. position:absolute;
  2998. align-self:center;
  2999. padding:5px 0px 5px 0px;
  3000. box-sizing:border-box;
  3001. width:100%;
  3002. }
  3003. #u134431_text {
  3004. border-width:0px;
  3005. word-wrap:break-word;
  3006. text-transform:none;
  3007. }
  3008. #u134432_div {
  3009. border-width:0px;
  3010. position:absolute;
  3011. left:0px;
  3012. top:0px;
  3013. width:29px;
  3014. height:17px;
  3015. background:inherit;
  3016. background-color:rgba(0, 191, 191, 1);
  3017. border:none;
  3018. border-radius:4px;
  3019. -moz-box-shadow:none;
  3020. -webkit-box-shadow:none;
  3021. box-shadow:none;
  3022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3023. font-weight:400;
  3024. font-style:normal;
  3025. font-size:10px;
  3026. color:#FFFFFF;
  3027. }
  3028. #u134432 {
  3029. border-width:0px;
  3030. position:absolute;
  3031. left:4806px;
  3032. top:349px;
  3033. width:29px;
  3034. height:17px;
  3035. display:flex;
  3036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3037. font-weight:400;
  3038. font-style:normal;
  3039. font-size:10px;
  3040. color:#FFFFFF;
  3041. }
  3042. #u134432 .text {
  3043. position:absolute;
  3044. align-self:center;
  3045. padding:5px 0px 5px 0px;
  3046. box-sizing:border-box;
  3047. width:100%;
  3048. }
  3049. #u134432_text {
  3050. border-width:0px;
  3051. word-wrap:break-word;
  3052. text-transform:none;
  3053. }
  3054. #u134433_div {
  3055. border-width:0px;
  3056. position:absolute;
  3057. left:0px;
  3058. top:0px;
  3059. width:29px;
  3060. height:17px;
  3061. background:inherit;
  3062. background-color:rgba(0, 191, 191, 1);
  3063. border:none;
  3064. border-radius:4px;
  3065. -moz-box-shadow:none;
  3066. -webkit-box-shadow:none;
  3067. box-shadow:none;
  3068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3069. font-weight:400;
  3070. font-style:normal;
  3071. font-size:10px;
  3072. color:#FFFFFF;
  3073. }
  3074. #u134433 {
  3075. border-width:0px;
  3076. position:absolute;
  3077. left:5136px;
  3078. top:346px;
  3079. width:29px;
  3080. height:17px;
  3081. display:flex;
  3082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3083. font-weight:400;
  3084. font-style:normal;
  3085. font-size:10px;
  3086. color:#FFFFFF;
  3087. }
  3088. #u134433 .text {
  3089. position:absolute;
  3090. align-self:center;
  3091. padding:5px 0px 5px 0px;
  3092. box-sizing:border-box;
  3093. width:100%;
  3094. }
  3095. #u134433_text {
  3096. border-width:0px;
  3097. word-wrap:break-word;
  3098. text-transform:none;
  3099. }
  3100. #u134434_div {
  3101. border-width:0px;
  3102. position:absolute;
  3103. left:0px;
  3104. top:0px;
  3105. width:29px;
  3106. height:17px;
  3107. background:inherit;
  3108. background-color:rgba(0, 191, 191, 1);
  3109. border:none;
  3110. border-radius:4px;
  3111. -moz-box-shadow:none;
  3112. -webkit-box-shadow:none;
  3113. box-shadow:none;
  3114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3115. font-weight:400;
  3116. font-style:normal;
  3117. font-size:10px;
  3118. color:#FFFFFF;
  3119. }
  3120. #u134434 {
  3121. border-width:0px;
  3122. position:absolute;
  3123. left:4806px;
  3124. top:602px;
  3125. width:29px;
  3126. height:17px;
  3127. display:flex;
  3128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3129. font-weight:400;
  3130. font-style:normal;
  3131. font-size:10px;
  3132. color:#FFFFFF;
  3133. }
  3134. #u134434 .text {
  3135. position:absolute;
  3136. align-self:center;
  3137. padding:5px 0px 5px 0px;
  3138. box-sizing:border-box;
  3139. width:100%;
  3140. }
  3141. #u134434_text {
  3142. border-width:0px;
  3143. word-wrap:break-word;
  3144. text-transform:none;
  3145. }
  3146. #u134435_div {
  3147. border-width:0px;
  3148. position:absolute;
  3149. left:0px;
  3150. top:0px;
  3151. width:29px;
  3152. height:17px;
  3153. background:inherit;
  3154. background-color:rgba(0, 191, 191, 1);
  3155. border:none;
  3156. border-radius:4px;
  3157. -moz-box-shadow:none;
  3158. -webkit-box-shadow:none;
  3159. box-shadow:none;
  3160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3161. font-weight:400;
  3162. font-style:normal;
  3163. font-size:10px;
  3164. color:#FFFFFF;
  3165. }
  3166. #u134435 {
  3167. border-width:0px;
  3168. position:absolute;
  3169. left:5136px;
  3170. top:598px;
  3171. width:29px;
  3172. height:17px;
  3173. display:flex;
  3174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3175. font-weight:400;
  3176. font-style:normal;
  3177. font-size:10px;
  3178. color:#FFFFFF;
  3179. }
  3180. #u134435 .text {
  3181. position:absolute;
  3182. align-self:center;
  3183. padding:5px 0px 5px 0px;
  3184. box-sizing:border-box;
  3185. width:100%;
  3186. }
  3187. #u134435_text {
  3188. border-width:0px;
  3189. word-wrap:break-word;
  3190. text-transform:none;
  3191. }
  3192. #u134436_div {
  3193. border-width:0px;
  3194. position:absolute;
  3195. left:0px;
  3196. top:0px;
  3197. width:29px;
  3198. height:17px;
  3199. background:inherit;
  3200. background-color:rgba(0, 191, 191, 1);
  3201. border:none;
  3202. border-radius:4px;
  3203. -moz-box-shadow:none;
  3204. -webkit-box-shadow:none;
  3205. box-shadow:none;
  3206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3207. font-weight:400;
  3208. font-style:normal;
  3209. font-size:10px;
  3210. color:#FFFFFF;
  3211. }
  3212. #u134436 {
  3213. border-width:0px;
  3214. position:absolute;
  3215. left:4475px;
  3216. top:602px;
  3217. width:29px;
  3218. height:17px;
  3219. display:flex;
  3220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3221. font-weight:400;
  3222. font-style:normal;
  3223. font-size:10px;
  3224. color:#FFFFFF;
  3225. }
  3226. #u134436 .text {
  3227. position:absolute;
  3228. align-self:center;
  3229. padding:5px 0px 5px 0px;
  3230. box-sizing:border-box;
  3231. width:100%;
  3232. }
  3233. #u134436_text {
  3234. border-width:0px;
  3235. word-wrap:break-word;
  3236. text-transform:none;
  3237. }
  3238. #u134437_div {
  3239. border-width:0px;
  3240. position:absolute;
  3241. left:0px;
  3242. top:0px;
  3243. width:29px;
  3244. height:17px;
  3245. background:inherit;
  3246. background-color:rgba(0, 191, 191, 1);
  3247. border:none;
  3248. border-radius:4px;
  3249. -moz-box-shadow:none;
  3250. -webkit-box-shadow:none;
  3251. box-shadow:none;
  3252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3253. font-weight:400;
  3254. font-style:normal;
  3255. font-size:10px;
  3256. color:#FFFFFF;
  3257. }
  3258. #u134437 {
  3259. border-width:0px;
  3260. position:absolute;
  3261. left:4806px;
  3262. top:848px;
  3263. width:29px;
  3264. height:17px;
  3265. display:flex;
  3266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3267. font-weight:400;
  3268. font-style:normal;
  3269. font-size:10px;
  3270. color:#FFFFFF;
  3271. }
  3272. #u134437 .text {
  3273. position:absolute;
  3274. align-self:center;
  3275. padding:5px 0px 5px 0px;
  3276. box-sizing:border-box;
  3277. width:100%;
  3278. }
  3279. #u134437_text {
  3280. border-width:0px;
  3281. word-wrap:break-word;
  3282. text-transform:none;
  3283. }
  3284. #u134438_div {
  3285. border-width:0px;
  3286. position:absolute;
  3287. left:0px;
  3288. top:0px;
  3289. width:29px;
  3290. height:17px;
  3291. background:inherit;
  3292. background-color:rgba(0, 191, 191, 1);
  3293. border:none;
  3294. border-radius:4px;
  3295. -moz-box-shadow:none;
  3296. -webkit-box-shadow:none;
  3297. box-shadow:none;
  3298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3299. font-weight:400;
  3300. font-style:normal;
  3301. font-size:10px;
  3302. color:#FFFFFF;
  3303. }
  3304. #u134438 {
  3305. border-width:0px;
  3306. position:absolute;
  3307. left:5136px;
  3308. top:845px;
  3309. width:29px;
  3310. height:17px;
  3311. display:flex;
  3312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3313. font-weight:400;
  3314. font-style:normal;
  3315. font-size:10px;
  3316. color:#FFFFFF;
  3317. }
  3318. #u134438 .text {
  3319. position:absolute;
  3320. align-self:center;
  3321. padding:5px 0px 5px 0px;
  3322. box-sizing:border-box;
  3323. width:100%;
  3324. }
  3325. #u134438_text {
  3326. border-width:0px;
  3327. word-wrap:break-word;
  3328. text-transform:none;
  3329. }
  3330. #u134439_div {
  3331. border-width:0px;
  3332. position:absolute;
  3333. left:0px;
  3334. top:0px;
  3335. width:29px;
  3336. height:17px;
  3337. background:inherit;
  3338. background-color:rgba(0, 191, 191, 1);
  3339. border:none;
  3340. border-radius:4px;
  3341. -moz-box-shadow:none;
  3342. -webkit-box-shadow:none;
  3343. box-shadow:none;
  3344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3345. font-weight:400;
  3346. font-style:normal;
  3347. font-size:10px;
  3348. color:#FFFFFF;
  3349. }
  3350. #u134439 {
  3351. border-width:0px;
  3352. position:absolute;
  3353. left:4475px;
  3354. top:848px;
  3355. width:29px;
  3356. height:17px;
  3357. display:flex;
  3358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3359. font-weight:400;
  3360. font-style:normal;
  3361. font-size:10px;
  3362. color:#FFFFFF;
  3363. }
  3364. #u134439 .text {
  3365. position:absolute;
  3366. align-self:center;
  3367. padding:5px 0px 5px 0px;
  3368. box-sizing:border-box;
  3369. width:100%;
  3370. }
  3371. #u134439_text {
  3372. border-width:0px;
  3373. word-wrap:break-word;
  3374. text-transform:none;
  3375. }
  3376. #u134440_div {
  3377. border-width:0px;
  3378. position:absolute;
  3379. left:0px;
  3380. top:0px;
  3381. width:191px;
  3382. height:435px;
  3383. background:inherit;
  3384. background-color:rgba(242, 242, 242, 1);
  3385. border:none;
  3386. border-radius:7px;
  3387. -moz-box-shadow:none;
  3388. -webkit-box-shadow:none;
  3389. box-shadow:none;
  3390. }
  3391. #u134440 {
  3392. border-width:0px;
  3393. position:absolute;
  3394. left:4244px;
  3395. top:321px;
  3396. width:191px;
  3397. height:435px;
  3398. display:flex;
  3399. }
  3400. #u134440 .text {
  3401. position:absolute;
  3402. align-self:center;
  3403. padding:2px 2px 2px 2px;
  3404. box-sizing:border-box;
  3405. width:100%;
  3406. }
  3407. #u134440_text {
  3408. border-width:0px;
  3409. word-wrap:break-word;
  3410. text-transform:none;
  3411. visibility:hidden;
  3412. }
  3413. #u134441_div {
  3414. border-width:0px;
  3415. position:absolute;
  3416. left:0px;
  3417. top:0px;
  3418. width:57px;
  3419. height:30px;
  3420. background:inherit;
  3421. background-color:rgba(255, 255, 255, 0);
  3422. border:none;
  3423. border-radius:0px;
  3424. -moz-box-shadow:none;
  3425. -webkit-box-shadow:none;
  3426. box-shadow:none;
  3427. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3428. font-weight:500;
  3429. font-style:normal;
  3430. font-size:14px;
  3431. color:#000000;
  3432. line-height:30px;
  3433. }
  3434. #u134441 {
  3435. border-width:0px;
  3436. position:absolute;
  3437. left:4244px;
  3438. top:99px;
  3439. width:57px;
  3440. height:30px;
  3441. display:flex;
  3442. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3443. font-weight:500;
  3444. font-style:normal;
  3445. font-size:14px;
  3446. color:#000000;
  3447. line-height:30px;
  3448. }
  3449. #u134441 .text {
  3450. position:absolute;
  3451. align-self:flex-start;
  3452. padding:0px 0px 0px 0px;
  3453. box-sizing:border-box;
  3454. width:100%;
  3455. }
  3456. #u134441_text {
  3457. border-width:0px;
  3458. white-space:nowrap;
  3459. text-transform:none;
  3460. }
  3461. #u134442 {
  3462. border-width:0px;
  3463. position:absolute;
  3464. left:0px;
  3465. top:0px;
  3466. width:0px;
  3467. height:0px;
  3468. }
  3469. #u134443_img {
  3470. border-width:0px;
  3471. position:absolute;
  3472. left:0px;
  3473. top:0px;
  3474. width:18px;
  3475. height:18px;
  3476. }
  3477. #u134443 {
  3478. border-width:0px;
  3479. position:absolute;
  3480. left:5443px;
  3481. top:67px;
  3482. width:18px;
  3483. height:18px;
  3484. display:flex;
  3485. }
  3486. #u134443 .text {
  3487. position:absolute;
  3488. align-self:center;
  3489. padding:2px 2px 2px 2px;
  3490. box-sizing:border-box;
  3491. width:100%;
  3492. }
  3493. #u134443_text {
  3494. border-width:0px;
  3495. word-wrap:break-word;
  3496. text-transform:none;
  3497. visibility:hidden;
  3498. }
  3499. #u134444_img {
  3500. border-width:0px;
  3501. position:absolute;
  3502. left:0px;
  3503. top:0px;
  3504. width:2px;
  3505. height:15px;
  3506. }
  3507. #u134444 {
  3508. border-width:0px;
  3509. position:absolute;
  3510. left:5428px;
  3511. top:69px;
  3512. width:1px;
  3513. height:14px;
  3514. display:flex;
  3515. }
  3516. #u134444 .text {
  3517. position:absolute;
  3518. align-self:center;
  3519. padding:2px 2px 2px 2px;
  3520. box-sizing:border-box;
  3521. width:100%;
  3522. }
  3523. #u134444_text {
  3524. border-width:0px;
  3525. word-wrap:break-word;
  3526. text-transform:none;
  3527. visibility:hidden;
  3528. }
  3529. #u134445 {
  3530. border-width:0px;
  3531. position:absolute;
  3532. left:0px;
  3533. top:0px;
  3534. width:0px;
  3535. height:0px;
  3536. }
  3537. #u134446_img {
  3538. border-width:0px;
  3539. position:absolute;
  3540. left:0px;
  3541. top:0px;
  3542. width:9px;
  3543. height:9px;
  3544. }
  3545. #u134446 {
  3546. border-width:0px;
  3547. position:absolute;
  3548. left:5305px;
  3549. top:66px;
  3550. width:9px;
  3551. height:9px;
  3552. display:flex;
  3553. }
  3554. #u134446 .text {
  3555. position:absolute;
  3556. align-self:center;
  3557. padding:2px 2px 2px 2px;
  3558. box-sizing:border-box;
  3559. width:100%;
  3560. }
  3561. #u134446_text {
  3562. border-width:0px;
  3563. word-wrap:break-word;
  3564. text-transform:none;
  3565. visibility:hidden;
  3566. }
  3567. #u134447_img {
  3568. border-width:0px;
  3569. position:absolute;
  3570. left:0px;
  3571. top:0px;
  3572. width:9px;
  3573. height:9px;
  3574. }
  3575. #u134447 {
  3576. border-width:0px;
  3577. position:absolute;
  3578. left:5317px;
  3579. top:66px;
  3580. width:9px;
  3581. height:9px;
  3582. display:flex;
  3583. }
  3584. #u134447 .text {
  3585. position:absolute;
  3586. align-self:center;
  3587. padding:2px 2px 2px 2px;
  3588. box-sizing:border-box;
  3589. width:100%;
  3590. }
  3591. #u134447_text {
  3592. border-width:0px;
  3593. word-wrap:break-word;
  3594. text-transform:none;
  3595. visibility:hidden;
  3596. }
  3597. #u134448_img {
  3598. border-width:0px;
  3599. position:absolute;
  3600. left:0px;
  3601. top:0px;
  3602. width:9px;
  3603. height:9px;
  3604. }
  3605. #u134448 {
  3606. border-width:0px;
  3607. position:absolute;
  3608. left:5305px;
  3609. top:78px;
  3610. width:9px;
  3611. height:9px;
  3612. display:flex;
  3613. }
  3614. #u134448 .text {
  3615. position:absolute;
  3616. align-self:center;
  3617. padding:2px 2px 2px 2px;
  3618. box-sizing:border-box;
  3619. width:100%;
  3620. }
  3621. #u134448_text {
  3622. border-width:0px;
  3623. word-wrap:break-word;
  3624. text-transform:none;
  3625. visibility:hidden;
  3626. }
  3627. #u134449_img {
  3628. border-width:0px;
  3629. position:absolute;
  3630. left:0px;
  3631. top:0px;
  3632. width:9px;
  3633. height:9px;
  3634. }
  3635. #u134449 {
  3636. border-width:0px;
  3637. position:absolute;
  3638. left:5317px;
  3639. top:78px;
  3640. width:9px;
  3641. height:9px;
  3642. display:flex;
  3643. }
  3644. #u134449 .text {
  3645. position:absolute;
  3646. align-self:center;
  3647. padding:2px 2px 2px 2px;
  3648. box-sizing:border-box;
  3649. width:100%;
  3650. }
  3651. #u134449_text {
  3652. border-width:0px;
  3653. word-wrap:break-word;
  3654. text-transform:none;
  3655. visibility:hidden;
  3656. }
  3657. #u134450 {
  3658. border-width:0px;
  3659. position:absolute;
  3660. left:0px;
  3661. top:0px;
  3662. width:0px;
  3663. height:0px;
  3664. }
  3665. #u134451_img {
  3666. border-width:0px;
  3667. position:absolute;
  3668. left:0px;
  3669. top:0px;
  3670. width:6px;
  3671. height:6px;
  3672. }
  3673. #u134451 {
  3674. border-width:0px;
  3675. position:absolute;
  3676. left:5265px;
  3677. top:66px;
  3678. width:6px;
  3679. height:6px;
  3680. display:flex;
  3681. }
  3682. #u134451 .text {
  3683. position:absolute;
  3684. align-self:center;
  3685. padding:2px 2px 2px 2px;
  3686. box-sizing:border-box;
  3687. width:100%;
  3688. }
  3689. #u134451_text {
  3690. border-width:0px;
  3691. word-wrap:break-word;
  3692. text-transform:none;
  3693. visibility:hidden;
  3694. }
  3695. #u134452_img {
  3696. border-width:0px;
  3697. position:absolute;
  3698. left:0px;
  3699. top:0px;
  3700. width:6px;
  3701. height:6px;
  3702. }
  3703. #u134452 {
  3704. border-width:0px;
  3705. position:absolute;
  3706. left:5272px;
  3707. top:66px;
  3708. width:6px;
  3709. height:6px;
  3710. display:flex;
  3711. }
  3712. #u134452 .text {
  3713. position:absolute;
  3714. align-self:center;
  3715. padding:2px 2px 2px 2px;
  3716. box-sizing:border-box;
  3717. width:100%;
  3718. }
  3719. #u134452_text {
  3720. border-width:0px;
  3721. word-wrap:break-word;
  3722. text-transform:none;
  3723. visibility:hidden;
  3724. }
  3725. #u134453_img {
  3726. border-width:0px;
  3727. position:absolute;
  3728. left:0px;
  3729. top:0px;
  3730. width:6px;
  3731. height:6px;
  3732. }
  3733. #u134453 {
  3734. border-width:0px;
  3735. position:absolute;
  3736. left:5279px;
  3737. top:66px;
  3738. width:6px;
  3739. height:6px;
  3740. display:flex;
  3741. }
  3742. #u134453 .text {
  3743. position:absolute;
  3744. align-self:center;
  3745. padding:2px 2px 2px 2px;
  3746. box-sizing:border-box;
  3747. width:100%;
  3748. }
  3749. #u134453_text {
  3750. border-width:0px;
  3751. word-wrap:break-word;
  3752. text-transform:none;
  3753. visibility:hidden;
  3754. }
  3755. #u134454_img {
  3756. border-width:0px;
  3757. position:absolute;
  3758. left:0px;
  3759. top:0px;
  3760. width:6px;
  3761. height:6px;
  3762. }
  3763. #u134454 {
  3764. border-width:0px;
  3765. position:absolute;
  3766. left:5265px;
  3767. top:73px;
  3768. width:6px;
  3769. height:6px;
  3770. display:flex;
  3771. }
  3772. #u134454 .text {
  3773. position:absolute;
  3774. align-self:center;
  3775. padding:2px 2px 2px 2px;
  3776. box-sizing:border-box;
  3777. width:100%;
  3778. }
  3779. #u134454_text {
  3780. border-width:0px;
  3781. word-wrap:break-word;
  3782. text-transform:none;
  3783. visibility:hidden;
  3784. }
  3785. #u134455_img {
  3786. border-width:0px;
  3787. position:absolute;
  3788. left:0px;
  3789. top:0px;
  3790. width:6px;
  3791. height:6px;
  3792. }
  3793. #u134455 {
  3794. border-width:0px;
  3795. position:absolute;
  3796. left:5272px;
  3797. top:73px;
  3798. width:6px;
  3799. height:6px;
  3800. display:flex;
  3801. }
  3802. #u134455 .text {
  3803. position:absolute;
  3804. align-self:center;
  3805. padding:2px 2px 2px 2px;
  3806. box-sizing:border-box;
  3807. width:100%;
  3808. }
  3809. #u134455_text {
  3810. border-width:0px;
  3811. word-wrap:break-word;
  3812. text-transform:none;
  3813. visibility:hidden;
  3814. }
  3815. #u134456_img {
  3816. border-width:0px;
  3817. position:absolute;
  3818. left:0px;
  3819. top:0px;
  3820. width:6px;
  3821. height:6px;
  3822. }
  3823. #u134456 {
  3824. border-width:0px;
  3825. position:absolute;
  3826. left:5279px;
  3827. top:73px;
  3828. width:6px;
  3829. height:6px;
  3830. display:flex;
  3831. }
  3832. #u134456 .text {
  3833. position:absolute;
  3834. align-self:center;
  3835. padding:2px 2px 2px 2px;
  3836. box-sizing:border-box;
  3837. width:100%;
  3838. }
  3839. #u134456_text {
  3840. border-width:0px;
  3841. word-wrap:break-word;
  3842. text-transform:none;
  3843. visibility:hidden;
  3844. }
  3845. #u134457_img {
  3846. border-width:0px;
  3847. position:absolute;
  3848. left:0px;
  3849. top:0px;
  3850. width:6px;
  3851. height:6px;
  3852. }
  3853. #u134457 {
  3854. border-width:0px;
  3855. position:absolute;
  3856. left:5265px;
  3857. top:80px;
  3858. width:6px;
  3859. height:6px;
  3860. display:flex;
  3861. }
  3862. #u134457 .text {
  3863. position:absolute;
  3864. align-self:center;
  3865. padding:2px 2px 2px 2px;
  3866. box-sizing:border-box;
  3867. width:100%;
  3868. }
  3869. #u134457_text {
  3870. border-width:0px;
  3871. word-wrap:break-word;
  3872. text-transform:none;
  3873. visibility:hidden;
  3874. }
  3875. #u134458_img {
  3876. border-width:0px;
  3877. position:absolute;
  3878. left:0px;
  3879. top:0px;
  3880. width:6px;
  3881. height:6px;
  3882. }
  3883. #u134458 {
  3884. border-width:0px;
  3885. position:absolute;
  3886. left:5272px;
  3887. top:80px;
  3888. width:6px;
  3889. height:6px;
  3890. display:flex;
  3891. }
  3892. #u134458 .text {
  3893. position:absolute;
  3894. align-self:center;
  3895. padding:2px 2px 2px 2px;
  3896. box-sizing:border-box;
  3897. width:100%;
  3898. }
  3899. #u134458_text {
  3900. border-width:0px;
  3901. word-wrap:break-word;
  3902. text-transform:none;
  3903. visibility:hidden;
  3904. }
  3905. #u134459_img {
  3906. border-width:0px;
  3907. position:absolute;
  3908. left:0px;
  3909. top:0px;
  3910. width:6px;
  3911. height:6px;
  3912. }
  3913. #u134459 {
  3914. border-width:0px;
  3915. position:absolute;
  3916. left:5279px;
  3917. top:80px;
  3918. width:6px;
  3919. height:6px;
  3920. display:flex;
  3921. }
  3922. #u134459 .text {
  3923. position:absolute;
  3924. align-self:center;
  3925. padding:2px 2px 2px 2px;
  3926. box-sizing:border-box;
  3927. width:100%;
  3928. }
  3929. #u134459_text {
  3930. border-width:0px;
  3931. word-wrap:break-word;
  3932. text-transform:none;
  3933. visibility:hidden;
  3934. }
  3935. #u134460 {
  3936. border-width:0px;
  3937. position:absolute;
  3938. left:0px;
  3939. top:0px;
  3940. width:0px;
  3941. height:0px;
  3942. }
  3943. #u134461_img {
  3944. border-width:0px;
  3945. position:absolute;
  3946. left:0px;
  3947. top:0px;
  3948. width:4px;
  3949. height:4px;
  3950. }
  3951. #u134461 {
  3952. border-width:0px;
  3953. position:absolute;
  3954. left:5225px;
  3955. top:67px;
  3956. width:4px;
  3957. height:4px;
  3958. display:flex;
  3959. }
  3960. #u134461 .text {
  3961. position:absolute;
  3962. align-self:center;
  3963. padding:2px 2px 2px 2px;
  3964. box-sizing:border-box;
  3965. width:100%;
  3966. }
  3967. #u134461_text {
  3968. border-width:0px;
  3969. word-wrap:break-word;
  3970. text-transform:none;
  3971. visibility:hidden;
  3972. }
  3973. #u134462_img {
  3974. border-width:0px;
  3975. position:absolute;
  3976. left:0px;
  3977. top:0px;
  3978. width:4px;
  3979. height:4px;
  3980. }
  3981. #u134462 {
  3982. border-width:0px;
  3983. position:absolute;
  3984. left:5230px;
  3985. top:67px;
  3986. width:4px;
  3987. height:4px;
  3988. display:flex;
  3989. }
  3990. #u134462 .text {
  3991. position:absolute;
  3992. align-self:center;
  3993. padding:2px 2px 2px 2px;
  3994. box-sizing:border-box;
  3995. width:100%;
  3996. }
  3997. #u134462_text {
  3998. border-width:0px;
  3999. word-wrap:break-word;
  4000. text-transform:none;
  4001. visibility:hidden;
  4002. }
  4003. #u134463_img {
  4004. border-width:0px;
  4005. position:absolute;
  4006. left:0px;
  4007. top:0px;
  4008. width:4px;
  4009. height:4px;
  4010. }
  4011. #u134463 {
  4012. border-width:0px;
  4013. position:absolute;
  4014. left:5235px;
  4015. top:67px;
  4016. width:4px;
  4017. height:4px;
  4018. display:flex;
  4019. }
  4020. #u134463 .text {
  4021. position:absolute;
  4022. align-self:center;
  4023. padding:2px 2px 2px 2px;
  4024. box-sizing:border-box;
  4025. width:100%;
  4026. }
  4027. #u134463_text {
  4028. border-width:0px;
  4029. word-wrap:break-word;
  4030. text-transform:none;
  4031. visibility:hidden;
  4032. }
  4033. #u134464_img {
  4034. border-width:0px;
  4035. position:absolute;
  4036. left:0px;
  4037. top:0px;
  4038. width:4px;
  4039. height:4px;
  4040. }
  4041. #u134464 {
  4042. border-width:0px;
  4043. position:absolute;
  4044. left:5240px;
  4045. top:67px;
  4046. width:4px;
  4047. height:4px;
  4048. display:flex;
  4049. }
  4050. #u134464 .text {
  4051. position:absolute;
  4052. align-self:center;
  4053. padding:2px 2px 2px 2px;
  4054. box-sizing:border-box;
  4055. width:100%;
  4056. }
  4057. #u134464_text {
  4058. border-width:0px;
  4059. word-wrap:break-word;
  4060. text-transform:none;
  4061. visibility:hidden;
  4062. }
  4063. #u134465_img {
  4064. border-width:0px;
  4065. position:absolute;
  4066. left:0px;
  4067. top:0px;
  4068. width:4px;
  4069. height:4px;
  4070. }
  4071. #u134465 {
  4072. border-width:0px;
  4073. position:absolute;
  4074. left:5225px;
  4075. top:72px;
  4076. width:4px;
  4077. height:4px;
  4078. display:flex;
  4079. }
  4080. #u134465 .text {
  4081. position:absolute;
  4082. align-self:center;
  4083. padding:2px 2px 2px 2px;
  4084. box-sizing:border-box;
  4085. width:100%;
  4086. }
  4087. #u134465_text {
  4088. border-width:0px;
  4089. word-wrap:break-word;
  4090. text-transform:none;
  4091. visibility:hidden;
  4092. }
  4093. #u134466_img {
  4094. border-width:0px;
  4095. position:absolute;
  4096. left:0px;
  4097. top:0px;
  4098. width:4px;
  4099. height:4px;
  4100. }
  4101. #u134466 {
  4102. border-width:0px;
  4103. position:absolute;
  4104. left:5230px;
  4105. top:72px;
  4106. width:4px;
  4107. height:4px;
  4108. display:flex;
  4109. }
  4110. #u134466 .text {
  4111. position:absolute;
  4112. align-self:center;
  4113. padding:2px 2px 2px 2px;
  4114. box-sizing:border-box;
  4115. width:100%;
  4116. }
  4117. #u134466_text {
  4118. border-width:0px;
  4119. word-wrap:break-word;
  4120. text-transform:none;
  4121. visibility:hidden;
  4122. }
  4123. #u134467_img {
  4124. border-width:0px;
  4125. position:absolute;
  4126. left:0px;
  4127. top:0px;
  4128. width:4px;
  4129. height:4px;
  4130. }
  4131. #u134467 {
  4132. border-width:0px;
  4133. position:absolute;
  4134. left:5235px;
  4135. top:72px;
  4136. width:4px;
  4137. height:4px;
  4138. display:flex;
  4139. }
  4140. #u134467 .text {
  4141. position:absolute;
  4142. align-self:center;
  4143. padding:2px 2px 2px 2px;
  4144. box-sizing:border-box;
  4145. width:100%;
  4146. }
  4147. #u134467_text {
  4148. border-width:0px;
  4149. word-wrap:break-word;
  4150. text-transform:none;
  4151. visibility:hidden;
  4152. }
  4153. #u134468_img {
  4154. border-width:0px;
  4155. position:absolute;
  4156. left:0px;
  4157. top:0px;
  4158. width:4px;
  4159. height:4px;
  4160. }
  4161. #u134468 {
  4162. border-width:0px;
  4163. position:absolute;
  4164. left:5240px;
  4165. top:72px;
  4166. width:4px;
  4167. height:4px;
  4168. display:flex;
  4169. }
  4170. #u134468 .text {
  4171. position:absolute;
  4172. align-self:center;
  4173. padding:2px 2px 2px 2px;
  4174. box-sizing:border-box;
  4175. width:100%;
  4176. }
  4177. #u134468_text {
  4178. border-width:0px;
  4179. word-wrap:break-word;
  4180. text-transform:none;
  4181. visibility:hidden;
  4182. }
  4183. #u134469_img {
  4184. border-width:0px;
  4185. position:absolute;
  4186. left:0px;
  4187. top:0px;
  4188. width:4px;
  4189. height:4px;
  4190. }
  4191. #u134469 {
  4192. border-width:0px;
  4193. position:absolute;
  4194. left:5225px;
  4195. top:77px;
  4196. width:4px;
  4197. height:4px;
  4198. display:flex;
  4199. }
  4200. #u134469 .text {
  4201. position:absolute;
  4202. align-self:center;
  4203. padding:2px 2px 2px 2px;
  4204. box-sizing:border-box;
  4205. width:100%;
  4206. }
  4207. #u134469_text {
  4208. border-width:0px;
  4209. word-wrap:break-word;
  4210. text-transform:none;
  4211. visibility:hidden;
  4212. }
  4213. #u134470_img {
  4214. border-width:0px;
  4215. position:absolute;
  4216. left:0px;
  4217. top:0px;
  4218. width:4px;
  4219. height:4px;
  4220. }
  4221. #u134470 {
  4222. border-width:0px;
  4223. position:absolute;
  4224. left:5230px;
  4225. top:77px;
  4226. width:4px;
  4227. height:4px;
  4228. display:flex;
  4229. }
  4230. #u134470 .text {
  4231. position:absolute;
  4232. align-self:center;
  4233. padding:2px 2px 2px 2px;
  4234. box-sizing:border-box;
  4235. width:100%;
  4236. }
  4237. #u134470_text {
  4238. border-width:0px;
  4239. word-wrap:break-word;
  4240. text-transform:none;
  4241. visibility:hidden;
  4242. }
  4243. #u134471_img {
  4244. border-width:0px;
  4245. position:absolute;
  4246. left:0px;
  4247. top:0px;
  4248. width:4px;
  4249. height:4px;
  4250. }
  4251. #u134471 {
  4252. border-width:0px;
  4253. position:absolute;
  4254. left:5235px;
  4255. top:77px;
  4256. width:4px;
  4257. height:4px;
  4258. display:flex;
  4259. }
  4260. #u134471 .text {
  4261. position:absolute;
  4262. align-self:center;
  4263. padding:2px 2px 2px 2px;
  4264. box-sizing:border-box;
  4265. width:100%;
  4266. }
  4267. #u134471_text {
  4268. border-width:0px;
  4269. word-wrap:break-word;
  4270. text-transform:none;
  4271. visibility:hidden;
  4272. }
  4273. #u134472_img {
  4274. border-width:0px;
  4275. position:absolute;
  4276. left:0px;
  4277. top:0px;
  4278. width:4px;
  4279. height:4px;
  4280. }
  4281. #u134472 {
  4282. border-width:0px;
  4283. position:absolute;
  4284. left:5240px;
  4285. top:77px;
  4286. width:4px;
  4287. height:4px;
  4288. display:flex;
  4289. }
  4290. #u134472 .text {
  4291. position:absolute;
  4292. align-self:center;
  4293. padding:2px 2px 2px 2px;
  4294. box-sizing:border-box;
  4295. width:100%;
  4296. }
  4297. #u134472_text {
  4298. border-width:0px;
  4299. word-wrap:break-word;
  4300. text-transform:none;
  4301. visibility:hidden;
  4302. }
  4303. #u134473_img {
  4304. border-width:0px;
  4305. position:absolute;
  4306. left:0px;
  4307. top:0px;
  4308. width:4px;
  4309. height:4px;
  4310. }
  4311. #u134473 {
  4312. border-width:0px;
  4313. position:absolute;
  4314. left:5225px;
  4315. top:82px;
  4316. width:4px;
  4317. height:4px;
  4318. display:flex;
  4319. }
  4320. #u134473 .text {
  4321. position:absolute;
  4322. align-self:center;
  4323. padding:2px 2px 2px 2px;
  4324. box-sizing:border-box;
  4325. width:100%;
  4326. }
  4327. #u134473_text {
  4328. border-width:0px;
  4329. word-wrap:break-word;
  4330. text-transform:none;
  4331. visibility:hidden;
  4332. }
  4333. #u134474_img {
  4334. border-width:0px;
  4335. position:absolute;
  4336. left:0px;
  4337. top:0px;
  4338. width:4px;
  4339. height:4px;
  4340. }
  4341. #u134474 {
  4342. border-width:0px;
  4343. position:absolute;
  4344. left:5230px;
  4345. top:82px;
  4346. width:4px;
  4347. height:4px;
  4348. display:flex;
  4349. }
  4350. #u134474 .text {
  4351. position:absolute;
  4352. align-self:center;
  4353. padding:2px 2px 2px 2px;
  4354. box-sizing:border-box;
  4355. width:100%;
  4356. }
  4357. #u134474_text {
  4358. border-width:0px;
  4359. word-wrap:break-word;
  4360. text-transform:none;
  4361. visibility:hidden;
  4362. }
  4363. #u134475_img {
  4364. border-width:0px;
  4365. position:absolute;
  4366. left:0px;
  4367. top:0px;
  4368. width:4px;
  4369. height:4px;
  4370. }
  4371. #u134475 {
  4372. border-width:0px;
  4373. position:absolute;
  4374. left:5235px;
  4375. top:82px;
  4376. width:4px;
  4377. height:4px;
  4378. display:flex;
  4379. }
  4380. #u134475 .text {
  4381. position:absolute;
  4382. align-self:center;
  4383. padding:2px 2px 2px 2px;
  4384. box-sizing:border-box;
  4385. width:100%;
  4386. }
  4387. #u134475_text {
  4388. border-width:0px;
  4389. word-wrap:break-word;
  4390. text-transform:none;
  4391. visibility:hidden;
  4392. }
  4393. #u134476_img {
  4394. border-width:0px;
  4395. position:absolute;
  4396. left:0px;
  4397. top:0px;
  4398. width:4px;
  4399. height:4px;
  4400. }
  4401. #u134476 {
  4402. border-width:0px;
  4403. position:absolute;
  4404. left:5240px;
  4405. top:82px;
  4406. width:4px;
  4407. height:4px;
  4408. display:flex;
  4409. }
  4410. #u134476 .text {
  4411. position:absolute;
  4412. align-self:center;
  4413. padding:2px 2px 2px 2px;
  4414. box-sizing:border-box;
  4415. width:100%;
  4416. }
  4417. #u134476_text {
  4418. border-width:0px;
  4419. word-wrap:break-word;
  4420. text-transform:none;
  4421. visibility:hidden;
  4422. }
  4423. #u134477_img {
  4424. border-width:0px;
  4425. position:absolute;
  4426. left:0px;
  4427. top:0px;
  4428. width:20px;
  4429. height:20px;
  4430. }
  4431. #u134477 {
  4432. border-width:0px;
  4433. position:absolute;
  4434. left:5347px;
  4435. top:66px;
  4436. width:20px;
  4437. height:20px;
  4438. display:flex;
  4439. }
  4440. #u134477 .text {
  4441. position:absolute;
  4442. align-self:center;
  4443. padding:2px 2px 2px 2px;
  4444. box-sizing:border-box;
  4445. width:100%;
  4446. }
  4447. #u134477_text {
  4448. border-width:0px;
  4449. word-wrap:break-word;
  4450. text-transform:none;
  4451. visibility:hidden;
  4452. }
  4453. #u134478_img {
  4454. border-width:0px;
  4455. position:absolute;
  4456. left:0px;
  4457. top:0px;
  4458. width:18px;
  4459. height:18px;
  4460. }
  4461. #u134478 {
  4462. border-width:0px;
  4463. position:absolute;
  4464. left:5396px;
  4465. top:67px;
  4466. width:18px;
  4467. height:18px;
  4468. display:flex;
  4469. }
  4470. #u134478 .text {
  4471. position:absolute;
  4472. align-self:center;
  4473. padding:2px 2px 2px 2px;
  4474. box-sizing:border-box;
  4475. width:100%;
  4476. }
  4477. #u134478_text {
  4478. border-width:0px;
  4479. word-wrap:break-word;
  4480. text-transform:none;
  4481. visibility:hidden;
  4482. }
  4483. #u134479_img {
  4484. border-width:0px;
  4485. position:absolute;
  4486. left:0px;
  4487. top:0px;
  4488. width:2px;
  4489. height:15px;
  4490. }
  4491. #u134479 {
  4492. border-width:0px;
  4493. position:absolute;
  4494. left:5381px;
  4495. top:69px;
  4496. width:1px;
  4497. height:14px;
  4498. display:flex;
  4499. }
  4500. #u134479 .text {
  4501. position:absolute;
  4502. align-self:center;
  4503. padding:2px 2px 2px 2px;
  4504. box-sizing:border-box;
  4505. width:100%;
  4506. }
  4507. #u134479_text {
  4508. border-width:0px;
  4509. word-wrap:break-word;
  4510. text-transform:none;
  4511. visibility:hidden;
  4512. }
  4513. #u134480_div {
  4514. border-width:0px;
  4515. position:absolute;
  4516. left:0px;
  4517. top:0px;
  4518. width:43px;
  4519. height:30px;
  4520. background:inherit;
  4521. background-color:rgba(255, 255, 255, 0);
  4522. border:none;
  4523. border-radius:0px;
  4524. -moz-box-shadow:none;
  4525. -webkit-box-shadow:none;
  4526. box-shadow:none;
  4527. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4528. font-weight:500;
  4529. font-style:normal;
  4530. font-size:14px;
  4531. color:#000000;
  4532. line-height:30px;
  4533. }
  4534. #u134480 {
  4535. border-width:0px;
  4536. position:absolute;
  4537. left:4244px;
  4538. top:291px;
  4539. width:43px;
  4540. height:30px;
  4541. display:flex;
  4542. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4543. font-weight:500;
  4544. font-style:normal;
  4545. font-size:14px;
  4546. color:#000000;
  4547. line-height:30px;
  4548. }
  4549. #u134480 .text {
  4550. position:absolute;
  4551. align-self:flex-start;
  4552. padding:0px 0px 0px 0px;
  4553. box-sizing:border-box;
  4554. width:100%;
  4555. }
  4556. #u134480_text {
  4557. border-width:0px;
  4558. white-space:nowrap;
  4559. text-transform:none;
  4560. }
  4561. #u134481 {
  4562. border-width:0px;
  4563. position:absolute;
  4564. left:0px;
  4565. top:0px;
  4566. width:0px;
  4567. height:0px;
  4568. }
  4569. #u134482_div {
  4570. border-width:0px;
  4571. position:absolute;
  4572. left:0px;
  4573. top:0px;
  4574. width:30px;
  4575. height:30px;
  4576. background:inherit;
  4577. background-color:rgba(255, 255, 255, 1);
  4578. box-sizing:border-box;
  4579. border-width:1px;
  4580. border-style:solid;
  4581. border-color:rgba(121, 121, 121, 1);
  4582. border-radius:0px;
  4583. -moz-box-shadow:none;
  4584. -webkit-box-shadow:none;
  4585. box-shadow:none;
  4586. }
  4587. #u134482 {
  4588. border-width:0px;
  4589. position:absolute;
  4590. left:4245px;
  4591. top:134px;
  4592. width:30px;
  4593. height:30px;
  4594. display:flex;
  4595. }
  4596. #u134482 .text {
  4597. position:absolute;
  4598. align-self:center;
  4599. padding:2px 2px 2px 2px;
  4600. box-sizing:border-box;
  4601. width:100%;
  4602. }
  4603. #u134482_text {
  4604. border-width:0px;
  4605. word-wrap:break-word;
  4606. text-transform:none;
  4607. visibility:hidden;
  4608. }
  4609. #u134483_img {
  4610. border-width:0px;
  4611. position:absolute;
  4612. left:0px;
  4613. top:0px;
  4614. width:19px;
  4615. height:18px;
  4616. }
  4617. #u134483 {
  4618. border-width:0px;
  4619. position:absolute;
  4620. left:4251px;
  4621. top:140px;
  4622. width:19px;
  4623. height:18px;
  4624. display:flex;
  4625. -webkit-transform:rotate(135deg);
  4626. -moz-transform:rotate(135deg);
  4627. -ms-transform:rotate(135deg);
  4628. transform:rotate(135deg);
  4629. }
  4630. #u134483 .text {
  4631. position:absolute;
  4632. align-self:center;
  4633. padding:2px 2px 2px 2px;
  4634. box-sizing:border-box;
  4635. width:100%;
  4636. }
  4637. #u134483_text {
  4638. border-width:0px;
  4639. word-wrap:break-word;
  4640. text-transform:none;
  4641. visibility:hidden;
  4642. }
  4643. #u134484 {
  4644. border-width:0px;
  4645. position:absolute;
  4646. left:0px;
  4647. top:0px;
  4648. width:0px;
  4649. height:0px;
  4650. }
  4651. #u134485_div {
  4652. border-width:0px;
  4653. position:absolute;
  4654. left:0px;
  4655. top:0px;
  4656. width:30px;
  4657. height:30px;
  4658. background:inherit;
  4659. background-color:rgba(255, 255, 255, 1);
  4660. box-sizing:border-box;
  4661. border-width:1px;
  4662. border-style:solid;
  4663. border-color:rgba(121, 121, 121, 1);
  4664. border-radius:0px;
  4665. -moz-box-shadow:none;
  4666. -webkit-box-shadow:none;
  4667. box-shadow:none;
  4668. }
  4669. #u134485 {
  4670. border-width:0px;
  4671. position:absolute;
  4672. left:4285px;
  4673. top:134px;
  4674. width:30px;
  4675. height:30px;
  4676. display:flex;
  4677. }
  4678. #u134485 .text {
  4679. position:absolute;
  4680. align-self:center;
  4681. padding:2px 2px 2px 2px;
  4682. box-sizing:border-box;
  4683. width:100%;
  4684. }
  4685. #u134485_text {
  4686. border-width:0px;
  4687. word-wrap:break-word;
  4688. text-transform:none;
  4689. visibility:hidden;
  4690. }
  4691. #u134486_img {
  4692. border-width:0px;
  4693. position:absolute;
  4694. left:0px;
  4695. top:0px;
  4696. width:19px;
  4697. height:18px;
  4698. }
  4699. #u134486 {
  4700. border-width:0px;
  4701. position:absolute;
  4702. left:4291px;
  4703. top:140px;
  4704. width:19px;
  4705. height:18px;
  4706. display:flex;
  4707. -webkit-transform:rotate(180deg);
  4708. -moz-transform:rotate(180deg);
  4709. -ms-transform:rotate(180deg);
  4710. transform:rotate(180deg);
  4711. }
  4712. #u134486 .text {
  4713. position:absolute;
  4714. align-self:center;
  4715. padding:2px 2px 2px 2px;
  4716. box-sizing:border-box;
  4717. width:100%;
  4718. }
  4719. #u134486_text {
  4720. border-width:0px;
  4721. word-wrap:break-word;
  4722. text-transform:none;
  4723. visibility:hidden;
  4724. }
  4725. #u134487 {
  4726. border-width:0px;
  4727. position:absolute;
  4728. left:0px;
  4729. top:0px;
  4730. width:0px;
  4731. height:0px;
  4732. }
  4733. #u134488_div {
  4734. border-width:0px;
  4735. position:absolute;
  4736. left:0px;
  4737. top:0px;
  4738. width:30px;
  4739. height:30px;
  4740. background:inherit;
  4741. background-color:rgba(255, 255, 255, 1);
  4742. box-sizing:border-box;
  4743. border-width:1px;
  4744. border-style:solid;
  4745. border-color:rgba(121, 121, 121, 1);
  4746. border-radius:0px;
  4747. -moz-box-shadow:none;
  4748. -webkit-box-shadow:none;
  4749. box-shadow:none;
  4750. }
  4751. #u134488 {
  4752. border-width:0px;
  4753. position:absolute;
  4754. left:4325px;
  4755. top:134px;
  4756. width:30px;
  4757. height:30px;
  4758. display:flex;
  4759. }
  4760. #u134488 .text {
  4761. position:absolute;
  4762. align-self:center;
  4763. padding:2px 2px 2px 2px;
  4764. box-sizing:border-box;
  4765. width:100%;
  4766. }
  4767. #u134488_text {
  4768. border-width:0px;
  4769. word-wrap:break-word;
  4770. text-transform:none;
  4771. visibility:hidden;
  4772. }
  4773. #u134489_img {
  4774. border-width:0px;
  4775. position:absolute;
  4776. left:0px;
  4777. top:0px;
  4778. width:19px;
  4779. height:18px;
  4780. }
  4781. #u134489 {
  4782. border-width:0px;
  4783. position:absolute;
  4784. left:4331px;
  4785. top:140px;
  4786. width:19px;
  4787. height:18px;
  4788. display:flex;
  4789. -webkit-transform:rotate(225deg);
  4790. -moz-transform:rotate(225deg);
  4791. -ms-transform:rotate(225deg);
  4792. transform:rotate(225deg);
  4793. }
  4794. #u134489 .text {
  4795. position:absolute;
  4796. align-self:center;
  4797. padding:2px 2px 2px 2px;
  4798. box-sizing:border-box;
  4799. width:100%;
  4800. }
  4801. #u134489_text {
  4802. border-width:0px;
  4803. word-wrap:break-word;
  4804. text-transform:none;
  4805. visibility:hidden;
  4806. }
  4807. #u134490 {
  4808. border-width:0px;
  4809. position:absolute;
  4810. left:0px;
  4811. top:0px;
  4812. width:0px;
  4813. height:0px;
  4814. }
  4815. #u134491_div {
  4816. border-width:0px;
  4817. position:absolute;
  4818. left:0px;
  4819. top:0px;
  4820. width:30px;
  4821. height:30px;
  4822. background:inherit;
  4823. background-color:rgba(255, 255, 255, 1);
  4824. box-sizing:border-box;
  4825. border-width:1px;
  4826. border-style:solid;
  4827. border-color:rgba(121, 121, 121, 1);
  4828. border-radius:0px;
  4829. -moz-box-shadow:none;
  4830. -webkit-box-shadow:none;
  4831. box-shadow:none;
  4832. }
  4833. #u134491 {
  4834. border-width:0px;
  4835. position:absolute;
  4836. left:4245px;
  4837. top:174px;
  4838. width:30px;
  4839. height:30px;
  4840. display:flex;
  4841. }
  4842. #u134491 .text {
  4843. position:absolute;
  4844. align-self:center;
  4845. padding:2px 2px 2px 2px;
  4846. box-sizing:border-box;
  4847. width:100%;
  4848. }
  4849. #u134491_text {
  4850. border-width:0px;
  4851. word-wrap:break-word;
  4852. text-transform:none;
  4853. visibility:hidden;
  4854. }
  4855. #u134492_img {
  4856. border-width:0px;
  4857. position:absolute;
  4858. left:0px;
  4859. top:0px;
  4860. width:19px;
  4861. height:18px;
  4862. }
  4863. #u134492 {
  4864. border-width:0px;
  4865. position:absolute;
  4866. left:4251px;
  4867. top:180px;
  4868. width:19px;
  4869. height:18px;
  4870. display:flex;
  4871. -webkit-transform:rotate(90deg);
  4872. -moz-transform:rotate(90deg);
  4873. -ms-transform:rotate(90deg);
  4874. transform:rotate(90deg);
  4875. }
  4876. #u134492 .text {
  4877. position:absolute;
  4878. align-self:center;
  4879. padding:2px 2px 2px 2px;
  4880. box-sizing:border-box;
  4881. width:100%;
  4882. }
  4883. #u134492_text {
  4884. border-width:0px;
  4885. word-wrap:break-word;
  4886. text-transform:none;
  4887. visibility:hidden;
  4888. }
  4889. #u134493 {
  4890. border-width:0px;
  4891. position:absolute;
  4892. left:0px;
  4893. top:0px;
  4894. width:0px;
  4895. height:0px;
  4896. }
  4897. #u134494_div {
  4898. border-width:0px;
  4899. position:absolute;
  4900. left:0px;
  4901. top:0px;
  4902. width:30px;
  4903. height:30px;
  4904. background:inherit;
  4905. background-color:rgba(255, 255, 255, 1);
  4906. box-sizing:border-box;
  4907. border-width:1px;
  4908. border-style:solid;
  4909. border-color:rgba(121, 121, 121, 1);
  4910. border-radius:0px;
  4911. -moz-box-shadow:none;
  4912. -webkit-box-shadow:none;
  4913. box-shadow:none;
  4914. }
  4915. #u134494 {
  4916. border-width:0px;
  4917. position:absolute;
  4918. left:4325px;
  4919. top:174px;
  4920. width:30px;
  4921. height:30px;
  4922. display:flex;
  4923. }
  4924. #u134494 .text {
  4925. position:absolute;
  4926. align-self:center;
  4927. padding:2px 2px 2px 2px;
  4928. box-sizing:border-box;
  4929. width:100%;
  4930. }
  4931. #u134494_text {
  4932. border-width:0px;
  4933. word-wrap:break-word;
  4934. text-transform:none;
  4935. visibility:hidden;
  4936. }
  4937. #u134495_img {
  4938. border-width:0px;
  4939. position:absolute;
  4940. left:0px;
  4941. top:0px;
  4942. width:19px;
  4943. height:18px;
  4944. }
  4945. #u134495 {
  4946. border-width:0px;
  4947. position:absolute;
  4948. left:4331px;
  4949. top:180px;
  4950. width:19px;
  4951. height:18px;
  4952. display:flex;
  4953. -webkit-transform:rotate(270deg);
  4954. -moz-transform:rotate(270deg);
  4955. -ms-transform:rotate(270deg);
  4956. transform:rotate(270deg);
  4957. }
  4958. #u134495 .text {
  4959. position:absolute;
  4960. align-self:center;
  4961. padding:2px 2px 2px 2px;
  4962. box-sizing:border-box;
  4963. width:100%;
  4964. }
  4965. #u134495_text {
  4966. border-width:0px;
  4967. word-wrap:break-word;
  4968. text-transform:none;
  4969. visibility:hidden;
  4970. }
  4971. #u134496 {
  4972. border-width:0px;
  4973. position:absolute;
  4974. left:0px;
  4975. top:0px;
  4976. width:0px;
  4977. height:0px;
  4978. }
  4979. #u134497_div {
  4980. border-width:0px;
  4981. position:absolute;
  4982. left:0px;
  4983. top:0px;
  4984. width:30px;
  4985. height:30px;
  4986. background:inherit;
  4987. background-color:rgba(255, 255, 255, 1);
  4988. box-sizing:border-box;
  4989. border-width:1px;
  4990. border-style:solid;
  4991. border-color:rgba(121, 121, 121, 1);
  4992. border-radius:0px;
  4993. -moz-box-shadow:none;
  4994. -webkit-box-shadow:none;
  4995. box-shadow:none;
  4996. }
  4997. #u134497 {
  4998. border-width:0px;
  4999. position:absolute;
  5000. left:4245px;
  5001. top:214px;
  5002. width:30px;
  5003. height:30px;
  5004. display:flex;
  5005. }
  5006. #u134497 .text {
  5007. position:absolute;
  5008. align-self:center;
  5009. padding:2px 2px 2px 2px;
  5010. box-sizing:border-box;
  5011. width:100%;
  5012. }
  5013. #u134497_text {
  5014. border-width:0px;
  5015. word-wrap:break-word;
  5016. text-transform:none;
  5017. visibility:hidden;
  5018. }
  5019. #u134498_img {
  5020. border-width:0px;
  5021. position:absolute;
  5022. left:0px;
  5023. top:0px;
  5024. width:19px;
  5025. height:18px;
  5026. }
  5027. #u134498 {
  5028. border-width:0px;
  5029. position:absolute;
  5030. left:4251px;
  5031. top:220px;
  5032. width:19px;
  5033. height:18px;
  5034. display:flex;
  5035. -webkit-transform:rotate(51deg);
  5036. -moz-transform:rotate(51deg);
  5037. -ms-transform:rotate(51deg);
  5038. transform:rotate(51deg);
  5039. }
  5040. #u134498 .text {
  5041. position:absolute;
  5042. align-self:center;
  5043. padding:2px 2px 2px 2px;
  5044. box-sizing:border-box;
  5045. width:100%;
  5046. }
  5047. #u134498_text {
  5048. border-width:0px;
  5049. word-wrap:break-word;
  5050. text-transform:none;
  5051. visibility:hidden;
  5052. }
  5053. #u134499 {
  5054. border-width:0px;
  5055. position:absolute;
  5056. left:0px;
  5057. top:0px;
  5058. width:0px;
  5059. height:0px;
  5060. }
  5061. #u134500_div {
  5062. border-width:0px;
  5063. position:absolute;
  5064. left:0px;
  5065. top:0px;
  5066. width:30px;
  5067. height:30px;
  5068. background:inherit;
  5069. background-color:rgba(255, 255, 255, 1);
  5070. box-sizing:border-box;
  5071. border-width:1px;
  5072. border-style:solid;
  5073. border-color:rgba(121, 121, 121, 1);
  5074. border-radius:0px;
  5075. -moz-box-shadow:none;
  5076. -webkit-box-shadow:none;
  5077. box-shadow:none;
  5078. }
  5079. #u134500 {
  5080. border-width:0px;
  5081. position:absolute;
  5082. left:4285px;
  5083. top:214px;
  5084. width:30px;
  5085. height:30px;
  5086. display:flex;
  5087. }
  5088. #u134500 .text {
  5089. position:absolute;
  5090. align-self:center;
  5091. padding:2px 2px 2px 2px;
  5092. box-sizing:border-box;
  5093. width:100%;
  5094. }
  5095. #u134500_text {
  5096. border-width:0px;
  5097. word-wrap:break-word;
  5098. text-transform:none;
  5099. visibility:hidden;
  5100. }
  5101. #u134501_img {
  5102. border-width:0px;
  5103. position:absolute;
  5104. left:0px;
  5105. top:0px;
  5106. width:19px;
  5107. height:18px;
  5108. }
  5109. #u134501 {
  5110. border-width:0px;
  5111. position:absolute;
  5112. left:4291px;
  5113. top:220px;
  5114. width:19px;
  5115. height:18px;
  5116. display:flex;
  5117. }
  5118. #u134501 .text {
  5119. position:absolute;
  5120. align-self:center;
  5121. padding:2px 2px 2px 2px;
  5122. box-sizing:border-box;
  5123. width:100%;
  5124. }
  5125. #u134501_text {
  5126. border-width:0px;
  5127. word-wrap:break-word;
  5128. text-transform:none;
  5129. visibility:hidden;
  5130. }
  5131. #u134502 {
  5132. border-width:0px;
  5133. position:absolute;
  5134. left:0px;
  5135. top:0px;
  5136. width:0px;
  5137. height:0px;
  5138. }
  5139. #u134503_div {
  5140. border-width:0px;
  5141. position:absolute;
  5142. left:0px;
  5143. top:0px;
  5144. width:30px;
  5145. height:30px;
  5146. background:inherit;
  5147. background-color:rgba(255, 255, 255, 1);
  5148. box-sizing:border-box;
  5149. border-width:1px;
  5150. border-style:solid;
  5151. border-color:rgba(121, 121, 121, 1);
  5152. border-radius:0px;
  5153. -moz-box-shadow:none;
  5154. -webkit-box-shadow:none;
  5155. box-shadow:none;
  5156. }
  5157. #u134503 {
  5158. border-width:0px;
  5159. position:absolute;
  5160. left:4325px;
  5161. top:214px;
  5162. width:30px;
  5163. height:30px;
  5164. display:flex;
  5165. }
  5166. #u134503 .text {
  5167. position:absolute;
  5168. align-self:center;
  5169. padding:2px 2px 2px 2px;
  5170. box-sizing:border-box;
  5171. width:100%;
  5172. }
  5173. #u134503_text {
  5174. border-width:0px;
  5175. word-wrap:break-word;
  5176. text-transform:none;
  5177. visibility:hidden;
  5178. }
  5179. #u134504_img {
  5180. border-width:0px;
  5181. position:absolute;
  5182. left:0px;
  5183. top:0px;
  5184. width:19px;
  5185. height:18px;
  5186. }
  5187. #u134504 {
  5188. border-width:0px;
  5189. position:absolute;
  5190. left:4331px;
  5191. top:220px;
  5192. width:19px;
  5193. height:18px;
  5194. display:flex;
  5195. -webkit-transform:rotate(300deg);
  5196. -moz-transform:rotate(300deg);
  5197. -ms-transform:rotate(300deg);
  5198. transform:rotate(300deg);
  5199. }
  5200. #u134504 .text {
  5201. position:absolute;
  5202. align-self:center;
  5203. padding:2px 2px 2px 2px;
  5204. box-sizing:border-box;
  5205. width:100%;
  5206. }
  5207. #u134504_text {
  5208. border-width:0px;
  5209. word-wrap:break-word;
  5210. text-transform:none;
  5211. visibility:hidden;
  5212. }
  5213. #u134505_div {
  5214. border-width:0px;
  5215. position:absolute;
  5216. left:0px;
  5217. top:0px;
  5218. width:30px;
  5219. height:30px;
  5220. background:inherit;
  5221. background-color:rgba(255, 255, 255, 1);
  5222. box-sizing:border-box;
  5223. border-width:1px;
  5224. border-style:solid;
  5225. border-color:rgba(121, 121, 121, 1);
  5226. border-radius:7px;
  5227. -moz-box-shadow:none;
  5228. -webkit-box-shadow:none;
  5229. box-shadow:none;
  5230. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  5231. font-weight:700;
  5232. font-style:normal;
  5233. font-size:24px;
  5234. }
  5235. #u134505 {
  5236. border-width:0px;
  5237. position:absolute;
  5238. left:4365px;
  5239. top:134px;
  5240. width:30px;
  5241. height:30px;
  5242. display:flex;
  5243. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  5244. font-weight:700;
  5245. font-style:normal;
  5246. font-size:24px;
  5247. }
  5248. #u134505 .text {
  5249. position:absolute;
  5250. align-self:center;
  5251. padding:2px 2px 2px 2px;
  5252. box-sizing:border-box;
  5253. width:100%;
  5254. }
  5255. #u134505_text {
  5256. border-width:0px;
  5257. word-wrap:break-word;
  5258. text-transform:none;
  5259. }
  5260. #u134506_div {
  5261. border-width:0px;
  5262. position:absolute;
  5263. left:0px;
  5264. top:0px;
  5265. width:30px;
  5266. height:30px;
  5267. background:inherit;
  5268. background-color:rgba(255, 255, 255, 1);
  5269. box-sizing:border-box;
  5270. border-width:1px;
  5271. border-style:solid;
  5272. border-color:rgba(121, 121, 121, 1);
  5273. border-radius:7px;
  5274. -moz-box-shadow:none;
  5275. -webkit-box-shadow:none;
  5276. box-shadow:none;
  5277. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  5278. font-weight:700;
  5279. font-style:normal;
  5280. font-size:24px;
  5281. }
  5282. #u134506 {
  5283. border-width:0px;
  5284. position:absolute;
  5285. left:4365px;
  5286. top:174px;
  5287. width:30px;
  5288. height:30px;
  5289. display:flex;
  5290. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  5291. font-weight:700;
  5292. font-style:normal;
  5293. font-size:24px;
  5294. }
  5295. #u134506 .text {
  5296. position:absolute;
  5297. align-self:center;
  5298. padding:2px 2px 2px 2px;
  5299. box-sizing:border-box;
  5300. width:100%;
  5301. }
  5302. #u134506_text {
  5303. border-width:0px;
  5304. word-wrap:break-word;
  5305. text-transform:none;
  5306. }
  5307. #u134507_div {
  5308. border-width:0px;
  5309. position:absolute;
  5310. left:0px;
  5311. top:0px;
  5312. width:30px;
  5313. height:30px;
  5314. background:inherit;
  5315. background-color:rgba(255, 255, 255, 1);
  5316. box-sizing:border-box;
  5317. border-width:1px;
  5318. border-style:solid;
  5319. border-color:rgba(121, 121, 121, 1);
  5320. border-radius:7px;
  5321. -moz-box-shadow:none;
  5322. -webkit-box-shadow:none;
  5323. box-shadow:none;
  5324. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  5325. font-weight:700;
  5326. font-style:normal;
  5327. font-size:24px;
  5328. }
  5329. #u134507 {
  5330. border-width:0px;
  5331. position:absolute;
  5332. left:4365px;
  5333. top:214px;
  5334. width:30px;
  5335. height:30px;
  5336. display:flex;
  5337. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  5338. font-weight:700;
  5339. font-style:normal;
  5340. font-size:24px;
  5341. }
  5342. #u134507 .text {
  5343. position:absolute;
  5344. align-self:center;
  5345. padding:2px 2px 2px 2px;
  5346. box-sizing:border-box;
  5347. width:100%;
  5348. }
  5349. #u134507_text {
  5350. border-width:0px;
  5351. word-wrap:break-word;
  5352. text-transform:none;
  5353. }
  5354. #u134508 {
  5355. border-width:0px;
  5356. position:absolute;
  5357. left:0px;
  5358. top:0px;
  5359. width:0px;
  5360. height:0px;
  5361. }
  5362. #u134509_div {
  5363. border-width:0px;
  5364. position:absolute;
  5365. left:0px;
  5366. top:0px;
  5367. width:30px;
  5368. height:30px;
  5369. background:inherit;
  5370. background-color:rgba(255, 255, 255, 1);
  5371. box-sizing:border-box;
  5372. border-width:1px;
  5373. border-style:solid;
  5374. border-color:rgba(121, 121, 121, 1);
  5375. border-radius:0px;
  5376. -moz-box-shadow:none;
  5377. -webkit-box-shadow:none;
  5378. box-shadow:none;
  5379. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  5380. font-weight:700;
  5381. font-style:normal;
  5382. font-size:18px;
  5383. }
  5384. #u134509 {
  5385. border-width:0px;
  5386. position:absolute;
  5387. left:4405px;
  5388. top:134px;
  5389. width:30px;
  5390. height:30px;
  5391. display:flex;
  5392. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  5393. font-weight:700;
  5394. font-style:normal;
  5395. font-size:18px;
  5396. }
  5397. #u134509 .text {
  5398. position:absolute;
  5399. align-self:center;
  5400. padding:2px 2px 2px 2px;
  5401. box-sizing:border-box;
  5402. width:100%;
  5403. }
  5404. #u134509_text {
  5405. border-width:0px;
  5406. word-wrap:break-word;
  5407. text-transform:none;
  5408. visibility:hidden;
  5409. }
  5410. #u134510_img {
  5411. border-width:0px;
  5412. position:absolute;
  5413. left:0px;
  5414. top:0px;
  5415. width:14px;
  5416. height:14px;
  5417. }
  5418. #u134510 {
  5419. border-width:0px;
  5420. position:absolute;
  5421. left:4413px;
  5422. top:142px;
  5423. width:14px;
  5424. height:14px;
  5425. display:flex;
  5426. }
  5427. #u134510 .text {
  5428. position:absolute;
  5429. align-self:center;
  5430. padding:2px 2px 2px 2px;
  5431. box-sizing:border-box;
  5432. width:100%;
  5433. }
  5434. #u134510_text {
  5435. border-width:0px;
  5436. word-wrap:break-word;
  5437. text-transform:none;
  5438. visibility:hidden;
  5439. }
  5440. #u134511 {
  5441. border-width:0px;
  5442. position:absolute;
  5443. left:0px;
  5444. top:0px;
  5445. width:0px;
  5446. height:0px;
  5447. }
  5448. #u134512_div {
  5449. border-width:0px;
  5450. position:absolute;
  5451. left:0px;
  5452. top:0px;
  5453. width:30px;
  5454. height:30px;
  5455. background:inherit;
  5456. background-color:rgba(255, 255, 255, 1);
  5457. box-sizing:border-box;
  5458. border-width:1px;
  5459. border-style:solid;
  5460. border-color:rgba(121, 121, 121, 1);
  5461. border-radius:0px;
  5462. -moz-box-shadow:none;
  5463. -webkit-box-shadow:none;
  5464. box-shadow:none;
  5465. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  5466. font-weight:700;
  5467. font-style:normal;
  5468. font-size:18px;
  5469. }
  5470. #u134512 {
  5471. border-width:0px;
  5472. position:absolute;
  5473. left:4405px;
  5474. top:174px;
  5475. width:30px;
  5476. height:30px;
  5477. display:flex;
  5478. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  5479. font-weight:700;
  5480. font-style:normal;
  5481. font-size:18px;
  5482. }
  5483. #u134512 .text {
  5484. position:absolute;
  5485. align-self:center;
  5486. padding:2px 2px 2px 2px;
  5487. box-sizing:border-box;
  5488. width:100%;
  5489. }
  5490. #u134512_text {
  5491. border-width:0px;
  5492. word-wrap:break-word;
  5493. text-transform:none;
  5494. visibility:hidden;
  5495. }
  5496. #u134513_img {
  5497. border-width:0px;
  5498. position:absolute;
  5499. left:0px;
  5500. top:0px;
  5501. width:14px;
  5502. height:14px;
  5503. }
  5504. #u134513 {
  5505. border-width:0px;
  5506. position:absolute;
  5507. left:4413px;
  5508. top:182px;
  5509. width:14px;
  5510. height:14px;
  5511. display:flex;
  5512. }
  5513. #u134513 .text {
  5514. position:absolute;
  5515. align-self:center;
  5516. padding:2px 2px 2px 2px;
  5517. box-sizing:border-box;
  5518. width:100%;
  5519. }
  5520. #u134513_text {
  5521. border-width:0px;
  5522. word-wrap:break-word;
  5523. text-transform:none;
  5524. visibility:hidden;
  5525. }
  5526. #u134514 {
  5527. border-width:0px;
  5528. position:absolute;
  5529. left:0px;
  5530. top:0px;
  5531. width:0px;
  5532. height:0px;
  5533. }
  5534. #u134515_div {
  5535. border-width:0px;
  5536. position:absolute;
  5537. left:0px;
  5538. top:0px;
  5539. width:30px;
  5540. height:30px;
  5541. background:inherit;
  5542. background-color:rgba(255, 255, 255, 1);
  5543. box-sizing:border-box;
  5544. border-width:1px;
  5545. border-style:solid;
  5546. border-color:rgba(121, 121, 121, 1);
  5547. border-radius:0px;
  5548. -moz-box-shadow:none;
  5549. -webkit-box-shadow:none;
  5550. box-shadow:none;
  5551. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  5552. font-weight:700;
  5553. font-style:normal;
  5554. font-size:18px;
  5555. }
  5556. #u134515 {
  5557. border-width:0px;
  5558. position:absolute;
  5559. left:4405px;
  5560. top:214px;
  5561. width:30px;
  5562. height:30px;
  5563. display:flex;
  5564. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  5565. font-weight:700;
  5566. font-style:normal;
  5567. font-size:18px;
  5568. }
  5569. #u134515 .text {
  5570. position:absolute;
  5571. align-self:center;
  5572. padding:2px 2px 2px 2px;
  5573. box-sizing:border-box;
  5574. width:100%;
  5575. }
  5576. #u134515_text {
  5577. border-width:0px;
  5578. word-wrap:break-word;
  5579. text-transform:none;
  5580. visibility:hidden;
  5581. }
  5582. #u134516_img {
  5583. border-width:0px;
  5584. position:absolute;
  5585. left:0px;
  5586. top:0px;
  5587. width:17px;
  5588. height:11px;
  5589. }
  5590. #u134516 {
  5591. border-width:0px;
  5592. position:absolute;
  5593. left:4412px;
  5594. top:224px;
  5595. width:17px;
  5596. height:11px;
  5597. display:flex;
  5598. }
  5599. #u134516 .text {
  5600. position:absolute;
  5601. align-self:center;
  5602. padding:2px 2px 2px 2px;
  5603. box-sizing:border-box;
  5604. width:100%;
  5605. }
  5606. #u134516_text {
  5607. border-width:0px;
  5608. word-wrap:break-word;
  5609. text-transform:none;
  5610. visibility:hidden;
  5611. }
  5612. #u134517 {
  5613. border-width:0px;
  5614. position:absolute;
  5615. left:0px;
  5616. top:0px;
  5617. width:0px;
  5618. height:0px;
  5619. }
  5620. #u134518_div {
  5621. border-width:0px;
  5622. position:absolute;
  5623. left:0px;
  5624. top:0px;
  5625. width:84px;
  5626. height:21px;
  5627. background:inherit;
  5628. background-color:rgba(51, 51, 51, 1);
  5629. border:none;
  5630. border-radius:11px;
  5631. -moz-box-shadow:none;
  5632. -webkit-box-shadow:none;
  5633. box-shadow:none;
  5634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5635. font-weight:400;
  5636. font-style:normal;
  5637. font-size:12px;
  5638. color:#FFFFFF;
  5639. text-align:center;
  5640. }
  5641. #u134518 {
  5642. border-width:0px;
  5643. position:absolute;
  5644. left:4336px;
  5645. top:240px;
  5646. width:84px;
  5647. height:21px;
  5648. display:flex;
  5649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5650. font-weight:400;
  5651. font-style:normal;
  5652. font-size:12px;
  5653. color:#FFFFFF;
  5654. text-align:center;
  5655. }
  5656. #u134518 .text {
  5657. position:absolute;
  5658. align-self:center;
  5659. padding:2px 2px 2px 2px;
  5660. box-sizing:border-box;
  5661. width:100%;
  5662. }
  5663. #u134518_text {
  5664. border-width:0px;
  5665. white-space:nowrap;
  5666. text-transform:none;
  5667. }
  5668. #u134519_img {
  5669. border-width:0px;
  5670. position:absolute;
  5671. left:0px;
  5672. top:0px;
  5673. width:11px;
  5674. height:17px;
  5675. }
  5676. #u134519 {
  5677. border-width:0px;
  5678. position:absolute;
  5679. left:4388px;
  5680. top:271px;
  5681. width:11px;
  5682. height:17px;
  5683. display:flex;
  5684. }
  5685. #u134519 .text {
  5686. position:absolute;
  5687. align-self:center;
  5688. padding:2px 2px 2px 2px;
  5689. box-sizing:border-box;
  5690. width:100%;
  5691. }
  5692. #u134519_text {
  5693. border-width:0px;
  5694. word-wrap:break-word;
  5695. text-transform:none;
  5696. visibility:hidden;
  5697. }
  5698. #u134520_div {
  5699. border-width:0px;
  5700. position:absolute;
  5701. left:0px;
  5702. top:0px;
  5703. width:191px;
  5704. height:6px;
  5705. background:inherit;
  5706. background-color:rgba(255, 255, 255, 1);
  5707. box-sizing:border-box;
  5708. border-width:1px;
  5709. border-style:solid;
  5710. border-color:rgba(228, 228, 228, 1);
  5711. border-radius:7px;
  5712. -moz-box-shadow:none;
  5713. -webkit-box-shadow:none;
  5714. box-shadow:none;
  5715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5716. font-weight:400;
  5717. font-style:normal;
  5718. font-size:12px;
  5719. color:#FFFFFF;
  5720. }
  5721. #u134520 {
  5722. border-width:0px;
  5723. position:absolute;
  5724. left:4244px;
  5725. top:268px;
  5726. width:191px;
  5727. height:6px;
  5728. display:flex;
  5729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5730. font-weight:400;
  5731. font-style:normal;
  5732. font-size:12px;
  5733. color:#FFFFFF;
  5734. }
  5735. #u134520 .text {
  5736. position:absolute;
  5737. align-self:center;
  5738. padding:8px 15px 8px 15px;
  5739. box-sizing:border-box;
  5740. width:100%;
  5741. }
  5742. #u134520_text {
  5743. border-width:0px;
  5744. word-wrap:break-word;
  5745. text-transform:none;
  5746. visibility:hidden;
  5747. }
  5748. #u134521_div {
  5749. border-width:0px;
  5750. position:absolute;
  5751. left:0px;
  5752. top:0px;
  5753. width:140px;
  5754. height:6px;
  5755. background:inherit;
  5756. background-color:rgba(51, 153, 255, 1);
  5757. box-sizing:border-box;
  5758. border-width:1px;
  5759. border-style:solid;
  5760. border-color:rgba(228, 228, 228, 1);
  5761. border-radius:7px;
  5762. -moz-box-shadow:none;
  5763. -webkit-box-shadow:none;
  5764. box-shadow:none;
  5765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5766. font-weight:400;
  5767. font-style:normal;
  5768. font-size:12px;
  5769. color:#FFFFFF;
  5770. }
  5771. #u134521 {
  5772. border-width:0px;
  5773. position:absolute;
  5774. left:4244px;
  5775. top:268px;
  5776. width:140px;
  5777. height:6px;
  5778. display:flex;
  5779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5780. font-weight:400;
  5781. font-style:normal;
  5782. font-size:12px;
  5783. color:#FFFFFF;
  5784. }
  5785. #u134521 .text {
  5786. position:absolute;
  5787. align-self:center;
  5788. padding:8px 15px 8px 15px;
  5789. box-sizing:border-box;
  5790. width:100%;
  5791. }
  5792. #u134521_text {
  5793. border-width:0px;
  5794. word-wrap:break-word;
  5795. text-transform:none;
  5796. visibility:hidden;
  5797. }
  5798. #u134522_img {
  5799. border-width:0px;
  5800. position:absolute;
  5801. left:-3px;
  5802. top:-3px;
  5803. width:20px;
  5804. height:20px;
  5805. }
  5806. #u134522 {
  5807. border-width:0px;
  5808. position:absolute;
  5809. left:4373px;
  5810. top:264px;
  5811. width:14px;
  5812. height:14px;
  5813. display:flex;
  5814. }
  5815. #u134522 .text {
  5816. position:absolute;
  5817. align-self:center;
  5818. padding:2px 2px 2px 2px;
  5819. box-sizing:border-box;
  5820. width:100%;
  5821. }
  5822. #u134522_text {
  5823. border-width:0px;
  5824. word-wrap:break-word;
  5825. text-transform:none;
  5826. visibility:hidden;
  5827. }
  5828. #u134523 {
  5829. border-width:0px;
  5830. position:absolute;
  5831. left:4251px;
  5832. top:410px;
  5833. width:127px;
  5834. height:240px;
  5835. }
  5836. #u134523_children {
  5837. border-width:0px;
  5838. position:absolute;
  5839. left:0px;
  5840. top:0px;
  5841. width:0px;
  5842. height:0px;
  5843. }
  5844. #u134524 {
  5845. border-width:0px;
  5846. position:absolute;
  5847. left:0px;
  5848. top:0px;
  5849. width:80px;
  5850. height:20px;
  5851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5852. font-weight:400;
  5853. font-style:normal;
  5854. }
  5855. #u134525_img {
  5856. border-width:0px;
  5857. position:absolute;
  5858. left:0px;
  5859. top:0px;
  5860. width:9px;
  5861. height:9px;
  5862. }
  5863. #u134525 {
  5864. border-width:0px;
  5865. position:absolute;
  5866. left:6px;
  5867. top:6px;
  5868. width:9px;
  5869. height:9px;
  5870. display:flex;
  5871. }
  5872. #u134525 .text {
  5873. position:absolute;
  5874. align-self:center;
  5875. padding:2px 2px 2px 2px;
  5876. box-sizing:border-box;
  5877. width:100%;
  5878. }
  5879. #u134525_img.selected {
  5880. }
  5881. #u134525.selected {
  5882. }
  5883. #u134525_text {
  5884. border-width:0px;
  5885. word-wrap:break-word;
  5886. text-transform:none;
  5887. visibility:hidden;
  5888. }
  5889. #u134526_div {
  5890. border-width:0px;
  5891. position:absolute;
  5892. left:0px;
  5893. top:0px;
  5894. width:58px;
  5895. height:20px;
  5896. background:inherit;
  5897. background-color:rgba(255, 255, 255, 0);
  5898. border:none;
  5899. border-radius:0px;
  5900. -moz-box-shadow:none;
  5901. -webkit-box-shadow:none;
  5902. box-shadow:none;
  5903. }
  5904. #u134526 {
  5905. border-width:0px;
  5906. position:absolute;
  5907. left:22px;
  5908. top:0px;
  5909. width:58px;
  5910. height:20px;
  5911. display:flex;
  5912. }
  5913. #u134526 .text {
  5914. position:absolute;
  5915. align-self:center;
  5916. padding:2px 2px 2px 3px;
  5917. box-sizing:border-box;
  5918. width:100%;
  5919. }
  5920. #u134526_text {
  5921. border-width:0px;
  5922. white-space:nowrap;
  5923. text-transform:none;
  5924. }
  5925. #u134524_children {
  5926. border-width:0px;
  5927. position:absolute;
  5928. left:0px;
  5929. top:0px;
  5930. width:0px;
  5931. height:0px;
  5932. }
  5933. #u134527 {
  5934. border-width:0px;
  5935. position:absolute;
  5936. left:20px;
  5937. top:20px;
  5938. width:87px;
  5939. height:20px;
  5940. }
  5941. #u134528_img {
  5942. border-width:0px;
  5943. position:absolute;
  5944. left:0px;
  5945. top:0px;
  5946. width:9px;
  5947. height:9px;
  5948. }
  5949. #u134528 {
  5950. border-width:0px;
  5951. position:absolute;
  5952. left:6px;
  5953. top:6px;
  5954. width:9px;
  5955. height:9px;
  5956. display:flex;
  5957. }
  5958. #u134528 .text {
  5959. position:absolute;
  5960. align-self:center;
  5961. padding:2px 2px 2px 2px;
  5962. box-sizing:border-box;
  5963. width:100%;
  5964. }
  5965. #u134528_img.selected {
  5966. }
  5967. #u134528.selected {
  5968. }
  5969. #u134528_text {
  5970. border-width:0px;
  5971. word-wrap:break-word;
  5972. text-transform:none;
  5973. visibility:hidden;
  5974. }
  5975. #u134529_div {
  5976. border-width:0px;
  5977. position:absolute;
  5978. left:0px;
  5979. top:0px;
  5980. width:65px;
  5981. height:20px;
  5982. background:inherit;
  5983. background-color:rgba(255, 255, 255, 0);
  5984. border:none;
  5985. border-radius:0px;
  5986. -moz-box-shadow:none;
  5987. -webkit-box-shadow:none;
  5988. box-shadow:none;
  5989. }
  5990. #u134529 {
  5991. border-width:0px;
  5992. position:absolute;
  5993. left:22px;
  5994. top:0px;
  5995. width:65px;
  5996. height:20px;
  5997. display:flex;
  5998. }
  5999. #u134529 .text {
  6000. position:absolute;
  6001. align-self:center;
  6002. padding:2px 2px 2px 3px;
  6003. box-sizing:border-box;
  6004. width:100%;
  6005. }
  6006. #u134529_text {
  6007. border-width:0px;
  6008. white-space:nowrap;
  6009. text-transform:none;
  6010. }
  6011. #u134527_children {
  6012. border-width:0px;
  6013. position:absolute;
  6014. left:0px;
  6015. top:0px;
  6016. width:0px;
  6017. height:0px;
  6018. }
  6019. #u134530 {
  6020. border-width:0px;
  6021. position:absolute;
  6022. left:20px;
  6023. top:20px;
  6024. width:87px;
  6025. height:20px;
  6026. }
  6027. #u134531_div {
  6028. border-width:0px;
  6029. position:absolute;
  6030. left:0px;
  6031. top:0px;
  6032. width:65px;
  6033. height:20px;
  6034. background:inherit;
  6035. background-color:rgba(255, 255, 255, 0);
  6036. border:none;
  6037. border-radius:0px;
  6038. -moz-box-shadow:none;
  6039. -webkit-box-shadow:none;
  6040. box-shadow:none;
  6041. }
  6042. #u134531 {
  6043. border-width:0px;
  6044. position:absolute;
  6045. left:22px;
  6046. top:0px;
  6047. width:65px;
  6048. height:20px;
  6049. display:flex;
  6050. }
  6051. #u134531 .text {
  6052. position:absolute;
  6053. align-self:center;
  6054. padding:2px 2px 2px 3px;
  6055. box-sizing:border-box;
  6056. width:100%;
  6057. }
  6058. #u134531_text {
  6059. border-width:0px;
  6060. white-space:nowrap;
  6061. text-transform:none;
  6062. }
  6063. #u134532 {
  6064. border-width:0px;
  6065. position:absolute;
  6066. left:20px;
  6067. top:40px;
  6068. width:87px;
  6069. height:20px;
  6070. }
  6071. #u134533_div {
  6072. border-width:0px;
  6073. position:absolute;
  6074. left:0px;
  6075. top:0px;
  6076. width:65px;
  6077. height:20px;
  6078. background:inherit;
  6079. background-color:rgba(255, 255, 255, 0);
  6080. border:none;
  6081. border-radius:0px;
  6082. -moz-box-shadow:none;
  6083. -webkit-box-shadow:none;
  6084. box-shadow:none;
  6085. }
  6086. #u134533 {
  6087. border-width:0px;
  6088. position:absolute;
  6089. left:22px;
  6090. top:0px;
  6091. width:65px;
  6092. height:20px;
  6093. display:flex;
  6094. }
  6095. #u134533 .text {
  6096. position:absolute;
  6097. align-self:center;
  6098. padding:2px 2px 2px 3px;
  6099. box-sizing:border-box;
  6100. width:100%;
  6101. }
  6102. #u134533_text {
  6103. border-width:0px;
  6104. white-space:nowrap;
  6105. text-transform:none;
  6106. }
  6107. #u134534 {
  6108. border-width:0px;
  6109. position:absolute;
  6110. left:20px;
  6111. top:60px;
  6112. width:54px;
  6113. height:20px;
  6114. }
  6115. #u134535_div {
  6116. border-width:0px;
  6117. position:absolute;
  6118. left:0px;
  6119. top:0px;
  6120. width:32px;
  6121. height:20px;
  6122. background:inherit;
  6123. background-color:rgba(255, 255, 255, 0);
  6124. border:none;
  6125. border-radius:0px;
  6126. -moz-box-shadow:none;
  6127. -webkit-box-shadow:none;
  6128. box-shadow:none;
  6129. }
  6130. #u134535 {
  6131. border-width:0px;
  6132. position:absolute;
  6133. left:22px;
  6134. top:0px;
  6135. width:32px;
  6136. height:20px;
  6137. display:flex;
  6138. }
  6139. #u134535 .text {
  6140. position:absolute;
  6141. align-self:center;
  6142. padding:2px 2px 2px 3px;
  6143. box-sizing:border-box;
  6144. width:100%;
  6145. }
  6146. #u134535_text {
  6147. border-width:0px;
  6148. white-space:nowrap;
  6149. text-transform:none;
  6150. }
  6151. #u134536 {
  6152. border-width:0px;
  6153. position:absolute;
  6154. left:20px;
  6155. top:100px;
  6156. width:87px;
  6157. height:20px;
  6158. }
  6159. #u134537_img {
  6160. border-width:0px;
  6161. position:absolute;
  6162. left:0px;
  6163. top:0px;
  6164. width:9px;
  6165. height:9px;
  6166. }
  6167. #u134537 {
  6168. border-width:0px;
  6169. position:absolute;
  6170. left:6px;
  6171. top:6px;
  6172. width:9px;
  6173. height:9px;
  6174. display:flex;
  6175. }
  6176. #u134537 .text {
  6177. position:absolute;
  6178. align-self:center;
  6179. padding:2px 2px 2px 2px;
  6180. box-sizing:border-box;
  6181. width:100%;
  6182. }
  6183. #u134537_img.selected {
  6184. }
  6185. #u134537.selected {
  6186. }
  6187. #u134537_text {
  6188. border-width:0px;
  6189. word-wrap:break-word;
  6190. text-transform:none;
  6191. visibility:hidden;
  6192. }
  6193. #u134538_div {
  6194. border-width:0px;
  6195. position:absolute;
  6196. left:0px;
  6197. top:0px;
  6198. width:65px;
  6199. height:20px;
  6200. background:inherit;
  6201. background-color:rgba(255, 255, 255, 0);
  6202. border:none;
  6203. border-radius:0px;
  6204. -moz-box-shadow:none;
  6205. -webkit-box-shadow:none;
  6206. box-shadow:none;
  6207. }
  6208. #u134538 {
  6209. border-width:0px;
  6210. position:absolute;
  6211. left:22px;
  6212. top:0px;
  6213. width:65px;
  6214. height:20px;
  6215. display:flex;
  6216. }
  6217. #u134538 .text {
  6218. position:absolute;
  6219. align-self:center;
  6220. padding:2px 2px 2px 3px;
  6221. box-sizing:border-box;
  6222. width:100%;
  6223. }
  6224. #u134538_text {
  6225. border-width:0px;
  6226. white-space:nowrap;
  6227. text-transform:none;
  6228. }
  6229. #u134536_children {
  6230. border-width:0px;
  6231. position:absolute;
  6232. left:0px;
  6233. top:0px;
  6234. width:0px;
  6235. height:0px;
  6236. }
  6237. #u134539 {
  6238. border-width:0px;
  6239. position:absolute;
  6240. left:20px;
  6241. top:20px;
  6242. width:87px;
  6243. height:20px;
  6244. }
  6245. #u134540_div {
  6246. border-width:0px;
  6247. position:absolute;
  6248. left:0px;
  6249. top:0px;
  6250. width:65px;
  6251. height:20px;
  6252. background:inherit;
  6253. background-color:rgba(255, 255, 255, 0);
  6254. border:none;
  6255. border-radius:0px;
  6256. -moz-box-shadow:none;
  6257. -webkit-box-shadow:none;
  6258. box-shadow:none;
  6259. }
  6260. #u134540 {
  6261. border-width:0px;
  6262. position:absolute;
  6263. left:22px;
  6264. top:0px;
  6265. width:65px;
  6266. height:20px;
  6267. display:flex;
  6268. }
  6269. #u134540 .text {
  6270. position:absolute;
  6271. align-self:center;
  6272. padding:2px 2px 2px 3px;
  6273. box-sizing:border-box;
  6274. width:100%;
  6275. }
  6276. #u134540_text {
  6277. border-width:0px;
  6278. white-space:nowrap;
  6279. text-transform:none;
  6280. }
  6281. #u134541 {
  6282. border-width:0px;
  6283. position:absolute;
  6284. left:20px;
  6285. top:40px;
  6286. width:87px;
  6287. height:20px;
  6288. }
  6289. #u134542_div {
  6290. border-width:0px;
  6291. position:absolute;
  6292. left:0px;
  6293. top:0px;
  6294. width:65px;
  6295. height:20px;
  6296. background:inherit;
  6297. background-color:rgba(255, 255, 255, 0);
  6298. border:none;
  6299. border-radius:0px;
  6300. -moz-box-shadow:none;
  6301. -webkit-box-shadow:none;
  6302. box-shadow:none;
  6303. }
  6304. #u134542 {
  6305. border-width:0px;
  6306. position:absolute;
  6307. left:22px;
  6308. top:0px;
  6309. width:65px;
  6310. height:20px;
  6311. display:flex;
  6312. }
  6313. #u134542 .text {
  6314. position:absolute;
  6315. align-self:center;
  6316. padding:2px 2px 2px 3px;
  6317. box-sizing:border-box;
  6318. width:100%;
  6319. }
  6320. #u134542_text {
  6321. border-width:0px;
  6322. white-space:nowrap;
  6323. text-transform:none;
  6324. }
  6325. #u134543 {
  6326. border-width:0px;
  6327. position:absolute;
  6328. left:20px;
  6329. top:60px;
  6330. width:54px;
  6331. height:20px;
  6332. }
  6333. #u134544_div {
  6334. border-width:0px;
  6335. position:absolute;
  6336. left:0px;
  6337. top:0px;
  6338. width:32px;
  6339. height:20px;
  6340. background:inherit;
  6341. background-color:rgba(255, 255, 255, 0);
  6342. border:none;
  6343. border-radius:0px;
  6344. -moz-box-shadow:none;
  6345. -webkit-box-shadow:none;
  6346. box-shadow:none;
  6347. }
  6348. #u134544 {
  6349. border-width:0px;
  6350. position:absolute;
  6351. left:22px;
  6352. top:0px;
  6353. width:32px;
  6354. height:20px;
  6355. display:flex;
  6356. }
  6357. #u134544 .text {
  6358. position:absolute;
  6359. align-self:center;
  6360. padding:2px 2px 2px 3px;
  6361. box-sizing:border-box;
  6362. width:100%;
  6363. }
  6364. #u134544_text {
  6365. border-width:0px;
  6366. white-space:nowrap;
  6367. text-transform:none;
  6368. }
  6369. #u134545 {
  6370. border-width:0px;
  6371. position:absolute;
  6372. left:20px;
  6373. top:180px;
  6374. width:87px;
  6375. height:20px;
  6376. }
  6377. #u134546_img {
  6378. border-width:0px;
  6379. position:absolute;
  6380. left:0px;
  6381. top:0px;
  6382. width:9px;
  6383. height:9px;
  6384. }
  6385. #u134546 {
  6386. border-width:0px;
  6387. position:absolute;
  6388. left:6px;
  6389. top:6px;
  6390. width:9px;
  6391. height:9px;
  6392. display:flex;
  6393. }
  6394. #u134546 .text {
  6395. position:absolute;
  6396. align-self:center;
  6397. padding:2px 2px 2px 2px;
  6398. box-sizing:border-box;
  6399. width:100%;
  6400. }
  6401. #u134546_img.selected {
  6402. }
  6403. #u134546.selected {
  6404. }
  6405. #u134546_text {
  6406. border-width:0px;
  6407. word-wrap:break-word;
  6408. text-transform:none;
  6409. visibility:hidden;
  6410. }
  6411. #u134547_div {
  6412. border-width:0px;
  6413. position:absolute;
  6414. left:0px;
  6415. top:0px;
  6416. width:65px;
  6417. height:20px;
  6418. background:inherit;
  6419. background-color:rgba(255, 255, 255, 0);
  6420. border:none;
  6421. border-radius:0px;
  6422. -moz-box-shadow:none;
  6423. -webkit-box-shadow:none;
  6424. box-shadow:none;
  6425. }
  6426. #u134547 {
  6427. border-width:0px;
  6428. position:absolute;
  6429. left:22px;
  6430. top:0px;
  6431. width:65px;
  6432. height:20px;
  6433. display:flex;
  6434. }
  6435. #u134547 .text {
  6436. position:absolute;
  6437. align-self:center;
  6438. padding:2px 2px 2px 3px;
  6439. box-sizing:border-box;
  6440. width:100%;
  6441. }
  6442. #u134547_text {
  6443. border-width:0px;
  6444. white-space:nowrap;
  6445. text-transform:none;
  6446. }
  6447. #u134545_children {
  6448. border-width:0px;
  6449. position:absolute;
  6450. left:0px;
  6451. top:0px;
  6452. width:0px;
  6453. height:0px;
  6454. }
  6455. #u134548 {
  6456. border-width:0px;
  6457. position:absolute;
  6458. left:20px;
  6459. top:20px;
  6460. width:87px;
  6461. height:20px;
  6462. }
  6463. #u134549_div {
  6464. border-width:0px;
  6465. position:absolute;
  6466. left:0px;
  6467. top:0px;
  6468. width:65px;
  6469. height:20px;
  6470. background:inherit;
  6471. background-color:rgba(255, 255, 255, 0);
  6472. border:none;
  6473. border-radius:0px;
  6474. -moz-box-shadow:none;
  6475. -webkit-box-shadow:none;
  6476. box-shadow:none;
  6477. }
  6478. #u134549 {
  6479. border-width:0px;
  6480. position:absolute;
  6481. left:22px;
  6482. top:0px;
  6483. width:65px;
  6484. height:20px;
  6485. display:flex;
  6486. }
  6487. #u134549 .text {
  6488. position:absolute;
  6489. align-self:center;
  6490. padding:2px 2px 2px 3px;
  6491. box-sizing:border-box;
  6492. width:100%;
  6493. }
  6494. #u134549_text {
  6495. border-width:0px;
  6496. white-space:nowrap;
  6497. text-transform:none;
  6498. }
  6499. #u134550 {
  6500. border-width:0px;
  6501. position:absolute;
  6502. left:20px;
  6503. top:40px;
  6504. width:54px;
  6505. height:20px;
  6506. }
  6507. #u134551_div {
  6508. border-width:0px;
  6509. position:absolute;
  6510. left:0px;
  6511. top:0px;
  6512. width:32px;
  6513. height:20px;
  6514. background:inherit;
  6515. background-color:rgba(255, 255, 255, 0);
  6516. border:none;
  6517. border-radius:0px;
  6518. -moz-box-shadow:none;
  6519. -webkit-box-shadow:none;
  6520. box-shadow:none;
  6521. }
  6522. #u134551 {
  6523. border-width:0px;
  6524. position:absolute;
  6525. left:22px;
  6526. top:0px;
  6527. width:32px;
  6528. height:20px;
  6529. display:flex;
  6530. }
  6531. #u134551 .text {
  6532. position:absolute;
  6533. align-self:center;
  6534. padding:2px 2px 2px 3px;
  6535. box-sizing:border-box;
  6536. width:100%;
  6537. }
  6538. #u134551_text {
  6539. border-width:0px;
  6540. white-space:nowrap;
  6541. text-transform:none;
  6542. }
  6543. #u134552 {
  6544. border-width:0px;
  6545. position:absolute;
  6546. left:0px;
  6547. top:0px;
  6548. width:0px;
  6549. height:0px;
  6550. }
  6551. #u134553_div {
  6552. border-width:0px;
  6553. position:absolute;
  6554. left:0px;
  6555. top:0px;
  6556. width:175px;
  6557. height:30px;
  6558. background:inherit;
  6559. background-color:rgba(255, 255, 255, 1);
  6560. box-sizing:border-box;
  6561. border-width:1px;
  6562. border-style:solid;
  6563. border-color:rgba(201, 201, 201, 1);
  6564. border-radius:4px;
  6565. -moz-box-shadow:none;
  6566. -webkit-box-shadow:none;
  6567. box-shadow:none;
  6568. font-family:'Microsoft YaHei', sans-serif;
  6569. font-weight:400;
  6570. font-style:normal;
  6571. font-size:14px;
  6572. color:#CCCCCC;
  6573. text-align:left;
  6574. }
  6575. #u134553 {
  6576. border-width:0px;
  6577. position:absolute;
  6578. left:4252px;
  6579. top:333px;
  6580. width:175px;
  6581. height:30px;
  6582. display:flex;
  6583. font-family:'Microsoft YaHei', sans-serif;
  6584. font-weight:400;
  6585. font-style:normal;
  6586. font-size:14px;
  6587. color:#CCCCCC;
  6588. text-align:left;
  6589. }
  6590. #u134553 .text {
  6591. position:absolute;
  6592. align-self:center;
  6593. padding:2px 8px 2px 8px;
  6594. box-sizing:border-box;
  6595. width:100%;
  6596. }
  6597. #u134553_text {
  6598. border-width:0px;
  6599. word-wrap:break-word;
  6600. text-transform:none;
  6601. visibility:hidden;
  6602. }
  6603. #u134554_input {
  6604. position:absolute;
  6605. left:0px;
  6606. top:0px;
  6607. width:159px;
  6608. height:25px;
  6609. padding:2px 2px 2px 2px;
  6610. font-family:'Microsoft YaHei', sans-serif;
  6611. font-weight:400;
  6612. font-style:normal;
  6613. font-size:10px;
  6614. letter-spacing:normal;
  6615. color:#000000;
  6616. vertical-align:none;
  6617. text-align:left;
  6618. text-transform:none;
  6619. background-color:transparent;
  6620. border-color:transparent;
  6621. }
  6622. #u134554_input.disabled {
  6623. position:absolute;
  6624. left:0px;
  6625. top:0px;
  6626. width:159px;
  6627. height:25px;
  6628. padding:2px 2px 2px 2px;
  6629. font-family:'Microsoft YaHei', sans-serif;
  6630. font-weight:400;
  6631. font-style:normal;
  6632. font-size:10px;
  6633. letter-spacing:normal;
  6634. color:#000000;
  6635. vertical-align:none;
  6636. text-align:left;
  6637. text-transform:none;
  6638. background-color:transparent;
  6639. border-color:transparent;
  6640. }
  6641. #u134554_div {
  6642. border-width:0px;
  6643. position:absolute;
  6644. left:0px;
  6645. top:0px;
  6646. width:159px;
  6647. height:25px;
  6648. background:inherit;
  6649. background-color:rgba(255, 255, 255, 1);
  6650. border:none;
  6651. border-radius:0px;
  6652. -moz-box-shadow:none;
  6653. -webkit-box-shadow:none;
  6654. box-shadow:none;
  6655. font-family:'Microsoft YaHei', sans-serif;
  6656. font-weight:400;
  6657. font-style:normal;
  6658. font-size:10px;
  6659. }
  6660. #u134554 {
  6661. border-width:0px;
  6662. position:absolute;
  6663. left:4262px;
  6664. top:334px;
  6665. width:159px;
  6666. height:25px;
  6667. display:flex;
  6668. font-family:'Microsoft YaHei', sans-serif;
  6669. font-weight:400;
  6670. font-style:normal;
  6671. font-size:10px;
  6672. }
  6673. #u134554 .text {
  6674. position:absolute;
  6675. align-self:center;
  6676. padding:2px 2px 2px 2px;
  6677. box-sizing:border-box;
  6678. width:100%;
  6679. }
  6680. #u134554_div.disabled {
  6681. border-width:0px;
  6682. position:absolute;
  6683. left:0px;
  6684. top:0px;
  6685. width:159px;
  6686. height:25px;
  6687. background:inherit;
  6688. background-color:rgba(240, 240, 240, 1);
  6689. border:none;
  6690. border-radius:0px;
  6691. -moz-box-shadow:none;
  6692. -webkit-box-shadow:none;
  6693. box-shadow:none;
  6694. font-family:'Microsoft YaHei', sans-serif;
  6695. font-weight:400;
  6696. font-style:normal;
  6697. font-size:10px;
  6698. }
  6699. #u134554.disabled {
  6700. }
  6701. #u134555_div {
  6702. border-width:0px;
  6703. position:absolute;
  6704. left:0px;
  6705. top:0px;
  6706. width:25px;
  6707. height:30px;
  6708. background:inherit;
  6709. background-color:rgba(255, 255, 255, 0);
  6710. border:none;
  6711. border-radius:0px;
  6712. -moz-box-shadow:none;
  6713. -webkit-box-shadow:none;
  6714. box-shadow:none;
  6715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6716. font-weight:400;
  6717. font-style:normal;
  6718. font-size:12px;
  6719. color:#3399FF;
  6720. line-height:30px;
  6721. }
  6722. #u134555 {
  6723. border-width:0px;
  6724. position:absolute;
  6725. left:4252px;
  6726. top:372px;
  6727. width:25px;
  6728. height:30px;
  6729. display:flex;
  6730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6731. font-weight:400;
  6732. font-style:normal;
  6733. font-size:12px;
  6734. color:#3399FF;
  6735. line-height:30px;
  6736. }
  6737. #u134555 .text {
  6738. position:absolute;
  6739. align-self:flex-start;
  6740. padding:0px 0px 0px 0px;
  6741. box-sizing:border-box;
  6742. width:100%;
  6743. }
  6744. #u134555_text {
  6745. border-width:0px;
  6746. white-space:nowrap;
  6747. text-transform:none;
  6748. }
  6749. #u134556_div {
  6750. border-width:0px;
  6751. position:absolute;
  6752. left:0px;
  6753. top:0px;
  6754. width:25px;
  6755. height:30px;
  6756. background:inherit;
  6757. background-color:rgba(255, 255, 255, 0);
  6758. border:none;
  6759. border-radius:0px;
  6760. -moz-box-shadow:none;
  6761. -webkit-box-shadow:none;
  6762. box-shadow:none;
  6763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6764. font-weight:400;
  6765. font-style:normal;
  6766. font-size:12px;
  6767. color:#7F7F7F;
  6768. line-height:30px;
  6769. }
  6770. #u134556 {
  6771. border-width:0px;
  6772. position:absolute;
  6773. left:4289px;
  6774. top:372px;
  6775. width:25px;
  6776. height:30px;
  6777. display:flex;
  6778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6779. font-weight:400;
  6780. font-style:normal;
  6781. font-size:12px;
  6782. color:#7F7F7F;
  6783. line-height:30px;
  6784. }
  6785. #u134556 .text {
  6786. position:absolute;
  6787. align-self:flex-start;
  6788. padding:0px 0px 0px 0px;
  6789. box-sizing:border-box;
  6790. width:100%;
  6791. }
  6792. #u134556_text {
  6793. border-width:0px;
  6794. white-space:nowrap;
  6795. text-transform:none;
  6796. }
  6797. #u134557_div {
  6798. border-width:0px;
  6799. position:absolute;
  6800. left:0px;
  6801. top:0px;
  6802. width:25px;
  6803. height:30px;
  6804. background:inherit;
  6805. background-color:rgba(255, 255, 255, 0);
  6806. border:none;
  6807. border-radius:0px;
  6808. -moz-box-shadow:none;
  6809. -webkit-box-shadow:none;
  6810. box-shadow:none;
  6811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6812. font-weight:400;
  6813. font-style:normal;
  6814. font-size:12px;
  6815. color:#7F7F7F;
  6816. line-height:30px;
  6817. }
  6818. #u134557 {
  6819. border-width:0px;
  6820. position:absolute;
  6821. left:4325px;
  6822. top:372px;
  6823. width:25px;
  6824. height:30px;
  6825. display:flex;
  6826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6827. font-weight:400;
  6828. font-style:normal;
  6829. font-size:12px;
  6830. color:#7F7F7F;
  6831. line-height:30px;
  6832. }
  6833. #u134557 .text {
  6834. position:absolute;
  6835. align-self:flex-start;
  6836. padding:0px 0px 0px 0px;
  6837. box-sizing:border-box;
  6838. width:100%;
  6839. }
  6840. #u134557_text {
  6841. border-width:0px;
  6842. white-space:nowrap;
  6843. text-transform:none;
  6844. }
  6845. #u134558_div {
  6846. border-width:0px;
  6847. position:absolute;
  6848. left:0px;
  6849. top:0px;
  6850. width:25px;
  6851. height:30px;
  6852. background:inherit;
  6853. background-color:rgba(255, 255, 255, 0);
  6854. border:none;
  6855. border-radius:0px;
  6856. -moz-box-shadow:none;
  6857. -webkit-box-shadow:none;
  6858. box-shadow:none;
  6859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6860. font-weight:400;
  6861. font-style:normal;
  6862. font-size:12px;
  6863. color:#7F7F7F;
  6864. line-height:30px;
  6865. }
  6866. #u134558 {
  6867. border-width:0px;
  6868. position:absolute;
  6869. left:4362px;
  6870. top:372px;
  6871. width:25px;
  6872. height:30px;
  6873. display:flex;
  6874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6875. font-weight:400;
  6876. font-style:normal;
  6877. font-size:12px;
  6878. color:#7F7F7F;
  6879. line-height:30px;
  6880. }
  6881. #u134558 .text {
  6882. position:absolute;
  6883. align-self:flex-start;
  6884. padding:0px 0px 0px 0px;
  6885. box-sizing:border-box;
  6886. width:100%;
  6887. }
  6888. #u134558_text {
  6889. border-width:0px;
  6890. white-space:nowrap;
  6891. text-transform:none;
  6892. }
  6893. #u134559_div {
  6894. border-width:0px;
  6895. position:absolute;
  6896. left:0px;
  6897. top:0px;
  6898. width:1265px;
  6899. height:1193px;
  6900. background:inherit;
  6901. background-color:rgba(255, 255, 255, 1);
  6902. border:none;
  6903. border-radius:0px;
  6904. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  6905. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  6906. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  6907. color:#1890FF;
  6908. }
  6909. #u134559 {
  6910. border-width:0px;
  6911. position:absolute;
  6912. left:2925px;
  6913. top:50px;
  6914. width:1265px;
  6915. height:1193px;
  6916. display:flex;
  6917. color:#1890FF;
  6918. }
  6919. #u134559 .text {
  6920. position:absolute;
  6921. align-self:center;
  6922. padding:2px 2px 2px 2px;
  6923. box-sizing:border-box;
  6924. width:100%;
  6925. }
  6926. #u134559_text {
  6927. border-width:0px;
  6928. word-wrap:break-word;
  6929. text-transform:none;
  6930. visibility:hidden;
  6931. }
  6932. #u134560_div {
  6933. border-width:0px;
  6934. position:absolute;
  6935. left:0px;
  6936. top:0px;
  6937. width:73px;
  6938. height:50px;
  6939. background:inherit;
  6940. background-color:rgba(255, 255, 255, 0);
  6941. border:none;
  6942. border-left:0px;
  6943. border-top:0px;
  6944. border-right:0px;
  6945. border-radius:0px;
  6946. border-bottom-right-radius:0px;
  6947. border-bottom-left-radius:0px;
  6948. -moz-box-shadow:none;
  6949. -webkit-box-shadow:none;
  6950. box-shadow:none;
  6951. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6952. font-weight:500;
  6953. font-style:normal;
  6954. font-size:18px;
  6955. color:#1890FF;
  6956. }
  6957. #u134560 {
  6958. border-width:0px;
  6959. position:absolute;
  6960. left:2944px;
  6961. top:50px;
  6962. width:73px;
  6963. height:50px;
  6964. display:flex;
  6965. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6966. font-weight:500;
  6967. font-style:normal;
  6968. font-size:18px;
  6969. color:#1890FF;
  6970. }
  6971. #u134560 .text {
  6972. position:absolute;
  6973. align-self:center;
  6974. padding:0px 0px 0px 0px;
  6975. box-sizing:border-box;
  6976. width:100%;
  6977. }
  6978. #u134560_text {
  6979. border-width:0px;
  6980. white-space:nowrap;
  6981. text-transform:none;
  6982. }
  6983. #u134561 {
  6984. border-width:0px;
  6985. position:absolute;
  6986. left:0px;
  6987. top:0px;
  6988. width:0px;
  6989. height:0px;
  6990. }
  6991. #u134562_div {
  6992. border-width:0px;
  6993. position:absolute;
  6994. left:0px;
  6995. top:0px;
  6996. width:140px;
  6997. height:30px;
  6998. background:inherit;
  6999. background-color:rgba(255, 255, 255, 1);
  7000. box-sizing:border-box;
  7001. border-width:1px;
  7002. border-style:solid;
  7003. border-color:rgba(215, 215, 215, 1);
  7004. border-radius:4px;
  7005. -moz-box-shadow:none;
  7006. -webkit-box-shadow:none;
  7007. box-shadow:none;
  7008. font-size:14px;
  7009. }
  7010. #u134562 {
  7011. border-width:0px;
  7012. position:absolute;
  7013. left:2944px;
  7014. top:110px;
  7015. width:140px;
  7016. height:30px;
  7017. display:flex;
  7018. font-size:14px;
  7019. }
  7020. #u134562 .text {
  7021. position:absolute;
  7022. align-self:center;
  7023. padding:2px 2px 2px 2px;
  7024. box-sizing:border-box;
  7025. width:100%;
  7026. }
  7027. #u134562_text {
  7028. border-width:0px;
  7029. word-wrap:break-word;
  7030. text-transform:none;
  7031. visibility:hidden;
  7032. }
  7033. #u134563_input {
  7034. position:absolute;
  7035. left:0px;
  7036. top:0px;
  7037. width:134px;
  7038. height:23px;
  7039. padding:2px 2px 2px 2px;
  7040. font-family:'ArialMT', 'Arial', sans-serif;
  7041. font-weight:400;
  7042. font-style:normal;
  7043. font-size:12px;
  7044. letter-spacing:normal;
  7045. color:#AAAAAA;
  7046. vertical-align:none;
  7047. text-align:left;
  7048. text-transform:none;
  7049. background-color:transparent;
  7050. border-color:transparent;
  7051. }
  7052. #u134563_input.disabled {
  7053. position:absolute;
  7054. left:0px;
  7055. top:0px;
  7056. width:134px;
  7057. height:23px;
  7058. padding:2px 2px 2px 2px;
  7059. font-family:'ArialMT', 'Arial', sans-serif;
  7060. font-weight:400;
  7061. font-style:normal;
  7062. font-size:12px;
  7063. letter-spacing:normal;
  7064. color:#AAAAAA;
  7065. vertical-align:none;
  7066. text-align:left;
  7067. text-transform:none;
  7068. background-color:transparent;
  7069. border-color:transparent;
  7070. }
  7071. #u134563_div {
  7072. border-width:0px;
  7073. position:absolute;
  7074. left:0px;
  7075. top:0px;
  7076. width:134px;
  7077. height:23px;
  7078. background:inherit;
  7079. background-color:rgba(255, 255, 255, 1);
  7080. border:none;
  7081. border-radius:0px;
  7082. -moz-box-shadow:none;
  7083. -webkit-box-shadow:none;
  7084. box-shadow:none;
  7085. font-size:12px;
  7086. color:#AAAAAA;
  7087. }
  7088. #u134563 {
  7089. border-width:0px;
  7090. position:absolute;
  7091. left:2948px;
  7092. top:112px;
  7093. width:134px;
  7094. height:23px;
  7095. display:flex;
  7096. font-size:12px;
  7097. color:#AAAAAA;
  7098. }
  7099. #u134563 .text {
  7100. position:absolute;
  7101. align-self:flex-start;
  7102. padding:2px 2px 2px 2px;
  7103. box-sizing:border-box;
  7104. width:100%;
  7105. }
  7106. #u134563_div.disabled {
  7107. border-width:0px;
  7108. position:absolute;
  7109. left:0px;
  7110. top:0px;
  7111. width:134px;
  7112. height:23px;
  7113. background:inherit;
  7114. background-color:rgba(240, 240, 240, 1);
  7115. border:none;
  7116. border-radius:0px;
  7117. -moz-box-shadow:none;
  7118. -webkit-box-shadow:none;
  7119. box-shadow:none;
  7120. font-size:12px;
  7121. color:#AAAAAA;
  7122. }
  7123. #u134563.disabled {
  7124. }
  7125. .u134563_input_option {
  7126. font-size:12px;
  7127. }
  7128. #u134564 {
  7129. border-width:0px;
  7130. position:absolute;
  7131. left:0px;
  7132. top:0px;
  7133. width:0px;
  7134. height:0px;
  7135. }
  7136. #u134565_div {
  7137. border-width:0px;
  7138. position:absolute;
  7139. left:0px;
  7140. top:0px;
  7141. width:140px;
  7142. height:30px;
  7143. background:inherit;
  7144. background-color:rgba(255, 255, 255, 1);
  7145. box-sizing:border-box;
  7146. border-width:1px;
  7147. border-style:solid;
  7148. border-color:rgba(215, 215, 215, 1);
  7149. border-radius:4px;
  7150. -moz-box-shadow:none;
  7151. -webkit-box-shadow:none;
  7152. box-shadow:none;
  7153. font-size:11px;
  7154. }
  7155. #u134565 {
  7156. border-width:0px;
  7157. position:absolute;
  7158. left:3544px;
  7159. top:110px;
  7160. width:140px;
  7161. height:30px;
  7162. display:flex;
  7163. font-size:11px;
  7164. }
  7165. #u134565 .text {
  7166. position:absolute;
  7167. align-self:center;
  7168. padding:2px 2px 2px 2px;
  7169. box-sizing:border-box;
  7170. width:100%;
  7171. }
  7172. #u134565_text {
  7173. border-width:0px;
  7174. word-wrap:break-word;
  7175. text-transform:none;
  7176. visibility:hidden;
  7177. }
  7178. #u134566_input {
  7179. position:absolute;
  7180. left:0px;
  7181. top:0px;
  7182. width:120px;
  7183. height:23px;
  7184. padding:2px 2px 2px 2px;
  7185. font-family:'ArialMT', 'Arial', sans-serif;
  7186. font-weight:400;
  7187. font-style:normal;
  7188. font-size:12px;
  7189. letter-spacing:normal;
  7190. color:#AAAAAA;
  7191. vertical-align:none;
  7192. text-align:left;
  7193. text-transform:none;
  7194. background-color:transparent;
  7195. border-color:transparent;
  7196. }
  7197. #u134566_input.disabled {
  7198. position:absolute;
  7199. left:0px;
  7200. top:0px;
  7201. width:120px;
  7202. height:23px;
  7203. padding:2px 2px 2px 2px;
  7204. font-family:'ArialMT', 'Arial', sans-serif;
  7205. font-weight:400;
  7206. font-style:normal;
  7207. font-size:12px;
  7208. letter-spacing:normal;
  7209. color:#AAAAAA;
  7210. vertical-align:none;
  7211. text-align:left;
  7212. text-transform:none;
  7213. background-color:transparent;
  7214. border-color:transparent;
  7215. }
  7216. #u134566_div {
  7217. border-width:0px;
  7218. position:absolute;
  7219. left:0px;
  7220. top:0px;
  7221. width:120px;
  7222. height:23px;
  7223. background:inherit;
  7224. background-color:rgba(255, 255, 255, 1);
  7225. border:none;
  7226. border-radius:0px;
  7227. -moz-box-shadow:none;
  7228. -webkit-box-shadow:none;
  7229. box-shadow:none;
  7230. font-size:12px;
  7231. color:#AAAAAA;
  7232. }
  7233. #u134566 {
  7234. border-width:0px;
  7235. position:absolute;
  7236. left:3551px;
  7237. top:112px;
  7238. width:120px;
  7239. height:23px;
  7240. display:flex;
  7241. font-size:12px;
  7242. color:#AAAAAA;
  7243. }
  7244. #u134566 .text {
  7245. position:absolute;
  7246. align-self:flex-start;
  7247. padding:2px 2px 2px 2px;
  7248. box-sizing:border-box;
  7249. width:100%;
  7250. }
  7251. #u134566_div.disabled {
  7252. border-width:0px;
  7253. position:absolute;
  7254. left:0px;
  7255. top:0px;
  7256. width:120px;
  7257. height:23px;
  7258. background:inherit;
  7259. background-color:rgba(240, 240, 240, 1);
  7260. border:none;
  7261. border-radius:0px;
  7262. -moz-box-shadow:none;
  7263. -webkit-box-shadow:none;
  7264. box-shadow:none;
  7265. font-size:12px;
  7266. color:#AAAAAA;
  7267. }
  7268. #u134566.disabled {
  7269. }
  7270. .u134566_input_option {
  7271. font-size:12px;
  7272. }
  7273. #u134567_div {
  7274. border-width:0px;
  7275. position:absolute;
  7276. left:0px;
  7277. top:0px;
  7278. width:73px;
  7279. height:50px;
  7280. background:inherit;
  7281. background-color:rgba(255, 255, 255, 0);
  7282. border:none;
  7283. border-left:0px;
  7284. border-top:0px;
  7285. border-right:0px;
  7286. border-radius:0px;
  7287. border-bottom-right-radius:0px;
  7288. border-bottom-left-radius:0px;
  7289. -moz-box-shadow:none;
  7290. -webkit-box-shadow:none;
  7291. box-shadow:none;
  7292. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7293. font-weight:500;
  7294. font-style:normal;
  7295. font-size:18px;
  7296. }
  7297. #u134567 {
  7298. border-width:0px;
  7299. position:absolute;
  7300. left:3047px;
  7301. top:50px;
  7302. width:73px;
  7303. height:50px;
  7304. display:flex;
  7305. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7306. font-weight:500;
  7307. font-style:normal;
  7308. font-size:18px;
  7309. }
  7310. #u134567 .text {
  7311. position:absolute;
  7312. align-self:center;
  7313. padding:0px 0px 0px 0px;
  7314. box-sizing:border-box;
  7315. width:100%;
  7316. }
  7317. #u134567_text {
  7318. border-width:0px;
  7319. white-space:nowrap;
  7320. text-transform:none;
  7321. }
  7322. #u134568 {
  7323. border-width:0px;
  7324. position:absolute;
  7325. left:0px;
  7326. top:0px;
  7327. width:0px;
  7328. height:0px;
  7329. }
  7330. #u134569_div {
  7331. border-width:0px;
  7332. position:absolute;
  7333. left:0px;
  7334. top:0px;
  7335. width:59px;
  7336. height:30px;
  7337. background:inherit;
  7338. background-color:rgba(24, 144, 255, 1);
  7339. box-sizing:border-box;
  7340. border-width:1px;
  7341. border-style:solid;
  7342. border-color:rgba(0, 153, 255, 1);
  7343. border-radius:4px;
  7344. -moz-box-shadow:none;
  7345. -webkit-box-shadow:none;
  7346. box-shadow:none;
  7347. font-family:'Microsoft YaHei', sans-serif;
  7348. font-weight:400;
  7349. font-style:normal;
  7350. font-size:14px;
  7351. color:#FFFFFF;
  7352. }
  7353. #u134569 {
  7354. border-width:0px;
  7355. position:absolute;
  7356. left:3694px;
  7357. top:110px;
  7358. width:59px;
  7359. height:30px;
  7360. display:flex;
  7361. font-family:'Microsoft YaHei', sans-serif;
  7362. font-weight:400;
  7363. font-style:normal;
  7364. font-size:14px;
  7365. color:#FFFFFF;
  7366. }
  7367. #u134569 .text {
  7368. position:absolute;
  7369. align-self:center;
  7370. padding:5px 15px 5px 15px;
  7371. box-sizing:border-box;
  7372. width:100%;
  7373. }
  7374. #u134569_text {
  7375. border-width:0px;
  7376. white-space:nowrap;
  7377. text-transform:none;
  7378. }
  7379. #u134570_div {
  7380. border-width:0px;
  7381. position:absolute;
  7382. left:0px;
  7383. top:0px;
  7384. width:55px;
  7385. height:30px;
  7386. background:inherit;
  7387. background-color:rgba(255, 255, 255, 1);
  7388. box-sizing:border-box;
  7389. border-width:1px;
  7390. border-style:solid;
  7391. border-color:rgba(170, 170, 170, 1);
  7392. border-radius:4px;
  7393. -moz-box-shadow:none;
  7394. -webkit-box-shadow:none;
  7395. box-shadow:none;
  7396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7397. font-weight:400;
  7398. font-style:normal;
  7399. font-size:12px;
  7400. color:#555555;
  7401. }
  7402. #u134570 {
  7403. border-width:0px;
  7404. position:absolute;
  7405. left:3763px;
  7406. top:110px;
  7407. width:55px;
  7408. height:30px;
  7409. display:flex;
  7410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7411. font-weight:400;
  7412. font-style:normal;
  7413. font-size:12px;
  7414. color:#555555;
  7415. }
  7416. #u134570 .text {
  7417. position:absolute;
  7418. align-self:center;
  7419. padding:5px 15px 5px 15px;
  7420. box-sizing:border-box;
  7421. width:100%;
  7422. }
  7423. #u134570_text {
  7424. border-width:0px;
  7425. white-space:nowrap;
  7426. text-transform:none;
  7427. }
  7428. #u134571 {
  7429. border-width:0px;
  7430. position:absolute;
  7431. left:0px;
  7432. top:0px;
  7433. width:0px;
  7434. height:0px;
  7435. }
  7436. #u134572_div {
  7437. border-width:0px;
  7438. position:absolute;
  7439. left:0px;
  7440. top:0px;
  7441. width:140px;
  7442. height:30px;
  7443. background:inherit;
  7444. background-color:rgba(255, 255, 255, 1);
  7445. box-sizing:border-box;
  7446. border-width:1px;
  7447. border-style:solid;
  7448. border-color:rgba(201, 201, 201, 1);
  7449. border-radius:4px;
  7450. -moz-box-shadow:none;
  7451. -webkit-box-shadow:none;
  7452. box-shadow:none;
  7453. font-family:'Microsoft YaHei', sans-serif;
  7454. font-weight:400;
  7455. font-style:normal;
  7456. font-size:14px;
  7457. color:#CCCCCC;
  7458. text-align:left;
  7459. }
  7460. #u134572 {
  7461. border-width:0px;
  7462. position:absolute;
  7463. left:3244px;
  7464. top:110px;
  7465. width:140px;
  7466. height:30px;
  7467. display:flex;
  7468. font-family:'Microsoft YaHei', sans-serif;
  7469. font-weight:400;
  7470. font-style:normal;
  7471. font-size:14px;
  7472. color:#CCCCCC;
  7473. text-align:left;
  7474. }
  7475. #u134572 .text {
  7476. position:absolute;
  7477. align-self:center;
  7478. padding:2px 8px 2px 8px;
  7479. box-sizing:border-box;
  7480. width:100%;
  7481. }
  7482. #u134572_text {
  7483. border-width:0px;
  7484. word-wrap:break-word;
  7485. text-transform:none;
  7486. visibility:hidden;
  7487. }
  7488. #u134573_input {
  7489. position:absolute;
  7490. left:0px;
  7491. top:0px;
  7492. width:127px;
  7493. height:25px;
  7494. padding:2px 2px 2px 2px;
  7495. font-family:'Microsoft YaHei', sans-serif;
  7496. font-weight:400;
  7497. font-style:normal;
  7498. font-size:10px;
  7499. letter-spacing:normal;
  7500. color:#000000;
  7501. vertical-align:none;
  7502. text-align:left;
  7503. text-transform:none;
  7504. background-color:transparent;
  7505. border-color:transparent;
  7506. }
  7507. #u134573_input.disabled {
  7508. position:absolute;
  7509. left:0px;
  7510. top:0px;
  7511. width:127px;
  7512. height:25px;
  7513. padding:2px 2px 2px 2px;
  7514. font-family:'Microsoft YaHei', sans-serif;
  7515. font-weight:400;
  7516. font-style:normal;
  7517. font-size:10px;
  7518. letter-spacing:normal;
  7519. color:#000000;
  7520. vertical-align:none;
  7521. text-align:left;
  7522. text-transform:none;
  7523. background-color:transparent;
  7524. border-color:transparent;
  7525. }
  7526. #u134573_div {
  7527. border-width:0px;
  7528. position:absolute;
  7529. left:0px;
  7530. top:0px;
  7531. width:127px;
  7532. height:25px;
  7533. background:inherit;
  7534. background-color:rgba(255, 255, 255, 1);
  7535. border:none;
  7536. border-radius:0px;
  7537. -moz-box-shadow:none;
  7538. -webkit-box-shadow:none;
  7539. box-shadow:none;
  7540. font-family:'Microsoft YaHei', sans-serif;
  7541. font-weight:400;
  7542. font-style:normal;
  7543. font-size:10px;
  7544. }
  7545. #u134573 {
  7546. border-width:0px;
  7547. position:absolute;
  7548. left:3252px;
  7549. top:111px;
  7550. width:127px;
  7551. height:25px;
  7552. display:flex;
  7553. font-family:'Microsoft YaHei', sans-serif;
  7554. font-weight:400;
  7555. font-style:normal;
  7556. font-size:10px;
  7557. }
  7558. #u134573 .text {
  7559. position:absolute;
  7560. align-self:center;
  7561. padding:2px 2px 2px 2px;
  7562. box-sizing:border-box;
  7563. width:100%;
  7564. }
  7565. #u134573_div.disabled {
  7566. border-width:0px;
  7567. position:absolute;
  7568. left:0px;
  7569. top:0px;
  7570. width:127px;
  7571. height:25px;
  7572. background:inherit;
  7573. background-color:rgba(240, 240, 240, 1);
  7574. border:none;
  7575. border-radius:0px;
  7576. -moz-box-shadow:none;
  7577. -webkit-box-shadow:none;
  7578. box-shadow:none;
  7579. font-family:'Microsoft YaHei', sans-serif;
  7580. font-weight:400;
  7581. font-style:normal;
  7582. font-size:10px;
  7583. }
  7584. #u134573.disabled {
  7585. }
  7586. #u134574 {
  7587. border-width:0px;
  7588. position:absolute;
  7589. left:0px;
  7590. top:0px;
  7591. width:0px;
  7592. height:0px;
  7593. }
  7594. #u134575_div {
  7595. border-width:0px;
  7596. position:absolute;
  7597. left:0px;
  7598. top:0px;
  7599. width:140px;
  7600. height:30px;
  7601. background:inherit;
  7602. background-color:rgba(255, 255, 255, 1);
  7603. box-sizing:border-box;
  7604. border-width:1px;
  7605. border-style:solid;
  7606. border-color:rgba(215, 215, 215, 1);
  7607. border-radius:4px;
  7608. -moz-box-shadow:none;
  7609. -webkit-box-shadow:none;
  7610. box-shadow:none;
  7611. font-size:11px;
  7612. }
  7613. #u134575 {
  7614. border-width:0px;
  7615. position:absolute;
  7616. left:3394px;
  7617. top:110px;
  7618. width:140px;
  7619. height:30px;
  7620. display:flex;
  7621. font-size:11px;
  7622. }
  7623. #u134575 .text {
  7624. position:absolute;
  7625. align-self:center;
  7626. padding:2px 2px 2px 2px;
  7627. box-sizing:border-box;
  7628. width:100%;
  7629. }
  7630. #u134575_text {
  7631. border-width:0px;
  7632. word-wrap:break-word;
  7633. text-transform:none;
  7634. visibility:hidden;
  7635. }
  7636. #u134576_input {
  7637. position:absolute;
  7638. left:0px;
  7639. top:0px;
  7640. width:120px;
  7641. height:23px;
  7642. padding:2px 2px 2px 2px;
  7643. font-family:'ArialMT', 'Arial', sans-serif;
  7644. font-weight:400;
  7645. font-style:normal;
  7646. font-size:12px;
  7647. letter-spacing:normal;
  7648. color:#AAAAAA;
  7649. vertical-align:none;
  7650. text-align:left;
  7651. text-transform:none;
  7652. background-color:transparent;
  7653. border-color:transparent;
  7654. }
  7655. #u134576_input.disabled {
  7656. position:absolute;
  7657. left:0px;
  7658. top:0px;
  7659. width:120px;
  7660. height:23px;
  7661. padding:2px 2px 2px 2px;
  7662. font-family:'ArialMT', 'Arial', sans-serif;
  7663. font-weight:400;
  7664. font-style:normal;
  7665. font-size:12px;
  7666. letter-spacing:normal;
  7667. color:#AAAAAA;
  7668. vertical-align:none;
  7669. text-align:left;
  7670. text-transform:none;
  7671. background-color:transparent;
  7672. border-color:transparent;
  7673. }
  7674. #u134576_div {
  7675. border-width:0px;
  7676. position:absolute;
  7677. left:0px;
  7678. top:0px;
  7679. width:120px;
  7680. height:23px;
  7681. background:inherit;
  7682. background-color:rgba(255, 255, 255, 1);
  7683. border:none;
  7684. border-radius:0px;
  7685. -moz-box-shadow:none;
  7686. -webkit-box-shadow:none;
  7687. box-shadow:none;
  7688. font-size:12px;
  7689. color:#AAAAAA;
  7690. }
  7691. #u134576 {
  7692. border-width:0px;
  7693. position:absolute;
  7694. left:3401px;
  7695. top:112px;
  7696. width:120px;
  7697. height:23px;
  7698. display:flex;
  7699. font-size:12px;
  7700. color:#AAAAAA;
  7701. }
  7702. #u134576 .text {
  7703. position:absolute;
  7704. align-self:flex-start;
  7705. padding:2px 2px 2px 2px;
  7706. box-sizing:border-box;
  7707. width:100%;
  7708. }
  7709. #u134576_div.disabled {
  7710. border-width:0px;
  7711. position:absolute;
  7712. left:0px;
  7713. top:0px;
  7714. width:120px;
  7715. height:23px;
  7716. background:inherit;
  7717. background-color:rgba(240, 240, 240, 1);
  7718. border:none;
  7719. border-radius:0px;
  7720. -moz-box-shadow:none;
  7721. -webkit-box-shadow:none;
  7722. box-shadow:none;
  7723. font-size:12px;
  7724. color:#AAAAAA;
  7725. }
  7726. #u134576.disabled {
  7727. }
  7728. .u134576_input_option {
  7729. font-size:12px;
  7730. }
  7731. #u134577_div {
  7732. border-width:0px;
  7733. position:absolute;
  7734. left:0px;
  7735. top:0px;
  7736. width:1265px;
  7737. height:1193px;
  7738. background:inherit;
  7739. background-color:rgba(255, 255, 255, 1);
  7740. border:none;
  7741. border-radius:0px;
  7742. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  7743. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  7744. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  7745. color:#1890FF;
  7746. }
  7747. #u134577 {
  7748. border-width:0px;
  7749. position:absolute;
  7750. left:1640px;
  7751. top:50px;
  7752. width:1265px;
  7753. height:1193px;
  7754. display:flex;
  7755. color:#1890FF;
  7756. }
  7757. #u134577 .text {
  7758. position:absolute;
  7759. align-self:center;
  7760. padding:2px 2px 2px 2px;
  7761. box-sizing:border-box;
  7762. width:100%;
  7763. }
  7764. #u134577_text {
  7765. border-width:0px;
  7766. word-wrap:break-word;
  7767. text-transform:none;
  7768. visibility:hidden;
  7769. }
  7770. #u134578_div {
  7771. border-width:0px;
  7772. position:absolute;
  7773. left:0px;
  7774. top:0px;
  7775. width:73px;
  7776. height:50px;
  7777. background:inherit;
  7778. background-color:rgba(255, 255, 255, 0);
  7779. border:none;
  7780. border-left:0px;
  7781. border-top:0px;
  7782. border-right:0px;
  7783. border-radius:0px;
  7784. border-bottom-right-radius:0px;
  7785. border-bottom-left-radius:0px;
  7786. -moz-box-shadow:none;
  7787. -webkit-box-shadow:none;
  7788. box-shadow:none;
  7789. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7790. font-weight:500;
  7791. font-style:normal;
  7792. font-size:18px;
  7793. color:#1890FF;
  7794. }
  7795. #u134578 {
  7796. border-width:0px;
  7797. position:absolute;
  7798. left:1659px;
  7799. top:50px;
  7800. width:73px;
  7801. height:50px;
  7802. display:flex;
  7803. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7804. font-weight:500;
  7805. font-style:normal;
  7806. font-size:18px;
  7807. color:#1890FF;
  7808. }
  7809. #u134578 .text {
  7810. position:absolute;
  7811. align-self:center;
  7812. padding:0px 0px 0px 0px;
  7813. box-sizing:border-box;
  7814. width:100%;
  7815. }
  7816. #u134578_text {
  7817. border-width:0px;
  7818. white-space:nowrap;
  7819. text-transform:none;
  7820. }
  7821. #u134579 {
  7822. border-width:0px;
  7823. position:absolute;
  7824. left:0px;
  7825. top:0px;
  7826. width:0px;
  7827. height:0px;
  7828. }
  7829. #u134580_div {
  7830. border-width:0px;
  7831. position:absolute;
  7832. left:0px;
  7833. top:0px;
  7834. width:140px;
  7835. height:30px;
  7836. background:inherit;
  7837. background-color:rgba(255, 255, 255, 1);
  7838. box-sizing:border-box;
  7839. border-width:1px;
  7840. border-style:solid;
  7841. border-color:rgba(215, 215, 215, 1);
  7842. border-radius:4px;
  7843. -moz-box-shadow:none;
  7844. -webkit-box-shadow:none;
  7845. box-shadow:none;
  7846. font-size:14px;
  7847. }
  7848. #u134580 {
  7849. border-width:0px;
  7850. position:absolute;
  7851. left:1659px;
  7852. top:110px;
  7853. width:140px;
  7854. height:30px;
  7855. display:flex;
  7856. font-size:14px;
  7857. }
  7858. #u134580 .text {
  7859. position:absolute;
  7860. align-self:center;
  7861. padding:2px 2px 2px 2px;
  7862. box-sizing:border-box;
  7863. width:100%;
  7864. }
  7865. #u134580_text {
  7866. border-width:0px;
  7867. word-wrap:break-word;
  7868. text-transform:none;
  7869. visibility:hidden;
  7870. }
  7871. #u134581_input {
  7872. position:absolute;
  7873. left:0px;
  7874. top:0px;
  7875. width:134px;
  7876. height:23px;
  7877. padding:2px 2px 2px 2px;
  7878. font-family:'ArialMT', 'Arial', sans-serif;
  7879. font-weight:400;
  7880. font-style:normal;
  7881. font-size:12px;
  7882. letter-spacing:normal;
  7883. color:#AAAAAA;
  7884. vertical-align:none;
  7885. text-align:left;
  7886. text-transform:none;
  7887. background-color:transparent;
  7888. border-color:transparent;
  7889. }
  7890. #u134581_input.disabled {
  7891. position:absolute;
  7892. left:0px;
  7893. top:0px;
  7894. width:134px;
  7895. height:23px;
  7896. padding:2px 2px 2px 2px;
  7897. font-family:'ArialMT', 'Arial', sans-serif;
  7898. font-weight:400;
  7899. font-style:normal;
  7900. font-size:12px;
  7901. letter-spacing:normal;
  7902. color:#AAAAAA;
  7903. vertical-align:none;
  7904. text-align:left;
  7905. text-transform:none;
  7906. background-color:transparent;
  7907. border-color:transparent;
  7908. }
  7909. #u134581_div {
  7910. border-width:0px;
  7911. position:absolute;
  7912. left:0px;
  7913. top:0px;
  7914. width:134px;
  7915. height:23px;
  7916. background:inherit;
  7917. background-color:rgba(255, 255, 255, 1);
  7918. border:none;
  7919. border-radius:0px;
  7920. -moz-box-shadow:none;
  7921. -webkit-box-shadow:none;
  7922. box-shadow:none;
  7923. font-size:12px;
  7924. color:#AAAAAA;
  7925. }
  7926. #u134581 {
  7927. border-width:0px;
  7928. position:absolute;
  7929. left:1663px;
  7930. top:112px;
  7931. width:134px;
  7932. height:23px;
  7933. display:flex;
  7934. font-size:12px;
  7935. color:#AAAAAA;
  7936. }
  7937. #u134581 .text {
  7938. position:absolute;
  7939. align-self:flex-start;
  7940. padding:2px 2px 2px 2px;
  7941. box-sizing:border-box;
  7942. width:100%;
  7943. }
  7944. #u134581_div.disabled {
  7945. border-width:0px;
  7946. position:absolute;
  7947. left:0px;
  7948. top:0px;
  7949. width:134px;
  7950. height:23px;
  7951. background:inherit;
  7952. background-color:rgba(240, 240, 240, 1);
  7953. border:none;
  7954. border-radius:0px;
  7955. -moz-box-shadow:none;
  7956. -webkit-box-shadow:none;
  7957. box-shadow:none;
  7958. font-size:12px;
  7959. color:#AAAAAA;
  7960. }
  7961. #u134581.disabled {
  7962. }
  7963. .u134581_input_option {
  7964. font-size:12px;
  7965. }
  7966. #u134582 {
  7967. border-width:0px;
  7968. position:absolute;
  7969. left:0px;
  7970. top:0px;
  7971. width:0px;
  7972. height:0px;
  7973. }
  7974. #u134583_div {
  7975. border-width:0px;
  7976. position:absolute;
  7977. left:0px;
  7978. top:0px;
  7979. width:140px;
  7980. height:30px;
  7981. background:inherit;
  7982. background-color:rgba(255, 255, 255, 1);
  7983. box-sizing:border-box;
  7984. border-width:1px;
  7985. border-style:solid;
  7986. border-color:rgba(215, 215, 215, 1);
  7987. border-radius:4px;
  7988. -moz-box-shadow:none;
  7989. -webkit-box-shadow:none;
  7990. box-shadow:none;
  7991. font-size:11px;
  7992. }
  7993. #u134583 {
  7994. border-width:0px;
  7995. position:absolute;
  7996. left:2259px;
  7997. top:110px;
  7998. width:140px;
  7999. height:30px;
  8000. display:flex;
  8001. font-size:11px;
  8002. }
  8003. #u134583 .text {
  8004. position:absolute;
  8005. align-self:center;
  8006. padding:2px 2px 2px 2px;
  8007. box-sizing:border-box;
  8008. width:100%;
  8009. }
  8010. #u134583_text {
  8011. border-width:0px;
  8012. word-wrap:break-word;
  8013. text-transform:none;
  8014. visibility:hidden;
  8015. }
  8016. #u134584_input {
  8017. position:absolute;
  8018. left:0px;
  8019. top:0px;
  8020. width:120px;
  8021. height:23px;
  8022. padding:2px 2px 2px 2px;
  8023. font-family:'ArialMT', 'Arial', sans-serif;
  8024. font-weight:400;
  8025. font-style:normal;
  8026. font-size:12px;
  8027. letter-spacing:normal;
  8028. color:#AAAAAA;
  8029. vertical-align:none;
  8030. text-align:left;
  8031. text-transform:none;
  8032. background-color:transparent;
  8033. border-color:transparent;
  8034. }
  8035. #u134584_input.disabled {
  8036. position:absolute;
  8037. left:0px;
  8038. top:0px;
  8039. width:120px;
  8040. height:23px;
  8041. padding:2px 2px 2px 2px;
  8042. font-family:'ArialMT', 'Arial', sans-serif;
  8043. font-weight:400;
  8044. font-style:normal;
  8045. font-size:12px;
  8046. letter-spacing:normal;
  8047. color:#AAAAAA;
  8048. vertical-align:none;
  8049. text-align:left;
  8050. text-transform:none;
  8051. background-color:transparent;
  8052. border-color:transparent;
  8053. }
  8054. #u134584_div {
  8055. border-width:0px;
  8056. position:absolute;
  8057. left:0px;
  8058. top:0px;
  8059. width:120px;
  8060. height:23px;
  8061. background:inherit;
  8062. background-color:rgba(255, 255, 255, 1);
  8063. border:none;
  8064. border-radius:0px;
  8065. -moz-box-shadow:none;
  8066. -webkit-box-shadow:none;
  8067. box-shadow:none;
  8068. font-size:12px;
  8069. color:#AAAAAA;
  8070. }
  8071. #u134584 {
  8072. border-width:0px;
  8073. position:absolute;
  8074. left:2266px;
  8075. top:112px;
  8076. width:120px;
  8077. height:23px;
  8078. display:flex;
  8079. font-size:12px;
  8080. color:#AAAAAA;
  8081. }
  8082. #u134584 .text {
  8083. position:absolute;
  8084. align-self:flex-start;
  8085. padding:2px 2px 2px 2px;
  8086. box-sizing:border-box;
  8087. width:100%;
  8088. }
  8089. #u134584_div.disabled {
  8090. border-width:0px;
  8091. position:absolute;
  8092. left:0px;
  8093. top:0px;
  8094. width:120px;
  8095. height:23px;
  8096. background:inherit;
  8097. background-color:rgba(240, 240, 240, 1);
  8098. border:none;
  8099. border-radius:0px;
  8100. -moz-box-shadow:none;
  8101. -webkit-box-shadow:none;
  8102. box-shadow:none;
  8103. font-size:12px;
  8104. color:#AAAAAA;
  8105. }
  8106. #u134584.disabled {
  8107. }
  8108. .u134584_input_option {
  8109. font-size:12px;
  8110. }
  8111. #u134585_div {
  8112. border-width:0px;
  8113. position:absolute;
  8114. left:0px;
  8115. top:0px;
  8116. width:73px;
  8117. height:50px;
  8118. background:inherit;
  8119. background-color:rgba(255, 255, 255, 0);
  8120. border:none;
  8121. border-left:0px;
  8122. border-top:0px;
  8123. border-right:0px;
  8124. border-radius:0px;
  8125. border-bottom-right-radius:0px;
  8126. border-bottom-left-radius:0px;
  8127. -moz-box-shadow:none;
  8128. -webkit-box-shadow:none;
  8129. box-shadow:none;
  8130. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8131. font-weight:500;
  8132. font-style:normal;
  8133. font-size:18px;
  8134. }
  8135. #u134585 {
  8136. border-width:0px;
  8137. position:absolute;
  8138. left:1762px;
  8139. top:50px;
  8140. width:73px;
  8141. height:50px;
  8142. display:flex;
  8143. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8144. font-weight:500;
  8145. font-style:normal;
  8146. font-size:18px;
  8147. }
  8148. #u134585 .text {
  8149. position:absolute;
  8150. align-self:center;
  8151. padding:0px 0px 0px 0px;
  8152. box-sizing:border-box;
  8153. width:100%;
  8154. }
  8155. #u134585_text {
  8156. border-width:0px;
  8157. white-space:nowrap;
  8158. text-transform:none;
  8159. }
  8160. #u134586 {
  8161. border-width:0px;
  8162. position:absolute;
  8163. left:0px;
  8164. top:0px;
  8165. width:0px;
  8166. height:0px;
  8167. }
  8168. #u134587_div {
  8169. border-width:0px;
  8170. position:absolute;
  8171. left:0px;
  8172. top:0px;
  8173. width:59px;
  8174. height:30px;
  8175. background:inherit;
  8176. background-color:rgba(24, 144, 255, 1);
  8177. box-sizing:border-box;
  8178. border-width:1px;
  8179. border-style:solid;
  8180. border-color:rgba(0, 153, 255, 1);
  8181. border-radius:4px;
  8182. -moz-box-shadow:none;
  8183. -webkit-box-shadow:none;
  8184. box-shadow:none;
  8185. font-family:'Microsoft YaHei', sans-serif;
  8186. font-weight:400;
  8187. font-style:normal;
  8188. font-size:14px;
  8189. color:#FFFFFF;
  8190. }
  8191. #u134587 {
  8192. border-width:0px;
  8193. position:absolute;
  8194. left:2409px;
  8195. top:110px;
  8196. width:59px;
  8197. height:30px;
  8198. display:flex;
  8199. font-family:'Microsoft YaHei', sans-serif;
  8200. font-weight:400;
  8201. font-style:normal;
  8202. font-size:14px;
  8203. color:#FFFFFF;
  8204. }
  8205. #u134587 .text {
  8206. position:absolute;
  8207. align-self:center;
  8208. padding:5px 15px 5px 15px;
  8209. box-sizing:border-box;
  8210. width:100%;
  8211. }
  8212. #u134587_text {
  8213. border-width:0px;
  8214. white-space:nowrap;
  8215. text-transform:none;
  8216. }
  8217. #u134588_div {
  8218. border-width:0px;
  8219. position:absolute;
  8220. left:0px;
  8221. top:0px;
  8222. width:55px;
  8223. height:30px;
  8224. background:inherit;
  8225. background-color:rgba(255, 255, 255, 1);
  8226. box-sizing:border-box;
  8227. border-width:1px;
  8228. border-style:solid;
  8229. border-color:rgba(170, 170, 170, 1);
  8230. border-radius:4px;
  8231. -moz-box-shadow:none;
  8232. -webkit-box-shadow:none;
  8233. box-shadow:none;
  8234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8235. font-weight:400;
  8236. font-style:normal;
  8237. font-size:12px;
  8238. color:#555555;
  8239. }
  8240. #u134588 {
  8241. border-width:0px;
  8242. position:absolute;
  8243. left:2478px;
  8244. top:110px;
  8245. width:55px;
  8246. height:30px;
  8247. display:flex;
  8248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8249. font-weight:400;
  8250. font-style:normal;
  8251. font-size:12px;
  8252. color:#555555;
  8253. }
  8254. #u134588 .text {
  8255. position:absolute;
  8256. align-self:center;
  8257. padding:5px 15px 5px 15px;
  8258. box-sizing:border-box;
  8259. width:100%;
  8260. }
  8261. #u134588_text {
  8262. border-width:0px;
  8263. white-space:nowrap;
  8264. text-transform:none;
  8265. }
  8266. #u134589 {
  8267. border-width:0px;
  8268. position:absolute;
  8269. left:0px;
  8270. top:0px;
  8271. width:0px;
  8272. height:0px;
  8273. }
  8274. #u134590_div {
  8275. border-width:0px;
  8276. position:absolute;
  8277. left:0px;
  8278. top:0px;
  8279. width:140px;
  8280. height:30px;
  8281. background:inherit;
  8282. background-color:rgba(255, 255, 255, 1);
  8283. box-sizing:border-box;
  8284. border-width:1px;
  8285. border-style:solid;
  8286. border-color:rgba(201, 201, 201, 1);
  8287. border-radius:4px;
  8288. -moz-box-shadow:none;
  8289. -webkit-box-shadow:none;
  8290. box-shadow:none;
  8291. font-family:'Microsoft YaHei', sans-serif;
  8292. font-weight:400;
  8293. font-style:normal;
  8294. font-size:14px;
  8295. color:#CCCCCC;
  8296. text-align:left;
  8297. }
  8298. #u134590 {
  8299. border-width:0px;
  8300. position:absolute;
  8301. left:1959px;
  8302. top:110px;
  8303. width:140px;
  8304. height:30px;
  8305. display:flex;
  8306. font-family:'Microsoft YaHei', sans-serif;
  8307. font-weight:400;
  8308. font-style:normal;
  8309. font-size:14px;
  8310. color:#CCCCCC;
  8311. text-align:left;
  8312. }
  8313. #u134590 .text {
  8314. position:absolute;
  8315. align-self:center;
  8316. padding:2px 8px 2px 8px;
  8317. box-sizing:border-box;
  8318. width:100%;
  8319. }
  8320. #u134590_text {
  8321. border-width:0px;
  8322. word-wrap:break-word;
  8323. text-transform:none;
  8324. visibility:hidden;
  8325. }
  8326. #u134591_input {
  8327. position:absolute;
  8328. left:0px;
  8329. top:0px;
  8330. width:127px;
  8331. height:25px;
  8332. padding:2px 2px 2px 2px;
  8333. font-family:'Microsoft YaHei', sans-serif;
  8334. font-weight:400;
  8335. font-style:normal;
  8336. font-size:10px;
  8337. letter-spacing:normal;
  8338. color:#000000;
  8339. vertical-align:none;
  8340. text-align:left;
  8341. text-transform:none;
  8342. background-color:transparent;
  8343. border-color:transparent;
  8344. }
  8345. #u134591_input.disabled {
  8346. position:absolute;
  8347. left:0px;
  8348. top:0px;
  8349. width:127px;
  8350. height:25px;
  8351. padding:2px 2px 2px 2px;
  8352. font-family:'Microsoft YaHei', sans-serif;
  8353. font-weight:400;
  8354. font-style:normal;
  8355. font-size:10px;
  8356. letter-spacing:normal;
  8357. color:#000000;
  8358. vertical-align:none;
  8359. text-align:left;
  8360. text-transform:none;
  8361. background-color:transparent;
  8362. border-color:transparent;
  8363. }
  8364. #u134591_div {
  8365. border-width:0px;
  8366. position:absolute;
  8367. left:0px;
  8368. top:0px;
  8369. width:127px;
  8370. height:25px;
  8371. background:inherit;
  8372. background-color:rgba(255, 255, 255, 1);
  8373. border:none;
  8374. border-radius:0px;
  8375. -moz-box-shadow:none;
  8376. -webkit-box-shadow:none;
  8377. box-shadow:none;
  8378. font-family:'Microsoft YaHei', sans-serif;
  8379. font-weight:400;
  8380. font-style:normal;
  8381. font-size:10px;
  8382. }
  8383. #u134591 {
  8384. border-width:0px;
  8385. position:absolute;
  8386. left:1967px;
  8387. top:111px;
  8388. width:127px;
  8389. height:25px;
  8390. display:flex;
  8391. font-family:'Microsoft YaHei', sans-serif;
  8392. font-weight:400;
  8393. font-style:normal;
  8394. font-size:10px;
  8395. }
  8396. #u134591 .text {
  8397. position:absolute;
  8398. align-self:center;
  8399. padding:2px 2px 2px 2px;
  8400. box-sizing:border-box;
  8401. width:100%;
  8402. }
  8403. #u134591_div.disabled {
  8404. border-width:0px;
  8405. position:absolute;
  8406. left:0px;
  8407. top:0px;
  8408. width:127px;
  8409. height:25px;
  8410. background:inherit;
  8411. background-color:rgba(240, 240, 240, 1);
  8412. border:none;
  8413. border-radius:0px;
  8414. -moz-box-shadow:none;
  8415. -webkit-box-shadow:none;
  8416. box-shadow:none;
  8417. font-family:'Microsoft YaHei', sans-serif;
  8418. font-weight:400;
  8419. font-style:normal;
  8420. font-size:10px;
  8421. }
  8422. #u134591.disabled {
  8423. }
  8424. #u134592 {
  8425. border-width:0px;
  8426. position:absolute;
  8427. left:0px;
  8428. top:0px;
  8429. width:0px;
  8430. height:0px;
  8431. }
  8432. #u134593_div {
  8433. border-width:0px;
  8434. position:absolute;
  8435. left:0px;
  8436. top:0px;
  8437. width:140px;
  8438. height:30px;
  8439. background:inherit;
  8440. background-color:rgba(255, 255, 255, 1);
  8441. box-sizing:border-box;
  8442. border-width:1px;
  8443. border-style:solid;
  8444. border-color:rgba(215, 215, 215, 1);
  8445. border-radius:4px;
  8446. -moz-box-shadow:none;
  8447. -webkit-box-shadow:none;
  8448. box-shadow:none;
  8449. font-size:11px;
  8450. }
  8451. #u134593 {
  8452. border-width:0px;
  8453. position:absolute;
  8454. left:2109px;
  8455. top:110px;
  8456. width:140px;
  8457. height:30px;
  8458. display:flex;
  8459. font-size:11px;
  8460. }
  8461. #u134593 .text {
  8462. position:absolute;
  8463. align-self:center;
  8464. padding:2px 2px 2px 2px;
  8465. box-sizing:border-box;
  8466. width:100%;
  8467. }
  8468. #u134593_text {
  8469. border-width:0px;
  8470. word-wrap:break-word;
  8471. text-transform:none;
  8472. visibility:hidden;
  8473. }
  8474. #u134594_input {
  8475. position:absolute;
  8476. left:0px;
  8477. top:0px;
  8478. width:120px;
  8479. height:23px;
  8480. padding:2px 2px 2px 2px;
  8481. font-family:'ArialMT', 'Arial', sans-serif;
  8482. font-weight:400;
  8483. font-style:normal;
  8484. font-size:12px;
  8485. letter-spacing:normal;
  8486. color:#AAAAAA;
  8487. vertical-align:none;
  8488. text-align:left;
  8489. text-transform:none;
  8490. background-color:transparent;
  8491. border-color:transparent;
  8492. }
  8493. #u134594_input.disabled {
  8494. position:absolute;
  8495. left:0px;
  8496. top:0px;
  8497. width:120px;
  8498. height:23px;
  8499. padding:2px 2px 2px 2px;
  8500. font-family:'ArialMT', 'Arial', sans-serif;
  8501. font-weight:400;
  8502. font-style:normal;
  8503. font-size:12px;
  8504. letter-spacing:normal;
  8505. color:#AAAAAA;
  8506. vertical-align:none;
  8507. text-align:left;
  8508. text-transform:none;
  8509. background-color:transparent;
  8510. border-color:transparent;
  8511. }
  8512. #u134594_div {
  8513. border-width:0px;
  8514. position:absolute;
  8515. left:0px;
  8516. top:0px;
  8517. width:120px;
  8518. height:23px;
  8519. background:inherit;
  8520. background-color:rgba(255, 255, 255, 1);
  8521. border:none;
  8522. border-radius:0px;
  8523. -moz-box-shadow:none;
  8524. -webkit-box-shadow:none;
  8525. box-shadow:none;
  8526. font-size:12px;
  8527. color:#AAAAAA;
  8528. }
  8529. #u134594 {
  8530. border-width:0px;
  8531. position:absolute;
  8532. left:2116px;
  8533. top:112px;
  8534. width:120px;
  8535. height:23px;
  8536. display:flex;
  8537. font-size:12px;
  8538. color:#AAAAAA;
  8539. }
  8540. #u134594 .text {
  8541. position:absolute;
  8542. align-self:flex-start;
  8543. padding:2px 2px 2px 2px;
  8544. box-sizing:border-box;
  8545. width:100%;
  8546. }
  8547. #u134594_div.disabled {
  8548. border-width:0px;
  8549. position:absolute;
  8550. left:0px;
  8551. top:0px;
  8552. width:120px;
  8553. height:23px;
  8554. background:inherit;
  8555. background-color:rgba(240, 240, 240, 1);
  8556. border:none;
  8557. border-radius:0px;
  8558. -moz-box-shadow:none;
  8559. -webkit-box-shadow:none;
  8560. box-shadow:none;
  8561. font-size:12px;
  8562. color:#AAAAAA;
  8563. }
  8564. #u134594.disabled {
  8565. }
  8566. .u134594_input_option {
  8567. font-size:12px;
  8568. }
  8569. #u134595 {
  8570. border-width:0px;
  8571. position:absolute;
  8572. left:0px;
  8573. top:0px;
  8574. width:0px;
  8575. height:0px;
  8576. }
  8577. #u134596_div {
  8578. border-width:0px;
  8579. position:absolute;
  8580. left:0px;
  8581. top:0px;
  8582. width:67px;
  8583. height:24px;
  8584. background:inherit;
  8585. background-color:rgba(255, 255, 255, 1);
  8586. box-sizing:border-box;
  8587. border-width:1px;
  8588. border-style:solid;
  8589. border-color:rgba(215, 215, 215, 1);
  8590. border-radius:0px;
  8591. -moz-box-shadow:none;
  8592. -webkit-box-shadow:none;
  8593. box-shadow:none;
  8594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8595. font-weight:400;
  8596. font-style:normal;
  8597. font-size:12px;
  8598. }
  8599. #u134596 {
  8600. border-width:0px;
  8601. position:absolute;
  8602. left:1665px;
  8603. top:160px;
  8604. width:67px;
  8605. height:24px;
  8606. display:flex;
  8607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8608. font-weight:400;
  8609. font-style:normal;
  8610. font-size:12px;
  8611. }
  8612. #u134596 .text {
  8613. position:absolute;
  8614. align-self:center;
  8615. padding:5px 15px 5px 15px;
  8616. box-sizing:border-box;
  8617. width:100%;
  8618. }
  8619. #u134596_text {
  8620. border-width:0px;
  8621. white-space:nowrap;
  8622. text-transform:none;
  8623. }
  8624. #u134597_div {
  8625. border-width:0px;
  8626. position:absolute;
  8627. left:0px;
  8628. top:0px;
  8629. width:67px;
  8630. height:24px;
  8631. background:inherit;
  8632. background-color:rgba(255, 255, 255, 1);
  8633. box-sizing:border-box;
  8634. border-width:1px;
  8635. border-style:solid;
  8636. border-color:rgba(170, 170, 170, 1);
  8637. border-radius:0px;
  8638. -moz-box-shadow:none;
  8639. -webkit-box-shadow:none;
  8640. box-shadow:none;
  8641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8642. font-weight:400;
  8643. font-style:normal;
  8644. font-size:12px;
  8645. color:#555555;
  8646. }
  8647. #u134597 {
  8648. border-width:0px;
  8649. position:absolute;
  8650. left:1811px;
  8651. top:160px;
  8652. width:67px;
  8653. height:24px;
  8654. display:flex;
  8655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8656. font-weight:400;
  8657. font-style:normal;
  8658. font-size:12px;
  8659. color:#555555;
  8660. }
  8661. #u134597 .text {
  8662. position:absolute;
  8663. align-self:center;
  8664. padding:5px 15px 5px 15px;
  8665. box-sizing:border-box;
  8666. width:100%;
  8667. }
  8668. #u134597_text {
  8669. border-width:0px;
  8670. white-space:nowrap;
  8671. text-transform:none;
  8672. }
  8673. #u134598_div {
  8674. border-width:0px;
  8675. position:absolute;
  8676. left:0px;
  8677. top:0px;
  8678. width:79px;
  8679. height:24px;
  8680. background:inherit;
  8681. background-color:rgba(0, 137, 254, 1);
  8682. box-sizing:border-box;
  8683. border-width:1px;
  8684. border-style:solid;
  8685. border-color:rgba(170, 170, 170, 1);
  8686. border-radius:0px;
  8687. -moz-box-shadow:none;
  8688. -webkit-box-shadow:none;
  8689. box-shadow:none;
  8690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8691. font-weight:400;
  8692. font-style:normal;
  8693. font-size:12px;
  8694. color:#FFFFFF;
  8695. }
  8696. #u134598 {
  8697. border-width:0px;
  8698. position:absolute;
  8699. left:1732px;
  8700. top:160px;
  8701. width:79px;
  8702. height:24px;
  8703. display:flex;
  8704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8705. font-weight:400;
  8706. font-style:normal;
  8707. font-size:12px;
  8708. color:#FFFFFF;
  8709. }
  8710. #u134598 .text {
  8711. position:absolute;
  8712. align-self:center;
  8713. padding:5px 15px 5px 15px;
  8714. box-sizing:border-box;
  8715. width:100%;
  8716. }
  8717. #u134598_text {
  8718. border-width:0px;
  8719. white-space:nowrap;
  8720. text-transform:none;
  8721. }
  8722. #u134599_img {
  8723. border-width:0px;
  8724. position:absolute;
  8725. left:0px;
  8726. top:0px;
  8727. width:1220px;
  8728. height:1023px;
  8729. }
  8730. #u134599 {
  8731. border-width:0px;
  8732. position:absolute;
  8733. left:1659px;
  8734. top:207px;
  8735. width:1220px;
  8736. height:1023px;
  8737. display:flex;
  8738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8739. font-weight:400;
  8740. font-style:normal;
  8741. font-size:18px;
  8742. }
  8743. #u134599 .text {
  8744. position:absolute;
  8745. align-self:center;
  8746. padding:2px 2px 2px 2px;
  8747. box-sizing:border-box;
  8748. width:100%;
  8749. }
  8750. #u134599_text {
  8751. border-width:0px;
  8752. word-wrap:break-word;
  8753. text-transform:none;
  8754. }
  8755. #u134600_img {
  8756. border-width:0px;
  8757. position:absolute;
  8758. left:0px;
  8759. top:0px;
  8760. width:35px;
  8761. height:35px;
  8762. }
  8763. #u134600 {
  8764. border-width:0px;
  8765. position:absolute;
  8766. left:1762px;
  8767. top:349px;
  8768. width:35px;
  8769. height:35px;
  8770. display:flex;
  8771. }
  8772. #u134600 .text {
  8773. position:absolute;
  8774. align-self:center;
  8775. padding:2px 2px 2px 2px;
  8776. box-sizing:border-box;
  8777. width:100%;
  8778. }
  8779. #u134600_text {
  8780. border-width:0px;
  8781. word-wrap:break-word;
  8782. text-transform:none;
  8783. }
  8784. #u134601_div {
  8785. border-width:0px;
  8786. position:absolute;
  8787. left:0px;
  8788. top:0px;
  8789. width:854px;
  8790. height:50px;
  8791. background:inherit;
  8792. background-color:rgba(255, 255, 255, 0);
  8793. border:none;
  8794. border-left:0px;
  8795. border-top:0px;
  8796. border-right:0px;
  8797. border-radius:0px;
  8798. border-bottom-right-radius:0px;
  8799. border-bottom-left-radius:0px;
  8800. -moz-box-shadow:none;
  8801. -webkit-box-shadow:none;
  8802. box-shadow:none;
  8803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8804. font-weight:400;
  8805. font-style:normal;
  8806. font-size:18px;
  8807. color:#D9001B;
  8808. }
  8809. #u134601 {
  8810. border-width:0px;
  8811. position:absolute;
  8812. left:1835px;
  8813. top:322px;
  8814. width:854px;
  8815. height:50px;
  8816. display:flex;
  8817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8818. font-weight:400;
  8819. font-style:normal;
  8820. font-size:18px;
  8821. color:#D9001B;
  8822. }
  8823. #u134601 .text {
  8824. position:absolute;
  8825. align-self:center;
  8826. padding:0px 0px 0px 0px;
  8827. box-sizing:border-box;
  8828. width:100%;
  8829. }
  8830. #u134601_text {
  8831. border-width:0px;
  8832. white-space:nowrap;
  8833. text-transform:none;
  8834. }
  8835. #u134602_img {
  8836. border-width:0px;
  8837. position:absolute;
  8838. left:0px;
  8839. top:0px;
  8840. width:1002px;
  8841. height:612px;
  8842. }
  8843. #u134602 {
  8844. border-width:0px;
  8845. position:absolute;
  8846. left:348px;
  8847. top:238px;
  8848. width:1002px;
  8849. height:612px;
  8850. display:flex;
  8851. }
  8852. #u134602 .text {
  8853. position:absolute;
  8854. align-self:center;
  8855. padding:2px 2px 2px 2px;
  8856. box-sizing:border-box;
  8857. width:100%;
  8858. }
  8859. #u134602_text {
  8860. border-width:0px;
  8861. word-wrap:break-word;
  8862. text-transform:none;
  8863. visibility:hidden;
  8864. }
  8865. #u134603 {
  8866. border-width:0px;
  8867. position:absolute;
  8868. left:0px;
  8869. top:0px;
  8870. width:0px;
  8871. height:0px;
  8872. }
  8873. #u134604_img {
  8874. border-width:0px;
  8875. position:absolute;
  8876. left:0px;
  8877. top:0px;
  8878. width:50px;
  8879. height:31px;
  8880. }
  8881. #u134604 {
  8882. border-width:0px;
  8883. position:absolute;
  8884. left:1157px;
  8885. top:268px;
  8886. width:50px;
  8887. height:31px;
  8888. display:flex;
  8889. }
  8890. #u134604 .text {
  8891. position:absolute;
  8892. align-self:center;
  8893. padding:2px 2px 2px 2px;
  8894. box-sizing:border-box;
  8895. width:100%;
  8896. }
  8897. #u134604_text {
  8898. border-width:0px;
  8899. word-wrap:break-word;
  8900. text-transform:none;
  8901. visibility:hidden;
  8902. }
  8903. #u134605_div {
  8904. border-width:0px;
  8905. position:absolute;
  8906. left:0px;
  8907. top:0px;
  8908. width:82px;
  8909. height:50px;
  8910. background:inherit;
  8911. background-color:rgba(255, 255, 255, 0);
  8912. border:none;
  8913. border-left:0px;
  8914. border-top:0px;
  8915. border-right:0px;
  8916. border-radius:0px;
  8917. border-bottom-right-radius:0px;
  8918. border-bottom-left-radius:0px;
  8919. -moz-box-shadow:none;
  8920. -webkit-box-shadow:none;
  8921. box-shadow:none;
  8922. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8923. font-weight:500;
  8924. font-style:normal;
  8925. font-size:18px;
  8926. }
  8927. #u134605 {
  8928. border-width:0px;
  8929. position:absolute;
  8930. left:1217px;
  8931. top:259px;
  8932. width:82px;
  8933. height:50px;
  8934. display:flex;
  8935. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8936. font-weight:500;
  8937. font-style:normal;
  8938. font-size:18px;
  8939. }
  8940. #u134605 .text {
  8941. position:absolute;
  8942. align-self:center;
  8943. padding:0px 0px 0px 0px;
  8944. box-sizing:border-box;
  8945. width:100%;
  8946. }
  8947. #u134605_text {
  8948. border-width:0px;
  8949. white-space:nowrap;
  8950. text-transform:none;
  8951. }
  8952. #u134606 {
  8953. border-width:0px;
  8954. position:absolute;
  8955. left:0px;
  8956. top:0px;
  8957. width:0px;
  8958. height:0px;
  8959. }
  8960. #u134607_div {
  8961. border-width:0px;
  8962. position:absolute;
  8963. left:0px;
  8964. top:0px;
  8965. width:140px;
  8966. height:30px;
  8967. background:inherit;
  8968. background-color:rgba(255, 255, 255, 1);
  8969. box-sizing:border-box;
  8970. border-width:1px;
  8971. border-style:solid;
  8972. border-color:rgba(215, 215, 215, 1);
  8973. border-radius:4px;
  8974. -moz-box-shadow:none;
  8975. -webkit-box-shadow:none;
  8976. box-shadow:none;
  8977. font-size:14px;
  8978. }
  8979. #u134607 {
  8980. border-width:0px;
  8981. position:absolute;
  8982. left:498px;
  8983. top:110px;
  8984. width:140px;
  8985. height:30px;
  8986. display:flex;
  8987. font-size:14px;
  8988. }
  8989. #u134607 .text {
  8990. position:absolute;
  8991. align-self:center;
  8992. padding:2px 2px 2px 2px;
  8993. box-sizing:border-box;
  8994. width:100%;
  8995. }
  8996. #u134607_text {
  8997. border-width:0px;
  8998. word-wrap:break-word;
  8999. text-transform:none;
  9000. visibility:hidden;
  9001. }
  9002. #u134608_input {
  9003. position:absolute;
  9004. left:0px;
  9005. top:0px;
  9006. width:134px;
  9007. height:23px;
  9008. padding:2px 2px 2px 2px;
  9009. font-family:'ArialMT', 'Arial', sans-serif;
  9010. font-weight:400;
  9011. font-style:normal;
  9012. font-size:12px;
  9013. letter-spacing:normal;
  9014. color:#AAAAAA;
  9015. vertical-align:none;
  9016. text-align:left;
  9017. text-transform:none;
  9018. background-color:transparent;
  9019. border-color:transparent;
  9020. }
  9021. #u134608_input.disabled {
  9022. position:absolute;
  9023. left:0px;
  9024. top:0px;
  9025. width:134px;
  9026. height:23px;
  9027. padding:2px 2px 2px 2px;
  9028. font-family:'ArialMT', 'Arial', sans-serif;
  9029. font-weight:400;
  9030. font-style:normal;
  9031. font-size:12px;
  9032. letter-spacing:normal;
  9033. color:#AAAAAA;
  9034. vertical-align:none;
  9035. text-align:left;
  9036. text-transform:none;
  9037. background-color:transparent;
  9038. border-color:transparent;
  9039. }
  9040. #u134608_div {
  9041. border-width:0px;
  9042. position:absolute;
  9043. left:0px;
  9044. top:0px;
  9045. width:134px;
  9046. height:23px;
  9047. background:inherit;
  9048. background-color:rgba(255, 255, 255, 1);
  9049. border:none;
  9050. border-radius:0px;
  9051. -moz-box-shadow:none;
  9052. -webkit-box-shadow:none;
  9053. box-shadow:none;
  9054. font-size:12px;
  9055. color:#AAAAAA;
  9056. }
  9057. #u134608 {
  9058. border-width:0px;
  9059. position:absolute;
  9060. left:502px;
  9061. top:112px;
  9062. width:134px;
  9063. height:23px;
  9064. display:flex;
  9065. font-size:12px;
  9066. color:#AAAAAA;
  9067. }
  9068. #u134608 .text {
  9069. position:absolute;
  9070. align-self:flex-start;
  9071. padding:2px 2px 2px 2px;
  9072. box-sizing:border-box;
  9073. width:100%;
  9074. }
  9075. #u134608_div.disabled {
  9076. border-width:0px;
  9077. position:absolute;
  9078. left:0px;
  9079. top:0px;
  9080. width:134px;
  9081. height:23px;
  9082. background:inherit;
  9083. background-color:rgba(240, 240, 240, 1);
  9084. border:none;
  9085. border-radius:0px;
  9086. -moz-box-shadow:none;
  9087. -webkit-box-shadow:none;
  9088. box-shadow:none;
  9089. font-size:12px;
  9090. color:#AAAAAA;
  9091. }
  9092. #u134608.disabled {
  9093. }
  9094. .u134608_input_option {
  9095. font-size:12px;
  9096. }
  9097. #u134609_img {
  9098. border-width:0px;
  9099. position:absolute;
  9100. left:0px;
  9101. top:0px;
  9102. width:49px;
  9103. height:28px;
  9104. }
  9105. #u134609 {
  9106. border-width:0px;
  9107. position:absolute;
  9108. left:1446px;
  9109. top:220px;
  9110. width:49px;
  9111. height:28px;
  9112. display:flex;
  9113. }
  9114. #u134609 .text {
  9115. position:absolute;
  9116. align-self:center;
  9117. padding:2px 2px 2px 2px;
  9118. box-sizing:border-box;
  9119. width:100%;
  9120. }
  9121. #u134609_text {
  9122. border-width:0px;
  9123. word-wrap:break-word;
  9124. text-transform:none;
  9125. visibility:hidden;
  9126. }
  9127. #u134610_img {
  9128. border-width:0px;
  9129. position:absolute;
  9130. left:0px;
  9131. top:0px;
  9132. width:49px;
  9133. height:28px;
  9134. }
  9135. #u134610 {
  9136. border-width:0px;
  9137. position:absolute;
  9138. left:1446px;
  9139. top:1169px;
  9140. width:49px;
  9141. height:28px;
  9142. display:flex;
  9143. -webkit-transform:rotate(180deg);
  9144. -moz-transform:rotate(180deg);
  9145. -ms-transform:rotate(180deg);
  9146. transform:rotate(180deg);
  9147. }
  9148. #u134610 .text {
  9149. position:absolute;
  9150. align-self:center;
  9151. padding:2px 2px 2px 2px;
  9152. box-sizing:border-box;
  9153. width:100%;
  9154. }
  9155. #u134610_text {
  9156. border-width:0px;
  9157. word-wrap:break-word;
  9158. text-transform:none;
  9159. visibility:hidden;
  9160. }
  9161. #u134611_div {
  9162. border-width:0px;
  9163. position:absolute;
  9164. left:0px;
  9165. top:0px;
  9166. width:140px;
  9167. height:30px;
  9168. background:inherit;
  9169. background-color:rgba(0, 137, 254, 1);
  9170. border:none;
  9171. border-radius:4px;
  9172. -moz-box-shadow:none;
  9173. -webkit-box-shadow:none;
  9174. box-shadow:none;
  9175. font-family:'Helvetica', sans-serif;
  9176. font-weight:400;
  9177. font-style:normal;
  9178. font-size:18px;
  9179. color:#FFFFFF;
  9180. }
  9181. #u134611 {
  9182. border-width:0px;
  9183. position:absolute;
  9184. left:1401px;
  9185. top:268px;
  9186. width:140px;
  9187. height:30px;
  9188. display:flex;
  9189. font-family:'Helvetica', sans-serif;
  9190. font-weight:400;
  9191. font-style:normal;
  9192. font-size:18px;
  9193. color:#FFFFFF;
  9194. }
  9195. #u134611 .text {
  9196. position:absolute;
  9197. align-self:center;
  9198. padding:2px 8px 2px 8px;
  9199. box-sizing:border-box;
  9200. width:100%;
  9201. }
  9202. #u134611_text {
  9203. border-width:0px;
  9204. word-wrap:break-word;
  9205. text-transform:none;
  9206. }
  9207. #u134612_div {
  9208. border-width:0px;
  9209. position:absolute;
  9210. left:0px;
  9211. top:0px;
  9212. width:140px;
  9213. height:30px;
  9214. background:inherit;
  9215. background-color:rgba(255, 255, 255, 1);
  9216. box-sizing:border-box;
  9217. border-width:1px;
  9218. border-style:solid;
  9219. border-color:rgba(0, 137, 254, 1);
  9220. border-radius:4px;
  9221. -moz-box-shadow:none;
  9222. -webkit-box-shadow:none;
  9223. box-shadow:none;
  9224. font-family:'Helvetica', sans-serif;
  9225. font-weight:400;
  9226. font-style:normal;
  9227. font-size:18px;
  9228. color:#0089FE;
  9229. }
  9230. #u134612 {
  9231. border-width:0px;
  9232. position:absolute;
  9233. left:1401px;
  9234. top:308px;
  9235. width:140px;
  9236. height:30px;
  9237. display:flex;
  9238. font-family:'Helvetica', sans-serif;
  9239. font-weight:400;
  9240. font-style:normal;
  9241. font-size:18px;
  9242. color:#0089FE;
  9243. }
  9244. #u134612 .text {
  9245. position:absolute;
  9246. align-self:center;
  9247. padding:2px 8px 2px 8px;
  9248. box-sizing:border-box;
  9249. width:100%;
  9250. }
  9251. #u134612_text {
  9252. border-width:0px;
  9253. word-wrap:break-word;
  9254. text-transform:none;
  9255. }
  9256. #u134613_div {
  9257. border-width:0px;
  9258. position:absolute;
  9259. left:0px;
  9260. top:0px;
  9261. width:140px;
  9262. height:30px;
  9263. background:inherit;
  9264. background-color:rgba(255, 255, 255, 1);
  9265. box-sizing:border-box;
  9266. border-width:1px;
  9267. border-style:solid;
  9268. border-color:rgba(0, 137, 254, 1);
  9269. border-radius:4px;
  9270. -moz-box-shadow:none;
  9271. -webkit-box-shadow:none;
  9272. box-shadow:none;
  9273. font-family:'Helvetica', sans-serif;
  9274. font-weight:400;
  9275. font-style:normal;
  9276. font-size:18px;
  9277. color:#0089FE;
  9278. }
  9279. #u134613 {
  9280. border-width:0px;
  9281. position:absolute;
  9282. left:1401px;
  9283. top:348px;
  9284. width:140px;
  9285. height:30px;
  9286. display:flex;
  9287. font-family:'Helvetica', sans-serif;
  9288. font-weight:400;
  9289. font-style:normal;
  9290. font-size:18px;
  9291. color:#0089FE;
  9292. }
  9293. #u134613 .text {
  9294. position:absolute;
  9295. align-self:center;
  9296. padding:2px 8px 2px 8px;
  9297. box-sizing:border-box;
  9298. width:100%;
  9299. }
  9300. #u134613_text {
  9301. border-width:0px;
  9302. word-wrap:break-word;
  9303. text-transform:none;
  9304. }
  9305. #u134614_div {
  9306. border-width:0px;
  9307. position:absolute;
  9308. left:0px;
  9309. top:0px;
  9310. width:140px;
  9311. height:30px;
  9312. background:inherit;
  9313. background-color:rgba(255, 255, 255, 1);
  9314. box-sizing:border-box;
  9315. border-width:1px;
  9316. border-style:solid;
  9317. border-color:rgba(0, 137, 254, 1);
  9318. border-radius:4px;
  9319. -moz-box-shadow:none;
  9320. -webkit-box-shadow:none;
  9321. box-shadow:none;
  9322. font-family:'Helvetica', sans-serif;
  9323. font-weight:400;
  9324. font-style:normal;
  9325. font-size:18px;
  9326. color:#0089FE;
  9327. }
  9328. #u134614 {
  9329. border-width:0px;
  9330. position:absolute;
  9331. left:1401px;
  9332. top:388px;
  9333. width:140px;
  9334. height:30px;
  9335. display:flex;
  9336. font-family:'Helvetica', sans-serif;
  9337. font-weight:400;
  9338. font-style:normal;
  9339. font-size:18px;
  9340. color:#0089FE;
  9341. }
  9342. #u134614 .text {
  9343. position:absolute;
  9344. align-self:center;
  9345. padding:2px 8px 2px 8px;
  9346. box-sizing:border-box;
  9347. width:100%;
  9348. }
  9349. #u134614_text {
  9350. border-width:0px;
  9351. word-wrap:break-word;
  9352. text-transform:none;
  9353. }
  9354. #u134615_div {
  9355. border-width:0px;
  9356. position:absolute;
  9357. left:0px;
  9358. top:0px;
  9359. width:140px;
  9360. height:30px;
  9361. background:inherit;
  9362. background-color:rgba(255, 255, 255, 1);
  9363. box-sizing:border-box;
  9364. border-width:1px;
  9365. border-style:solid;
  9366. border-color:rgba(0, 137, 254, 1);
  9367. border-radius:4px;
  9368. -moz-box-shadow:none;
  9369. -webkit-box-shadow:none;
  9370. box-shadow:none;
  9371. font-family:'Helvetica', sans-serif;
  9372. font-weight:400;
  9373. font-style:normal;
  9374. font-size:18px;
  9375. color:#0089FE;
  9376. }
  9377. #u134615 {
  9378. border-width:0px;
  9379. position:absolute;
  9380. left:1401px;
  9381. top:428px;
  9382. width:140px;
  9383. height:30px;
  9384. display:flex;
  9385. font-family:'Helvetica', sans-serif;
  9386. font-weight:400;
  9387. font-style:normal;
  9388. font-size:18px;
  9389. color:#0089FE;
  9390. }
  9391. #u134615 .text {
  9392. position:absolute;
  9393. align-self:center;
  9394. padding:2px 8px 2px 8px;
  9395. box-sizing:border-box;
  9396. width:100%;
  9397. }
  9398. #u134615_text {
  9399. border-width:0px;
  9400. word-wrap:break-word;
  9401. text-transform:none;
  9402. }
  9403. #u134616_div {
  9404. border-width:0px;
  9405. position:absolute;
  9406. left:0px;
  9407. top:0px;
  9408. width:140px;
  9409. height:30px;
  9410. background:inherit;
  9411. background-color:rgba(255, 255, 255, 1);
  9412. box-sizing:border-box;
  9413. border-width:1px;
  9414. border-style:solid;
  9415. border-color:rgba(0, 137, 254, 1);
  9416. border-radius:4px;
  9417. -moz-box-shadow:none;
  9418. -webkit-box-shadow:none;
  9419. box-shadow:none;
  9420. font-family:'Helvetica', sans-serif;
  9421. font-weight:400;
  9422. font-style:normal;
  9423. font-size:18px;
  9424. color:#0089FE;
  9425. }
  9426. #u134616 {
  9427. border-width:0px;
  9428. position:absolute;
  9429. left:1401px;
  9430. top:468px;
  9431. width:140px;
  9432. height:30px;
  9433. display:flex;
  9434. font-family:'Helvetica', sans-serif;
  9435. font-weight:400;
  9436. font-style:normal;
  9437. font-size:18px;
  9438. color:#0089FE;
  9439. }
  9440. #u134616 .text {
  9441. position:absolute;
  9442. align-self:center;
  9443. padding:2px 8px 2px 8px;
  9444. box-sizing:border-box;
  9445. width:100%;
  9446. }
  9447. #u134616_text {
  9448. border-width:0px;
  9449. word-wrap:break-word;
  9450. text-transform:none;
  9451. }
  9452. #u134617_div {
  9453. border-width:0px;
  9454. position:absolute;
  9455. left:0px;
  9456. top:0px;
  9457. width:140px;
  9458. height:30px;
  9459. background:inherit;
  9460. background-color:rgba(255, 255, 255, 1);
  9461. box-sizing:border-box;
  9462. border-width:1px;
  9463. border-style:solid;
  9464. border-color:rgba(0, 137, 254, 1);
  9465. border-radius:4px;
  9466. -moz-box-shadow:none;
  9467. -webkit-box-shadow:none;
  9468. box-shadow:none;
  9469. font-family:'Helvetica', sans-serif;
  9470. font-weight:400;
  9471. font-style:normal;
  9472. font-size:18px;
  9473. color:#0089FE;
  9474. }
  9475. #u134617 {
  9476. border-width:0px;
  9477. position:absolute;
  9478. left:1401px;
  9479. top:508px;
  9480. width:140px;
  9481. height:30px;
  9482. display:flex;
  9483. font-family:'Helvetica', sans-serif;
  9484. font-weight:400;
  9485. font-style:normal;
  9486. font-size:18px;
  9487. color:#0089FE;
  9488. }
  9489. #u134617 .text {
  9490. position:absolute;
  9491. align-self:center;
  9492. padding:2px 8px 2px 8px;
  9493. box-sizing:border-box;
  9494. width:100%;
  9495. }
  9496. #u134617_text {
  9497. border-width:0px;
  9498. word-wrap:break-word;
  9499. text-transform:none;
  9500. }
  9501. #u134618_div {
  9502. border-width:0px;
  9503. position:absolute;
  9504. left:0px;
  9505. top:0px;
  9506. width:140px;
  9507. height:30px;
  9508. background:inherit;
  9509. background-color:rgba(255, 255, 255, 1);
  9510. box-sizing:border-box;
  9511. border-width:1px;
  9512. border-style:solid;
  9513. border-color:rgba(0, 137, 254, 1);
  9514. border-radius:4px;
  9515. -moz-box-shadow:none;
  9516. -webkit-box-shadow:none;
  9517. box-shadow:none;
  9518. font-family:'Helvetica', sans-serif;
  9519. font-weight:400;
  9520. font-style:normal;
  9521. font-size:18px;
  9522. color:#0089FE;
  9523. }
  9524. #u134618 {
  9525. border-width:0px;
  9526. position:absolute;
  9527. left:1401px;
  9528. top:548px;
  9529. width:140px;
  9530. height:30px;
  9531. display:flex;
  9532. font-family:'Helvetica', sans-serif;
  9533. font-weight:400;
  9534. font-style:normal;
  9535. font-size:18px;
  9536. color:#0089FE;
  9537. }
  9538. #u134618 .text {
  9539. position:absolute;
  9540. align-self:center;
  9541. padding:2px 8px 2px 8px;
  9542. box-sizing:border-box;
  9543. width:100%;
  9544. }
  9545. #u134618_text {
  9546. border-width:0px;
  9547. word-wrap:break-word;
  9548. text-transform:none;
  9549. }
  9550. #u134619_div {
  9551. border-width:0px;
  9552. position:absolute;
  9553. left:0px;
  9554. top:0px;
  9555. width:140px;
  9556. height:30px;
  9557. background:inherit;
  9558. background-color:rgba(255, 255, 255, 1);
  9559. box-sizing:border-box;
  9560. border-width:1px;
  9561. border-style:solid;
  9562. border-color:rgba(0, 137, 254, 1);
  9563. border-radius:4px;
  9564. -moz-box-shadow:none;
  9565. -webkit-box-shadow:none;
  9566. box-shadow:none;
  9567. font-family:'Helvetica', sans-serif;
  9568. font-weight:400;
  9569. font-style:normal;
  9570. font-size:18px;
  9571. color:#0089FE;
  9572. }
  9573. #u134619 {
  9574. border-width:0px;
  9575. position:absolute;
  9576. left:1401px;
  9577. top:588px;
  9578. width:140px;
  9579. height:30px;
  9580. display:flex;
  9581. font-family:'Helvetica', sans-serif;
  9582. font-weight:400;
  9583. font-style:normal;
  9584. font-size:18px;
  9585. color:#0089FE;
  9586. }
  9587. #u134619 .text {
  9588. position:absolute;
  9589. align-self:center;
  9590. padding:2px 8px 2px 8px;
  9591. box-sizing:border-box;
  9592. width:100%;
  9593. }
  9594. #u134619_text {
  9595. border-width:0px;
  9596. word-wrap:break-word;
  9597. text-transform:none;
  9598. }
  9599. #u134620_div {
  9600. border-width:0px;
  9601. position:absolute;
  9602. left:0px;
  9603. top:0px;
  9604. width:140px;
  9605. height:30px;
  9606. background:inherit;
  9607. background-color:rgba(255, 255, 255, 1);
  9608. box-sizing:border-box;
  9609. border-width:1px;
  9610. border-style:solid;
  9611. border-color:rgba(0, 137, 254, 1);
  9612. border-radius:4px;
  9613. -moz-box-shadow:none;
  9614. -webkit-box-shadow:none;
  9615. box-shadow:none;
  9616. font-family:'Helvetica', sans-serif;
  9617. font-weight:400;
  9618. font-style:normal;
  9619. font-size:18px;
  9620. color:#0089FE;
  9621. }
  9622. #u134620 {
  9623. border-width:0px;
  9624. position:absolute;
  9625. left:1401px;
  9626. top:628px;
  9627. width:140px;
  9628. height:30px;
  9629. display:flex;
  9630. font-family:'Helvetica', sans-serif;
  9631. font-weight:400;
  9632. font-style:normal;
  9633. font-size:18px;
  9634. color:#0089FE;
  9635. }
  9636. #u134620 .text {
  9637. position:absolute;
  9638. align-self:center;
  9639. padding:2px 8px 2px 8px;
  9640. box-sizing:border-box;
  9641. width:100%;
  9642. }
  9643. #u134620_text {
  9644. border-width:0px;
  9645. word-wrap:break-word;
  9646. text-transform:none;
  9647. }
  9648. #u134621_div {
  9649. border-width:0px;
  9650. position:absolute;
  9651. left:0px;
  9652. top:0px;
  9653. width:140px;
  9654. height:30px;
  9655. background:inherit;
  9656. background-color:rgba(255, 255, 255, 1);
  9657. box-sizing:border-box;
  9658. border-width:1px;
  9659. border-style:solid;
  9660. border-color:rgba(0, 137, 254, 1);
  9661. border-radius:4px;
  9662. -moz-box-shadow:none;
  9663. -webkit-box-shadow:none;
  9664. box-shadow:none;
  9665. font-family:'Helvetica', sans-serif;
  9666. font-weight:400;
  9667. font-style:normal;
  9668. font-size:18px;
  9669. color:#0089FE;
  9670. }
  9671. #u134621 {
  9672. border-width:0px;
  9673. position:absolute;
  9674. left:1401px;
  9675. top:668px;
  9676. width:140px;
  9677. height:30px;
  9678. display:flex;
  9679. font-family:'Helvetica', sans-serif;
  9680. font-weight:400;
  9681. font-style:normal;
  9682. font-size:18px;
  9683. color:#0089FE;
  9684. }
  9685. #u134621 .text {
  9686. position:absolute;
  9687. align-self:center;
  9688. padding:2px 8px 2px 8px;
  9689. box-sizing:border-box;
  9690. width:100%;
  9691. }
  9692. #u134621_text {
  9693. border-width:0px;
  9694. word-wrap:break-word;
  9695. text-transform:none;
  9696. }
  9697. #u134622_div {
  9698. border-width:0px;
  9699. position:absolute;
  9700. left:0px;
  9701. top:0px;
  9702. width:140px;
  9703. height:30px;
  9704. background:inherit;
  9705. background-color:rgba(255, 255, 255, 1);
  9706. box-sizing:border-box;
  9707. border-width:1px;
  9708. border-style:solid;
  9709. border-color:rgba(0, 137, 254, 1);
  9710. border-radius:4px;
  9711. -moz-box-shadow:none;
  9712. -webkit-box-shadow:none;
  9713. box-shadow:none;
  9714. font-family:'Helvetica', sans-serif;
  9715. font-weight:400;
  9716. font-style:normal;
  9717. font-size:18px;
  9718. color:#0089FE;
  9719. }
  9720. #u134622 {
  9721. border-width:0px;
  9722. position:absolute;
  9723. left:1401px;
  9724. top:708px;
  9725. width:140px;
  9726. height:30px;
  9727. display:flex;
  9728. font-family:'Helvetica', sans-serif;
  9729. font-weight:400;
  9730. font-style:normal;
  9731. font-size:18px;
  9732. color:#0089FE;
  9733. }
  9734. #u134622 .text {
  9735. position:absolute;
  9736. align-self:center;
  9737. padding:2px 8px 2px 8px;
  9738. box-sizing:border-box;
  9739. width:100%;
  9740. }
  9741. #u134622_text {
  9742. border-width:0px;
  9743. word-wrap:break-word;
  9744. text-transform:none;
  9745. }
  9746. #u134623_div {
  9747. border-width:0px;
  9748. position:absolute;
  9749. left:0px;
  9750. top:0px;
  9751. width:140px;
  9752. height:30px;
  9753. background:inherit;
  9754. background-color:rgba(255, 255, 255, 1);
  9755. box-sizing:border-box;
  9756. border-width:1px;
  9757. border-style:solid;
  9758. border-color:rgba(0, 137, 254, 1);
  9759. border-radius:4px;
  9760. -moz-box-shadow:none;
  9761. -webkit-box-shadow:none;
  9762. box-shadow:none;
  9763. font-family:'Helvetica', sans-serif;
  9764. font-weight:400;
  9765. font-style:normal;
  9766. font-size:18px;
  9767. color:#0089FE;
  9768. }
  9769. #u134623 {
  9770. border-width:0px;
  9771. position:absolute;
  9772. left:1401px;
  9773. top:748px;
  9774. width:140px;
  9775. height:30px;
  9776. display:flex;
  9777. font-family:'Helvetica', sans-serif;
  9778. font-weight:400;
  9779. font-style:normal;
  9780. font-size:18px;
  9781. color:#0089FE;
  9782. }
  9783. #u134623 .text {
  9784. position:absolute;
  9785. align-self:center;
  9786. padding:2px 8px 2px 8px;
  9787. box-sizing:border-box;
  9788. width:100%;
  9789. }
  9790. #u134623_text {
  9791. border-width:0px;
  9792. word-wrap:break-word;
  9793. text-transform:none;
  9794. }
  9795. #u134624_div {
  9796. border-width:0px;
  9797. position:absolute;
  9798. left:0px;
  9799. top:0px;
  9800. width:140px;
  9801. height:30px;
  9802. background:inherit;
  9803. background-color:rgba(255, 255, 255, 1);
  9804. box-sizing:border-box;
  9805. border-width:1px;
  9806. border-style:solid;
  9807. border-color:rgba(0, 137, 254, 1);
  9808. border-radius:4px;
  9809. -moz-box-shadow:none;
  9810. -webkit-box-shadow:none;
  9811. box-shadow:none;
  9812. font-family:'Helvetica', sans-serif;
  9813. font-weight:400;
  9814. font-style:normal;
  9815. font-size:18px;
  9816. color:#0089FE;
  9817. }
  9818. #u134624 {
  9819. border-width:0px;
  9820. position:absolute;
  9821. left:1401px;
  9822. top:788px;
  9823. width:140px;
  9824. height:30px;
  9825. display:flex;
  9826. font-family:'Helvetica', sans-serif;
  9827. font-weight:400;
  9828. font-style:normal;
  9829. font-size:18px;
  9830. color:#0089FE;
  9831. }
  9832. #u134624 .text {
  9833. position:absolute;
  9834. align-self:center;
  9835. padding:2px 8px 2px 8px;
  9836. box-sizing:border-box;
  9837. width:100%;
  9838. }
  9839. #u134624_text {
  9840. border-width:0px;
  9841. word-wrap:break-word;
  9842. text-transform:none;
  9843. }
  9844. #u134625_div {
  9845. border-width:0px;
  9846. position:absolute;
  9847. left:0px;
  9848. top:0px;
  9849. width:140px;
  9850. height:30px;
  9851. background:inherit;
  9852. background-color:rgba(255, 255, 255, 1);
  9853. box-sizing:border-box;
  9854. border-width:1px;
  9855. border-style:solid;
  9856. border-color:rgba(0, 137, 254, 1);
  9857. border-radius:4px;
  9858. -moz-box-shadow:none;
  9859. -webkit-box-shadow:none;
  9860. box-shadow:none;
  9861. font-family:'Helvetica', sans-serif;
  9862. font-weight:400;
  9863. font-style:normal;
  9864. font-size:18px;
  9865. color:#0089FE;
  9866. }
  9867. #u134625 {
  9868. border-width:0px;
  9869. position:absolute;
  9870. left:1401px;
  9871. top:828px;
  9872. width:140px;
  9873. height:30px;
  9874. display:flex;
  9875. font-family:'Helvetica', sans-serif;
  9876. font-weight:400;
  9877. font-style:normal;
  9878. font-size:18px;
  9879. color:#0089FE;
  9880. }
  9881. #u134625 .text {
  9882. position:absolute;
  9883. align-self:center;
  9884. padding:2px 8px 2px 8px;
  9885. box-sizing:border-box;
  9886. width:100%;
  9887. }
  9888. #u134625_text {
  9889. border-width:0px;
  9890. word-wrap:break-word;
  9891. text-transform:none;
  9892. }
  9893. #u134626_div {
  9894. border-width:0px;
  9895. position:absolute;
  9896. left:0px;
  9897. top:0px;
  9898. width:140px;
  9899. height:30px;
  9900. background:inherit;
  9901. background-color:rgba(255, 255, 255, 1);
  9902. box-sizing:border-box;
  9903. border-width:1px;
  9904. border-style:solid;
  9905. border-color:rgba(0, 137, 254, 1);
  9906. border-radius:4px;
  9907. -moz-box-shadow:none;
  9908. -webkit-box-shadow:none;
  9909. box-shadow:none;
  9910. font-family:'Helvetica', sans-serif;
  9911. font-weight:400;
  9912. font-style:normal;
  9913. font-size:18px;
  9914. color:#0089FE;
  9915. }
  9916. #u134626 {
  9917. border-width:0px;
  9918. position:absolute;
  9919. left:1401px;
  9920. top:868px;
  9921. width:140px;
  9922. height:30px;
  9923. display:flex;
  9924. font-family:'Helvetica', sans-serif;
  9925. font-weight:400;
  9926. font-style:normal;
  9927. font-size:18px;
  9928. color:#0089FE;
  9929. }
  9930. #u134626 .text {
  9931. position:absolute;
  9932. align-self:center;
  9933. padding:2px 8px 2px 8px;
  9934. box-sizing:border-box;
  9935. width:100%;
  9936. }
  9937. #u134626_text {
  9938. border-width:0px;
  9939. word-wrap:break-word;
  9940. text-transform:none;
  9941. }
  9942. #u134627_div {
  9943. border-width:0px;
  9944. position:absolute;
  9945. left:0px;
  9946. top:0px;
  9947. width:140px;
  9948. height:30px;
  9949. background:inherit;
  9950. background-color:rgba(255, 255, 255, 1);
  9951. box-sizing:border-box;
  9952. border-width:1px;
  9953. border-style:solid;
  9954. border-color:rgba(0, 137, 254, 1);
  9955. border-radius:4px;
  9956. -moz-box-shadow:none;
  9957. -webkit-box-shadow:none;
  9958. box-shadow:none;
  9959. font-family:'Helvetica', sans-serif;
  9960. font-weight:400;
  9961. font-style:normal;
  9962. font-size:18px;
  9963. color:#0089FE;
  9964. }
  9965. #u134627 {
  9966. border-width:0px;
  9967. position:absolute;
  9968. left:1401px;
  9969. top:908px;
  9970. width:140px;
  9971. height:30px;
  9972. display:flex;
  9973. font-family:'Helvetica', sans-serif;
  9974. font-weight:400;
  9975. font-style:normal;
  9976. font-size:18px;
  9977. color:#0089FE;
  9978. }
  9979. #u134627 .text {
  9980. position:absolute;
  9981. align-self:center;
  9982. padding:2px 8px 2px 8px;
  9983. box-sizing:border-box;
  9984. width:100%;
  9985. }
  9986. #u134627_text {
  9987. border-width:0px;
  9988. word-wrap:break-word;
  9989. text-transform:none;
  9990. }
  9991. #u134628_div {
  9992. border-width:0px;
  9993. position:absolute;
  9994. left:0px;
  9995. top:0px;
  9996. width:140px;
  9997. height:30px;
  9998. background:inherit;
  9999. background-color:rgba(255, 255, 255, 1);
  10000. box-sizing:border-box;
  10001. border-width:1px;
  10002. border-style:solid;
  10003. border-color:rgba(0, 137, 254, 1);
  10004. border-radius:4px;
  10005. -moz-box-shadow:none;
  10006. -webkit-box-shadow:none;
  10007. box-shadow:none;
  10008. font-family:'Helvetica', sans-serif;
  10009. font-weight:400;
  10010. font-style:normal;
  10011. font-size:18px;
  10012. color:#0089FE;
  10013. }
  10014. #u134628 {
  10015. border-width:0px;
  10016. position:absolute;
  10017. left:1401px;
  10018. top:948px;
  10019. width:140px;
  10020. height:30px;
  10021. display:flex;
  10022. font-family:'Helvetica', sans-serif;
  10023. font-weight:400;
  10024. font-style:normal;
  10025. font-size:18px;
  10026. color:#0089FE;
  10027. }
  10028. #u134628 .text {
  10029. position:absolute;
  10030. align-self:center;
  10031. padding:2px 8px 2px 8px;
  10032. box-sizing:border-box;
  10033. width:100%;
  10034. }
  10035. #u134628_text {
  10036. border-width:0px;
  10037. word-wrap:break-word;
  10038. text-transform:none;
  10039. }
  10040. #u134629_div {
  10041. border-width:0px;
  10042. position:absolute;
  10043. left:0px;
  10044. top:0px;
  10045. width:140px;
  10046. height:30px;
  10047. background:inherit;
  10048. background-color:rgba(255, 255, 255, 1);
  10049. box-sizing:border-box;
  10050. border-width:1px;
  10051. border-style:solid;
  10052. border-color:rgba(0, 137, 254, 1);
  10053. border-radius:4px;
  10054. -moz-box-shadow:none;
  10055. -webkit-box-shadow:none;
  10056. box-shadow:none;
  10057. font-family:'Helvetica', sans-serif;
  10058. font-weight:400;
  10059. font-style:normal;
  10060. font-size:18px;
  10061. color:#0089FE;
  10062. }
  10063. #u134629 {
  10064. border-width:0px;
  10065. position:absolute;
  10066. left:1401px;
  10067. top:988px;
  10068. width:140px;
  10069. height:30px;
  10070. display:flex;
  10071. font-family:'Helvetica', sans-serif;
  10072. font-weight:400;
  10073. font-style:normal;
  10074. font-size:18px;
  10075. color:#0089FE;
  10076. }
  10077. #u134629 .text {
  10078. position:absolute;
  10079. align-self:center;
  10080. padding:2px 8px 2px 8px;
  10081. box-sizing:border-box;
  10082. width:100%;
  10083. }
  10084. #u134629_text {
  10085. border-width:0px;
  10086. word-wrap:break-word;
  10087. text-transform:none;
  10088. }
  10089. #u134630_div {
  10090. border-width:0px;
  10091. position:absolute;
  10092. left:0px;
  10093. top:0px;
  10094. width:140px;
  10095. height:30px;
  10096. background:inherit;
  10097. background-color:rgba(255, 255, 255, 1);
  10098. box-sizing:border-box;
  10099. border-width:1px;
  10100. border-style:solid;
  10101. border-color:rgba(0, 137, 254, 1);
  10102. border-radius:4px;
  10103. -moz-box-shadow:none;
  10104. -webkit-box-shadow:none;
  10105. box-shadow:none;
  10106. font-family:'Helvetica', sans-serif;
  10107. font-weight:400;
  10108. font-style:normal;
  10109. font-size:18px;
  10110. color:#0089FE;
  10111. }
  10112. #u134630 {
  10113. border-width:0px;
  10114. position:absolute;
  10115. left:1401px;
  10116. top:1028px;
  10117. width:140px;
  10118. height:30px;
  10119. display:flex;
  10120. font-family:'Helvetica', sans-serif;
  10121. font-weight:400;
  10122. font-style:normal;
  10123. font-size:18px;
  10124. color:#0089FE;
  10125. }
  10126. #u134630 .text {
  10127. position:absolute;
  10128. align-self:center;
  10129. padding:2px 8px 2px 8px;
  10130. box-sizing:border-box;
  10131. width:100%;
  10132. }
  10133. #u134630_text {
  10134. border-width:0px;
  10135. word-wrap:break-word;
  10136. text-transform:none;
  10137. }
  10138. #u134631_div {
  10139. border-width:0px;
  10140. position:absolute;
  10141. left:0px;
  10142. top:0px;
  10143. width:140px;
  10144. height:30px;
  10145. background:inherit;
  10146. background-color:rgba(255, 255, 255, 1);
  10147. box-sizing:border-box;
  10148. border-width:1px;
  10149. border-style:solid;
  10150. border-color:rgba(0, 137, 254, 1);
  10151. border-radius:4px;
  10152. -moz-box-shadow:none;
  10153. -webkit-box-shadow:none;
  10154. box-shadow:none;
  10155. font-family:'Helvetica', sans-serif;
  10156. font-weight:400;
  10157. font-style:normal;
  10158. font-size:18px;
  10159. color:#0089FE;
  10160. }
  10161. #u134631 {
  10162. border-width:0px;
  10163. position:absolute;
  10164. left:1401px;
  10165. top:1068px;
  10166. width:140px;
  10167. height:30px;
  10168. display:flex;
  10169. font-family:'Helvetica', sans-serif;
  10170. font-weight:400;
  10171. font-style:normal;
  10172. font-size:18px;
  10173. color:#0089FE;
  10174. }
  10175. #u134631 .text {
  10176. position:absolute;
  10177. align-self:center;
  10178. padding:2px 8px 2px 8px;
  10179. box-sizing:border-box;
  10180. width:100%;
  10181. }
  10182. #u134631_text {
  10183. border-width:0px;
  10184. word-wrap:break-word;
  10185. text-transform:none;
  10186. }
  10187. #u134632_div {
  10188. border-width:0px;
  10189. position:absolute;
  10190. left:0px;
  10191. top:0px;
  10192. width:140px;
  10193. height:30px;
  10194. background:inherit;
  10195. background-color:rgba(255, 255, 255, 1);
  10196. box-sizing:border-box;
  10197. border-width:1px;
  10198. border-style:solid;
  10199. border-color:rgba(0, 137, 254, 1);
  10200. border-radius:4px;
  10201. -moz-box-shadow:none;
  10202. -webkit-box-shadow:none;
  10203. box-shadow:none;
  10204. font-family:'Helvetica', sans-serif;
  10205. font-weight:400;
  10206. font-style:normal;
  10207. font-size:18px;
  10208. color:#0089FE;
  10209. }
  10210. #u134632 {
  10211. border-width:0px;
  10212. position:absolute;
  10213. left:1401px;
  10214. top:1108px;
  10215. width:140px;
  10216. height:30px;
  10217. display:flex;
  10218. font-family:'Helvetica', sans-serif;
  10219. font-weight:400;
  10220. font-style:normal;
  10221. font-size:18px;
  10222. color:#0089FE;
  10223. }
  10224. #u134632 .text {
  10225. position:absolute;
  10226. align-self:center;
  10227. padding:2px 8px 2px 8px;
  10228. box-sizing:border-box;
  10229. width:100%;
  10230. }
  10231. #u134632_text {
  10232. border-width:0px;
  10233. word-wrap:break-word;
  10234. text-transform:none;
  10235. }
  10236. #u134633 {
  10237. border-width:0px;
  10238. position:absolute;
  10239. left:0px;
  10240. top:0px;
  10241. width:0px;
  10242. height:0px;
  10243. }
  10244. #u134634_div {
  10245. border-width:0px;
  10246. position:absolute;
  10247. left:0px;
  10248. top:0px;
  10249. width:67px;
  10250. height:24px;
  10251. background:inherit;
  10252. background-color:rgba(255, 255, 255, 1);
  10253. box-sizing:border-box;
  10254. border-width:1px;
  10255. border-style:solid;
  10256. border-color:rgba(215, 215, 215, 1);
  10257. border-radius:0px;
  10258. -moz-box-shadow:none;
  10259. -webkit-box-shadow:none;
  10260. box-shadow:none;
  10261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10262. font-weight:400;
  10263. font-style:normal;
  10264. font-size:12px;
  10265. }
  10266. #u134634 {
  10267. border-width:0px;
  10268. position:absolute;
  10269. left:2944px;
  10270. top:160px;
  10271. width:67px;
  10272. height:24px;
  10273. display:flex;
  10274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10275. font-weight:400;
  10276. font-style:normal;
  10277. font-size:12px;
  10278. }
  10279. #u134634 .text {
  10280. position:absolute;
  10281. align-self:center;
  10282. padding:5px 15px 5px 15px;
  10283. box-sizing:border-box;
  10284. width:100%;
  10285. }
  10286. #u134634_text {
  10287. border-width:0px;
  10288. white-space:nowrap;
  10289. text-transform:none;
  10290. }
  10291. #u134635_div {
  10292. border-width:0px;
  10293. position:absolute;
  10294. left:0px;
  10295. top:0px;
  10296. width:67px;
  10297. height:24px;
  10298. background:inherit;
  10299. background-color:rgba(255, 255, 255, 1);
  10300. box-sizing:border-box;
  10301. border-width:1px;
  10302. border-style:solid;
  10303. border-color:rgba(170, 170, 170, 1);
  10304. border-radius:0px;
  10305. -moz-box-shadow:none;
  10306. -webkit-box-shadow:none;
  10307. box-shadow:none;
  10308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10309. font-weight:400;
  10310. font-style:normal;
  10311. font-size:12px;
  10312. color:#555555;
  10313. }
  10314. #u134635 {
  10315. border-width:0px;
  10316. position:absolute;
  10317. left:3090px;
  10318. top:160px;
  10319. width:67px;
  10320. height:24px;
  10321. display:flex;
  10322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10323. font-weight:400;
  10324. font-style:normal;
  10325. font-size:12px;
  10326. color:#555555;
  10327. }
  10328. #u134635 .text {
  10329. position:absolute;
  10330. align-self:center;
  10331. padding:5px 15px 5px 15px;
  10332. box-sizing:border-box;
  10333. width:100%;
  10334. }
  10335. #u134635_text {
  10336. border-width:0px;
  10337. white-space:nowrap;
  10338. text-transform:none;
  10339. }
  10340. #u134636_div {
  10341. border-width:0px;
  10342. position:absolute;
  10343. left:0px;
  10344. top:0px;
  10345. width:79px;
  10346. height:24px;
  10347. background:inherit;
  10348. background-color:rgba(0, 137, 254, 1);
  10349. box-sizing:border-box;
  10350. border-width:1px;
  10351. border-style:solid;
  10352. border-color:rgba(170, 170, 170, 1);
  10353. border-radius:0px;
  10354. -moz-box-shadow:none;
  10355. -webkit-box-shadow:none;
  10356. box-shadow:none;
  10357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10358. font-weight:400;
  10359. font-style:normal;
  10360. font-size:12px;
  10361. color:#FFFFFF;
  10362. }
  10363. #u134636 {
  10364. border-width:0px;
  10365. position:absolute;
  10366. left:3011px;
  10367. top:160px;
  10368. width:79px;
  10369. height:24px;
  10370. display:flex;
  10371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10372. font-weight:400;
  10373. font-style:normal;
  10374. font-size:12px;
  10375. color:#FFFFFF;
  10376. }
  10377. #u134636 .text {
  10378. position:absolute;
  10379. align-self:center;
  10380. padding:5px 15px 5px 15px;
  10381. box-sizing:border-box;
  10382. width:100%;
  10383. }
  10384. #u134636_text {
  10385. border-width:0px;
  10386. white-space:nowrap;
  10387. text-transform:none;
  10388. }
  10389. #u134637 {
  10390. border-width:0px;
  10391. position:absolute;
  10392. left:0px;
  10393. top:0px;
  10394. width:0px;
  10395. height:0px;
  10396. }
  10397. #u134638_div {
  10398. border-width:0px;
  10399. position:absolute;
  10400. left:0px;
  10401. top:0px;
  10402. width:140px;
  10403. height:30px;
  10404. background:inherit;
  10405. background-color:rgba(255, 255, 255, 1);
  10406. box-sizing:border-box;
  10407. border-width:1px;
  10408. border-style:solid;
  10409. border-color:rgba(215, 215, 215, 1);
  10410. border-radius:4px;
  10411. -moz-box-shadow:none;
  10412. -webkit-box-shadow:none;
  10413. box-shadow:none;
  10414. font-size:14px;
  10415. }
  10416. #u134638 {
  10417. border-width:0px;
  10418. position:absolute;
  10419. left:1809px;
  10420. top:110px;
  10421. width:140px;
  10422. height:30px;
  10423. display:flex;
  10424. font-size:14px;
  10425. }
  10426. #u134638 .text {
  10427. position:absolute;
  10428. align-self:center;
  10429. padding:2px 2px 2px 2px;
  10430. box-sizing:border-box;
  10431. width:100%;
  10432. }
  10433. #u134638_text {
  10434. border-width:0px;
  10435. word-wrap:break-word;
  10436. text-transform:none;
  10437. visibility:hidden;
  10438. }
  10439. #u134639_input {
  10440. position:absolute;
  10441. left:0px;
  10442. top:0px;
  10443. width:134px;
  10444. height:23px;
  10445. padding:2px 2px 2px 2px;
  10446. font-family:'ArialMT', 'Arial', sans-serif;
  10447. font-weight:400;
  10448. font-style:normal;
  10449. font-size:12px;
  10450. letter-spacing:normal;
  10451. color:#AAAAAA;
  10452. vertical-align:none;
  10453. text-align:left;
  10454. text-transform:none;
  10455. background-color:transparent;
  10456. border-color:transparent;
  10457. }
  10458. #u134639_input.disabled {
  10459. position:absolute;
  10460. left:0px;
  10461. top:0px;
  10462. width:134px;
  10463. height:23px;
  10464. padding:2px 2px 2px 2px;
  10465. font-family:'ArialMT', 'Arial', sans-serif;
  10466. font-weight:400;
  10467. font-style:normal;
  10468. font-size:12px;
  10469. letter-spacing:normal;
  10470. color:#AAAAAA;
  10471. vertical-align:none;
  10472. text-align:left;
  10473. text-transform:none;
  10474. background-color:transparent;
  10475. border-color:transparent;
  10476. }
  10477. #u134639_div {
  10478. border-width:0px;
  10479. position:absolute;
  10480. left:0px;
  10481. top:0px;
  10482. width:134px;
  10483. height:23px;
  10484. background:inherit;
  10485. background-color:rgba(255, 255, 255, 1);
  10486. border:none;
  10487. border-radius:0px;
  10488. -moz-box-shadow:none;
  10489. -webkit-box-shadow:none;
  10490. box-shadow:none;
  10491. font-size:12px;
  10492. color:#AAAAAA;
  10493. }
  10494. #u134639 {
  10495. border-width:0px;
  10496. position:absolute;
  10497. left:1813px;
  10498. top:112px;
  10499. width:134px;
  10500. height:23px;
  10501. display:flex;
  10502. font-size:12px;
  10503. color:#AAAAAA;
  10504. }
  10505. #u134639 .text {
  10506. position:absolute;
  10507. align-self:flex-start;
  10508. padding:2px 2px 2px 2px;
  10509. box-sizing:border-box;
  10510. width:100%;
  10511. }
  10512. #u134639_div.disabled {
  10513. border-width:0px;
  10514. position:absolute;
  10515. left:0px;
  10516. top:0px;
  10517. width:134px;
  10518. height:23px;
  10519. background:inherit;
  10520. background-color:rgba(240, 240, 240, 1);
  10521. border:none;
  10522. border-radius:0px;
  10523. -moz-box-shadow:none;
  10524. -webkit-box-shadow:none;
  10525. box-shadow:none;
  10526. font-size:12px;
  10527. color:#AAAAAA;
  10528. }
  10529. #u134639.disabled {
  10530. }
  10531. .u134639_input_option {
  10532. font-size:12px;
  10533. }
  10534. #u134640 {
  10535. border-width:0px;
  10536. position:absolute;
  10537. left:0px;
  10538. top:0px;
  10539. width:0px;
  10540. height:0px;
  10541. }
  10542. #u134641_div {
  10543. border-width:0px;
  10544. position:absolute;
  10545. left:0px;
  10546. top:0px;
  10547. width:140px;
  10548. height:30px;
  10549. background:inherit;
  10550. background-color:rgba(255, 255, 255, 1);
  10551. box-sizing:border-box;
  10552. border-width:1px;
  10553. border-style:solid;
  10554. border-color:rgba(215, 215, 215, 1);
  10555. border-radius:4px;
  10556. -moz-box-shadow:none;
  10557. -webkit-box-shadow:none;
  10558. box-shadow:none;
  10559. font-size:14px;
  10560. }
  10561. #u134641 {
  10562. border-width:0px;
  10563. position:absolute;
  10564. left:3094px;
  10565. top:110px;
  10566. width:140px;
  10567. height:30px;
  10568. display:flex;
  10569. font-size:14px;
  10570. }
  10571. #u134641 .text {
  10572. position:absolute;
  10573. align-self:center;
  10574. padding:2px 2px 2px 2px;
  10575. box-sizing:border-box;
  10576. width:100%;
  10577. }
  10578. #u134641_text {
  10579. border-width:0px;
  10580. word-wrap:break-word;
  10581. text-transform:none;
  10582. visibility:hidden;
  10583. }
  10584. #u134642_input {
  10585. position:absolute;
  10586. left:0px;
  10587. top:0px;
  10588. width:134px;
  10589. height:23px;
  10590. padding:2px 2px 2px 2px;
  10591. font-family:'ArialMT', 'Arial', sans-serif;
  10592. font-weight:400;
  10593. font-style:normal;
  10594. font-size:12px;
  10595. letter-spacing:normal;
  10596. color:#AAAAAA;
  10597. vertical-align:none;
  10598. text-align:left;
  10599. text-transform:none;
  10600. background-color:transparent;
  10601. border-color:transparent;
  10602. }
  10603. #u134642_input.disabled {
  10604. position:absolute;
  10605. left:0px;
  10606. top:0px;
  10607. width:134px;
  10608. height:23px;
  10609. padding:2px 2px 2px 2px;
  10610. font-family:'ArialMT', 'Arial', sans-serif;
  10611. font-weight:400;
  10612. font-style:normal;
  10613. font-size:12px;
  10614. letter-spacing:normal;
  10615. color:#AAAAAA;
  10616. vertical-align:none;
  10617. text-align:left;
  10618. text-transform:none;
  10619. background-color:transparent;
  10620. border-color:transparent;
  10621. }
  10622. #u134642_div {
  10623. border-width:0px;
  10624. position:absolute;
  10625. left:0px;
  10626. top:0px;
  10627. width:134px;
  10628. height:23px;
  10629. background:inherit;
  10630. background-color:rgba(255, 255, 255, 1);
  10631. border:none;
  10632. border-radius:0px;
  10633. -moz-box-shadow:none;
  10634. -webkit-box-shadow:none;
  10635. box-shadow:none;
  10636. font-size:12px;
  10637. color:#AAAAAA;
  10638. }
  10639. #u134642 {
  10640. border-width:0px;
  10641. position:absolute;
  10642. left:3098px;
  10643. top:112px;
  10644. width:134px;
  10645. height:23px;
  10646. display:flex;
  10647. font-size:12px;
  10648. color:#AAAAAA;
  10649. }
  10650. #u134642 .text {
  10651. position:absolute;
  10652. align-self:flex-start;
  10653. padding:2px 2px 2px 2px;
  10654. box-sizing:border-box;
  10655. width:100%;
  10656. }
  10657. #u134642_div.disabled {
  10658. border-width:0px;
  10659. position:absolute;
  10660. left:0px;
  10661. top:0px;
  10662. width:134px;
  10663. height:23px;
  10664. background:inherit;
  10665. background-color:rgba(240, 240, 240, 1);
  10666. border:none;
  10667. border-radius:0px;
  10668. -moz-box-shadow:none;
  10669. -webkit-box-shadow:none;
  10670. box-shadow:none;
  10671. font-size:12px;
  10672. color:#AAAAAA;
  10673. }
  10674. #u134642.disabled {
  10675. }
  10676. .u134642_input_option {
  10677. font-size:12px;
  10678. }
  10679. #u134643 {
  10680. border-width:0px;
  10681. position:absolute;
  10682. left:0px;
  10683. top:0px;
  10684. width:0px;
  10685. height:0px;
  10686. }
  10687. #u134644_div {
  10688. border-width:0px;
  10689. position:absolute;
  10690. left:0px;
  10691. top:0px;
  10692. width:221px;
  10693. height:220px;
  10694. background:inherit;
  10695. background-color:rgba(255, 255, 255, 1);
  10696. box-sizing:border-box;
  10697. border-width:1px;
  10698. border-style:solid;
  10699. border-color:rgba(215, 215, 215, 1);
  10700. border-radius:0px;
  10701. -moz-box-shadow:none;
  10702. -webkit-box-shadow:none;
  10703. box-shadow:none;
  10704. font-size:14px;
  10705. }
  10706. #u134644 {
  10707. border-width:0px;
  10708. position:absolute;
  10709. left:2944px;
  10710. top:204px;
  10711. width:221px;
  10712. height:220px;
  10713. display:flex;
  10714. font-size:14px;
  10715. }
  10716. #u134644 .text {
  10717. position:absolute;
  10718. align-self:center;
  10719. padding:2px 2px 2px 2px;
  10720. box-sizing:border-box;
  10721. width:100%;
  10722. }
  10723. #u134644_text {
  10724. border-width:0px;
  10725. word-wrap:break-word;
  10726. text-transform:none;
  10727. visibility:hidden;
  10728. }
  10729. #u134645_div {
  10730. border-width:0px;
  10731. position:absolute;
  10732. left:0px;
  10733. top:0px;
  10734. width:221px;
  10735. height:40px;
  10736. background:inherit;
  10737. background-color:rgba(0, 137, 254, 1);
  10738. box-sizing:border-box;
  10739. border-width:1px;
  10740. border-style:solid;
  10741. border-color:rgba(215, 215, 215, 1);
  10742. border-radius:0px;
  10743. -moz-box-shadow:none;
  10744. -webkit-box-shadow:none;
  10745. box-shadow:none;
  10746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10747. font-weight:400;
  10748. font-style:normal;
  10749. font-size:18px;
  10750. color:#FFFFFF;
  10751. }
  10752. #u134645 {
  10753. border-width:0px;
  10754. position:absolute;
  10755. left:2944px;
  10756. top:204px;
  10757. width:221px;
  10758. height:40px;
  10759. display:flex;
  10760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10761. font-weight:400;
  10762. font-style:normal;
  10763. font-size:18px;
  10764. color:#FFFFFF;
  10765. }
  10766. #u134645 .text {
  10767. position:absolute;
  10768. align-self:center;
  10769. padding:2px 2px 2px 2px;
  10770. box-sizing:border-box;
  10771. width:100%;
  10772. }
  10773. #u134645_text {
  10774. border-width:0px;
  10775. word-wrap:break-word;
  10776. text-transform:none;
  10777. }
  10778. #u134646_div {
  10779. border-width:0px;
  10780. position:absolute;
  10781. left:0px;
  10782. top:0px;
  10783. width:71px;
  10784. height:160px;
  10785. background:inherit;
  10786. background-color:rgba(255, 255, 255, 0);
  10787. border:none;
  10788. border-left:0px;
  10789. border-top:0px;
  10790. border-right:0px;
  10791. border-radius:0px;
  10792. border-bottom-right-radius:0px;
  10793. border-bottom-left-radius:0px;
  10794. -moz-box-shadow:none;
  10795. -webkit-box-shadow:none;
  10796. box-shadow:none;
  10797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10798. font-weight:400;
  10799. font-style:normal;
  10800. font-size:14px;
  10801. line-height:40px;
  10802. }
  10803. #u134646 {
  10804. border-width:0px;
  10805. position:absolute;
  10806. left:2963px;
  10807. top:254px;
  10808. width:71px;
  10809. height:160px;
  10810. display:flex;
  10811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10812. font-weight:400;
  10813. font-style:normal;
  10814. font-size:14px;
  10815. line-height:40px;
  10816. }
  10817. #u134646 .text {
  10818. position:absolute;
  10819. align-self:flex-start;
  10820. padding:0px 0px 0px 0px;
  10821. box-sizing:border-box;
  10822. width:100%;
  10823. }
  10824. #u134646_text {
  10825. border-width:0px;
  10826. white-space:nowrap;
  10827. text-transform:none;
  10828. }
  10829. #u134647_div {
  10830. border-width:0px;
  10831. position:absolute;
  10832. left:0px;
  10833. top:0px;
  10834. width:85px;
  10835. height:160px;
  10836. background:inherit;
  10837. background-color:rgba(255, 255, 255, 0);
  10838. border:none;
  10839. border-left:0px;
  10840. border-top:0px;
  10841. border-right:0px;
  10842. border-radius:0px;
  10843. border-bottom-right-radius:0px;
  10844. border-bottom-left-radius:0px;
  10845. -moz-box-shadow:none;
  10846. -webkit-box-shadow:none;
  10847. box-shadow:none;
  10848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10849. font-weight:400;
  10850. font-style:normal;
  10851. font-size:14px;
  10852. line-height:40px;
  10853. }
  10854. #u134647 {
  10855. border-width:0px;
  10856. position:absolute;
  10857. left:3058px;
  10858. top:254px;
  10859. width:85px;
  10860. height:160px;
  10861. display:flex;
  10862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10863. font-weight:400;
  10864. font-style:normal;
  10865. font-size:14px;
  10866. line-height:40px;
  10867. }
  10868. #u134647 .text {
  10869. position:absolute;
  10870. align-self:flex-start;
  10871. padding:0px 0px 0px 0px;
  10872. box-sizing:border-box;
  10873. width:100%;
  10874. }
  10875. #u134647_text {
  10876. border-width:0px;
  10877. white-space:nowrap;
  10878. text-transform:none;
  10879. }
  10880. #u134648_img {
  10881. border-width:0px;
  10882. position:absolute;
  10883. left:0px;
  10884. top:0px;
  10885. width:50px;
  10886. height:31px;
  10887. }
  10888. #u134648 {
  10889. border-width:0px;
  10890. position:absolute;
  10891. left:3056px;
  10892. top:381px;
  10893. width:50px;
  10894. height:31px;
  10895. display:flex;
  10896. }
  10897. #u134648 .text {
  10898. position:absolute;
  10899. align-self:center;
  10900. padding:2px 2px 2px 2px;
  10901. box-sizing:border-box;
  10902. width:100%;
  10903. }
  10904. #u134648_text {
  10905. border-width:0px;
  10906. word-wrap:break-word;
  10907. text-transform:none;
  10908. visibility:hidden;
  10909. }
  10910. #u134649 {
  10911. border-width:0px;
  10912. position:absolute;
  10913. left:0px;
  10914. top:0px;
  10915. width:0px;
  10916. height:0px;
  10917. }
  10918. #u134650_div {
  10919. border-width:0px;
  10920. position:absolute;
  10921. left:0px;
  10922. top:0px;
  10923. width:221px;
  10924. height:220px;
  10925. background:inherit;
  10926. background-color:rgba(255, 255, 255, 1);
  10927. box-sizing:border-box;
  10928. border-width:1px;
  10929. border-style:solid;
  10930. border-color:rgba(215, 215, 215, 1);
  10931. border-radius:0px;
  10932. -moz-box-shadow:none;
  10933. -webkit-box-shadow:none;
  10934. box-shadow:none;
  10935. font-size:14px;
  10936. }
  10937. #u134650 {
  10938. border-width:0px;
  10939. position:absolute;
  10940. left:3193px;
  10941. top:204px;
  10942. width:221px;
  10943. height:220px;
  10944. display:flex;
  10945. font-size:14px;
  10946. }
  10947. #u134650 .text {
  10948. position:absolute;
  10949. align-self:center;
  10950. padding:2px 2px 2px 2px;
  10951. box-sizing:border-box;
  10952. width:100%;
  10953. }
  10954. #u134650_text {
  10955. border-width:0px;
  10956. word-wrap:break-word;
  10957. text-transform:none;
  10958. visibility:hidden;
  10959. }
  10960. #u134651_div {
  10961. border-width:0px;
  10962. position:absolute;
  10963. left:0px;
  10964. top:0px;
  10965. width:221px;
  10966. height:40px;
  10967. background:inherit;
  10968. background-color:rgba(0, 137, 254, 1);
  10969. box-sizing:border-box;
  10970. border-width:1px;
  10971. border-style:solid;
  10972. border-color:rgba(215, 215, 215, 1);
  10973. border-radius:0px;
  10974. -moz-box-shadow:none;
  10975. -webkit-box-shadow:none;
  10976. box-shadow:none;
  10977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10978. font-weight:400;
  10979. font-style:normal;
  10980. font-size:18px;
  10981. color:#FFFFFF;
  10982. }
  10983. #u134651 {
  10984. border-width:0px;
  10985. position:absolute;
  10986. left:3193px;
  10987. top:204px;
  10988. width:221px;
  10989. height:40px;
  10990. display:flex;
  10991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10992. font-weight:400;
  10993. font-style:normal;
  10994. font-size:18px;
  10995. color:#FFFFFF;
  10996. }
  10997. #u134651 .text {
  10998. position:absolute;
  10999. align-self:center;
  11000. padding:2px 2px 2px 2px;
  11001. box-sizing:border-box;
  11002. width:100%;
  11003. }
  11004. #u134651_text {
  11005. border-width:0px;
  11006. word-wrap:break-word;
  11007. text-transform:none;
  11008. }
  11009. #u134652_div {
  11010. border-width:0px;
  11011. position:absolute;
  11012. left:0px;
  11013. top:0px;
  11014. width:71px;
  11015. height:160px;
  11016. background:inherit;
  11017. background-color:rgba(255, 255, 255, 0);
  11018. border:none;
  11019. border-left:0px;
  11020. border-top:0px;
  11021. border-right:0px;
  11022. border-radius:0px;
  11023. border-bottom-right-radius:0px;
  11024. border-bottom-left-radius:0px;
  11025. -moz-box-shadow:none;
  11026. -webkit-box-shadow:none;
  11027. box-shadow:none;
  11028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11029. font-weight:400;
  11030. font-style:normal;
  11031. font-size:14px;
  11032. line-height:40px;
  11033. }
  11034. #u134652 {
  11035. border-width:0px;
  11036. position:absolute;
  11037. left:3212px;
  11038. top:254px;
  11039. width:71px;
  11040. height:160px;
  11041. display:flex;
  11042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11043. font-weight:400;
  11044. font-style:normal;
  11045. font-size:14px;
  11046. line-height:40px;
  11047. }
  11048. #u134652 .text {
  11049. position:absolute;
  11050. align-self:flex-start;
  11051. padding:0px 0px 0px 0px;
  11052. box-sizing:border-box;
  11053. width:100%;
  11054. }
  11055. #u134652_text {
  11056. border-width:0px;
  11057. white-space:nowrap;
  11058. text-transform:none;
  11059. }
  11060. #u134653_div {
  11061. border-width:0px;
  11062. position:absolute;
  11063. left:0px;
  11064. top:0px;
  11065. width:85px;
  11066. height:160px;
  11067. background:inherit;
  11068. background-color:rgba(255, 255, 255, 0);
  11069. border:none;
  11070. border-left:0px;
  11071. border-top:0px;
  11072. border-right:0px;
  11073. border-radius:0px;
  11074. border-bottom-right-radius:0px;
  11075. border-bottom-left-radius:0px;
  11076. -moz-box-shadow:none;
  11077. -webkit-box-shadow:none;
  11078. box-shadow:none;
  11079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11080. font-weight:400;
  11081. font-style:normal;
  11082. font-size:14px;
  11083. line-height:40px;
  11084. }
  11085. #u134653 {
  11086. border-width:0px;
  11087. position:absolute;
  11088. left:3307px;
  11089. top:254px;
  11090. width:85px;
  11091. height:160px;
  11092. display:flex;
  11093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11094. font-weight:400;
  11095. font-style:normal;
  11096. font-size:14px;
  11097. line-height:40px;
  11098. }
  11099. #u134653 .text {
  11100. position:absolute;
  11101. align-self:flex-start;
  11102. padding:0px 0px 0px 0px;
  11103. box-sizing:border-box;
  11104. width:100%;
  11105. }
  11106. #u134653_text {
  11107. border-width:0px;
  11108. white-space:nowrap;
  11109. text-transform:none;
  11110. }
  11111. #u134654_img {
  11112. border-width:0px;
  11113. position:absolute;
  11114. left:0px;
  11115. top:0px;
  11116. width:50px;
  11117. height:31px;
  11118. }
  11119. #u134654 {
  11120. border-width:0px;
  11121. position:absolute;
  11122. left:3305px;
  11123. top:381px;
  11124. width:50px;
  11125. height:31px;
  11126. display:flex;
  11127. }
  11128. #u134654 .text {
  11129. position:absolute;
  11130. align-self:center;
  11131. padding:2px 2px 2px 2px;
  11132. box-sizing:border-box;
  11133. width:100%;
  11134. }
  11135. #u134654_text {
  11136. border-width:0px;
  11137. word-wrap:break-word;
  11138. text-transform:none;
  11139. visibility:hidden;
  11140. }
  11141. #u134655 {
  11142. border-width:0px;
  11143. position:absolute;
  11144. left:0px;
  11145. top:0px;
  11146. width:0px;
  11147. height:0px;
  11148. }
  11149. #u134656_div {
  11150. border-width:0px;
  11151. position:absolute;
  11152. left:0px;
  11153. top:0px;
  11154. width:221px;
  11155. height:220px;
  11156. background:inherit;
  11157. background-color:rgba(255, 255, 255, 1);
  11158. box-sizing:border-box;
  11159. border-width:1px;
  11160. border-style:solid;
  11161. border-color:rgba(215, 215, 215, 1);
  11162. border-radius:0px;
  11163. -moz-box-shadow:none;
  11164. -webkit-box-shadow:none;
  11165. box-shadow:none;
  11166. font-size:14px;
  11167. }
  11168. #u134656 {
  11169. border-width:0px;
  11170. position:absolute;
  11171. left:3442px;
  11172. top:204px;
  11173. width:221px;
  11174. height:220px;
  11175. display:flex;
  11176. font-size:14px;
  11177. }
  11178. #u134656 .text {
  11179. position:absolute;
  11180. align-self:center;
  11181. padding:2px 2px 2px 2px;
  11182. box-sizing:border-box;
  11183. width:100%;
  11184. }
  11185. #u134656_text {
  11186. border-width:0px;
  11187. word-wrap:break-word;
  11188. text-transform:none;
  11189. visibility:hidden;
  11190. }
  11191. #u134657_div {
  11192. border-width:0px;
  11193. position:absolute;
  11194. left:0px;
  11195. top:0px;
  11196. width:221px;
  11197. height:40px;
  11198. background:inherit;
  11199. background-color:rgba(236, 128, 141, 1);
  11200. box-sizing:border-box;
  11201. border-width:1px;
  11202. border-style:solid;
  11203. border-color:rgba(215, 215, 215, 1);
  11204. border-radius:0px;
  11205. -moz-box-shadow:none;
  11206. -webkit-box-shadow:none;
  11207. box-shadow:none;
  11208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11209. font-weight:400;
  11210. font-style:normal;
  11211. font-size:18px;
  11212. color:#FFFFFF;
  11213. }
  11214. #u134657 {
  11215. border-width:0px;
  11216. position:absolute;
  11217. left:3442px;
  11218. top:204px;
  11219. width:221px;
  11220. height:40px;
  11221. display:flex;
  11222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11223. font-weight:400;
  11224. font-style:normal;
  11225. font-size:18px;
  11226. color:#FFFFFF;
  11227. }
  11228. #u134657 .text {
  11229. position:absolute;
  11230. align-self:center;
  11231. padding:2px 2px 2px 2px;
  11232. box-sizing:border-box;
  11233. width:100%;
  11234. }
  11235. #u134657_text {
  11236. border-width:0px;
  11237. word-wrap:break-word;
  11238. text-transform:none;
  11239. }
  11240. #u134658_div {
  11241. border-width:0px;
  11242. position:absolute;
  11243. left:0px;
  11244. top:0px;
  11245. width:71px;
  11246. height:160px;
  11247. background:inherit;
  11248. background-color:rgba(255, 255, 255, 0);
  11249. border:none;
  11250. border-left:0px;
  11251. border-top:0px;
  11252. border-right:0px;
  11253. border-radius:0px;
  11254. border-bottom-right-radius:0px;
  11255. border-bottom-left-radius:0px;
  11256. -moz-box-shadow:none;
  11257. -webkit-box-shadow:none;
  11258. box-shadow:none;
  11259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11260. font-weight:400;
  11261. font-style:normal;
  11262. font-size:14px;
  11263. line-height:40px;
  11264. }
  11265. #u134658 {
  11266. border-width:0px;
  11267. position:absolute;
  11268. left:3461px;
  11269. top:254px;
  11270. width:71px;
  11271. height:160px;
  11272. display:flex;
  11273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11274. font-weight:400;
  11275. font-style:normal;
  11276. font-size:14px;
  11277. line-height:40px;
  11278. }
  11279. #u134658 .text {
  11280. position:absolute;
  11281. align-self:flex-start;
  11282. padding:0px 0px 0px 0px;
  11283. box-sizing:border-box;
  11284. width:100%;
  11285. }
  11286. #u134658_text {
  11287. border-width:0px;
  11288. white-space:nowrap;
  11289. text-transform:none;
  11290. }
  11291. #u134659_div {
  11292. border-width:0px;
  11293. position:absolute;
  11294. left:0px;
  11295. top:0px;
  11296. width:85px;
  11297. height:160px;
  11298. background:inherit;
  11299. background-color:rgba(255, 255, 255, 0);
  11300. border:none;
  11301. border-left:0px;
  11302. border-top:0px;
  11303. border-right:0px;
  11304. border-radius:0px;
  11305. border-bottom-right-radius:0px;
  11306. border-bottom-left-radius:0px;
  11307. -moz-box-shadow:none;
  11308. -webkit-box-shadow:none;
  11309. box-shadow:none;
  11310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11311. font-weight:400;
  11312. font-style:normal;
  11313. font-size:14px;
  11314. line-height:40px;
  11315. }
  11316. #u134659 {
  11317. border-width:0px;
  11318. position:absolute;
  11319. left:3556px;
  11320. top:254px;
  11321. width:85px;
  11322. height:160px;
  11323. display:flex;
  11324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11325. font-weight:400;
  11326. font-style:normal;
  11327. font-size:14px;
  11328. line-height:40px;
  11329. }
  11330. #u134659 .text {
  11331. position:absolute;
  11332. align-self:flex-start;
  11333. padding:0px 0px 0px 0px;
  11334. box-sizing:border-box;
  11335. width:100%;
  11336. }
  11337. #u134659_text {
  11338. border-width:0px;
  11339. white-space:nowrap;
  11340. text-transform:none;
  11341. }
  11342. #u134660_img {
  11343. border-width:0px;
  11344. position:absolute;
  11345. left:0px;
  11346. top:0px;
  11347. width:50px;
  11348. height:31px;
  11349. }
  11350. #u134660 {
  11351. border-width:0px;
  11352. position:absolute;
  11353. left:3554px;
  11354. top:381px;
  11355. width:50px;
  11356. height:31px;
  11357. display:flex;
  11358. }
  11359. #u134660 .text {
  11360. position:absolute;
  11361. align-self:center;
  11362. padding:2px 2px 2px 2px;
  11363. box-sizing:border-box;
  11364. width:100%;
  11365. }
  11366. #u134660_text {
  11367. border-width:0px;
  11368. word-wrap:break-word;
  11369. text-transform:none;
  11370. visibility:hidden;
  11371. }
  11372. #u134661 {
  11373. border-width:0px;
  11374. position:absolute;
  11375. left:0px;
  11376. top:0px;
  11377. width:0px;
  11378. height:0px;
  11379. }
  11380. #u134662_div {
  11381. border-width:0px;
  11382. position:absolute;
  11383. left:0px;
  11384. top:0px;
  11385. width:221px;
  11386. height:220px;
  11387. background:inherit;
  11388. background-color:rgba(255, 255, 255, 1);
  11389. box-sizing:border-box;
  11390. border-width:1px;
  11391. border-style:solid;
  11392. border-color:rgba(215, 215, 215, 1);
  11393. border-radius:0px;
  11394. -moz-box-shadow:none;
  11395. -webkit-box-shadow:none;
  11396. box-shadow:none;
  11397. font-size:14px;
  11398. }
  11399. #u134662 {
  11400. border-width:0px;
  11401. position:absolute;
  11402. left:3690px;
  11403. top:204px;
  11404. width:221px;
  11405. height:220px;
  11406. display:flex;
  11407. font-size:14px;
  11408. }
  11409. #u134662 .text {
  11410. position:absolute;
  11411. align-self:center;
  11412. padding:2px 2px 2px 2px;
  11413. box-sizing:border-box;
  11414. width:100%;
  11415. }
  11416. #u134662_text {
  11417. border-width:0px;
  11418. word-wrap:break-word;
  11419. text-transform:none;
  11420. visibility:hidden;
  11421. }
  11422. #u134663_div {
  11423. border-width:0px;
  11424. position:absolute;
  11425. left:0px;
  11426. top:0px;
  11427. width:221px;
  11428. height:40px;
  11429. background:inherit;
  11430. background-color:rgba(0, 137, 254, 1);
  11431. box-sizing:border-box;
  11432. border-width:1px;
  11433. border-style:solid;
  11434. border-color:rgba(215, 215, 215, 1);
  11435. border-radius:0px;
  11436. -moz-box-shadow:none;
  11437. -webkit-box-shadow:none;
  11438. box-shadow:none;
  11439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11440. font-weight:400;
  11441. font-style:normal;
  11442. font-size:18px;
  11443. color:#FFFFFF;
  11444. }
  11445. #u134663 {
  11446. border-width:0px;
  11447. position:absolute;
  11448. left:3690px;
  11449. top:204px;
  11450. width:221px;
  11451. height:40px;
  11452. display:flex;
  11453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11454. font-weight:400;
  11455. font-style:normal;
  11456. font-size:18px;
  11457. color:#FFFFFF;
  11458. }
  11459. #u134663 .text {
  11460. position:absolute;
  11461. align-self:center;
  11462. padding:2px 2px 2px 2px;
  11463. box-sizing:border-box;
  11464. width:100%;
  11465. }
  11466. #u134663_text {
  11467. border-width:0px;
  11468. word-wrap:break-word;
  11469. text-transform:none;
  11470. }
  11471. #u134664_div {
  11472. border-width:0px;
  11473. position:absolute;
  11474. left:0px;
  11475. top:0px;
  11476. width:71px;
  11477. height:160px;
  11478. background:inherit;
  11479. background-color:rgba(255, 255, 255, 0);
  11480. border:none;
  11481. border-left:0px;
  11482. border-top:0px;
  11483. border-right:0px;
  11484. border-radius:0px;
  11485. border-bottom-right-radius:0px;
  11486. border-bottom-left-radius:0px;
  11487. -moz-box-shadow:none;
  11488. -webkit-box-shadow:none;
  11489. box-shadow:none;
  11490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11491. font-weight:400;
  11492. font-style:normal;
  11493. font-size:14px;
  11494. line-height:40px;
  11495. }
  11496. #u134664 {
  11497. border-width:0px;
  11498. position:absolute;
  11499. left:3709px;
  11500. top:254px;
  11501. width:71px;
  11502. height:160px;
  11503. display:flex;
  11504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11505. font-weight:400;
  11506. font-style:normal;
  11507. font-size:14px;
  11508. line-height:40px;
  11509. }
  11510. #u134664 .text {
  11511. position:absolute;
  11512. align-self:flex-start;
  11513. padding:0px 0px 0px 0px;
  11514. box-sizing:border-box;
  11515. width:100%;
  11516. }
  11517. #u134664_text {
  11518. border-width:0px;
  11519. white-space:nowrap;
  11520. text-transform:none;
  11521. }
  11522. #u134665_div {
  11523. border-width:0px;
  11524. position:absolute;
  11525. left:0px;
  11526. top:0px;
  11527. width:85px;
  11528. height:160px;
  11529. background:inherit;
  11530. background-color:rgba(255, 255, 255, 0);
  11531. border:none;
  11532. border-left:0px;
  11533. border-top:0px;
  11534. border-right:0px;
  11535. border-radius:0px;
  11536. border-bottom-right-radius:0px;
  11537. border-bottom-left-radius:0px;
  11538. -moz-box-shadow:none;
  11539. -webkit-box-shadow:none;
  11540. box-shadow:none;
  11541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11542. font-weight:400;
  11543. font-style:normal;
  11544. font-size:14px;
  11545. line-height:40px;
  11546. }
  11547. #u134665 {
  11548. border-width:0px;
  11549. position:absolute;
  11550. left:3804px;
  11551. top:254px;
  11552. width:85px;
  11553. height:160px;
  11554. display:flex;
  11555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11556. font-weight:400;
  11557. font-style:normal;
  11558. font-size:14px;
  11559. line-height:40px;
  11560. }
  11561. #u134665 .text {
  11562. position:absolute;
  11563. align-self:flex-start;
  11564. padding:0px 0px 0px 0px;
  11565. box-sizing:border-box;
  11566. width:100%;
  11567. }
  11568. #u134665_text {
  11569. border-width:0px;
  11570. white-space:nowrap;
  11571. text-transform:none;
  11572. }
  11573. #u134666_img {
  11574. border-width:0px;
  11575. position:absolute;
  11576. left:0px;
  11577. top:0px;
  11578. width:50px;
  11579. height:31px;
  11580. }
  11581. #u134666 {
  11582. border-width:0px;
  11583. position:absolute;
  11584. left:3802px;
  11585. top:381px;
  11586. width:50px;
  11587. height:31px;
  11588. display:flex;
  11589. }
  11590. #u134666 .text {
  11591. position:absolute;
  11592. align-self:center;
  11593. padding:2px 2px 2px 2px;
  11594. box-sizing:border-box;
  11595. width:100%;
  11596. }
  11597. #u134666_text {
  11598. border-width:0px;
  11599. word-wrap:break-word;
  11600. text-transform:none;
  11601. visibility:hidden;
  11602. }
  11603. #u134667 {
  11604. border-width:0px;
  11605. position:absolute;
  11606. left:0px;
  11607. top:0px;
  11608. width:0px;
  11609. height:0px;
  11610. }
  11611. #u134668_div {
  11612. border-width:0px;
  11613. position:absolute;
  11614. left:0px;
  11615. top:0px;
  11616. width:221px;
  11617. height:220px;
  11618. background:inherit;
  11619. background-color:rgba(255, 255, 255, 1);
  11620. box-sizing:border-box;
  11621. border-width:1px;
  11622. border-style:solid;
  11623. border-color:rgba(215, 215, 215, 1);
  11624. border-radius:0px;
  11625. -moz-box-shadow:none;
  11626. -webkit-box-shadow:none;
  11627. box-shadow:none;
  11628. font-size:14px;
  11629. }
  11630. #u134668 {
  11631. border-width:0px;
  11632. position:absolute;
  11633. left:3939px;
  11634. top:204px;
  11635. width:221px;
  11636. height:220px;
  11637. display:flex;
  11638. font-size:14px;
  11639. }
  11640. #u134668 .text {
  11641. position:absolute;
  11642. align-self:center;
  11643. padding:2px 2px 2px 2px;
  11644. box-sizing:border-box;
  11645. width:100%;
  11646. }
  11647. #u134668_text {
  11648. border-width:0px;
  11649. word-wrap:break-word;
  11650. text-transform:none;
  11651. visibility:hidden;
  11652. }
  11653. #u134669_div {
  11654. border-width:0px;
  11655. position:absolute;
  11656. left:0px;
  11657. top:0px;
  11658. width:221px;
  11659. height:40px;
  11660. background:inherit;
  11661. background-color:rgba(0, 137, 254, 1);
  11662. box-sizing:border-box;
  11663. border-width:1px;
  11664. border-style:solid;
  11665. border-color:rgba(215, 215, 215, 1);
  11666. border-radius:0px;
  11667. -moz-box-shadow:none;
  11668. -webkit-box-shadow:none;
  11669. box-shadow:none;
  11670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11671. font-weight:400;
  11672. font-style:normal;
  11673. font-size:18px;
  11674. color:#FFFFFF;
  11675. }
  11676. #u134669 {
  11677. border-width:0px;
  11678. position:absolute;
  11679. left:3939px;
  11680. top:204px;
  11681. width:221px;
  11682. height:40px;
  11683. display:flex;
  11684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11685. font-weight:400;
  11686. font-style:normal;
  11687. font-size:18px;
  11688. color:#FFFFFF;
  11689. }
  11690. #u134669 .text {
  11691. position:absolute;
  11692. align-self:center;
  11693. padding:2px 2px 2px 2px;
  11694. box-sizing:border-box;
  11695. width:100%;
  11696. }
  11697. #u134669_text {
  11698. border-width:0px;
  11699. word-wrap:break-word;
  11700. text-transform:none;
  11701. }
  11702. #u134670_div {
  11703. border-width:0px;
  11704. position:absolute;
  11705. left:0px;
  11706. top:0px;
  11707. width:71px;
  11708. height:160px;
  11709. background:inherit;
  11710. background-color:rgba(255, 255, 255, 0);
  11711. border:none;
  11712. border-left:0px;
  11713. border-top:0px;
  11714. border-right:0px;
  11715. border-radius:0px;
  11716. border-bottom-right-radius:0px;
  11717. border-bottom-left-radius:0px;
  11718. -moz-box-shadow:none;
  11719. -webkit-box-shadow:none;
  11720. box-shadow:none;
  11721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11722. font-weight:400;
  11723. font-style:normal;
  11724. font-size:14px;
  11725. line-height:40px;
  11726. }
  11727. #u134670 {
  11728. border-width:0px;
  11729. position:absolute;
  11730. left:3958px;
  11731. top:254px;
  11732. width:71px;
  11733. height:160px;
  11734. display:flex;
  11735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11736. font-weight:400;
  11737. font-style:normal;
  11738. font-size:14px;
  11739. line-height:40px;
  11740. }
  11741. #u134670 .text {
  11742. position:absolute;
  11743. align-self:flex-start;
  11744. padding:0px 0px 0px 0px;
  11745. box-sizing:border-box;
  11746. width:100%;
  11747. }
  11748. #u134670_text {
  11749. border-width:0px;
  11750. white-space:nowrap;
  11751. text-transform:none;
  11752. }
  11753. #u134671_div {
  11754. border-width:0px;
  11755. position:absolute;
  11756. left:0px;
  11757. top:0px;
  11758. width:85px;
  11759. height:160px;
  11760. background:inherit;
  11761. background-color:rgba(255, 255, 255, 0);
  11762. border:none;
  11763. border-left:0px;
  11764. border-top:0px;
  11765. border-right:0px;
  11766. border-radius:0px;
  11767. border-bottom-right-radius:0px;
  11768. border-bottom-left-radius:0px;
  11769. -moz-box-shadow:none;
  11770. -webkit-box-shadow:none;
  11771. box-shadow:none;
  11772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11773. font-weight:400;
  11774. font-style:normal;
  11775. font-size:14px;
  11776. line-height:40px;
  11777. }
  11778. #u134671 {
  11779. border-width:0px;
  11780. position:absolute;
  11781. left:4053px;
  11782. top:254px;
  11783. width:85px;
  11784. height:160px;
  11785. display:flex;
  11786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11787. font-weight:400;
  11788. font-style:normal;
  11789. font-size:14px;
  11790. line-height:40px;
  11791. }
  11792. #u134671 .text {
  11793. position:absolute;
  11794. align-self:flex-start;
  11795. padding:0px 0px 0px 0px;
  11796. box-sizing:border-box;
  11797. width:100%;
  11798. }
  11799. #u134671_text {
  11800. border-width:0px;
  11801. white-space:nowrap;
  11802. text-transform:none;
  11803. }
  11804. #u134672_img {
  11805. border-width:0px;
  11806. position:absolute;
  11807. left:0px;
  11808. top:0px;
  11809. width:50px;
  11810. height:31px;
  11811. }
  11812. #u134672 {
  11813. border-width:0px;
  11814. position:absolute;
  11815. left:4051px;
  11816. top:381px;
  11817. width:50px;
  11818. height:31px;
  11819. display:flex;
  11820. }
  11821. #u134672 .text {
  11822. position:absolute;
  11823. align-self:center;
  11824. padding:2px 2px 2px 2px;
  11825. box-sizing:border-box;
  11826. width:100%;
  11827. }
  11828. #u134672_text {
  11829. border-width:0px;
  11830. word-wrap:break-word;
  11831. text-transform:none;
  11832. visibility:hidden;
  11833. }
  11834. #u134673 {
  11835. border-width:0px;
  11836. position:absolute;
  11837. left:0px;
  11838. top:0px;
  11839. width:0px;
  11840. height:0px;
  11841. }
  11842. #u134674_div {
  11843. border-width:0px;
  11844. position:absolute;
  11845. left:0px;
  11846. top:0px;
  11847. width:221px;
  11848. height:220px;
  11849. background:inherit;
  11850. background-color:rgba(255, 255, 255, 1);
  11851. box-sizing:border-box;
  11852. border-width:1px;
  11853. border-style:solid;
  11854. border-color:rgba(215, 215, 215, 1);
  11855. border-radius:0px;
  11856. -moz-box-shadow:none;
  11857. -webkit-box-shadow:none;
  11858. box-shadow:none;
  11859. font-size:14px;
  11860. }
  11861. #u134674 {
  11862. border-width:0px;
  11863. position:absolute;
  11864. left:2944px;
  11865. top:445px;
  11866. width:221px;
  11867. height:220px;
  11868. display:flex;
  11869. font-size:14px;
  11870. }
  11871. #u134674 .text {
  11872. position:absolute;
  11873. align-self:center;
  11874. padding:2px 2px 2px 2px;
  11875. box-sizing:border-box;
  11876. width:100%;
  11877. }
  11878. #u134674_text {
  11879. border-width:0px;
  11880. word-wrap:break-word;
  11881. text-transform:none;
  11882. visibility:hidden;
  11883. }
  11884. #u134675_div {
  11885. border-width:0px;
  11886. position:absolute;
  11887. left:0px;
  11888. top:0px;
  11889. width:221px;
  11890. height:40px;
  11891. background:inherit;
  11892. background-color:rgba(0, 137, 254, 1);
  11893. box-sizing:border-box;
  11894. border-width:1px;
  11895. border-style:solid;
  11896. border-color:rgba(215, 215, 215, 1);
  11897. border-radius:0px;
  11898. -moz-box-shadow:none;
  11899. -webkit-box-shadow:none;
  11900. box-shadow:none;
  11901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11902. font-weight:400;
  11903. font-style:normal;
  11904. font-size:18px;
  11905. color:#FFFFFF;
  11906. }
  11907. #u134675 {
  11908. border-width:0px;
  11909. position:absolute;
  11910. left:2944px;
  11911. top:445px;
  11912. width:221px;
  11913. height:40px;
  11914. display:flex;
  11915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11916. font-weight:400;
  11917. font-style:normal;
  11918. font-size:18px;
  11919. color:#FFFFFF;
  11920. }
  11921. #u134675 .text {
  11922. position:absolute;
  11923. align-self:center;
  11924. padding:2px 2px 2px 2px;
  11925. box-sizing:border-box;
  11926. width:100%;
  11927. }
  11928. #u134675_text {
  11929. border-width:0px;
  11930. word-wrap:break-word;
  11931. text-transform:none;
  11932. }
  11933. #u134676_div {
  11934. border-width:0px;
  11935. position:absolute;
  11936. left:0px;
  11937. top:0px;
  11938. width:71px;
  11939. height:160px;
  11940. background:inherit;
  11941. background-color:rgba(255, 255, 255, 0);
  11942. border:none;
  11943. border-left:0px;
  11944. border-top:0px;
  11945. border-right:0px;
  11946. border-radius:0px;
  11947. border-bottom-right-radius:0px;
  11948. border-bottom-left-radius:0px;
  11949. -moz-box-shadow:none;
  11950. -webkit-box-shadow:none;
  11951. box-shadow:none;
  11952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11953. font-weight:400;
  11954. font-style:normal;
  11955. font-size:14px;
  11956. line-height:40px;
  11957. }
  11958. #u134676 {
  11959. border-width:0px;
  11960. position:absolute;
  11961. left:2963px;
  11962. top:495px;
  11963. width:71px;
  11964. height:160px;
  11965. display:flex;
  11966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11967. font-weight:400;
  11968. font-style:normal;
  11969. font-size:14px;
  11970. line-height:40px;
  11971. }
  11972. #u134676 .text {
  11973. position:absolute;
  11974. align-self:flex-start;
  11975. padding:0px 0px 0px 0px;
  11976. box-sizing:border-box;
  11977. width:100%;
  11978. }
  11979. #u134676_text {
  11980. border-width:0px;
  11981. white-space:nowrap;
  11982. text-transform:none;
  11983. }
  11984. #u134677_div {
  11985. border-width:0px;
  11986. position:absolute;
  11987. left:0px;
  11988. top:0px;
  11989. width:85px;
  11990. height:160px;
  11991. background:inherit;
  11992. background-color:rgba(255, 255, 255, 0);
  11993. border:none;
  11994. border-left:0px;
  11995. border-top:0px;
  11996. border-right:0px;
  11997. border-radius:0px;
  11998. border-bottom-right-radius:0px;
  11999. border-bottom-left-radius:0px;
  12000. -moz-box-shadow:none;
  12001. -webkit-box-shadow:none;
  12002. box-shadow:none;
  12003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12004. font-weight:400;
  12005. font-style:normal;
  12006. font-size:14px;
  12007. line-height:40px;
  12008. }
  12009. #u134677 {
  12010. border-width:0px;
  12011. position:absolute;
  12012. left:3058px;
  12013. top:495px;
  12014. width:85px;
  12015. height:160px;
  12016. display:flex;
  12017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12018. font-weight:400;
  12019. font-style:normal;
  12020. font-size:14px;
  12021. line-height:40px;
  12022. }
  12023. #u134677 .text {
  12024. position:absolute;
  12025. align-self:flex-start;
  12026. padding:0px 0px 0px 0px;
  12027. box-sizing:border-box;
  12028. width:100%;
  12029. }
  12030. #u134677_text {
  12031. border-width:0px;
  12032. white-space:nowrap;
  12033. text-transform:none;
  12034. }
  12035. #u134678_img {
  12036. border-width:0px;
  12037. position:absolute;
  12038. left:0px;
  12039. top:0px;
  12040. width:50px;
  12041. height:31px;
  12042. }
  12043. #u134678 {
  12044. border-width:0px;
  12045. position:absolute;
  12046. left:3058px;
  12047. top:622px;
  12048. width:50px;
  12049. height:31px;
  12050. display:flex;
  12051. }
  12052. #u134678 .text {
  12053. position:absolute;
  12054. align-self:center;
  12055. padding:2px 2px 2px 2px;
  12056. box-sizing:border-box;
  12057. width:100%;
  12058. }
  12059. #u134678_text {
  12060. border-width:0px;
  12061. word-wrap:break-word;
  12062. text-transform:none;
  12063. visibility:hidden;
  12064. }
  12065. #u134679 {
  12066. border-width:0px;
  12067. position:absolute;
  12068. left:0px;
  12069. top:0px;
  12070. width:0px;
  12071. height:0px;
  12072. }
  12073. #u134680_div {
  12074. border-width:0px;
  12075. position:absolute;
  12076. left:0px;
  12077. top:0px;
  12078. width:221px;
  12079. height:220px;
  12080. background:inherit;
  12081. background-color:rgba(255, 255, 255, 1);
  12082. box-sizing:border-box;
  12083. border-width:1px;
  12084. border-style:solid;
  12085. border-color:rgba(215, 215, 215, 1);
  12086. border-radius:0px;
  12087. -moz-box-shadow:none;
  12088. -webkit-box-shadow:none;
  12089. box-shadow:none;
  12090. font-size:14px;
  12091. }
  12092. #u134680 {
  12093. border-width:0px;
  12094. position:absolute;
  12095. left:3193px;
  12096. top:445px;
  12097. width:221px;
  12098. height:220px;
  12099. display:flex;
  12100. font-size:14px;
  12101. }
  12102. #u134680 .text {
  12103. position:absolute;
  12104. align-self:center;
  12105. padding:2px 2px 2px 2px;
  12106. box-sizing:border-box;
  12107. width:100%;
  12108. }
  12109. #u134680_text {
  12110. border-width:0px;
  12111. word-wrap:break-word;
  12112. text-transform:none;
  12113. visibility:hidden;
  12114. }
  12115. #u134681_div {
  12116. border-width:0px;
  12117. position:absolute;
  12118. left:0px;
  12119. top:0px;
  12120. width:221px;
  12121. height:40px;
  12122. background:inherit;
  12123. background-color:rgba(0, 137, 254, 1);
  12124. box-sizing:border-box;
  12125. border-width:1px;
  12126. border-style:solid;
  12127. border-color:rgba(215, 215, 215, 1);
  12128. border-radius:0px;
  12129. -moz-box-shadow:none;
  12130. -webkit-box-shadow:none;
  12131. box-shadow:none;
  12132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12133. font-weight:400;
  12134. font-style:normal;
  12135. font-size:18px;
  12136. color:#FFFFFF;
  12137. }
  12138. #u134681 {
  12139. border-width:0px;
  12140. position:absolute;
  12141. left:3193px;
  12142. top:445px;
  12143. width:221px;
  12144. height:40px;
  12145. display:flex;
  12146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12147. font-weight:400;
  12148. font-style:normal;
  12149. font-size:18px;
  12150. color:#FFFFFF;
  12151. }
  12152. #u134681 .text {
  12153. position:absolute;
  12154. align-self:center;
  12155. padding:2px 2px 2px 2px;
  12156. box-sizing:border-box;
  12157. width:100%;
  12158. }
  12159. #u134681_text {
  12160. border-width:0px;
  12161. word-wrap:break-word;
  12162. text-transform:none;
  12163. }
  12164. #u134682_div {
  12165. border-width:0px;
  12166. position:absolute;
  12167. left:0px;
  12168. top:0px;
  12169. width:71px;
  12170. height:160px;
  12171. background:inherit;
  12172. background-color:rgba(255, 255, 255, 0);
  12173. border:none;
  12174. border-left:0px;
  12175. border-top:0px;
  12176. border-right:0px;
  12177. border-radius:0px;
  12178. border-bottom-right-radius:0px;
  12179. border-bottom-left-radius:0px;
  12180. -moz-box-shadow:none;
  12181. -webkit-box-shadow:none;
  12182. box-shadow:none;
  12183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12184. font-weight:400;
  12185. font-style:normal;
  12186. font-size:14px;
  12187. line-height:40px;
  12188. }
  12189. #u134682 {
  12190. border-width:0px;
  12191. position:absolute;
  12192. left:3212px;
  12193. top:495px;
  12194. width:71px;
  12195. height:160px;
  12196. display:flex;
  12197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12198. font-weight:400;
  12199. font-style:normal;
  12200. font-size:14px;
  12201. line-height:40px;
  12202. }
  12203. #u134682 .text {
  12204. position:absolute;
  12205. align-self:flex-start;
  12206. padding:0px 0px 0px 0px;
  12207. box-sizing:border-box;
  12208. width:100%;
  12209. }
  12210. #u134682_text {
  12211. border-width:0px;
  12212. white-space:nowrap;
  12213. text-transform:none;
  12214. }
  12215. #u134683_div {
  12216. border-width:0px;
  12217. position:absolute;
  12218. left:0px;
  12219. top:0px;
  12220. width:85px;
  12221. height:160px;
  12222. background:inherit;
  12223. background-color:rgba(255, 255, 255, 0);
  12224. border:none;
  12225. border-left:0px;
  12226. border-top:0px;
  12227. border-right:0px;
  12228. border-radius:0px;
  12229. border-bottom-right-radius:0px;
  12230. border-bottom-left-radius:0px;
  12231. -moz-box-shadow:none;
  12232. -webkit-box-shadow:none;
  12233. box-shadow:none;
  12234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12235. font-weight:400;
  12236. font-style:normal;
  12237. font-size:14px;
  12238. line-height:40px;
  12239. }
  12240. #u134683 {
  12241. border-width:0px;
  12242. position:absolute;
  12243. left:3307px;
  12244. top:495px;
  12245. width:85px;
  12246. height:160px;
  12247. display:flex;
  12248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12249. font-weight:400;
  12250. font-style:normal;
  12251. font-size:14px;
  12252. line-height:40px;
  12253. }
  12254. #u134683 .text {
  12255. position:absolute;
  12256. align-self:flex-start;
  12257. padding:0px 0px 0px 0px;
  12258. box-sizing:border-box;
  12259. width:100%;
  12260. }
  12261. #u134683_text {
  12262. border-width:0px;
  12263. white-space:nowrap;
  12264. text-transform:none;
  12265. }
  12266. #u134684_img {
  12267. border-width:0px;
  12268. position:absolute;
  12269. left:0px;
  12270. top:0px;
  12271. width:50px;
  12272. height:31px;
  12273. }
  12274. #u134684 {
  12275. border-width:0px;
  12276. position:absolute;
  12277. left:3305px;
  12278. top:622px;
  12279. width:50px;
  12280. height:31px;
  12281. display:flex;
  12282. }
  12283. #u134684 .text {
  12284. position:absolute;
  12285. align-self:center;
  12286. padding:2px 2px 2px 2px;
  12287. box-sizing:border-box;
  12288. width:100%;
  12289. }
  12290. #u134684_text {
  12291. border-width:0px;
  12292. word-wrap:break-word;
  12293. text-transform:none;
  12294. visibility:hidden;
  12295. }
  12296. #u134685 {
  12297. border-width:0px;
  12298. position:absolute;
  12299. left:0px;
  12300. top:0px;
  12301. width:0px;
  12302. height:0px;
  12303. }
  12304. #u134686_div {
  12305. border-width:0px;
  12306. position:absolute;
  12307. left:0px;
  12308. top:0px;
  12309. width:221px;
  12310. height:220px;
  12311. background:inherit;
  12312. background-color:rgba(255, 255, 255, 1);
  12313. box-sizing:border-box;
  12314. border-width:1px;
  12315. border-style:solid;
  12316. border-color:rgba(215, 215, 215, 1);
  12317. border-radius:0px;
  12318. -moz-box-shadow:none;
  12319. -webkit-box-shadow:none;
  12320. box-shadow:none;
  12321. font-size:14px;
  12322. }
  12323. #u134686 {
  12324. border-width:0px;
  12325. position:absolute;
  12326. left:3442px;
  12327. top:445px;
  12328. width:221px;
  12329. height:220px;
  12330. display:flex;
  12331. font-size:14px;
  12332. }
  12333. #u134686 .text {
  12334. position:absolute;
  12335. align-self:center;
  12336. padding:2px 2px 2px 2px;
  12337. box-sizing:border-box;
  12338. width:100%;
  12339. }
  12340. #u134686_text {
  12341. border-width:0px;
  12342. word-wrap:break-word;
  12343. text-transform:none;
  12344. visibility:hidden;
  12345. }
  12346. #u134687_div {
  12347. border-width:0px;
  12348. position:absolute;
  12349. left:0px;
  12350. top:0px;
  12351. width:221px;
  12352. height:40px;
  12353. background:inherit;
  12354. background-color:rgba(0, 137, 254, 1);
  12355. box-sizing:border-box;
  12356. border-width:1px;
  12357. border-style:solid;
  12358. border-color:rgba(215, 215, 215, 1);
  12359. border-radius:0px;
  12360. -moz-box-shadow:none;
  12361. -webkit-box-shadow:none;
  12362. box-shadow:none;
  12363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12364. font-weight:400;
  12365. font-style:normal;
  12366. font-size:18px;
  12367. color:#FFFFFF;
  12368. }
  12369. #u134687 {
  12370. border-width:0px;
  12371. position:absolute;
  12372. left:3442px;
  12373. top:445px;
  12374. width:221px;
  12375. height:40px;
  12376. display:flex;
  12377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12378. font-weight:400;
  12379. font-style:normal;
  12380. font-size:18px;
  12381. color:#FFFFFF;
  12382. }
  12383. #u134687 .text {
  12384. position:absolute;
  12385. align-self:center;
  12386. padding:2px 2px 2px 2px;
  12387. box-sizing:border-box;
  12388. width:100%;
  12389. }
  12390. #u134687_text {
  12391. border-width:0px;
  12392. word-wrap:break-word;
  12393. text-transform:none;
  12394. }
  12395. #u134688_div {
  12396. border-width:0px;
  12397. position:absolute;
  12398. left:0px;
  12399. top:0px;
  12400. width:71px;
  12401. height:160px;
  12402. background:inherit;
  12403. background-color:rgba(255, 255, 255, 0);
  12404. border:none;
  12405. border-left:0px;
  12406. border-top:0px;
  12407. border-right:0px;
  12408. border-radius:0px;
  12409. border-bottom-right-radius:0px;
  12410. border-bottom-left-radius:0px;
  12411. -moz-box-shadow:none;
  12412. -webkit-box-shadow:none;
  12413. box-shadow:none;
  12414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12415. font-weight:400;
  12416. font-style:normal;
  12417. font-size:14px;
  12418. line-height:40px;
  12419. }
  12420. #u134688 {
  12421. border-width:0px;
  12422. position:absolute;
  12423. left:3461px;
  12424. top:495px;
  12425. width:71px;
  12426. height:160px;
  12427. display:flex;
  12428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12429. font-weight:400;
  12430. font-style:normal;
  12431. font-size:14px;
  12432. line-height:40px;
  12433. }
  12434. #u134688 .text {
  12435. position:absolute;
  12436. align-self:flex-start;
  12437. padding:0px 0px 0px 0px;
  12438. box-sizing:border-box;
  12439. width:100%;
  12440. }
  12441. #u134688_text {
  12442. border-width:0px;
  12443. white-space:nowrap;
  12444. text-transform:none;
  12445. }
  12446. #u134689_div {
  12447. border-width:0px;
  12448. position:absolute;
  12449. left:0px;
  12450. top:0px;
  12451. width:85px;
  12452. height:160px;
  12453. background:inherit;
  12454. background-color:rgba(255, 255, 255, 0);
  12455. border:none;
  12456. border-left:0px;
  12457. border-top:0px;
  12458. border-right:0px;
  12459. border-radius:0px;
  12460. border-bottom-right-radius:0px;
  12461. border-bottom-left-radius:0px;
  12462. -moz-box-shadow:none;
  12463. -webkit-box-shadow:none;
  12464. box-shadow:none;
  12465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12466. font-weight:400;
  12467. font-style:normal;
  12468. font-size:14px;
  12469. line-height:40px;
  12470. }
  12471. #u134689 {
  12472. border-width:0px;
  12473. position:absolute;
  12474. left:3556px;
  12475. top:495px;
  12476. width:85px;
  12477. height:160px;
  12478. display:flex;
  12479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12480. font-weight:400;
  12481. font-style:normal;
  12482. font-size:14px;
  12483. line-height:40px;
  12484. }
  12485. #u134689 .text {
  12486. position:absolute;
  12487. align-self:flex-start;
  12488. padding:0px 0px 0px 0px;
  12489. box-sizing:border-box;
  12490. width:100%;
  12491. }
  12492. #u134689_text {
  12493. border-width:0px;
  12494. white-space:nowrap;
  12495. text-transform:none;
  12496. }
  12497. #u134690_img {
  12498. border-width:0px;
  12499. position:absolute;
  12500. left:0px;
  12501. top:0px;
  12502. width:50px;
  12503. height:31px;
  12504. }
  12505. #u134690 {
  12506. border-width:0px;
  12507. position:absolute;
  12508. left:3556px;
  12509. top:622px;
  12510. width:50px;
  12511. height:31px;
  12512. display:flex;
  12513. }
  12514. #u134690 .text {
  12515. position:absolute;
  12516. align-self:center;
  12517. padding:2px 2px 2px 2px;
  12518. box-sizing:border-box;
  12519. width:100%;
  12520. }
  12521. #u134690_text {
  12522. border-width:0px;
  12523. word-wrap:break-word;
  12524. text-transform:none;
  12525. visibility:hidden;
  12526. }
  12527. #u134691 {
  12528. border-width:0px;
  12529. position:absolute;
  12530. left:0px;
  12531. top:0px;
  12532. width:0px;
  12533. height:0px;
  12534. }
  12535. #u134692_div {
  12536. border-width:0px;
  12537. position:absolute;
  12538. left:0px;
  12539. top:0px;
  12540. width:221px;
  12541. height:220px;
  12542. background:inherit;
  12543. background-color:rgba(255, 255, 255, 1);
  12544. box-sizing:border-box;
  12545. border-width:1px;
  12546. border-style:solid;
  12547. border-color:rgba(215, 215, 215, 1);
  12548. border-radius:0px;
  12549. -moz-box-shadow:none;
  12550. -webkit-box-shadow:none;
  12551. box-shadow:none;
  12552. font-size:14px;
  12553. }
  12554. #u134692 {
  12555. border-width:0px;
  12556. position:absolute;
  12557. left:3690px;
  12558. top:445px;
  12559. width:221px;
  12560. height:220px;
  12561. display:flex;
  12562. font-size:14px;
  12563. }
  12564. #u134692 .text {
  12565. position:absolute;
  12566. align-self:center;
  12567. padding:2px 2px 2px 2px;
  12568. box-sizing:border-box;
  12569. width:100%;
  12570. }
  12571. #u134692_text {
  12572. border-width:0px;
  12573. word-wrap:break-word;
  12574. text-transform:none;
  12575. visibility:hidden;
  12576. }
  12577. #u134693_div {
  12578. border-width:0px;
  12579. position:absolute;
  12580. left:0px;
  12581. top:0px;
  12582. width:221px;
  12583. height:40px;
  12584. background:inherit;
  12585. background-color:rgba(0, 137, 254, 1);
  12586. box-sizing:border-box;
  12587. border-width:1px;
  12588. border-style:solid;
  12589. border-color:rgba(215, 215, 215, 1);
  12590. border-radius:0px;
  12591. -moz-box-shadow:none;
  12592. -webkit-box-shadow:none;
  12593. box-shadow:none;
  12594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12595. font-weight:400;
  12596. font-style:normal;
  12597. font-size:18px;
  12598. color:#FFFFFF;
  12599. }
  12600. #u134693 {
  12601. border-width:0px;
  12602. position:absolute;
  12603. left:3690px;
  12604. top:445px;
  12605. width:221px;
  12606. height:40px;
  12607. display:flex;
  12608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12609. font-weight:400;
  12610. font-style:normal;
  12611. font-size:18px;
  12612. color:#FFFFFF;
  12613. }
  12614. #u134693 .text {
  12615. position:absolute;
  12616. align-self:center;
  12617. padding:2px 2px 2px 2px;
  12618. box-sizing:border-box;
  12619. width:100%;
  12620. }
  12621. #u134693_text {
  12622. border-width:0px;
  12623. word-wrap:break-word;
  12624. text-transform:none;
  12625. }
  12626. #u134694_div {
  12627. border-width:0px;
  12628. position:absolute;
  12629. left:0px;
  12630. top:0px;
  12631. width:71px;
  12632. height:160px;
  12633. background:inherit;
  12634. background-color:rgba(255, 255, 255, 0);
  12635. border:none;
  12636. border-left:0px;
  12637. border-top:0px;
  12638. border-right:0px;
  12639. border-radius:0px;
  12640. border-bottom-right-radius:0px;
  12641. border-bottom-left-radius:0px;
  12642. -moz-box-shadow:none;
  12643. -webkit-box-shadow:none;
  12644. box-shadow:none;
  12645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12646. font-weight:400;
  12647. font-style:normal;
  12648. font-size:14px;
  12649. line-height:40px;
  12650. }
  12651. #u134694 {
  12652. border-width:0px;
  12653. position:absolute;
  12654. left:3709px;
  12655. top:495px;
  12656. width:71px;
  12657. height:160px;
  12658. display:flex;
  12659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12660. font-weight:400;
  12661. font-style:normal;
  12662. font-size:14px;
  12663. line-height:40px;
  12664. }
  12665. #u134694 .text {
  12666. position:absolute;
  12667. align-self:flex-start;
  12668. padding:0px 0px 0px 0px;
  12669. box-sizing:border-box;
  12670. width:100%;
  12671. }
  12672. #u134694_text {
  12673. border-width:0px;
  12674. white-space:nowrap;
  12675. text-transform:none;
  12676. }
  12677. #u134695_div {
  12678. border-width:0px;
  12679. position:absolute;
  12680. left:0px;
  12681. top:0px;
  12682. width:85px;
  12683. height:160px;
  12684. background:inherit;
  12685. background-color:rgba(255, 255, 255, 0);
  12686. border:none;
  12687. border-left:0px;
  12688. border-top:0px;
  12689. border-right:0px;
  12690. border-radius:0px;
  12691. border-bottom-right-radius:0px;
  12692. border-bottom-left-radius:0px;
  12693. -moz-box-shadow:none;
  12694. -webkit-box-shadow:none;
  12695. box-shadow:none;
  12696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12697. font-weight:400;
  12698. font-style:normal;
  12699. font-size:14px;
  12700. line-height:40px;
  12701. }
  12702. #u134695 {
  12703. border-width:0px;
  12704. position:absolute;
  12705. left:3804px;
  12706. top:495px;
  12707. width:85px;
  12708. height:160px;
  12709. display:flex;
  12710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12711. font-weight:400;
  12712. font-style:normal;
  12713. font-size:14px;
  12714. line-height:40px;
  12715. }
  12716. #u134695 .text {
  12717. position:absolute;
  12718. align-self:flex-start;
  12719. padding:0px 0px 0px 0px;
  12720. box-sizing:border-box;
  12721. width:100%;
  12722. }
  12723. #u134695_text {
  12724. border-width:0px;
  12725. white-space:nowrap;
  12726. text-transform:none;
  12727. }
  12728. #u134696_img {
  12729. border-width:0px;
  12730. position:absolute;
  12731. left:0px;
  12732. top:0px;
  12733. width:50px;
  12734. height:31px;
  12735. }
  12736. #u134696 {
  12737. border-width:0px;
  12738. position:absolute;
  12739. left:3802px;
  12740. top:622px;
  12741. width:50px;
  12742. height:31px;
  12743. display:flex;
  12744. }
  12745. #u134696 .text {
  12746. position:absolute;
  12747. align-self:center;
  12748. padding:2px 2px 2px 2px;
  12749. box-sizing:border-box;
  12750. width:100%;
  12751. }
  12752. #u134696_text {
  12753. border-width:0px;
  12754. word-wrap:break-word;
  12755. text-transform:none;
  12756. visibility:hidden;
  12757. }
  12758. #u134697 {
  12759. border-width:0px;
  12760. position:absolute;
  12761. left:0px;
  12762. top:0px;
  12763. width:0px;
  12764. height:0px;
  12765. }
  12766. #u134698_div {
  12767. border-width:0px;
  12768. position:absolute;
  12769. left:0px;
  12770. top:0px;
  12771. width:221px;
  12772. height:220px;
  12773. background:inherit;
  12774. background-color:rgba(255, 255, 255, 1);
  12775. box-sizing:border-box;
  12776. border-width:1px;
  12777. border-style:solid;
  12778. border-color:rgba(215, 215, 215, 1);
  12779. border-radius:0px;
  12780. -moz-box-shadow:none;
  12781. -webkit-box-shadow:none;
  12782. box-shadow:none;
  12783. font-size:14px;
  12784. }
  12785. #u134698 {
  12786. border-width:0px;
  12787. position:absolute;
  12788. left:3939px;
  12789. top:445px;
  12790. width:221px;
  12791. height:220px;
  12792. display:flex;
  12793. font-size:14px;
  12794. }
  12795. #u134698 .text {
  12796. position:absolute;
  12797. align-self:center;
  12798. padding:2px 2px 2px 2px;
  12799. box-sizing:border-box;
  12800. width:100%;
  12801. }
  12802. #u134698_text {
  12803. border-width:0px;
  12804. word-wrap:break-word;
  12805. text-transform:none;
  12806. visibility:hidden;
  12807. }
  12808. #u134699_div {
  12809. border-width:0px;
  12810. position:absolute;
  12811. left:0px;
  12812. top:0px;
  12813. width:221px;
  12814. height:40px;
  12815. background:inherit;
  12816. background-color:rgba(0, 137, 254, 1);
  12817. box-sizing:border-box;
  12818. border-width:1px;
  12819. border-style:solid;
  12820. border-color:rgba(215, 215, 215, 1);
  12821. border-radius:0px;
  12822. -moz-box-shadow:none;
  12823. -webkit-box-shadow:none;
  12824. box-shadow:none;
  12825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12826. font-weight:400;
  12827. font-style:normal;
  12828. font-size:18px;
  12829. color:#FFFFFF;
  12830. }
  12831. #u134699 {
  12832. border-width:0px;
  12833. position:absolute;
  12834. left:3939px;
  12835. top:445px;
  12836. width:221px;
  12837. height:40px;
  12838. display:flex;
  12839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12840. font-weight:400;
  12841. font-style:normal;
  12842. font-size:18px;
  12843. color:#FFFFFF;
  12844. }
  12845. #u134699 .text {
  12846. position:absolute;
  12847. align-self:center;
  12848. padding:2px 2px 2px 2px;
  12849. box-sizing:border-box;
  12850. width:100%;
  12851. }
  12852. #u134699_text {
  12853. border-width:0px;
  12854. word-wrap:break-word;
  12855. text-transform:none;
  12856. }
  12857. #u134700_div {
  12858. border-width:0px;
  12859. position:absolute;
  12860. left:0px;
  12861. top:0px;
  12862. width:71px;
  12863. height:160px;
  12864. background:inherit;
  12865. background-color:rgba(255, 255, 255, 0);
  12866. border:none;
  12867. border-left:0px;
  12868. border-top:0px;
  12869. border-right:0px;
  12870. border-radius:0px;
  12871. border-bottom-right-radius:0px;
  12872. border-bottom-left-radius:0px;
  12873. -moz-box-shadow:none;
  12874. -webkit-box-shadow:none;
  12875. box-shadow:none;
  12876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12877. font-weight:400;
  12878. font-style:normal;
  12879. font-size:14px;
  12880. line-height:40px;
  12881. }
  12882. #u134700 {
  12883. border-width:0px;
  12884. position:absolute;
  12885. left:3958px;
  12886. top:495px;
  12887. width:71px;
  12888. height:160px;
  12889. display:flex;
  12890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12891. font-weight:400;
  12892. font-style:normal;
  12893. font-size:14px;
  12894. line-height:40px;
  12895. }
  12896. #u134700 .text {
  12897. position:absolute;
  12898. align-self:flex-start;
  12899. padding:0px 0px 0px 0px;
  12900. box-sizing:border-box;
  12901. width:100%;
  12902. }
  12903. #u134700_text {
  12904. border-width:0px;
  12905. white-space:nowrap;
  12906. text-transform:none;
  12907. }
  12908. #u134701_div {
  12909. border-width:0px;
  12910. position:absolute;
  12911. left:0px;
  12912. top:0px;
  12913. width:85px;
  12914. height:160px;
  12915. background:inherit;
  12916. background-color:rgba(255, 255, 255, 0);
  12917. border:none;
  12918. border-left:0px;
  12919. border-top:0px;
  12920. border-right:0px;
  12921. border-radius:0px;
  12922. border-bottom-right-radius:0px;
  12923. border-bottom-left-radius:0px;
  12924. -moz-box-shadow:none;
  12925. -webkit-box-shadow:none;
  12926. box-shadow:none;
  12927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12928. font-weight:400;
  12929. font-style:normal;
  12930. font-size:14px;
  12931. line-height:40px;
  12932. }
  12933. #u134701 {
  12934. border-width:0px;
  12935. position:absolute;
  12936. left:4053px;
  12937. top:495px;
  12938. width:85px;
  12939. height:160px;
  12940. display:flex;
  12941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12942. font-weight:400;
  12943. font-style:normal;
  12944. font-size:14px;
  12945. line-height:40px;
  12946. }
  12947. #u134701 .text {
  12948. position:absolute;
  12949. align-self:flex-start;
  12950. padding:0px 0px 0px 0px;
  12951. box-sizing:border-box;
  12952. width:100%;
  12953. }
  12954. #u134701_text {
  12955. border-width:0px;
  12956. white-space:nowrap;
  12957. text-transform:none;
  12958. }
  12959. #u134702_img {
  12960. border-width:0px;
  12961. position:absolute;
  12962. left:0px;
  12963. top:0px;
  12964. width:50px;
  12965. height:31px;
  12966. }
  12967. #u134702 {
  12968. border-width:0px;
  12969. position:absolute;
  12970. left:4051px;
  12971. top:622px;
  12972. width:50px;
  12973. height:31px;
  12974. display:flex;
  12975. }
  12976. #u134702 .text {
  12977. position:absolute;
  12978. align-self:center;
  12979. padding:2px 2px 2px 2px;
  12980. box-sizing:border-box;
  12981. width:100%;
  12982. }
  12983. #u134702_text {
  12984. border-width:0px;
  12985. word-wrap:break-word;
  12986. text-transform:none;
  12987. visibility:hidden;
  12988. }
  12989. #u134703 {
  12990. border-width:0px;
  12991. position:absolute;
  12992. left:0px;
  12993. top:0px;
  12994. width:0px;
  12995. height:0px;
  12996. }
  12997. #u134704_div {
  12998. border-width:0px;
  12999. position:absolute;
  13000. left:0px;
  13001. top:0px;
  13002. width:200px;
  13003. height:1180px;
  13004. background:inherit;
  13005. background-color:rgba(255, 255, 255, 1);
  13006. border:none;
  13007. border-radius:0px;
  13008. -moz-box-shadow:none;
  13009. -webkit-box-shadow:none;
  13010. box-shadow:none;
  13011. }
  13012. #u134704 {
  13013. border-width:0px;
  13014. position:absolute;
  13015. left:120px;
  13016. top:50px;
  13017. width:200px;
  13018. height:1180px;
  13019. display:flex;
  13020. }
  13021. #u134704 .text {
  13022. position:absolute;
  13023. align-self:center;
  13024. padding:2px 2px 2px 2px;
  13025. box-sizing:border-box;
  13026. width:100%;
  13027. }
  13028. #u134704_text {
  13029. border-width:0px;
  13030. word-wrap:break-word;
  13031. text-transform:none;
  13032. visibility:hidden;
  13033. }
  13034. #u134705_div {
  13035. border-width:0px;
  13036. position:absolute;
  13037. left:0px;
  13038. top:0px;
  13039. width:200px;
  13040. height:60px;
  13041. background:inherit;
  13042. background-color:rgba(224, 231, 247, 1);
  13043. border:none;
  13044. border-radius:0px;
  13045. -moz-box-shadow:none;
  13046. -webkit-box-shadow:none;
  13047. box-shadow:none;
  13048. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  13049. font-weight:500;
  13050. font-style:normal;
  13051. font-size:18px;
  13052. }
  13053. #u134705 {
  13054. border-width:0px;
  13055. position:absolute;
  13056. left:120px;
  13057. top:50px;
  13058. width:200px;
  13059. height:60px;
  13060. display:flex;
  13061. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  13062. font-weight:500;
  13063. font-style:normal;
  13064. font-size:18px;
  13065. }
  13066. #u134705 .text {
  13067. position:absolute;
  13068. align-self:center;
  13069. padding:0px 0px 0px 20px;
  13070. box-sizing:border-box;
  13071. width:100%;
  13072. }
  13073. #u134705_text {
  13074. border-width:0px;
  13075. word-wrap:break-word;
  13076. text-transform:none;
  13077. }
  13078. #u134706_div {
  13079. border-width:0px;
  13080. position:absolute;
  13081. left:0px;
  13082. top:0px;
  13083. width:65px;
  13084. height:22px;
  13085. background:inherit;
  13086. background-color:rgba(255, 255, 255, 0);
  13087. border:none;
  13088. border-radius:0px;
  13089. -moz-box-shadow:none;
  13090. -webkit-box-shadow:none;
  13091. box-shadow:none;
  13092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13093. font-weight:400;
  13094. font-style:normal;
  13095. font-size:16px;
  13096. }
  13097. #u134706 {
  13098. border-width:0px;
  13099. position:absolute;
  13100. left:147px;
  13101. top:161px;
  13102. width:65px;
  13103. height:22px;
  13104. display:flex;
  13105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13106. font-weight:400;
  13107. font-style:normal;
  13108. font-size:16px;
  13109. }
  13110. #u134706 .text {
  13111. position:absolute;
  13112. align-self:flex-start;
  13113. padding:0px 0px 0px 0px;
  13114. box-sizing:border-box;
  13115. width:100%;
  13116. }
  13117. #u134706_text {
  13118. border-width:0px;
  13119. white-space:nowrap;
  13120. text-transform:none;
  13121. }
  13122. #u134707_div {
  13123. border-width:0px;
  13124. position:absolute;
  13125. left:0px;
  13126. top:0px;
  13127. width:49px;
  13128. height:17px;
  13129. background:inherit;
  13130. background-color:rgba(255, 255, 255, 0);
  13131. border:none;
  13132. border-radius:0px;
  13133. -moz-box-shadow:none;
  13134. -webkit-box-shadow:none;
  13135. box-shadow:none;
  13136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13137. font-weight:400;
  13138. font-style:normal;
  13139. font-size:12px;
  13140. color:#AAAAAA;
  13141. }
  13142. #u134707 {
  13143. border-width:0px;
  13144. position:absolute;
  13145. left:147px;
  13146. top:125px;
  13147. width:49px;
  13148. height:17px;
  13149. display:flex;
  13150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13151. font-weight:400;
  13152. font-style:normal;
  13153. font-size:12px;
  13154. color:#AAAAAA;
  13155. }
  13156. #u134707 .text {
  13157. position:absolute;
  13158. align-self:flex-start;
  13159. padding:0px 0px 0px 0px;
  13160. box-sizing:border-box;
  13161. width:100%;
  13162. }
  13163. #u134707_text {
  13164. border-width:0px;
  13165. white-space:nowrap;
  13166. text-transform:none;
  13167. }
  13168. #u134708_img {
  13169. border-width:0px;
  13170. position:absolute;
  13171. left:0px;
  13172. top:0px;
  13173. width:201px;
  13174. height:2px;
  13175. }
  13176. #u134708 {
  13177. border-width:0px;
  13178. position:absolute;
  13179. left:120px;
  13180. top:247px;
  13181. width:200px;
  13182. height:1px;
  13183. display:flex;
  13184. }
  13185. #u134708 .text {
  13186. position:absolute;
  13187. align-self:center;
  13188. padding:2px 2px 2px 2px;
  13189. box-sizing:border-box;
  13190. width:100%;
  13191. }
  13192. #u134708_text {
  13193. border-width:0px;
  13194. word-wrap:break-word;
  13195. text-transform:none;
  13196. visibility:hidden;
  13197. }
  13198. #u134709_div {
  13199. border-width:0px;
  13200. position:absolute;
  13201. left:0px;
  13202. top:0px;
  13203. width:65px;
  13204. height:22px;
  13205. background:inherit;
  13206. background-color:rgba(255, 255, 255, 0);
  13207. border:none;
  13208. border-radius:0px;
  13209. -moz-box-shadow:none;
  13210. -webkit-box-shadow:none;
  13211. box-shadow:none;
  13212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13213. font-weight:400;
  13214. font-style:normal;
  13215. font-size:16px;
  13216. }
  13217. #u134709 {
  13218. border-width:0px;
  13219. position:absolute;
  13220. left:147px;
  13221. top:304px;
  13222. width:65px;
  13223. height:22px;
  13224. display:flex;
  13225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13226. font-weight:400;
  13227. font-style:normal;
  13228. font-size:16px;
  13229. }
  13230. #u134709 .text {
  13231. position:absolute;
  13232. align-self:flex-start;
  13233. padding:0px 0px 0px 0px;
  13234. box-sizing:border-box;
  13235. width:100%;
  13236. }
  13237. #u134709_text {
  13238. border-width:0px;
  13239. white-space:nowrap;
  13240. text-transform:none;
  13241. }
  13242. #u134710_div {
  13243. border-width:0px;
  13244. position:absolute;
  13245. left:0px;
  13246. top:0px;
  13247. width:49px;
  13248. height:17px;
  13249. background:inherit;
  13250. background-color:rgba(255, 255, 255, 0);
  13251. border:none;
  13252. border-radius:0px;
  13253. -moz-box-shadow:none;
  13254. -webkit-box-shadow:none;
  13255. box-shadow:none;
  13256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13257. font-weight:400;
  13258. font-style:normal;
  13259. font-size:12px;
  13260. color:#AAAAAA;
  13261. }
  13262. #u134710 {
  13263. border-width:0px;
  13264. position:absolute;
  13265. left:147px;
  13266. top:268px;
  13267. width:49px;
  13268. height:17px;
  13269. display:flex;
  13270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13271. font-weight:400;
  13272. font-style:normal;
  13273. font-size:12px;
  13274. color:#AAAAAA;
  13275. }
  13276. #u134710 .text {
  13277. position:absolute;
  13278. align-self:flex-start;
  13279. padding:0px 0px 0px 0px;
  13280. box-sizing:border-box;
  13281. width:100%;
  13282. }
  13283. #u134710_text {
  13284. border-width:0px;
  13285. white-space:nowrap;
  13286. text-transform:none;
  13287. }
  13288. #u134711_div {
  13289. border-width:0px;
  13290. position:absolute;
  13291. left:0px;
  13292. top:0px;
  13293. width:65px;
  13294. height:22px;
  13295. background:inherit;
  13296. background-color:rgba(255, 255, 255, 0);
  13297. border:none;
  13298. border-radius:0px;
  13299. -moz-box-shadow:none;
  13300. -webkit-box-shadow:none;
  13301. box-shadow:none;
  13302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13303. font-weight:400;
  13304. font-style:normal;
  13305. font-size:16px;
  13306. }
  13307. #u134711 {
  13308. border-width:0px;
  13309. position:absolute;
  13310. left:147px;
  13311. top:203px;
  13312. width:65px;
  13313. height:22px;
  13314. display:flex;
  13315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13316. font-weight:400;
  13317. font-style:normal;
  13318. font-size:16px;
  13319. }
  13320. #u134711 .text {
  13321. position:absolute;
  13322. align-self:flex-start;
  13323. padding:0px 0px 0px 0px;
  13324. box-sizing:border-box;
  13325. width:100%;
  13326. }
  13327. #u134711_text {
  13328. border-width:0px;
  13329. white-space:nowrap;
  13330. text-transform:none;
  13331. }
  13332. #u134712_img {
  13333. border-width:0px;
  13334. position:absolute;
  13335. left:0px;
  13336. top:0px;
  13337. width:201px;
  13338. height:2px;
  13339. }
  13340. #u134712 {
  13341. border-width:0px;
  13342. position:absolute;
  13343. left:120px;
  13344. top:440px;
  13345. width:200px;
  13346. height:1px;
  13347. display:flex;
  13348. }
  13349. #u134712 .text {
  13350. position:absolute;
  13351. align-self:center;
  13352. padding:2px 2px 2px 2px;
  13353. box-sizing:border-box;
  13354. width:100%;
  13355. }
  13356. #u134712_text {
  13357. border-width:0px;
  13358. word-wrap:break-word;
  13359. text-transform:none;
  13360. visibility:hidden;
  13361. }
  13362. #u134713_div {
  13363. border-width:0px;
  13364. position:absolute;
  13365. left:0px;
  13366. top:0px;
  13367. width:65px;
  13368. height:22px;
  13369. background:inherit;
  13370. background-color:rgba(255, 255, 255, 0);
  13371. border:none;
  13372. border-radius:0px;
  13373. -moz-box-shadow:none;
  13374. -webkit-box-shadow:none;
  13375. box-shadow:none;
  13376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13377. font-weight:400;
  13378. font-style:normal;
  13379. font-size:16px;
  13380. }
  13381. #u134713 {
  13382. border-width:0px;
  13383. position:absolute;
  13384. left:147px;
  13385. top:497px;
  13386. width:65px;
  13387. height:22px;
  13388. display:flex;
  13389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13390. font-weight:400;
  13391. font-style:normal;
  13392. font-size:16px;
  13393. }
  13394. #u134713 .text {
  13395. position:absolute;
  13396. align-self:flex-start;
  13397. padding:0px 0px 0px 0px;
  13398. box-sizing:border-box;
  13399. width:100%;
  13400. }
  13401. #u134713_text {
  13402. border-width:0px;
  13403. white-space:nowrap;
  13404. text-transform:none;
  13405. }
  13406. #u134714_div {
  13407. border-width:0px;
  13408. position:absolute;
  13409. left:0px;
  13410. top:0px;
  13411. width:49px;
  13412. height:17px;
  13413. background:inherit;
  13414. background-color:rgba(255, 255, 255, 0);
  13415. border:none;
  13416. border-radius:0px;
  13417. -moz-box-shadow:none;
  13418. -webkit-box-shadow:none;
  13419. box-shadow:none;
  13420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13421. font-weight:400;
  13422. font-style:normal;
  13423. font-size:12px;
  13424. color:#AAAAAA;
  13425. }
  13426. #u134714 {
  13427. border-width:0px;
  13428. position:absolute;
  13429. left:147px;
  13430. top:461px;
  13431. width:49px;
  13432. height:17px;
  13433. display:flex;
  13434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13435. font-weight:400;
  13436. font-style:normal;
  13437. font-size:12px;
  13438. color:#AAAAAA;
  13439. }
  13440. #u134714 .text {
  13441. position:absolute;
  13442. align-self:flex-start;
  13443. padding:0px 0px 0px 0px;
  13444. box-sizing:border-box;
  13445. width:100%;
  13446. }
  13447. #u134714_text {
  13448. border-width:0px;
  13449. white-space:nowrap;
  13450. text-transform:none;
  13451. }
  13452. #u134715_div {
  13453. border-width:0px;
  13454. position:absolute;
  13455. left:0px;
  13456. top:0px;
  13457. width:65px;
  13458. height:22px;
  13459. background:inherit;
  13460. background-color:rgba(255, 255, 255, 0);
  13461. border:none;
  13462. border-radius:0px;
  13463. -moz-box-shadow:none;
  13464. -webkit-box-shadow:none;
  13465. box-shadow:none;
  13466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13467. font-weight:400;
  13468. font-style:normal;
  13469. font-size:16px;
  13470. }
  13471. #u134715 {
  13472. border-width:0px;
  13473. position:absolute;
  13474. left:147px;
  13475. top:539px;
  13476. width:65px;
  13477. height:22px;
  13478. display:flex;
  13479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13480. font-weight:400;
  13481. font-style:normal;
  13482. font-size:16px;
  13483. }
  13484. #u134715 .text {
  13485. position:absolute;
  13486. align-self:flex-start;
  13487. padding:0px 0px 0px 0px;
  13488. box-sizing:border-box;
  13489. width:100%;
  13490. }
  13491. #u134715_text {
  13492. border-width:0px;
  13493. white-space:nowrap;
  13494. text-transform:none;
  13495. }
  13496. #u134716_div {
  13497. border-width:0px;
  13498. position:absolute;
  13499. left:0px;
  13500. top:0px;
  13501. width:65px;
  13502. height:22px;
  13503. background:inherit;
  13504. background-color:rgba(255, 255, 255, 0);
  13505. border:none;
  13506. border-radius:0px;
  13507. -moz-box-shadow:none;
  13508. -webkit-box-shadow:none;
  13509. box-shadow:none;
  13510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13511. font-weight:400;
  13512. font-style:normal;
  13513. font-size:16px;
  13514. }
  13515. #u134716 {
  13516. border-width:0px;
  13517. position:absolute;
  13518. left:147px;
  13519. top:346px;
  13520. width:65px;
  13521. height:22px;
  13522. display:flex;
  13523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13524. font-weight:400;
  13525. font-style:normal;
  13526. font-size:16px;
  13527. }
  13528. #u134716 .text {
  13529. position:absolute;
  13530. align-self:flex-start;
  13531. padding:0px 0px 0px 0px;
  13532. box-sizing:border-box;
  13533. width:100%;
  13534. }
  13535. #u134716_text {
  13536. border-width:0px;
  13537. white-space:nowrap;
  13538. text-transform:none;
  13539. }
  13540. #u134717_div {
  13541. border-width:0px;
  13542. position:absolute;
  13543. left:0px;
  13544. top:0px;
  13545. width:65px;
  13546. height:22px;
  13547. background:inherit;
  13548. background-color:rgba(255, 255, 255, 0);
  13549. border:none;
  13550. border-radius:0px;
  13551. -moz-box-shadow:none;
  13552. -webkit-box-shadow:none;
  13553. box-shadow:none;
  13554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13555. font-weight:400;
  13556. font-style:normal;
  13557. font-size:16px;
  13558. }
  13559. #u134717 {
  13560. border-width:0px;
  13561. position:absolute;
  13562. left:147px;
  13563. top:388px;
  13564. width:65px;
  13565. height:22px;
  13566. display:flex;
  13567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13568. font-weight:400;
  13569. font-style:normal;
  13570. font-size:16px;
  13571. }
  13572. #u134717 .text {
  13573. position:absolute;
  13574. align-self:flex-start;
  13575. padding:0px 0px 0px 0px;
  13576. box-sizing:border-box;
  13577. width:100%;
  13578. }
  13579. #u134717_text {
  13580. border-width:0px;
  13581. white-space:nowrap;
  13582. text-transform:none;
  13583. }
  13584. #u134718_div {
  13585. border-width:0px;
  13586. position:absolute;
  13587. left:0px;
  13588. top:0px;
  13589. width:65px;
  13590. height:22px;
  13591. background:inherit;
  13592. background-color:rgba(255, 255, 255, 0);
  13593. border:none;
  13594. border-radius:0px;
  13595. -moz-box-shadow:none;
  13596. -webkit-box-shadow:none;
  13597. box-shadow:none;
  13598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13599. font-weight:400;
  13600. font-style:normal;
  13601. font-size:16px;
  13602. }
  13603. #u134718 {
  13604. border-width:0px;
  13605. position:absolute;
  13606. left:147px;
  13607. top:581px;
  13608. width:65px;
  13609. height:22px;
  13610. display:flex;
  13611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13612. font-weight:400;
  13613. font-style:normal;
  13614. font-size:16px;
  13615. }
  13616. #u134718 .text {
  13617. position:absolute;
  13618. align-self:flex-start;
  13619. padding:0px 0px 0px 0px;
  13620. box-sizing:border-box;
  13621. width:100%;
  13622. }
  13623. #u134718_text {
  13624. border-width:0px;
  13625. white-space:nowrap;
  13626. text-transform:none;
  13627. }