styles.css 142 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2191px;
  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. #u35671 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u35673 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:0px;
  33. height:0px;
  34. }
  35. #u35674_div {
  36. border-width:0px;
  37. position:absolute;
  38. left:0px;
  39. top:0px;
  40. width:129px;
  41. height:22px;
  42. background:inherit;
  43. background-color:rgba(255, 255, 255, 0);
  44. border:none;
  45. border-radius:0px;
  46. -moz-box-shadow:none;
  47. -webkit-box-shadow:none;
  48. box-shadow:none;
  49. font-size:16px;
  50. color:#FFFFFF;
  51. }
  52. #u35674 {
  53. border-width:0px;
  54. position:absolute;
  55. left:49px;
  56. top:14px;
  57. width:129px;
  58. height:22px;
  59. display:flex;
  60. font-size:16px;
  61. color:#FFFFFF;
  62. }
  63. #u35674 .text {
  64. position:absolute;
  65. align-self:flex-start;
  66. padding:0px 0px 0px 0px;
  67. box-sizing:border-box;
  68. width:100%;
  69. }
  70. #u35674_text {
  71. border-width:0px;
  72. white-space:nowrap;
  73. text-transform:none;
  74. }
  75. #u35675_div {
  76. border-width:0px;
  77. position:absolute;
  78. left:0px;
  79. top:0px;
  80. width:1600px;
  81. height:50px;
  82. background:inherit;
  83. background-color:rgba(30, 42, 68, 1);
  84. border:none;
  85. border-radius:0px;
  86. -moz-box-shadow:none;
  87. -webkit-box-shadow:none;
  88. box-shadow:none;
  89. color:#AFB3B6;
  90. }
  91. #u35675 {
  92. border-width:0px;
  93. position:absolute;
  94. left:0px;
  95. top:0px;
  96. width:1600px;
  97. height:50px;
  98. display:flex;
  99. color:#AFB3B6;
  100. }
  101. #u35675 .text {
  102. position:absolute;
  103. align-self:center;
  104. padding:2px 2px 2px 2px;
  105. box-sizing:border-box;
  106. width:100%;
  107. }
  108. #u35675_text {
  109. border-width:0px;
  110. word-wrap:break-word;
  111. text-transform:none;
  112. visibility:hidden;
  113. }
  114. #u35676 {
  115. border-width:0px;
  116. position:absolute;
  117. left:0px;
  118. top:0px;
  119. width:0px;
  120. height:0px;
  121. }
  122. #u35677_img {
  123. border-width:0px;
  124. position:absolute;
  125. left:0px;
  126. top:0px;
  127. width:31px;
  128. height:31px;
  129. }
  130. #u35677 {
  131. border-width:0px;
  132. position:absolute;
  133. left:19px;
  134. top:10px;
  135. width:31px;
  136. height:31px;
  137. display:flex;
  138. }
  139. #u35677 .text {
  140. position:absolute;
  141. align-self:center;
  142. padding:2px 2px 2px 2px;
  143. box-sizing:border-box;
  144. width:100%;
  145. }
  146. #u35677_text {
  147. border-width:0px;
  148. word-wrap:break-word;
  149. text-transform:none;
  150. }
  151. #u35678_div {
  152. border-width:0px;
  153. position:absolute;
  154. left:0px;
  155. top:0px;
  156. width:129px;
  157. height:22px;
  158. background:inherit;
  159. background-color:rgba(255, 255, 255, 0);
  160. border:none;
  161. border-radius:0px;
  162. -moz-box-shadow:none;
  163. -webkit-box-shadow:none;
  164. box-shadow:none;
  165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  166. font-weight:400;
  167. font-style:normal;
  168. font-size:16px;
  169. color:#FFFFFF;
  170. }
  171. #u35678 {
  172. border-width:0px;
  173. position:absolute;
  174. left:62px;
  175. top:14px;
  176. width:129px;
  177. height:22px;
  178. display:flex;
  179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  180. font-weight:400;
  181. font-style:normal;
  182. font-size:16px;
  183. color:#FFFFFF;
  184. }
  185. #u35678 .text {
  186. position:absolute;
  187. align-self:flex-start;
  188. padding:0px 0px 0px 0px;
  189. box-sizing:border-box;
  190. width:100%;
  191. }
  192. #u35678_text {
  193. border-width:0px;
  194. white-space:nowrap;
  195. text-transform:none;
  196. }
  197. #u35679_div {
  198. border-width:0px;
  199. position:absolute;
  200. left:0px;
  201. top:0px;
  202. width:200px;
  203. height:1200px;
  204. background:inherit;
  205. background-color:rgba(30, 42, 68, 1);
  206. border:none;
  207. border-radius:0px;
  208. -moz-box-shadow:none;
  209. -webkit-box-shadow:none;
  210. box-shadow:none;
  211. color:#AFB3B6;
  212. }
  213. #u35679 {
  214. border-width:0px;
  215. position:absolute;
  216. left:0px;
  217. top:47px;
  218. width:200px;
  219. height:1200px;
  220. display:flex;
  221. color:#AFB3B6;
  222. }
  223. #u35679 .text {
  224. position:absolute;
  225. align-self:center;
  226. padding:2px 2px 2px 2px;
  227. box-sizing:border-box;
  228. width:100%;
  229. }
  230. #u35679_text {
  231. border-width:0px;
  232. word-wrap:break-word;
  233. text-transform:none;
  234. visibility:hidden;
  235. }
  236. #u35680_img {
  237. border-width:0px;
  238. position:absolute;
  239. left:0px;
  240. top:0px;
  241. width:15px;
  242. height:15px;
  243. }
  244. #u35680 {
  245. border-width:0px;
  246. position:absolute;
  247. left:1523px;
  248. top:18px;
  249. width:15px;
  250. height:15px;
  251. display:flex;
  252. }
  253. #u35680 .text {
  254. position:absolute;
  255. align-self:center;
  256. padding:2px 2px 2px 2px;
  257. box-sizing:border-box;
  258. width:100%;
  259. }
  260. #u35680_text {
  261. border-width:0px;
  262. word-wrap:break-word;
  263. text-transform:none;
  264. visibility:hidden;
  265. }
  266. #u35681_img {
  267. border-width:0px;
  268. position:absolute;
  269. left:0px;
  270. top:0px;
  271. width:15px;
  272. height:15px;
  273. }
  274. #u35681 {
  275. border-width:0px;
  276. position:absolute;
  277. left:1493px;
  278. top:18px;
  279. width:15px;
  280. height:15px;
  281. display:flex;
  282. }
  283. #u35681 .text {
  284. position:absolute;
  285. align-self:center;
  286. padding:2px 2px 2px 2px;
  287. box-sizing:border-box;
  288. width:100%;
  289. }
  290. #u35681_text {
  291. border-width:0px;
  292. word-wrap:break-word;
  293. text-transform:none;
  294. visibility:hidden;
  295. }
  296. #u35682 {
  297. border-width:0px;
  298. position:absolute;
  299. left:0px;
  300. top:0px;
  301. width:0px;
  302. height:0px;
  303. }
  304. #u35683_img {
  305. border-width:0px;
  306. position:absolute;
  307. left:0px;
  308. top:0px;
  309. width:14px;
  310. height:14px;
  311. }
  312. #u35683 {
  313. border-width:0px;
  314. position:absolute;
  315. left:1553px;
  316. top:18px;
  317. width:14px;
  318. height:14px;
  319. display:flex;
  320. }
  321. #u35683 .text {
  322. position:absolute;
  323. align-self:center;
  324. padding:2px 2px 2px 2px;
  325. box-sizing:border-box;
  326. width:100%;
  327. }
  328. #u35683_text {
  329. border-width:0px;
  330. word-wrap:break-word;
  331. text-transform:none;
  332. visibility:hidden;
  333. }
  334. #u35684_img {
  335. border-width:0px;
  336. position:absolute;
  337. left:0px;
  338. top:0px;
  339. width:8px;
  340. height:5px;
  341. }
  342. #u35684 {
  343. border-width:0px;
  344. position:absolute;
  345. left:1572px;
  346. top:23px;
  347. width:8px;
  348. height:5px;
  349. display:flex;
  350. }
  351. #u35684 .text {
  352. position:absolute;
  353. align-self:center;
  354. padding:2px 2px 2px 2px;
  355. box-sizing:border-box;
  356. width:100%;
  357. }
  358. #u35684_text {
  359. border-width:0px;
  360. word-wrap:break-word;
  361. text-transform:none;
  362. visibility:hidden;
  363. }
  364. #u35685_div {
  365. border-width:0px;
  366. position:absolute;
  367. left:0px;
  368. top:0px;
  369. width:1402px;
  370. height:1200px;
  371. background:inherit;
  372. background-color:rgba(242, 242, 242, 1);
  373. border:none;
  374. border-radius:0px;
  375. -moz-box-shadow:none;
  376. -webkit-box-shadow:none;
  377. box-shadow:none;
  378. }
  379. #u35685 {
  380. border-width:0px;
  381. position:absolute;
  382. left:198px;
  383. top:47px;
  384. width:1402px;
  385. height:1200px;
  386. display:flex;
  387. }
  388. #u35685 .text {
  389. position:absolute;
  390. align-self:center;
  391. padding:2px 2px 2px 2px;
  392. box-sizing:border-box;
  393. width:100%;
  394. }
  395. #u35685_text {
  396. border-width:0px;
  397. word-wrap:break-word;
  398. text-transform:none;
  399. visibility:hidden;
  400. }
  401. #u35686 {
  402. border-width:0px;
  403. position:absolute;
  404. left:35px;
  405. top:81px;
  406. width:118px;
  407. height:220px;
  408. }
  409. #u35686_children {
  410. border-width:0px;
  411. position:absolute;
  412. left:0px;
  413. top:0px;
  414. width:0px;
  415. height:0px;
  416. }
  417. #u35687 {
  418. border-width:0px;
  419. position:absolute;
  420. left:0px;
  421. top:0px;
  422. width:98px;
  423. height:20px;
  424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  425. font-weight:400;
  426. font-style:normal;
  427. font-size:14px;
  428. color:#FFFFFF;
  429. }
  430. #u35688_div {
  431. border-width:0px;
  432. position:absolute;
  433. left:0px;
  434. top:0px;
  435. width:76px;
  436. height:20px;
  437. background:inherit;
  438. background-color:rgba(255, 255, 255, 0);
  439. border:none;
  440. border-radius:0px;
  441. -moz-box-shadow:none;
  442. -webkit-box-shadow:none;
  443. box-shadow:none;
  444. }
  445. #u35688 {
  446. border-width:0px;
  447. position:absolute;
  448. left:22px;
  449. top:0px;
  450. width:76px;
  451. height:20px;
  452. display:flex;
  453. }
  454. #u35688 .text {
  455. position:absolute;
  456. align-self:center;
  457. padding:2px 2px 2px 3px;
  458. box-sizing:border-box;
  459. width:100%;
  460. }
  461. #u35688_text {
  462. border-width:0px;
  463. white-space:nowrap;
  464. text-transform:none;
  465. }
  466. #u35689 {
  467. border-width:0px;
  468. position:absolute;
  469. left:0px;
  470. top:20px;
  471. width:84px;
  472. height:20px;
  473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  474. font-weight:400;
  475. font-style:normal;
  476. font-size:14px;
  477. color:#FFFFFF;
  478. }
  479. #u35690_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:9px;
  485. height:9px;
  486. }
  487. #u35690 {
  488. border-width:0px;
  489. position:absolute;
  490. left:6px;
  491. top:6px;
  492. width:9px;
  493. height:9px;
  494. display:flex;
  495. }
  496. #u35690 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u35690_img.selected {
  504. }
  505. #u35690.selected {
  506. }
  507. #u35690_text {
  508. border-width:0px;
  509. word-wrap:break-word;
  510. text-transform:none;
  511. visibility:hidden;
  512. }
  513. #u35691_div {
  514. border-width:0px;
  515. position:absolute;
  516. left:0px;
  517. top:0px;
  518. width:62px;
  519. height:20px;
  520. background:inherit;
  521. background-color:rgba(255, 255, 255, 0);
  522. border:none;
  523. border-radius:0px;
  524. -moz-box-shadow:none;
  525. -webkit-box-shadow:none;
  526. box-shadow:none;
  527. }
  528. #u35691 {
  529. border-width:0px;
  530. position:absolute;
  531. left:22px;
  532. top:0px;
  533. width:62px;
  534. height:20px;
  535. display:flex;
  536. }
  537. #u35691 .text {
  538. position:absolute;
  539. align-self:center;
  540. padding:2px 2px 2px 3px;
  541. box-sizing:border-box;
  542. width:100%;
  543. }
  544. #u35691_text {
  545. border-width:0px;
  546. white-space:nowrap;
  547. text-transform:none;
  548. }
  549. #u35689_children {
  550. border-width:0px;
  551. position:absolute;
  552. left:0px;
  553. top:0px;
  554. width:0px;
  555. height:0px;
  556. }
  557. #u35692 {
  558. border-width:0px;
  559. position:absolute;
  560. left:20px;
  561. top:20px;
  562. width:98px;
  563. height:20px;
  564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  565. font-weight:400;
  566. font-style:normal;
  567. font-size:14px;
  568. color:#FFFFFF;
  569. }
  570. #u35693_div {
  571. border-width:0px;
  572. position:absolute;
  573. left:0px;
  574. top:0px;
  575. width:76px;
  576. height:20px;
  577. background:inherit;
  578. background-color:rgba(255, 255, 255, 0);
  579. border:none;
  580. border-radius:0px;
  581. -moz-box-shadow:none;
  582. -webkit-box-shadow:none;
  583. box-shadow:none;
  584. }
  585. #u35693 {
  586. border-width:0px;
  587. position:absolute;
  588. left:22px;
  589. top:0px;
  590. width:76px;
  591. height:20px;
  592. display:flex;
  593. }
  594. #u35693 .text {
  595. position:absolute;
  596. align-self:center;
  597. padding:2px 2px 2px 3px;
  598. box-sizing:border-box;
  599. width:100%;
  600. }
  601. #u35693_text {
  602. border-width:0px;
  603. white-space:nowrap;
  604. text-transform:none;
  605. }
  606. #u35694 {
  607. border-width:0px;
  608. position:absolute;
  609. left:20px;
  610. top:40px;
  611. width:98px;
  612. height:20px;
  613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  614. font-weight:400;
  615. font-style:normal;
  616. font-size:14px;
  617. color:#FFFFFF;
  618. }
  619. #u35695_div {
  620. border-width:0px;
  621. position:absolute;
  622. left:0px;
  623. top:0px;
  624. width:76px;
  625. height:20px;
  626. background:inherit;
  627. background-color:rgba(255, 255, 255, 0);
  628. border:none;
  629. border-radius:0px;
  630. -moz-box-shadow:none;
  631. -webkit-box-shadow:none;
  632. box-shadow:none;
  633. }
  634. #u35695 {
  635. border-width:0px;
  636. position:absolute;
  637. left:22px;
  638. top:0px;
  639. width:76px;
  640. height:20px;
  641. display:flex;
  642. }
  643. #u35695 .text {
  644. position:absolute;
  645. align-self:center;
  646. padding:2px 2px 2px 3px;
  647. box-sizing:border-box;
  648. width:100%;
  649. }
  650. #u35695_text {
  651. border-width:0px;
  652. white-space:nowrap;
  653. text-transform:none;
  654. }
  655. #u35696 {
  656. border-width:0px;
  657. position:absolute;
  658. left:0px;
  659. top:80px;
  660. width:84px;
  661. height:20px;
  662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  663. font-weight:400;
  664. font-style:normal;
  665. font-size:14px;
  666. color:#FFFFFF;
  667. }
  668. #u35697_img {
  669. border-width:0px;
  670. position:absolute;
  671. left:0px;
  672. top:0px;
  673. width:9px;
  674. height:9px;
  675. }
  676. #u35697 {
  677. border-width:0px;
  678. position:absolute;
  679. left:6px;
  680. top:6px;
  681. width:9px;
  682. height:9px;
  683. display:flex;
  684. }
  685. #u35697 .text {
  686. position:absolute;
  687. align-self:center;
  688. padding:2px 2px 2px 2px;
  689. box-sizing:border-box;
  690. width:100%;
  691. }
  692. #u35697_img.selected {
  693. }
  694. #u35697.selected {
  695. }
  696. #u35697_text {
  697. border-width:0px;
  698. word-wrap:break-word;
  699. text-transform:none;
  700. visibility:hidden;
  701. }
  702. #u35698_div {
  703. border-width:0px;
  704. position:absolute;
  705. left:0px;
  706. top:0px;
  707. width:62px;
  708. height:20px;
  709. background:inherit;
  710. background-color:rgba(255, 255, 255, 0);
  711. border:none;
  712. border-radius:0px;
  713. -moz-box-shadow:none;
  714. -webkit-box-shadow:none;
  715. box-shadow:none;
  716. }
  717. #u35698 {
  718. border-width:0px;
  719. position:absolute;
  720. left:22px;
  721. top:0px;
  722. width:62px;
  723. height:20px;
  724. display:flex;
  725. }
  726. #u35698 .text {
  727. position:absolute;
  728. align-self:center;
  729. padding:2px 2px 2px 3px;
  730. box-sizing:border-box;
  731. width:100%;
  732. }
  733. #u35698_text {
  734. border-width:0px;
  735. white-space:nowrap;
  736. text-transform:none;
  737. }
  738. #u35696_children {
  739. border-width:0px;
  740. position:absolute;
  741. left:0px;
  742. top:0px;
  743. width:0px;
  744. height:0px;
  745. }
  746. #u35699 {
  747. border-width:0px;
  748. position:absolute;
  749. left:20px;
  750. top:20px;
  751. width:98px;
  752. height:20px;
  753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  754. font-weight:400;
  755. font-style:normal;
  756. font-size:14px;
  757. color:#FFFFFF;
  758. }
  759. #u35700_div {
  760. border-width:0px;
  761. position:absolute;
  762. left:0px;
  763. top:0px;
  764. width:76px;
  765. height:20px;
  766. background:inherit;
  767. background-color:rgba(255, 255, 255, 0);
  768. border:none;
  769. border-radius:0px;
  770. -moz-box-shadow:none;
  771. -webkit-box-shadow:none;
  772. box-shadow:none;
  773. }
  774. #u35700 {
  775. border-width:0px;
  776. position:absolute;
  777. left:22px;
  778. top:0px;
  779. width:76px;
  780. height:20px;
  781. display:flex;
  782. }
  783. #u35700 .text {
  784. position:absolute;
  785. align-self:center;
  786. padding:2px 2px 2px 3px;
  787. box-sizing:border-box;
  788. width:100%;
  789. }
  790. #u35700_text {
  791. border-width:0px;
  792. white-space:nowrap;
  793. text-transform:none;
  794. }
  795. #u35701 {
  796. border-width:0px;
  797. position:absolute;
  798. left:20px;
  799. top:40px;
  800. width:98px;
  801. height:20px;
  802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  803. font-weight:400;
  804. font-style:normal;
  805. font-size:14px;
  806. color:#FFFFFF;
  807. }
  808. #u35702_div {
  809. border-width:0px;
  810. position:absolute;
  811. left:0px;
  812. top:0px;
  813. width:76px;
  814. height:20px;
  815. background:inherit;
  816. background-color:rgba(255, 255, 255, 0);
  817. border:none;
  818. border-radius:0px;
  819. -moz-box-shadow:none;
  820. -webkit-box-shadow:none;
  821. box-shadow:none;
  822. }
  823. #u35702 {
  824. border-width:0px;
  825. position:absolute;
  826. left:22px;
  827. top:0px;
  828. width:76px;
  829. height:20px;
  830. display:flex;
  831. }
  832. #u35702 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 3px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u35702_text {
  840. border-width:0px;
  841. white-space:nowrap;
  842. text-transform:none;
  843. }
  844. #u35703 {
  845. border-width:0px;
  846. position:absolute;
  847. left:0px;
  848. top:140px;
  849. width:84px;
  850. height:20px;
  851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  852. font-weight:400;
  853. font-style:normal;
  854. font-size:14px;
  855. color:#FFFFFF;
  856. }
  857. #u35704_img {
  858. border-width:0px;
  859. position:absolute;
  860. left:0px;
  861. top:0px;
  862. width:9px;
  863. height:9px;
  864. }
  865. #u35704 {
  866. border-width:0px;
  867. position:absolute;
  868. left:6px;
  869. top:6px;
  870. width:9px;
  871. height:9px;
  872. display:flex;
  873. }
  874. #u35704 .text {
  875. position:absolute;
  876. align-self:center;
  877. padding:2px 2px 2px 2px;
  878. box-sizing:border-box;
  879. width:100%;
  880. }
  881. #u35704_img.selected {
  882. }
  883. #u35704.selected {
  884. }
  885. #u35704_text {
  886. border-width:0px;
  887. word-wrap:break-word;
  888. text-transform:none;
  889. visibility:hidden;
  890. }
  891. #u35705_div {
  892. border-width:0px;
  893. position:absolute;
  894. left:0px;
  895. top:0px;
  896. width:62px;
  897. height:20px;
  898. background:inherit;
  899. background-color:rgba(255, 255, 255, 0);
  900. border:none;
  901. border-radius:0px;
  902. -moz-box-shadow:none;
  903. -webkit-box-shadow:none;
  904. box-shadow:none;
  905. }
  906. #u35705 {
  907. border-width:0px;
  908. position:absolute;
  909. left:22px;
  910. top:0px;
  911. width:62px;
  912. height:20px;
  913. display:flex;
  914. }
  915. #u35705 .text {
  916. position:absolute;
  917. align-self:center;
  918. padding:2px 2px 2px 3px;
  919. box-sizing:border-box;
  920. width:100%;
  921. }
  922. #u35705_text {
  923. border-width:0px;
  924. white-space:nowrap;
  925. text-transform:none;
  926. }
  927. #u35703_children {
  928. border-width:0px;
  929. position:absolute;
  930. left:0px;
  931. top:0px;
  932. width:0px;
  933. height:0px;
  934. visibility:hidden;
  935. }
  936. #u35706 {
  937. border-width:0px;
  938. position:absolute;
  939. left:20px;
  940. top:20px;
  941. width:84px;
  942. height:20px;
  943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  944. font-weight:400;
  945. font-style:normal;
  946. font-size:14px;
  947. color:#FFFFFF;
  948. }
  949. #u35707_div {
  950. border-width:0px;
  951. position:absolute;
  952. left:0px;
  953. top:0px;
  954. width:62px;
  955. height:20px;
  956. background:inherit;
  957. background-color:rgba(255, 255, 255, 0);
  958. border:none;
  959. border-radius:0px;
  960. -moz-box-shadow:none;
  961. -webkit-box-shadow:none;
  962. box-shadow:none;
  963. }
  964. #u35707 {
  965. border-width:0px;
  966. position:absolute;
  967. left:22px;
  968. top:0px;
  969. width:62px;
  970. height:20px;
  971. display:flex;
  972. }
  973. #u35707 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 3px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u35707_text {
  981. border-width:0px;
  982. white-space:nowrap;
  983. text-transform:none;
  984. }
  985. #u35708 {
  986. border-width:0px;
  987. position:absolute;
  988. left:20px;
  989. top:40px;
  990. width:84px;
  991. height:20px;
  992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  993. font-weight:400;
  994. font-style:normal;
  995. font-size:14px;
  996. color:#FFFFFF;
  997. }
  998. #u35709_div {
  999. border-width:0px;
  1000. position:absolute;
  1001. left:0px;
  1002. top:0px;
  1003. width:62px;
  1004. height:20px;
  1005. background:inherit;
  1006. background-color:rgba(255, 255, 255, 0);
  1007. border:none;
  1008. border-radius:0px;
  1009. -moz-box-shadow:none;
  1010. -webkit-box-shadow:none;
  1011. box-shadow:none;
  1012. }
  1013. #u35709 {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:22px;
  1017. top:0px;
  1018. width:62px;
  1019. height:20px;
  1020. display:flex;
  1021. }
  1022. #u35709 .text {
  1023. position:absolute;
  1024. align-self:center;
  1025. padding:2px 2px 2px 3px;
  1026. box-sizing:border-box;
  1027. width:100%;
  1028. }
  1029. #u35709_text {
  1030. border-width:0px;
  1031. white-space:nowrap;
  1032. text-transform:none;
  1033. }
  1034. #u35710 {
  1035. border-width:0px;
  1036. position:absolute;
  1037. left:20px;
  1038. top:60px;
  1039. width:84px;
  1040. height:20px;
  1041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1042. font-weight:400;
  1043. font-style:normal;
  1044. font-size:14px;
  1045. color:#FFFFFF;
  1046. }
  1047. #u35711_div {
  1048. border-width:0px;
  1049. position:absolute;
  1050. left:0px;
  1051. top:0px;
  1052. width:62px;
  1053. height:20px;
  1054. background:inherit;
  1055. background-color:rgba(255, 255, 255, 0);
  1056. border:none;
  1057. border-radius:0px;
  1058. -moz-box-shadow:none;
  1059. -webkit-box-shadow:none;
  1060. box-shadow:none;
  1061. }
  1062. #u35711 {
  1063. border-width:0px;
  1064. position:absolute;
  1065. left:22px;
  1066. top:0px;
  1067. width:62px;
  1068. height:20px;
  1069. display:flex;
  1070. }
  1071. #u35711 .text {
  1072. position:absolute;
  1073. align-self:center;
  1074. padding:2px 2px 2px 3px;
  1075. box-sizing:border-box;
  1076. width:100%;
  1077. }
  1078. #u35711_text {
  1079. border-width:0px;
  1080. white-space:nowrap;
  1081. text-transform:none;
  1082. }
  1083. #u35712 {
  1084. border-width:0px;
  1085. position:absolute;
  1086. left:20px;
  1087. top:80px;
  1088. width:84px;
  1089. height:20px;
  1090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1091. font-weight:400;
  1092. font-style:normal;
  1093. font-size:14px;
  1094. color:#FFFFFF;
  1095. }
  1096. #u35713_div {
  1097. border-width:0px;
  1098. position:absolute;
  1099. left:0px;
  1100. top:0px;
  1101. width:62px;
  1102. height:20px;
  1103. background:inherit;
  1104. background-color:rgba(255, 255, 255, 0);
  1105. border:none;
  1106. border-radius:0px;
  1107. -moz-box-shadow:none;
  1108. -webkit-box-shadow:none;
  1109. box-shadow:none;
  1110. }
  1111. #u35713 {
  1112. border-width:0px;
  1113. position:absolute;
  1114. left:22px;
  1115. top:0px;
  1116. width:62px;
  1117. height:20px;
  1118. display:flex;
  1119. }
  1120. #u35713 .text {
  1121. position:absolute;
  1122. align-self:center;
  1123. padding:2px 2px 2px 3px;
  1124. box-sizing:border-box;
  1125. width:100%;
  1126. }
  1127. #u35713_text {
  1128. border-width:0px;
  1129. white-space:nowrap;
  1130. text-transform:none;
  1131. }
  1132. #u35714 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:0px;
  1136. top:160px;
  1137. width:98px;
  1138. height:20px;
  1139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1140. font-weight:400;
  1141. font-style:normal;
  1142. font-size:14px;
  1143. color:#FFFFFF;
  1144. }
  1145. #u35715_img {
  1146. border-width:0px;
  1147. position:absolute;
  1148. left:0px;
  1149. top:0px;
  1150. width:9px;
  1151. height:9px;
  1152. }
  1153. #u35715 {
  1154. border-width:0px;
  1155. position:absolute;
  1156. left:6px;
  1157. top:6px;
  1158. width:9px;
  1159. height:9px;
  1160. display:flex;
  1161. }
  1162. #u35715 .text {
  1163. position:absolute;
  1164. align-self:center;
  1165. padding:2px 2px 2px 2px;
  1166. box-sizing:border-box;
  1167. width:100%;
  1168. }
  1169. #u35715_img.selected {
  1170. }
  1171. #u35715.selected {
  1172. }
  1173. #u35715_text {
  1174. border-width:0px;
  1175. word-wrap:break-word;
  1176. text-transform:none;
  1177. visibility:hidden;
  1178. }
  1179. #u35716_div {
  1180. border-width:0px;
  1181. position:absolute;
  1182. left:0px;
  1183. top:0px;
  1184. width:76px;
  1185. height:20px;
  1186. background:inherit;
  1187. background-color:rgba(255, 255, 255, 0);
  1188. border:none;
  1189. border-radius:0px;
  1190. -moz-box-shadow:none;
  1191. -webkit-box-shadow:none;
  1192. box-shadow:none;
  1193. }
  1194. #u35716 {
  1195. border-width:0px;
  1196. position:absolute;
  1197. left:22px;
  1198. top:0px;
  1199. width:76px;
  1200. height:20px;
  1201. display:flex;
  1202. }
  1203. #u35716 .text {
  1204. position:absolute;
  1205. align-self:center;
  1206. padding:2px 2px 2px 3px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u35716_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u35714_children {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:0px;
  1221. height:0px;
  1222. visibility:hidden;
  1223. }
  1224. #u35717 {
  1225. border-width:0px;
  1226. position:absolute;
  1227. left:20px;
  1228. top:20px;
  1229. width:98px;
  1230. height:20px;
  1231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1232. font-weight:400;
  1233. font-style:normal;
  1234. font-size:14px;
  1235. color:#FFFFFF;
  1236. }
  1237. #u35718_div {
  1238. border-width:0px;
  1239. position:absolute;
  1240. left:0px;
  1241. top:0px;
  1242. width:76px;
  1243. height:20px;
  1244. background:inherit;
  1245. background-color:rgba(255, 255, 255, 0);
  1246. border:none;
  1247. border-radius:0px;
  1248. -moz-box-shadow:none;
  1249. -webkit-box-shadow:none;
  1250. box-shadow:none;
  1251. }
  1252. #u35718 {
  1253. border-width:0px;
  1254. position:absolute;
  1255. left:22px;
  1256. top:0px;
  1257. width:76px;
  1258. height:20px;
  1259. display:flex;
  1260. }
  1261. #u35718 .text {
  1262. position:absolute;
  1263. align-self:center;
  1264. padding:2px 2px 2px 3px;
  1265. box-sizing:border-box;
  1266. width:100%;
  1267. }
  1268. #u35718_text {
  1269. border-width:0px;
  1270. white-space:nowrap;
  1271. text-transform:none;
  1272. }
  1273. #u35719 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:20px;
  1277. top:40px;
  1278. width:98px;
  1279. height:20px;
  1280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1281. font-weight:400;
  1282. font-style:normal;
  1283. font-size:14px;
  1284. color:#FFFFFF;
  1285. }
  1286. #u35720_div {
  1287. border-width:0px;
  1288. position:absolute;
  1289. left:0px;
  1290. top:0px;
  1291. width:76px;
  1292. height:20px;
  1293. background:inherit;
  1294. background-color:rgba(255, 255, 255, 0);
  1295. border:none;
  1296. border-radius:0px;
  1297. -moz-box-shadow:none;
  1298. -webkit-box-shadow:none;
  1299. box-shadow:none;
  1300. }
  1301. #u35720 {
  1302. border-width:0px;
  1303. position:absolute;
  1304. left:22px;
  1305. top:0px;
  1306. width:76px;
  1307. height:20px;
  1308. display:flex;
  1309. }
  1310. #u35720 .text {
  1311. position:absolute;
  1312. align-self:center;
  1313. padding:2px 2px 2px 3px;
  1314. box-sizing:border-box;
  1315. width:100%;
  1316. }
  1317. #u35720_text {
  1318. border-width:0px;
  1319. white-space:nowrap;
  1320. text-transform:none;
  1321. }
  1322. #u35721 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:180px;
  1327. width:84px;
  1328. height:20px;
  1329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1330. font-weight:400;
  1331. font-style:normal;
  1332. font-size:14px;
  1333. color:#FFFFFF;
  1334. }
  1335. #u35722_img {
  1336. border-width:0px;
  1337. position:absolute;
  1338. left:0px;
  1339. top:0px;
  1340. width:9px;
  1341. height:9px;
  1342. }
  1343. #u35722 {
  1344. border-width:0px;
  1345. position:absolute;
  1346. left:6px;
  1347. top:6px;
  1348. width:9px;
  1349. height:9px;
  1350. display:flex;
  1351. }
  1352. #u35722 .text {
  1353. position:absolute;
  1354. align-self:center;
  1355. padding:2px 2px 2px 2px;
  1356. box-sizing:border-box;
  1357. width:100%;
  1358. }
  1359. #u35722_img.selected {
  1360. }
  1361. #u35722.selected {
  1362. }
  1363. #u35722_text {
  1364. border-width:0px;
  1365. word-wrap:break-word;
  1366. text-transform:none;
  1367. visibility:hidden;
  1368. }
  1369. #u35723_div {
  1370. border-width:0px;
  1371. position:absolute;
  1372. left:0px;
  1373. top:0px;
  1374. width:62px;
  1375. height:20px;
  1376. background:inherit;
  1377. background-color:rgba(255, 255, 255, 0);
  1378. border:none;
  1379. border-radius:0px;
  1380. -moz-box-shadow:none;
  1381. -webkit-box-shadow:none;
  1382. box-shadow:none;
  1383. }
  1384. #u35723 {
  1385. border-width:0px;
  1386. position:absolute;
  1387. left:22px;
  1388. top:0px;
  1389. width:62px;
  1390. height:20px;
  1391. display:flex;
  1392. }
  1393. #u35723 .text {
  1394. position:absolute;
  1395. align-self:center;
  1396. padding:2px 2px 2px 3px;
  1397. box-sizing:border-box;
  1398. width:100%;
  1399. }
  1400. #u35723_text {
  1401. border-width:0px;
  1402. white-space:nowrap;
  1403. text-transform:none;
  1404. }
  1405. #u35721_children {
  1406. border-width:0px;
  1407. position:absolute;
  1408. left:0px;
  1409. top:0px;
  1410. width:0px;
  1411. height:0px;
  1412. visibility:hidden;
  1413. }
  1414. #u35724 {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:20px;
  1418. top:20px;
  1419. width:98px;
  1420. height:20px;
  1421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1422. font-weight:400;
  1423. font-style:normal;
  1424. font-size:14px;
  1425. color:#FFFFFF;
  1426. }
  1427. #u35725_div {
  1428. border-width:0px;
  1429. position:absolute;
  1430. left:0px;
  1431. top:0px;
  1432. width:76px;
  1433. height:20px;
  1434. background:inherit;
  1435. background-color:rgba(255, 255, 255, 0);
  1436. border:none;
  1437. border-radius:0px;
  1438. -moz-box-shadow:none;
  1439. -webkit-box-shadow:none;
  1440. box-shadow:none;
  1441. }
  1442. #u35725 {
  1443. border-width:0px;
  1444. position:absolute;
  1445. left:22px;
  1446. top:0px;
  1447. width:76px;
  1448. height:20px;
  1449. display:flex;
  1450. }
  1451. #u35725 .text {
  1452. position:absolute;
  1453. align-self:center;
  1454. padding:2px 2px 2px 3px;
  1455. box-sizing:border-box;
  1456. width:100%;
  1457. }
  1458. #u35725_text {
  1459. border-width:0px;
  1460. white-space:nowrap;
  1461. text-transform:none;
  1462. }
  1463. #u35726 {
  1464. border-width:0px;
  1465. position:absolute;
  1466. left:20px;
  1467. top:40px;
  1468. width:84px;
  1469. height:20px;
  1470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1471. font-weight:400;
  1472. font-style:normal;
  1473. font-size:14px;
  1474. color:#FFFFFF;
  1475. }
  1476. #u35727_div {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:0px;
  1480. top:0px;
  1481. width:62px;
  1482. height:20px;
  1483. background:inherit;
  1484. background-color:rgba(255, 255, 255, 0);
  1485. border:none;
  1486. border-radius:0px;
  1487. -moz-box-shadow:none;
  1488. -webkit-box-shadow:none;
  1489. box-shadow:none;
  1490. }
  1491. #u35727 {
  1492. border-width:0px;
  1493. position:absolute;
  1494. left:22px;
  1495. top:0px;
  1496. width:62px;
  1497. height:20px;
  1498. display:flex;
  1499. }
  1500. #u35727 .text {
  1501. position:absolute;
  1502. align-self:center;
  1503. padding:2px 2px 2px 3px;
  1504. box-sizing:border-box;
  1505. width:100%;
  1506. }
  1507. #u35727_text {
  1508. border-width:0px;
  1509. white-space:nowrap;
  1510. text-transform:none;
  1511. }
  1512. #u35728 {
  1513. border-width:0px;
  1514. position:absolute;
  1515. left:0px;
  1516. top:200px;
  1517. width:84px;
  1518. height:20px;
  1519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1520. font-weight:400;
  1521. font-style:normal;
  1522. font-size:14px;
  1523. color:#FFFFFF;
  1524. }
  1525. #u35729_img {
  1526. border-width:0px;
  1527. position:absolute;
  1528. left:0px;
  1529. top:0px;
  1530. width:9px;
  1531. height:9px;
  1532. }
  1533. #u35729 {
  1534. border-width:0px;
  1535. position:absolute;
  1536. left:6px;
  1537. top:6px;
  1538. width:9px;
  1539. height:9px;
  1540. display:flex;
  1541. }
  1542. #u35729 .text {
  1543. position:absolute;
  1544. align-self:center;
  1545. padding:2px 2px 2px 2px;
  1546. box-sizing:border-box;
  1547. width:100%;
  1548. }
  1549. #u35729_img.selected {
  1550. }
  1551. #u35729.selected {
  1552. }
  1553. #u35729_text {
  1554. border-width:0px;
  1555. word-wrap:break-word;
  1556. text-transform:none;
  1557. visibility:hidden;
  1558. }
  1559. #u35730_div {
  1560. border-width:0px;
  1561. position:absolute;
  1562. left:0px;
  1563. top:0px;
  1564. width:62px;
  1565. height:20px;
  1566. background:inherit;
  1567. background-color:rgba(255, 255, 255, 0);
  1568. border:none;
  1569. border-radius:0px;
  1570. -moz-box-shadow:none;
  1571. -webkit-box-shadow:none;
  1572. box-shadow:none;
  1573. }
  1574. #u35730 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:22px;
  1578. top:0px;
  1579. width:62px;
  1580. height:20px;
  1581. display:flex;
  1582. }
  1583. #u35730 .text {
  1584. position:absolute;
  1585. align-self:center;
  1586. padding:2px 2px 2px 3px;
  1587. box-sizing:border-box;
  1588. width:100%;
  1589. }
  1590. #u35730_text {
  1591. border-width:0px;
  1592. white-space:nowrap;
  1593. text-transform:none;
  1594. }
  1595. #u35728_children {
  1596. border-width:0px;
  1597. position:absolute;
  1598. left:0px;
  1599. top:0px;
  1600. width:0px;
  1601. height:0px;
  1602. visibility:hidden;
  1603. }
  1604. #u35731 {
  1605. border-width:0px;
  1606. position:absolute;
  1607. left:20px;
  1608. top:20px;
  1609. width:84px;
  1610. height:20px;
  1611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1612. font-weight:400;
  1613. font-style:normal;
  1614. font-size:14px;
  1615. color:#FFFFFF;
  1616. }
  1617. #u35732_div {
  1618. border-width:0px;
  1619. position:absolute;
  1620. left:0px;
  1621. top:0px;
  1622. width:62px;
  1623. height:20px;
  1624. background:inherit;
  1625. background-color:rgba(255, 255, 255, 0);
  1626. border:none;
  1627. border-radius:0px;
  1628. -moz-box-shadow:none;
  1629. -webkit-box-shadow:none;
  1630. box-shadow:none;
  1631. }
  1632. #u35732 {
  1633. border-width:0px;
  1634. position:absolute;
  1635. left:22px;
  1636. top:0px;
  1637. width:62px;
  1638. height:20px;
  1639. display:flex;
  1640. }
  1641. #u35732 .text {
  1642. position:absolute;
  1643. align-self:center;
  1644. padding:2px 2px 2px 3px;
  1645. box-sizing:border-box;
  1646. width:100%;
  1647. }
  1648. #u35732_text {
  1649. border-width:0px;
  1650. white-space:nowrap;
  1651. text-transform:none;
  1652. }
  1653. #u35733 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:20px;
  1657. top:40px;
  1658. width:84px;
  1659. height:20px;
  1660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1661. font-weight:400;
  1662. font-style:normal;
  1663. font-size:14px;
  1664. color:#FFFFFF;
  1665. }
  1666. #u35734_div {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:0px;
  1670. top:0px;
  1671. width:62px;
  1672. height:20px;
  1673. background:inherit;
  1674. background-color:rgba(255, 255, 255, 0);
  1675. border:none;
  1676. border-radius:0px;
  1677. -moz-box-shadow:none;
  1678. -webkit-box-shadow:none;
  1679. box-shadow:none;
  1680. }
  1681. #u35734 {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:22px;
  1685. top:0px;
  1686. width:62px;
  1687. height:20px;
  1688. display:flex;
  1689. }
  1690. #u35734 .text {
  1691. position:absolute;
  1692. align-self:center;
  1693. padding:2px 2px 2px 3px;
  1694. box-sizing:border-box;
  1695. width:100%;
  1696. }
  1697. #u35734_text {
  1698. border-width:0px;
  1699. white-space:nowrap;
  1700. text-transform:none;
  1701. }
  1702. #u35735 {
  1703. border-width:0px;
  1704. position:absolute;
  1705. left:20px;
  1706. top:60px;
  1707. width:84px;
  1708. height:20px;
  1709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1710. font-weight:400;
  1711. font-style:normal;
  1712. font-size:14px;
  1713. color:#FFFFFF;
  1714. }
  1715. #u35736_div {
  1716. border-width:0px;
  1717. position:absolute;
  1718. left:0px;
  1719. top:0px;
  1720. width:62px;
  1721. height:20px;
  1722. background:inherit;
  1723. background-color:rgba(255, 255, 255, 0);
  1724. border:none;
  1725. border-radius:0px;
  1726. -moz-box-shadow:none;
  1727. -webkit-box-shadow:none;
  1728. box-shadow:none;
  1729. }
  1730. #u35736 {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:22px;
  1734. top:0px;
  1735. width:62px;
  1736. height:20px;
  1737. display:flex;
  1738. }
  1739. #u35736 .text {
  1740. position:absolute;
  1741. align-self:center;
  1742. padding:2px 2px 2px 3px;
  1743. box-sizing:border-box;
  1744. width:100%;
  1745. }
  1746. #u35736_text {
  1747. border-width:0px;
  1748. white-space:nowrap;
  1749. text-transform:none;
  1750. }
  1751. #u35737 {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:0px;
  1755. top:0px;
  1756. width:0px;
  1757. height:0px;
  1758. }
  1759. #u35738_input {
  1760. position:absolute;
  1761. left:0px;
  1762. top:0px;
  1763. width:141px;
  1764. height:22px;
  1765. padding:2px 2px 2px 2px;
  1766. font-family:'ArialMT', 'Arial', sans-serif;
  1767. font-weight:400;
  1768. font-style:normal;
  1769. font-size:14px;
  1770. letter-spacing:normal;
  1771. color:#FFFFFF;
  1772. vertical-align:none;
  1773. text-align:left;
  1774. text-transform:none;
  1775. background-color:transparent;
  1776. border-color:transparent;
  1777. }
  1778. #u35738_input.disabled {
  1779. position:absolute;
  1780. left:0px;
  1781. top:0px;
  1782. width:141px;
  1783. height:22px;
  1784. padding:2px 2px 2px 2px;
  1785. font-family:'ArialMT', 'Arial', sans-serif;
  1786. font-weight:400;
  1787. font-style:normal;
  1788. font-size:14px;
  1789. letter-spacing:normal;
  1790. color:#FFFFFF;
  1791. vertical-align:none;
  1792. text-align:left;
  1793. text-transform:none;
  1794. background-color:transparent;
  1795. border-color:transparent;
  1796. }
  1797. #u35738_div {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:0px;
  1801. top:0px;
  1802. width:141px;
  1803. height:22px;
  1804. background:inherit;
  1805. background-color:rgba(255, 255, 255, 0);
  1806. border:none;
  1807. border-radius:0px;
  1808. -moz-box-shadow:none;
  1809. -webkit-box-shadow:none;
  1810. box-shadow:none;
  1811. font-size:14px;
  1812. color:#FFFFFF;
  1813. }
  1814. #u35738 {
  1815. border-width:0px;
  1816. position:absolute;
  1817. left:243px;
  1818. top:14px;
  1819. width:141px;
  1820. height:22px;
  1821. display:flex;
  1822. font-size:14px;
  1823. color:#FFFFFF;
  1824. }
  1825. #u35738 .text {
  1826. position:absolute;
  1827. align-self:flex-start;
  1828. padding:2px 2px 2px 2px;
  1829. box-sizing:border-box;
  1830. width:100%;
  1831. }
  1832. #u35738_div.disabled {
  1833. border-width:0px;
  1834. position:absolute;
  1835. left:0px;
  1836. top:0px;
  1837. width:141px;
  1838. height:22px;
  1839. background:inherit;
  1840. background-color:rgba(240, 240, 240, 1);
  1841. border:none;
  1842. border-radius:0px;
  1843. -moz-box-shadow:none;
  1844. -webkit-box-shadow:none;
  1845. box-shadow:none;
  1846. font-size:14px;
  1847. color:#FFFFFF;
  1848. }
  1849. #u35738.disabled {
  1850. }
  1851. .u35738_input_option {
  1852. font-size:14px;
  1853. }
  1854. #u35739_img {
  1855. border-width:0px;
  1856. position:absolute;
  1857. left:0px;
  1858. top:0px;
  1859. width:22px;
  1860. height:22px;
  1861. }
  1862. #u35739 {
  1863. border-width:0px;
  1864. position:absolute;
  1865. left:216px;
  1866. top:15px;
  1867. width:22px;
  1868. height:22px;
  1869. display:flex;
  1870. }
  1871. #u35739 .text {
  1872. position:absolute;
  1873. align-self:center;
  1874. padding:2px 2px 2px 2px;
  1875. box-sizing:border-box;
  1876. width:100%;
  1877. }
  1878. #u35739_text {
  1879. border-width:0px;
  1880. word-wrap:break-word;
  1881. text-transform:none;
  1882. visibility:hidden;
  1883. }
  1884. #u35740_div {
  1885. border-width:0px;
  1886. position:absolute;
  1887. left:0px;
  1888. top:0px;
  1889. width:136px;
  1890. height:16px;
  1891. background:inherit;
  1892. background-color:rgba(255, 255, 255, 0);
  1893. border:none;
  1894. border-radius:0px;
  1895. -moz-box-shadow:none;
  1896. -webkit-box-shadow:none;
  1897. box-shadow:none;
  1898. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC', sans-serif;
  1899. font-weight:200;
  1900. font-style:normal;
  1901. font-size:11px;
  1902. color:#555555;
  1903. }
  1904. #u35740 {
  1905. border-width:0px;
  1906. position:absolute;
  1907. left:208px;
  1908. top:53px;
  1909. width:136px;
  1910. height:16px;
  1911. display:flex;
  1912. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC', sans-serif;
  1913. font-weight:200;
  1914. font-style:normal;
  1915. font-size:11px;
  1916. color:#555555;
  1917. }
  1918. #u35740 .text {
  1919. position:absolute;
  1920. align-self:flex-start;
  1921. padding:0px 0px 0px 0px;
  1922. box-sizing:border-box;
  1923. width:100%;
  1924. }
  1925. #u35740_text {
  1926. border-width:0px;
  1927. white-space:nowrap;
  1928. text-transform:none;
  1929. }
  1930. #u35741_div {
  1931. border-width:0px;
  1932. position:absolute;
  1933. left:0px;
  1934. top:0px;
  1935. width:140px;
  1936. height:24px;
  1937. background:inherit;
  1938. background-color:rgba(242, 242, 242, 0.2);
  1939. border:none;
  1940. border-radius:25px;
  1941. -moz-box-shadow:none;
  1942. -webkit-box-shadow:none;
  1943. box-shadow:none;
  1944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1945. font-weight:400;
  1946. font-style:normal;
  1947. color:#FFFFFF;
  1948. text-align:center;
  1949. }
  1950. #u35741 {
  1951. border-width:0px;
  1952. position:absolute;
  1953. left:417px;
  1954. top:13px;
  1955. width:140px;
  1956. height:24px;
  1957. display:flex;
  1958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1959. font-weight:400;
  1960. font-style:normal;
  1961. color:#FFFFFF;
  1962. text-align:center;
  1963. }
  1964. #u35741 .text {
  1965. position:absolute;
  1966. align-self:center;
  1967. padding:0px 0px 0px 0px;
  1968. box-sizing:border-box;
  1969. width:100%;
  1970. }
  1971. #u35741_text {
  1972. border-width:0px;
  1973. word-wrap:break-word;
  1974. text-transform:none;
  1975. }
  1976. #u35742_div {
  1977. border-width:0px;
  1978. position:absolute;
  1979. left:0px;
  1980. top:0px;
  1981. width:85px;
  1982. height:20px;
  1983. background:inherit;
  1984. background-color:rgba(30, 42, 68, 1);
  1985. border:none;
  1986. border-radius:0px;
  1987. -moz-box-shadow:none;
  1988. -webkit-box-shadow:none;
  1989. box-shadow:none;
  1990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1991. font-weight:400;
  1992. font-style:normal;
  1993. color:#FFFFFF;
  1994. }
  1995. #u35742 {
  1996. border-width:0px;
  1997. position:absolute;
  1998. left:1374px;
  1999. top:15px;
  2000. width:85px;
  2001. height:20px;
  2002. display:flex;
  2003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2004. font-weight:400;
  2005. font-style:normal;
  2006. color:#FFFFFF;
  2007. }
  2008. #u35742 .text {
  2009. position:absolute;
  2010. align-self:flex-start;
  2011. padding:0px 0px 0px 0px;
  2012. box-sizing:border-box;
  2013. width:100%;
  2014. }
  2015. #u35742_text {
  2016. border-width:0px;
  2017. white-space:nowrap;
  2018. text-transform:none;
  2019. }
  2020. #u35743_div {
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:0px;
  2024. top:0px;
  2025. width:1381px;
  2026. height:1154px;
  2027. background:inherit;
  2028. background-color:rgba(255, 255, 255, 1);
  2029. border:none;
  2030. border-radius:0px;
  2031. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2032. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2033. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2034. }
  2035. #u35743 {
  2036. border-width:0px;
  2037. position:absolute;
  2038. left:208px;
  2039. top:80px;
  2040. width:1381px;
  2041. height:1154px;
  2042. display:flex;
  2043. }
  2044. #u35743 .text {
  2045. position:absolute;
  2046. align-self:center;
  2047. padding:2px 2px 2px 2px;
  2048. box-sizing:border-box;
  2049. width:100%;
  2050. }
  2051. #u35743_text {
  2052. border-width:0px;
  2053. word-wrap:break-word;
  2054. text-transform:none;
  2055. visibility:hidden;
  2056. }
  2057. #u35744_div {
  2058. border-width:0px;
  2059. position:absolute;
  2060. left:0px;
  2061. top:0px;
  2062. width:930px;
  2063. height:1095px;
  2064. background:inherit;
  2065. background-color:rgba(255, 255, 255, 1);
  2066. box-sizing:border-box;
  2067. border-width:1px;
  2068. border-style:solid;
  2069. border-color:rgba(215, 215, 215, 1);
  2070. border-radius:4px;
  2071. -moz-box-shadow:none;
  2072. -webkit-box-shadow:none;
  2073. box-shadow:none;
  2074. }
  2075. #u35744 {
  2076. border-width:0px;
  2077. position:absolute;
  2078. left:633px;
  2079. top:130px;
  2080. width:930px;
  2081. height:1095px;
  2082. display:flex;
  2083. }
  2084. #u35744 .text {
  2085. position:absolute;
  2086. align-self:center;
  2087. padding:2px 2px 2px 2px;
  2088. box-sizing:border-box;
  2089. width:100%;
  2090. }
  2091. #u35744_text {
  2092. border-width:0px;
  2093. word-wrap:break-word;
  2094. text-transform:none;
  2095. visibility:hidden;
  2096. }
  2097. #u35745_div {
  2098. border-width:0px;
  2099. position:absolute;
  2100. left:0px;
  2101. top:0px;
  2102. width:929px;
  2103. height:240px;
  2104. background:inherit;
  2105. background-color:rgba(242, 242, 242, 1);
  2106. box-sizing:border-box;
  2107. border-width:1px;
  2108. border-style:solid;
  2109. border-color:rgba(242, 242, 242, 1);
  2110. border-radius:0px;
  2111. -moz-box-shadow:none;
  2112. -webkit-box-shadow:none;
  2113. box-shadow:none;
  2114. }
  2115. #u35745 {
  2116. border-width:0px;
  2117. position:absolute;
  2118. left:634px;
  2119. top:131px;
  2120. width:929px;
  2121. height:240px;
  2122. display:flex;
  2123. }
  2124. #u35745 .text {
  2125. position:absolute;
  2126. align-self:center;
  2127. padding:2px 2px 2px 2px;
  2128. box-sizing:border-box;
  2129. width:100%;
  2130. }
  2131. #u35745_text {
  2132. border-width:0px;
  2133. word-wrap:break-word;
  2134. text-transform:none;
  2135. visibility:hidden;
  2136. }
  2137. #u35746 {
  2138. border-width:0px;
  2139. position:absolute;
  2140. left:0px;
  2141. top:0px;
  2142. width:0px;
  2143. height:0px;
  2144. }
  2145. #u35747_img {
  2146. border-width:0px;
  2147. position:absolute;
  2148. left:0px;
  2149. top:0px;
  2150. width:527px;
  2151. height:591px;
  2152. }
  2153. #u35747 {
  2154. border-width:0px;
  2155. position:absolute;
  2156. left:1662px;
  2157. top:539px;
  2158. width:527px;
  2159. height:591px;
  2160. display:flex;
  2161. }
  2162. #u35747 .text {
  2163. position:absolute;
  2164. align-self:center;
  2165. padding:2px 2px 2px 2px;
  2166. box-sizing:border-box;
  2167. width:100%;
  2168. }
  2169. #u35747_text {
  2170. border-width:0px;
  2171. word-wrap:break-word;
  2172. text-transform:none;
  2173. visibility:hidden;
  2174. }
  2175. #u35748_img {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:0px;
  2179. top:0px;
  2180. width:523px;
  2181. height:493px;
  2182. }
  2183. #u35748 {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:1666px;
  2187. top:46px;
  2188. width:523px;
  2189. height:493px;
  2190. display:flex;
  2191. }
  2192. #u35748 .text {
  2193. position:absolute;
  2194. align-self:center;
  2195. padding:2px 2px 2px 2px;
  2196. box-sizing:border-box;
  2197. width:100%;
  2198. }
  2199. #u35748_text {
  2200. border-width:0px;
  2201. word-wrap:break-word;
  2202. text-transform:none;
  2203. visibility:hidden;
  2204. }
  2205. #u35749_img {
  2206. border-width:0px;
  2207. position:absolute;
  2208. left:0px;
  2209. top:0px;
  2210. width:527px;
  2211. height:590px;
  2212. }
  2213. #u35749 {
  2214. border-width:0px;
  2215. position:absolute;
  2216. left:1662px;
  2217. top:1130px;
  2218. width:527px;
  2219. height:590px;
  2220. display:flex;
  2221. }
  2222. #u35749 .text {
  2223. position:absolute;
  2224. align-self:center;
  2225. padding:2px 2px 2px 2px;
  2226. box-sizing:border-box;
  2227. width:100%;
  2228. }
  2229. #u35749_text {
  2230. border-width:0px;
  2231. word-wrap:break-word;
  2232. text-transform:none;
  2233. visibility:hidden;
  2234. }
  2235. #u35750_img {
  2236. border-width:0px;
  2237. position:absolute;
  2238. left:0px;
  2239. top:0px;
  2240. width:529px;
  2241. height:711px;
  2242. }
  2243. #u35750 {
  2244. border-width:0px;
  2245. position:absolute;
  2246. left:1662px;
  2247. top:1720px;
  2248. width:529px;
  2249. height:711px;
  2250. display:flex;
  2251. }
  2252. #u35750 .text {
  2253. position:absolute;
  2254. align-self:center;
  2255. padding:2px 2px 2px 2px;
  2256. box-sizing:border-box;
  2257. width:100%;
  2258. }
  2259. #u35750_text {
  2260. border-width:0px;
  2261. word-wrap:break-word;
  2262. text-transform:none;
  2263. visibility:hidden;
  2264. }
  2265. #u35751_img {
  2266. border-width:0px;
  2267. position:absolute;
  2268. left:0px;
  2269. top:0px;
  2270. width:11px;
  2271. height:11px;
  2272. }
  2273. #u35751 {
  2274. border-width:0px;
  2275. position:absolute;
  2276. left:955px;
  2277. top:1304px;
  2278. width:11px;
  2279. height:11px;
  2280. display:flex;
  2281. color:#FFFFFF;
  2282. }
  2283. #u35751 .text {
  2284. position:absolute;
  2285. align-self:center;
  2286. padding:2px 2px 2px 2px;
  2287. box-sizing:border-box;
  2288. width:100%;
  2289. }
  2290. #u35751_text {
  2291. border-width:0px;
  2292. word-wrap:break-word;
  2293. text-transform:none;
  2294. visibility:hidden;
  2295. }
  2296. #u35752_div {
  2297. border-width:0px;
  2298. position:absolute;
  2299. left:0px;
  2300. top:0px;
  2301. width:109px;
  2302. height:50px;
  2303. background:inherit;
  2304. background-color:rgba(255, 255, 255, 0);
  2305. border:none;
  2306. border-left:0px;
  2307. border-top:0px;
  2308. border-right:0px;
  2309. border-radius:0px;
  2310. border-bottom-right-radius:0px;
  2311. border-bottom-left-radius:0px;
  2312. -moz-box-shadow:none;
  2313. -webkit-box-shadow:none;
  2314. box-shadow:none;
  2315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2316. font-weight:400;
  2317. font-style:normal;
  2318. font-size:18px;
  2319. }
  2320. #u35752 {
  2321. border-width:0px;
  2322. position:absolute;
  2323. left:227px;
  2324. top:80px;
  2325. width:109px;
  2326. height:50px;
  2327. display:flex;
  2328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2329. font-weight:400;
  2330. font-style:normal;
  2331. font-size:18px;
  2332. }
  2333. #u35752 .text {
  2334. position:absolute;
  2335. align-self:center;
  2336. padding:0px 0px 0px 0px;
  2337. box-sizing:border-box;
  2338. width:100%;
  2339. }
  2340. #u35752_text {
  2341. border-width:0px;
  2342. white-space:nowrap;
  2343. text-transform:none;
  2344. }
  2345. #u35753 {
  2346. border-width:0px;
  2347. position:absolute;
  2348. left:0px;
  2349. top:0px;
  2350. width:0px;
  2351. height:0px;
  2352. }
  2353. #u35754_div {
  2354. border-width:0px;
  2355. position:absolute;
  2356. left:0px;
  2357. top:0px;
  2358. width:320px;
  2359. height:130px;
  2360. background:inherit;
  2361. background-color:rgba(255, 255, 255, 1);
  2362. box-sizing:border-box;
  2363. border-width:2px;
  2364. border-style:solid;
  2365. border-color:rgba(121, 121, 121, 1);
  2366. border-radius:0px;
  2367. -moz-box-shadow:none;
  2368. -webkit-box-shadow:none;
  2369. box-shadow:none;
  2370. }
  2371. #u35754 {
  2372. border-width:0px;
  2373. position:absolute;
  2374. left:945px;
  2375. top:192px;
  2376. width:320px;
  2377. height:130px;
  2378. display:flex;
  2379. }
  2380. #u35754 .text {
  2381. position:absolute;
  2382. align-self:center;
  2383. padding:2px 2px 2px 2px;
  2384. box-sizing:border-box;
  2385. width:100%;
  2386. }
  2387. #u35754_text {
  2388. border-width:0px;
  2389. word-wrap:break-word;
  2390. text-transform:none;
  2391. visibility:hidden;
  2392. }
  2393. #u35755_div {
  2394. border-width:0px;
  2395. position:absolute;
  2396. left:0px;
  2397. top:0px;
  2398. width:138px;
  2399. height:68px;
  2400. background:inherit;
  2401. background-color:rgba(255, 255, 255, 1);
  2402. border:none;
  2403. border-left:0px;
  2404. border-top:0px;
  2405. border-right:0px;
  2406. border-radius:0px;
  2407. border-bottom-right-radius:0px;
  2408. border-bottom-left-radius:0px;
  2409. -moz-box-shadow:none;
  2410. -webkit-box-shadow:none;
  2411. box-shadow:none;
  2412. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2413. font-weight:650;
  2414. font-style:normal;
  2415. font-size:24px;
  2416. color:#000000;
  2417. }
  2418. #u35755 {
  2419. border-width:0px;
  2420. position:absolute;
  2421. left:1122px;
  2422. top:198px;
  2423. width:138px;
  2424. height:68px;
  2425. display:flex;
  2426. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2427. font-weight:650;
  2428. font-style:normal;
  2429. font-size:24px;
  2430. color:#000000;
  2431. }
  2432. #u35755 .text {
  2433. position:absolute;
  2434. align-self:center;
  2435. padding:0px 0px 0px 0px;
  2436. box-sizing:border-box;
  2437. width:100%;
  2438. }
  2439. #u35755_text {
  2440. border-width:0px;
  2441. word-wrap:break-word;
  2442. text-transform:none;
  2443. }
  2444. #u35756_img {
  2445. border-width:0px;
  2446. position:absolute;
  2447. left:0px;
  2448. top:0px;
  2449. width:42px;
  2450. height:42px;
  2451. }
  2452. #u35756 {
  2453. border-width:0px;
  2454. position:absolute;
  2455. left:1074px;
  2456. top:212px;
  2457. width:42px;
  2458. height:42px;
  2459. display:flex;
  2460. color:#000000;
  2461. }
  2462. #u35756 .text {
  2463. position:absolute;
  2464. align-self:center;
  2465. padding:2px 2px 2px 2px;
  2466. box-sizing:border-box;
  2467. width:100%;
  2468. }
  2469. #u35756_text {
  2470. border-width:0px;
  2471. word-wrap:break-word;
  2472. text-transform:none;
  2473. visibility:hidden;
  2474. }
  2475. #u35757_div {
  2476. border-width:0px;
  2477. position:absolute;
  2478. left:0px;
  2479. top:0px;
  2480. width:161px;
  2481. height:20px;
  2482. background:inherit;
  2483. background-color:rgba(255, 255, 255, 1);
  2484. border:none;
  2485. border-left:0px;
  2486. border-top:0px;
  2487. border-right:0px;
  2488. border-radius:0px;
  2489. border-bottom-right-radius:0px;
  2490. border-bottom-left-radius:0px;
  2491. -moz-box-shadow:none;
  2492. -webkit-box-shadow:none;
  2493. box-shadow:none;
  2494. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2495. font-weight:500;
  2496. font-style:normal;
  2497. font-size:14px;
  2498. }
  2499. #u35757 {
  2500. border-width:0px;
  2501. position:absolute;
  2502. left:1072px;
  2503. top:272px;
  2504. width:161px;
  2505. height:20px;
  2506. display:flex;
  2507. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2508. font-weight:500;
  2509. font-style:normal;
  2510. font-size:14px;
  2511. }
  2512. #u35757 .text {
  2513. position:absolute;
  2514. align-self:center;
  2515. padding:0px 0px 0px 0px;
  2516. box-sizing:border-box;
  2517. width:100%;
  2518. }
  2519. #u35757_text {
  2520. border-width:0px;
  2521. white-space:nowrap;
  2522. text-transform:none;
  2523. }
  2524. #u35758_img {
  2525. border-width:0px;
  2526. position:absolute;
  2527. left:0px;
  2528. top:0px;
  2529. width:101px;
  2530. height:102px;
  2531. }
  2532. #u35758 {
  2533. border-width:0px;
  2534. position:absolute;
  2535. left:955px;
  2536. top:206px;
  2537. width:101px;
  2538. height:102px;
  2539. display:flex;
  2540. }
  2541. #u35758 .text {
  2542. position:absolute;
  2543. align-self:center;
  2544. padding:2px 2px 2px 2px;
  2545. box-sizing:border-box;
  2546. width:100%;
  2547. }
  2548. #u35758_text {
  2549. border-width:0px;
  2550. word-wrap:break-word;
  2551. text-transform:none;
  2552. visibility:hidden;
  2553. }
  2554. #u35759_div {
  2555. border-width:0px;
  2556. position:absolute;
  2557. left:0px;
  2558. top:0px;
  2559. width:44px;
  2560. height:50px;
  2561. background:inherit;
  2562. background-color:rgba(255, 255, 255, 0);
  2563. border:none;
  2564. border-left:0px;
  2565. border-top:0px;
  2566. border-right:0px;
  2567. border-radius:0px;
  2568. border-bottom-right-radius:0px;
  2569. border-bottom-left-radius:0px;
  2570. -moz-box-shadow:none;
  2571. -webkit-box-shadow:none;
  2572. box-shadow:none;
  2573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2574. font-weight:400;
  2575. font-style:normal;
  2576. font-size:18px;
  2577. text-align:center;
  2578. }
  2579. #u35759 {
  2580. border-width:0px;
  2581. position:absolute;
  2582. left:797px;
  2583. top:232px;
  2584. width:44px;
  2585. height:50px;
  2586. display:flex;
  2587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2588. font-weight:400;
  2589. font-style:normal;
  2590. font-size:18px;
  2591. text-align:center;
  2592. }
  2593. #u35759 .text {
  2594. position:absolute;
  2595. align-self:center;
  2596. padding:0px 0px 0px 0px;
  2597. box-sizing:border-box;
  2598. width:100%;
  2599. }
  2600. #u35759_text {
  2601. border-width:0px;
  2602. white-space:nowrap;
  2603. text-transform:none;
  2604. }
  2605. #u35760 {
  2606. border-width:0px;
  2607. position:absolute;
  2608. left:0px;
  2609. top:0px;
  2610. width:0px;
  2611. height:0px;
  2612. }
  2613. #u35761_div {
  2614. border-width:0px;
  2615. position:absolute;
  2616. left:0px;
  2617. top:0px;
  2618. width:380px;
  2619. height:1079px;
  2620. background:inherit;
  2621. background-color:rgba(242, 242, 242, 1);
  2622. box-sizing:border-box;
  2623. border-width:1px;
  2624. border-style:solid;
  2625. border-color:rgba(215, 215, 215, 1);
  2626. border-radius:4px;
  2627. -moz-box-shadow:none;
  2628. -webkit-box-shadow:none;
  2629. box-shadow:none;
  2630. }
  2631. #u35761 {
  2632. border-width:0px;
  2633. position:absolute;
  2634. left:227px;
  2635. top:130px;
  2636. width:380px;
  2637. height:1079px;
  2638. display:flex;
  2639. }
  2640. #u35761 .text {
  2641. position:absolute;
  2642. align-self:center;
  2643. padding:2px 2px 2px 2px;
  2644. box-sizing:border-box;
  2645. width:100%;
  2646. }
  2647. #u35761_text {
  2648. border-width:0px;
  2649. word-wrap:break-word;
  2650. text-transform:none;
  2651. visibility:hidden;
  2652. }
  2653. #u35762 {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:0px;
  2657. top:0px;
  2658. width:0px;
  2659. height:0px;
  2660. }
  2661. #u35763_div {
  2662. border-width:0px;
  2663. position:absolute;
  2664. left:0px;
  2665. top:0px;
  2666. width:160px;
  2667. height:65px;
  2668. background:inherit;
  2669. background-color:rgba(255, 255, 255, 1);
  2670. box-sizing:border-box;
  2671. border-width:2px;
  2672. border-style:solid;
  2673. border-color:rgba(24, 144, 255, 1);
  2674. border-radius:0px;
  2675. -moz-box-shadow:none;
  2676. -webkit-box-shadow:none;
  2677. box-shadow:none;
  2678. }
  2679. #u35763 {
  2680. border-width:0px;
  2681. position:absolute;
  2682. left:245px;
  2683. top:147px;
  2684. width:160px;
  2685. height:65px;
  2686. display:flex;
  2687. }
  2688. #u35763 .text {
  2689. position:absolute;
  2690. align-self:center;
  2691. padding:2px 2px 2px 2px;
  2692. box-sizing:border-box;
  2693. width:100%;
  2694. }
  2695. #u35763_text {
  2696. border-width:0px;
  2697. word-wrap:break-word;
  2698. text-transform:none;
  2699. visibility:hidden;
  2700. }
  2701. #u35764_img {
  2702. border-width:0px;
  2703. position:absolute;
  2704. left:0px;
  2705. top:0px;
  2706. width:52px;
  2707. height:51px;
  2708. }
  2709. #u35764 {
  2710. border-width:0px;
  2711. position:absolute;
  2712. left:250px;
  2713. top:154px;
  2714. width:52px;
  2715. height:51px;
  2716. display:flex;
  2717. }
  2718. #u35764 .text {
  2719. position:absolute;
  2720. align-self:center;
  2721. padding:2px 2px 2px 2px;
  2722. box-sizing:border-box;
  2723. width:100%;
  2724. }
  2725. #u35764_text {
  2726. border-width:0px;
  2727. word-wrap:break-word;
  2728. text-transform:none;
  2729. visibility:hidden;
  2730. }
  2731. #u35765_div {
  2732. border-width:0px;
  2733. position:absolute;
  2734. left:0px;
  2735. top:0px;
  2736. width:69px;
  2737. height:34px;
  2738. background:inherit;
  2739. background-color:rgba(255, 255, 255, 1);
  2740. border:none;
  2741. border-left:0px;
  2742. border-top:0px;
  2743. border-right:0px;
  2744. border-radius:0px;
  2745. border-bottom-right-radius:0px;
  2746. border-bottom-left-radius:0px;
  2747. -moz-box-shadow:none;
  2748. -webkit-box-shadow:none;
  2749. box-shadow:none;
  2750. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2751. font-weight:500;
  2752. font-style:normal;
  2753. font-size:14px;
  2754. }
  2755. #u35765 {
  2756. border-width:0px;
  2757. position:absolute;
  2758. left:331px;
  2759. top:150px;
  2760. width:69px;
  2761. height:34px;
  2762. display:flex;
  2763. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2764. font-weight:500;
  2765. font-style:normal;
  2766. font-size:14px;
  2767. }
  2768. #u35765 .text {
  2769. position:absolute;
  2770. align-self:center;
  2771. padding:0px 0px 0px 0px;
  2772. box-sizing:border-box;
  2773. width:100%;
  2774. }
  2775. #u35765_text {
  2776. border-width:0px;
  2777. word-wrap:break-word;
  2778. text-transform:none;
  2779. }
  2780. #u35766_img {
  2781. border-width:0px;
  2782. position:absolute;
  2783. left:0px;
  2784. top:0px;
  2785. width:21px;
  2786. height:21px;
  2787. }
  2788. #u35766 {
  2789. border-width:0px;
  2790. position:absolute;
  2791. left:307px;
  2792. top:157px;
  2793. width:21px;
  2794. height:21px;
  2795. display:flex;
  2796. }
  2797. #u35766 .text {
  2798. position:absolute;
  2799. align-self:center;
  2800. padding:2px 2px 2px 2px;
  2801. box-sizing:border-box;
  2802. width:100%;
  2803. }
  2804. #u35766_text {
  2805. border-width:0px;
  2806. word-wrap:break-word;
  2807. text-transform:none;
  2808. visibility:hidden;
  2809. }
  2810. #u35767_div {
  2811. border-width:0px;
  2812. position:absolute;
  2813. left:0px;
  2814. top:0px;
  2815. width:59px;
  2816. height:11px;
  2817. background:inherit;
  2818. background-color:rgba(255, 255, 255, 1);
  2819. border:none;
  2820. border-left:0px;
  2821. border-top:0px;
  2822. border-right:0px;
  2823. border-radius:0px;
  2824. border-bottom-right-radius:0px;
  2825. border-bottom-left-radius:0px;
  2826. -moz-box-shadow:none;
  2827. -webkit-box-shadow:none;
  2828. box-shadow:none;
  2829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2830. font-weight:400;
  2831. font-style:normal;
  2832. font-size:8px;
  2833. }
  2834. #u35767 {
  2835. border-width:0px;
  2836. position:absolute;
  2837. left:331px;
  2838. top:189px;
  2839. width:59px;
  2840. height:11px;
  2841. display:flex;
  2842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2843. font-weight:400;
  2844. font-style:normal;
  2845. font-size:8px;
  2846. }
  2847. #u35767 .text {
  2848. position:absolute;
  2849. align-self:center;
  2850. padding:0px 0px 0px 0px;
  2851. box-sizing:border-box;
  2852. width:100%;
  2853. }
  2854. #u35767_text {
  2855. border-width:0px;
  2856. white-space:nowrap;
  2857. text-transform:none;
  2858. }
  2859. #u35768 {
  2860. border-width:0px;
  2861. position:absolute;
  2862. left:0px;
  2863. top:0px;
  2864. width:0px;
  2865. height:0px;
  2866. }
  2867. #u35769_div {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:0px;
  2871. top:0px;
  2872. width:160px;
  2873. height:65px;
  2874. background:inherit;
  2875. background-color:rgba(255, 255, 255, 1);
  2876. box-sizing:border-box;
  2877. border-width:2px;
  2878. border-style:solid;
  2879. border-color:rgba(121, 121, 121, 1);
  2880. border-radius:0px;
  2881. -moz-box-shadow:none;
  2882. -webkit-box-shadow:none;
  2883. box-shadow:none;
  2884. }
  2885. #u35769 {
  2886. border-width:0px;
  2887. position:absolute;
  2888. left:425px;
  2889. top:147px;
  2890. width:160px;
  2891. height:65px;
  2892. display:flex;
  2893. }
  2894. #u35769 .text {
  2895. position:absolute;
  2896. align-self:center;
  2897. padding:2px 2px 2px 2px;
  2898. box-sizing:border-box;
  2899. width:100%;
  2900. }
  2901. #u35769_text {
  2902. border-width:0px;
  2903. word-wrap:break-word;
  2904. text-transform:none;
  2905. visibility:hidden;
  2906. }
  2907. #u35770_img {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:0px;
  2911. top:0px;
  2912. width:52px;
  2913. height:51px;
  2914. }
  2915. #u35770 {
  2916. border-width:0px;
  2917. position:absolute;
  2918. left:430px;
  2919. top:154px;
  2920. width:52px;
  2921. height:51px;
  2922. display:flex;
  2923. }
  2924. #u35770 .text {
  2925. position:absolute;
  2926. align-self:center;
  2927. padding:2px 2px 2px 2px;
  2928. box-sizing:border-box;
  2929. width:100%;
  2930. }
  2931. #u35770_text {
  2932. border-width:0px;
  2933. word-wrap:break-word;
  2934. text-transform:none;
  2935. visibility:hidden;
  2936. }
  2937. #u35771_div {
  2938. border-width:0px;
  2939. position:absolute;
  2940. left:0px;
  2941. top:0px;
  2942. width:69px;
  2943. height:34px;
  2944. background:inherit;
  2945. background-color:rgba(255, 255, 255, 1);
  2946. border:none;
  2947. border-left:0px;
  2948. border-top:0px;
  2949. border-right:0px;
  2950. border-radius:0px;
  2951. border-bottom-right-radius:0px;
  2952. border-bottom-left-radius:0px;
  2953. -moz-box-shadow:none;
  2954. -webkit-box-shadow:none;
  2955. box-shadow:none;
  2956. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2957. font-weight:500;
  2958. font-style:normal;
  2959. font-size:14px;
  2960. }
  2961. #u35771 {
  2962. border-width:0px;
  2963. position:absolute;
  2964. left:511px;
  2965. top:150px;
  2966. width:69px;
  2967. height:34px;
  2968. display:flex;
  2969. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2970. font-weight:500;
  2971. font-style:normal;
  2972. font-size:14px;
  2973. }
  2974. #u35771 .text {
  2975. position:absolute;
  2976. align-self:center;
  2977. padding:0px 0px 0px 0px;
  2978. box-sizing:border-box;
  2979. width:100%;
  2980. }
  2981. #u35771_text {
  2982. border-width:0px;
  2983. word-wrap:break-word;
  2984. text-transform:none;
  2985. }
  2986. #u35772_img {
  2987. border-width:0px;
  2988. position:absolute;
  2989. left:0px;
  2990. top:0px;
  2991. width:21px;
  2992. height:21px;
  2993. }
  2994. #u35772 {
  2995. border-width:0px;
  2996. position:absolute;
  2997. left:487px;
  2998. top:157px;
  2999. width:21px;
  3000. height:21px;
  3001. display:flex;
  3002. }
  3003. #u35772 .text {
  3004. position:absolute;
  3005. align-self:center;
  3006. padding:2px 2px 2px 2px;
  3007. box-sizing:border-box;
  3008. width:100%;
  3009. }
  3010. #u35772_text {
  3011. border-width:0px;
  3012. word-wrap:break-word;
  3013. text-transform:none;
  3014. visibility:hidden;
  3015. }
  3016. #u35773_div {
  3017. border-width:0px;
  3018. position:absolute;
  3019. left:0px;
  3020. top:0px;
  3021. width:60px;
  3022. height:22px;
  3023. background:inherit;
  3024. background-color:rgba(255, 255, 255, 1);
  3025. border:none;
  3026. border-left:0px;
  3027. border-top:0px;
  3028. border-right:0px;
  3029. border-radius:0px;
  3030. border-bottom-right-radius:0px;
  3031. border-bottom-left-radius:0px;
  3032. -moz-box-shadow:none;
  3033. -webkit-box-shadow:none;
  3034. box-shadow:none;
  3035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3036. font-weight:400;
  3037. font-style:normal;
  3038. font-size:8px;
  3039. }
  3040. #u35773 {
  3041. border-width:0px;
  3042. position:absolute;
  3043. left:511px;
  3044. top:183px;
  3045. width:60px;
  3046. height:22px;
  3047. display:flex;
  3048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3049. font-weight:400;
  3050. font-style:normal;
  3051. font-size:8px;
  3052. }
  3053. #u35773 .text {
  3054. position:absolute;
  3055. align-self:center;
  3056. padding:0px 0px 0px 0px;
  3057. box-sizing:border-box;
  3058. width:100%;
  3059. }
  3060. #u35773_text {
  3061. border-width:0px;
  3062. white-space:nowrap;
  3063. text-transform:none;
  3064. }
  3065. #u35774_div {
  3066. border-width:0px;
  3067. position:absolute;
  3068. left:0px;
  3069. top:0px;
  3070. width:44px;
  3071. height:50px;
  3072. background:inherit;
  3073. background-color:rgba(255, 255, 255, 0);
  3074. border:none;
  3075. border-left:0px;
  3076. border-top:0px;
  3077. border-right:0px;
  3078. border-radius:0px;
  3079. border-bottom-right-radius:0px;
  3080. border-bottom-left-radius:0px;
  3081. -moz-box-shadow:none;
  3082. -webkit-box-shadow:none;
  3083. box-shadow:none;
  3084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3085. font-weight:400;
  3086. font-style:normal;
  3087. font-size:18px;
  3088. text-align:center;
  3089. }
  3090. #u35774 {
  3091. border-width:0px;
  3092. position:absolute;
  3093. left:296px;
  3094. top:212px;
  3095. width:44px;
  3096. height:50px;
  3097. display:flex;
  3098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3099. font-weight:400;
  3100. font-style:normal;
  3101. font-size:18px;
  3102. text-align:center;
  3103. }
  3104. #u35774 .text {
  3105. position:absolute;
  3106. align-self:center;
  3107. padding:0px 0px 0px 0px;
  3108. box-sizing:border-box;
  3109. width:100%;
  3110. }
  3111. #u35774_text {
  3112. border-width:0px;
  3113. white-space:nowrap;
  3114. text-transform:none;
  3115. }
  3116. #u35775_div {
  3117. border-width:0px;
  3118. position:absolute;
  3119. left:0px;
  3120. top:0px;
  3121. width:48px;
  3122. height:50px;
  3123. background:inherit;
  3124. background-color:rgba(255, 255, 255, 0);
  3125. border:none;
  3126. border-left:0px;
  3127. border-top:0px;
  3128. border-right:0px;
  3129. border-radius:0px;
  3130. border-bottom-right-radius:0px;
  3131. border-bottom-left-radius:0px;
  3132. -moz-box-shadow:none;
  3133. -webkit-box-shadow:none;
  3134. box-shadow:none;
  3135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3136. font-weight:400;
  3137. font-style:normal;
  3138. font-size:18px;
  3139. text-align:center;
  3140. }
  3141. #u35775 {
  3142. border-width:0px;
  3143. position:absolute;
  3144. left:481px;
  3145. top:212px;
  3146. width:48px;
  3147. height:50px;
  3148. display:flex;
  3149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3150. font-weight:400;
  3151. font-style:normal;
  3152. font-size:18px;
  3153. text-align:center;
  3154. }
  3155. #u35775 .text {
  3156. position:absolute;
  3157. align-self:center;
  3158. padding:0px 0px 0px 0px;
  3159. box-sizing:border-box;
  3160. width:100%;
  3161. }
  3162. #u35775_text {
  3163. border-width:0px;
  3164. white-space:nowrap;
  3165. text-transform:none;
  3166. }
  3167. #u35776 {
  3168. border-width:0px;
  3169. position:absolute;
  3170. left:0px;
  3171. top:0px;
  3172. width:0px;
  3173. height:0px;
  3174. }
  3175. #u35777_div {
  3176. border-width:0px;
  3177. position:absolute;
  3178. left:0px;
  3179. top:0px;
  3180. width:160px;
  3181. height:65px;
  3182. background:inherit;
  3183. background-color:rgba(255, 255, 255, 1);
  3184. box-sizing:border-box;
  3185. border-width:2px;
  3186. border-style:solid;
  3187. border-color:rgba(121, 121, 121, 1);
  3188. border-radius:0px;
  3189. -moz-box-shadow:none;
  3190. -webkit-box-shadow:none;
  3191. box-shadow:none;
  3192. }
  3193. #u35777 {
  3194. border-width:0px;
  3195. position:absolute;
  3196. left:245px;
  3197. top:262px;
  3198. width:160px;
  3199. height:65px;
  3200. display:flex;
  3201. }
  3202. #u35777 .text {
  3203. position:absolute;
  3204. align-self:center;
  3205. padding:2px 2px 2px 2px;
  3206. box-sizing:border-box;
  3207. width:100%;
  3208. }
  3209. #u35777_text {
  3210. border-width:0px;
  3211. word-wrap:break-word;
  3212. text-transform:none;
  3213. visibility:hidden;
  3214. }
  3215. #u35778_img {
  3216. border-width:0px;
  3217. position:absolute;
  3218. left:0px;
  3219. top:0px;
  3220. width:52px;
  3221. height:51px;
  3222. }
  3223. #u35778 {
  3224. border-width:0px;
  3225. position:absolute;
  3226. left:250px;
  3227. top:269px;
  3228. width:52px;
  3229. height:51px;
  3230. display:flex;
  3231. }
  3232. #u35778 .text {
  3233. position:absolute;
  3234. align-self:center;
  3235. padding:2px 2px 2px 2px;
  3236. box-sizing:border-box;
  3237. width:100%;
  3238. }
  3239. #u35778_text {
  3240. border-width:0px;
  3241. word-wrap:break-word;
  3242. text-transform:none;
  3243. visibility:hidden;
  3244. }
  3245. #u35779_div {
  3246. border-width:0px;
  3247. position:absolute;
  3248. left:0px;
  3249. top:0px;
  3250. width:60px;
  3251. height:45px;
  3252. background:inherit;
  3253. background-color:rgba(255, 255, 255, 1);
  3254. border:none;
  3255. border-left:0px;
  3256. border-top:0px;
  3257. border-right:0px;
  3258. border-radius:0px;
  3259. border-bottom-right-radius:0px;
  3260. border-bottom-left-radius:0px;
  3261. -moz-box-shadow:none;
  3262. -webkit-box-shadow:none;
  3263. box-shadow:none;
  3264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3265. font-weight:400;
  3266. font-style:normal;
  3267. font-size:8px;
  3268. line-height:15px;
  3269. }
  3270. #u35779 {
  3271. border-width:0px;
  3272. position:absolute;
  3273. left:331px;
  3274. top:272px;
  3275. width:60px;
  3276. height:45px;
  3277. display:flex;
  3278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3279. font-weight:400;
  3280. font-style:normal;
  3281. font-size:8px;
  3282. line-height:15px;
  3283. }
  3284. #u35779 .text {
  3285. position:absolute;
  3286. align-self:center;
  3287. padding:0px 0px 0px 0px;
  3288. box-sizing:border-box;
  3289. width:100%;
  3290. }
  3291. #u35779_text {
  3292. border-width:0px;
  3293. white-space:nowrap;
  3294. text-transform:none;
  3295. }
  3296. #u35780_div {
  3297. border-width:0px;
  3298. position:absolute;
  3299. left:0px;
  3300. top:0px;
  3301. width:48px;
  3302. height:50px;
  3303. background:inherit;
  3304. background-color:rgba(255, 255, 255, 0);
  3305. border:none;
  3306. border-left:0px;
  3307. border-top:0px;
  3308. border-right:0px;
  3309. border-radius:0px;
  3310. border-bottom-right-radius:0px;
  3311. border-bottom-left-radius:0px;
  3312. -moz-box-shadow:none;
  3313. -webkit-box-shadow:none;
  3314. box-shadow:none;
  3315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3316. font-weight:400;
  3317. font-style:normal;
  3318. font-size:18px;
  3319. text-align:center;
  3320. }
  3321. #u35780 {
  3322. border-width:0px;
  3323. position:absolute;
  3324. left:294px;
  3325. top:327px;
  3326. width:48px;
  3327. height:50px;
  3328. display:flex;
  3329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3330. font-weight:400;
  3331. font-style:normal;
  3332. font-size:18px;
  3333. text-align:center;
  3334. }
  3335. #u35780 .text {
  3336. position:absolute;
  3337. align-self:center;
  3338. padding:0px 0px 0px 0px;
  3339. box-sizing:border-box;
  3340. width:100%;
  3341. }
  3342. #u35780_text {
  3343. border-width:0px;
  3344. white-space:nowrap;
  3345. text-transform:none;
  3346. }
  3347. #u35781_div {
  3348. border-width:0px;
  3349. position:absolute;
  3350. left:0px;
  3351. top:0px;
  3352. width:48px;
  3353. height:50px;
  3354. background:inherit;
  3355. background-color:rgba(255, 255, 255, 0);
  3356. border:none;
  3357. border-left:0px;
  3358. border-top:0px;
  3359. border-right:0px;
  3360. border-radius:0px;
  3361. border-bottom-right-radius:0px;
  3362. border-bottom-left-radius:0px;
  3363. -moz-box-shadow:none;
  3364. -webkit-box-shadow:none;
  3365. box-shadow:none;
  3366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3367. font-weight:400;
  3368. font-style:normal;
  3369. font-size:18px;
  3370. text-align:center;
  3371. }
  3372. #u35781 {
  3373. border-width:0px;
  3374. position:absolute;
  3375. left:481px;
  3376. top:327px;
  3377. width:48px;
  3378. height:50px;
  3379. display:flex;
  3380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3381. font-weight:400;
  3382. font-style:normal;
  3383. font-size:18px;
  3384. text-align:center;
  3385. }
  3386. #u35781 .text {
  3387. position:absolute;
  3388. align-self:center;
  3389. padding:0px 0px 0px 0px;
  3390. box-sizing:border-box;
  3391. width:100%;
  3392. }
  3393. #u35781_text {
  3394. border-width:0px;
  3395. white-space:nowrap;
  3396. text-transform:none;
  3397. }
  3398. #u35782 {
  3399. border-width:0px;
  3400. position:absolute;
  3401. left:0px;
  3402. top:0px;
  3403. width:0px;
  3404. height:0px;
  3405. }
  3406. #u35783_div {
  3407. border-width:0px;
  3408. position:absolute;
  3409. left:0px;
  3410. top:0px;
  3411. width:160px;
  3412. height:65px;
  3413. background:inherit;
  3414. background-color:rgba(255, 255, 255, 1);
  3415. box-sizing:border-box;
  3416. border-width:2px;
  3417. border-style:solid;
  3418. border-color:rgba(121, 121, 121, 1);
  3419. border-radius:0px;
  3420. -moz-box-shadow:none;
  3421. -webkit-box-shadow:none;
  3422. box-shadow:none;
  3423. }
  3424. #u35783 {
  3425. border-width:0px;
  3426. position:absolute;
  3427. left:425px;
  3428. top:262px;
  3429. width:160px;
  3430. height:65px;
  3431. display:flex;
  3432. }
  3433. #u35783 .text {
  3434. position:absolute;
  3435. align-self:center;
  3436. padding:2px 2px 2px 2px;
  3437. box-sizing:border-box;
  3438. width:100%;
  3439. }
  3440. #u35783_text {
  3441. border-width:0px;
  3442. word-wrap:break-word;
  3443. text-transform:none;
  3444. visibility:hidden;
  3445. }
  3446. #u35784_img {
  3447. border-width:0px;
  3448. position:absolute;
  3449. left:0px;
  3450. top:0px;
  3451. width:52px;
  3452. height:51px;
  3453. }
  3454. #u35784 {
  3455. border-width:0px;
  3456. position:absolute;
  3457. left:430px;
  3458. top:269px;
  3459. width:52px;
  3460. height:51px;
  3461. display:flex;
  3462. }
  3463. #u35784 .text {
  3464. position:absolute;
  3465. align-self:center;
  3466. padding:2px 2px 2px 2px;
  3467. box-sizing:border-box;
  3468. width:100%;
  3469. }
  3470. #u35784_text {
  3471. border-width:0px;
  3472. word-wrap:break-word;
  3473. text-transform:none;
  3474. visibility:hidden;
  3475. }
  3476. #u35785_div {
  3477. border-width:0px;
  3478. position:absolute;
  3479. left:0px;
  3480. top:0px;
  3481. width:60px;
  3482. height:56px;
  3483. background:inherit;
  3484. background-color:rgba(255, 255, 255, 1);
  3485. border:none;
  3486. border-left:0px;
  3487. border-top:0px;
  3488. border-right:0px;
  3489. border-radius:0px;
  3490. border-bottom-right-radius:0px;
  3491. border-bottom-left-radius:0px;
  3492. -moz-box-shadow:none;
  3493. -webkit-box-shadow:none;
  3494. box-shadow:none;
  3495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3496. font-weight:400;
  3497. font-style:normal;
  3498. font-size:8px;
  3499. line-height:14px;
  3500. }
  3501. #u35785 {
  3502. border-width:0px;
  3503. position:absolute;
  3504. left:511px;
  3505. top:266px;
  3506. width:60px;
  3507. height:56px;
  3508. display:flex;
  3509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3510. font-weight:400;
  3511. font-style:normal;
  3512. font-size:8px;
  3513. line-height:14px;
  3514. }
  3515. #u35785 .text {
  3516. position:absolute;
  3517. align-self:center;
  3518. padding:0px 0px 0px 0px;
  3519. box-sizing:border-box;
  3520. width:100%;
  3521. }
  3522. #u35785_text {
  3523. border-width:0px;
  3524. white-space:nowrap;
  3525. text-transform:none;
  3526. }
  3527. #u35786 {
  3528. border-width:0px;
  3529. position:absolute;
  3530. left:0px;
  3531. top:0px;
  3532. width:0px;
  3533. height:0px;
  3534. }
  3535. #u35787_div {
  3536. border-width:0px;
  3537. position:absolute;
  3538. left:0px;
  3539. top:0px;
  3540. width:160px;
  3541. height:80px;
  3542. background:inherit;
  3543. background-color:rgba(255, 255, 255, 1);
  3544. box-sizing:border-box;
  3545. border-width:2px;
  3546. border-style:solid;
  3547. border-color:rgba(121, 121, 121, 1);
  3548. border-radius:0px;
  3549. -moz-box-shadow:none;
  3550. -webkit-box-shadow:none;
  3551. box-shadow:none;
  3552. }
  3553. #u35787 {
  3554. border-width:0px;
  3555. position:absolute;
  3556. left:245px;
  3557. top:377px;
  3558. width:160px;
  3559. height:80px;
  3560. display:flex;
  3561. }
  3562. #u35787 .text {
  3563. position:absolute;
  3564. align-self:center;
  3565. padding:2px 2px 2px 2px;
  3566. box-sizing:border-box;
  3567. width:100%;
  3568. }
  3569. #u35787_text {
  3570. border-width:0px;
  3571. word-wrap:break-word;
  3572. text-transform:none;
  3573. visibility:hidden;
  3574. }
  3575. #u35788_img {
  3576. border-width:0px;
  3577. position:absolute;
  3578. left:0px;
  3579. top:0px;
  3580. width:52px;
  3581. height:51px;
  3582. }
  3583. #u35788 {
  3584. border-width:0px;
  3585. position:absolute;
  3586. left:250px;
  3587. top:384px;
  3588. width:52px;
  3589. height:51px;
  3590. display:flex;
  3591. }
  3592. #u35788 .text {
  3593. position:absolute;
  3594. align-self:center;
  3595. padding:2px 2px 2px 2px;
  3596. box-sizing:border-box;
  3597. width:100%;
  3598. }
  3599. #u35788_text {
  3600. border-width:0px;
  3601. word-wrap:break-word;
  3602. text-transform:none;
  3603. visibility:hidden;
  3604. }
  3605. #u35789_div {
  3606. border-width:0px;
  3607. position:absolute;
  3608. left:0px;
  3609. top:0px;
  3610. width:60px;
  3611. height:45px;
  3612. background:inherit;
  3613. background-color:rgba(255, 255, 255, 1);
  3614. border:none;
  3615. border-left:0px;
  3616. border-top:0px;
  3617. border-right:0px;
  3618. border-radius:0px;
  3619. border-bottom-right-radius:0px;
  3620. border-bottom-left-radius:0px;
  3621. -moz-box-shadow:none;
  3622. -webkit-box-shadow:none;
  3623. box-shadow:none;
  3624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3625. font-weight:400;
  3626. font-style:normal;
  3627. font-size:8px;
  3628. line-height:15px;
  3629. }
  3630. #u35789 {
  3631. border-width:0px;
  3632. position:absolute;
  3633. left:331px;
  3634. top:387px;
  3635. width:60px;
  3636. height:45px;
  3637. display:flex;
  3638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3639. font-weight:400;
  3640. font-style:normal;
  3641. font-size:8px;
  3642. line-height:15px;
  3643. }
  3644. #u35789 .text {
  3645. position:absolute;
  3646. align-self:center;
  3647. padding:0px 0px 0px 0px;
  3648. box-sizing:border-box;
  3649. width:100%;
  3650. }
  3651. #u35789_text {
  3652. border-width:0px;
  3653. white-space:nowrap;
  3654. text-transform:none;
  3655. }
  3656. #u35790_div {
  3657. border-width:0px;
  3658. position:absolute;
  3659. left:0px;
  3660. top:0px;
  3661. width:105px;
  3662. height:15px;
  3663. background:inherit;
  3664. background-color:rgba(255, 255, 255, 1);
  3665. border:none;
  3666. border-left:0px;
  3667. border-top:0px;
  3668. border-right:0px;
  3669. border-radius:0px;
  3670. border-bottom-right-radius:0px;
  3671. border-bottom-left-radius:0px;
  3672. -moz-box-shadow:none;
  3673. -webkit-box-shadow:none;
  3674. box-shadow:none;
  3675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3676. font-weight:400;
  3677. font-style:normal;
  3678. font-size:8px;
  3679. line-height:15px;
  3680. }
  3681. #u35790 {
  3682. border-width:0px;
  3683. position:absolute;
  3684. left:273px;
  3685. top:439px;
  3686. width:105px;
  3687. height:15px;
  3688. display:flex;
  3689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3690. font-weight:400;
  3691. font-style:normal;
  3692. font-size:8px;
  3693. line-height:15px;
  3694. }
  3695. #u35790 .text {
  3696. position:absolute;
  3697. align-self:center;
  3698. padding:0px 0px 0px 0px;
  3699. box-sizing:border-box;
  3700. width:100%;
  3701. }
  3702. #u35790_text {
  3703. border-width:0px;
  3704. white-space:nowrap;
  3705. text-transform:none;
  3706. }
  3707. #u35791_div {
  3708. border-width:0px;
  3709. position:absolute;
  3710. left:0px;
  3711. top:0px;
  3712. width:48px;
  3713. height:50px;
  3714. background:inherit;
  3715. background-color:rgba(255, 255, 255, 0);
  3716. border:none;
  3717. border-left:0px;
  3718. border-top:0px;
  3719. border-right:0px;
  3720. border-radius:0px;
  3721. border-bottom-right-radius:0px;
  3722. border-bottom-left-radius:0px;
  3723. -moz-box-shadow:none;
  3724. -webkit-box-shadow:none;
  3725. box-shadow:none;
  3726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3727. font-weight:400;
  3728. font-style:normal;
  3729. font-size:18px;
  3730. text-align:center;
  3731. }
  3732. #u35791 {
  3733. border-width:0px;
  3734. position:absolute;
  3735. left:294px;
  3736. top:457px;
  3737. width:48px;
  3738. height:50px;
  3739. display:flex;
  3740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3741. font-weight:400;
  3742. font-style:normal;
  3743. font-size:18px;
  3744. text-align:center;
  3745. }
  3746. #u35791 .text {
  3747. position:absolute;
  3748. align-self:center;
  3749. padding:0px 0px 0px 0px;
  3750. box-sizing:border-box;
  3751. width:100%;
  3752. }
  3753. #u35791_text {
  3754. border-width:0px;
  3755. white-space:nowrap;
  3756. text-transform:none;
  3757. }
  3758. #u35792_div {
  3759. border-width:0px;
  3760. position:absolute;
  3761. left:0px;
  3762. top:0px;
  3763. width:48px;
  3764. height:50px;
  3765. background:inherit;
  3766. background-color:rgba(255, 255, 255, 0);
  3767. border:none;
  3768. border-left:0px;
  3769. border-top:0px;
  3770. border-right:0px;
  3771. border-radius:0px;
  3772. border-bottom-right-radius:0px;
  3773. border-bottom-left-radius:0px;
  3774. -moz-box-shadow:none;
  3775. -webkit-box-shadow:none;
  3776. box-shadow:none;
  3777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3778. font-weight:400;
  3779. font-style:normal;
  3780. font-size:18px;
  3781. text-align:center;
  3782. }
  3783. #u35792 {
  3784. border-width:0px;
  3785. position:absolute;
  3786. left:481px;
  3787. top:457px;
  3788. width:48px;
  3789. height:50px;
  3790. display:flex;
  3791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3792. font-weight:400;
  3793. font-style:normal;
  3794. font-size:18px;
  3795. text-align:center;
  3796. }
  3797. #u35792 .text {
  3798. position:absolute;
  3799. align-self:center;
  3800. padding:0px 0px 0px 0px;
  3801. box-sizing:border-box;
  3802. width:100%;
  3803. }
  3804. #u35792_text {
  3805. border-width:0px;
  3806. white-space:nowrap;
  3807. text-transform:none;
  3808. }
  3809. #u35793 {
  3810. border-width:0px;
  3811. position:absolute;
  3812. left:0px;
  3813. top:0px;
  3814. width:0px;
  3815. height:0px;
  3816. }
  3817. #u35794_div {
  3818. border-width:0px;
  3819. position:absolute;
  3820. left:0px;
  3821. top:0px;
  3822. width:160px;
  3823. height:80px;
  3824. background:inherit;
  3825. background-color:rgba(255, 255, 255, 1);
  3826. box-sizing:border-box;
  3827. border-width:2px;
  3828. border-style:solid;
  3829. border-color:rgba(121, 121, 121, 1);
  3830. border-radius:0px;
  3831. -moz-box-shadow:none;
  3832. -webkit-box-shadow:none;
  3833. box-shadow:none;
  3834. }
  3835. #u35794 {
  3836. border-width:0px;
  3837. position:absolute;
  3838. left:425px;
  3839. top:377px;
  3840. width:160px;
  3841. height:80px;
  3842. display:flex;
  3843. }
  3844. #u35794 .text {
  3845. position:absolute;
  3846. align-self:center;
  3847. padding:2px 2px 2px 2px;
  3848. box-sizing:border-box;
  3849. width:100%;
  3850. }
  3851. #u35794_text {
  3852. border-width:0px;
  3853. word-wrap:break-word;
  3854. text-transform:none;
  3855. visibility:hidden;
  3856. }
  3857. #u35795_img {
  3858. border-width:0px;
  3859. position:absolute;
  3860. left:0px;
  3861. top:0px;
  3862. width:52px;
  3863. height:51px;
  3864. }
  3865. #u35795 {
  3866. border-width:0px;
  3867. position:absolute;
  3868. left:430px;
  3869. top:384px;
  3870. width:52px;
  3871. height:51px;
  3872. display:flex;
  3873. }
  3874. #u35795 .text {
  3875. position:absolute;
  3876. align-self:center;
  3877. padding:2px 2px 2px 2px;
  3878. box-sizing:border-box;
  3879. width:100%;
  3880. }
  3881. #u35795_text {
  3882. border-width:0px;
  3883. word-wrap:break-word;
  3884. text-transform:none;
  3885. visibility:hidden;
  3886. }
  3887. #u35796_div {
  3888. border-width:0px;
  3889. position:absolute;
  3890. left:0px;
  3891. top:0px;
  3892. width:60px;
  3893. height:56px;
  3894. background:inherit;
  3895. background-color:rgba(255, 255, 255, 1);
  3896. border:none;
  3897. border-left:0px;
  3898. border-top:0px;
  3899. border-right:0px;
  3900. border-radius:0px;
  3901. border-bottom-right-radius:0px;
  3902. border-bottom-left-radius:0px;
  3903. -moz-box-shadow:none;
  3904. -webkit-box-shadow:none;
  3905. box-shadow:none;
  3906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3907. font-weight:400;
  3908. font-style:normal;
  3909. font-size:8px;
  3910. line-height:14px;
  3911. }
  3912. #u35796 {
  3913. border-width:0px;
  3914. position:absolute;
  3915. left:511px;
  3916. top:381px;
  3917. width:60px;
  3918. height:56px;
  3919. display:flex;
  3920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3921. font-weight:400;
  3922. font-style:normal;
  3923. font-size:8px;
  3924. line-height:14px;
  3925. }
  3926. #u35796 .text {
  3927. position:absolute;
  3928. align-self:center;
  3929. padding:0px 0px 0px 0px;
  3930. box-sizing:border-box;
  3931. width:100%;
  3932. }
  3933. #u35796_text {
  3934. border-width:0px;
  3935. white-space:nowrap;
  3936. text-transform:none;
  3937. }
  3938. #u35797_div {
  3939. border-width:0px;
  3940. position:absolute;
  3941. left:0px;
  3942. top:0px;
  3943. width:72px;
  3944. height:15px;
  3945. background:inherit;
  3946. background-color:rgba(255, 255, 255, 1);
  3947. border:none;
  3948. border-left:0px;
  3949. border-top:0px;
  3950. border-right:0px;
  3951. border-radius:0px;
  3952. border-bottom-right-radius:0px;
  3953. border-bottom-left-radius:0px;
  3954. -moz-box-shadow:none;
  3955. -webkit-box-shadow:none;
  3956. box-shadow:none;
  3957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3958. font-weight:400;
  3959. font-style:normal;
  3960. font-size:8px;
  3961. line-height:15px;
  3962. }
  3963. #u35797 {
  3964. border-width:0px;
  3965. position:absolute;
  3966. left:469px;
  3967. top:437px;
  3968. width:72px;
  3969. height:15px;
  3970. display:flex;
  3971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3972. font-weight:400;
  3973. font-style:normal;
  3974. font-size:8px;
  3975. line-height:15px;
  3976. }
  3977. #u35797 .text {
  3978. position:absolute;
  3979. align-self:center;
  3980. padding:0px 0px 0px 0px;
  3981. box-sizing:border-box;
  3982. width:100%;
  3983. }
  3984. #u35797_text {
  3985. border-width:0px;
  3986. white-space:nowrap;
  3987. text-transform:none;
  3988. }
  3989. #u35798 {
  3990. border-width:0px;
  3991. position:absolute;
  3992. left:0px;
  3993. top:0px;
  3994. width:0px;
  3995. height:0px;
  3996. }
  3997. #u35799_div {
  3998. border-width:0px;
  3999. position:absolute;
  4000. left:0px;
  4001. top:0px;
  4002. width:160px;
  4003. height:80px;
  4004. background:inherit;
  4005. background-color:rgba(255, 255, 255, 1);
  4006. box-sizing:border-box;
  4007. border-width:2px;
  4008. border-style:solid;
  4009. border-color:rgba(121, 121, 121, 1);
  4010. border-radius:0px;
  4011. -moz-box-shadow:none;
  4012. -webkit-box-shadow:none;
  4013. box-shadow:none;
  4014. }
  4015. #u35799 {
  4016. border-width:0px;
  4017. position:absolute;
  4018. left:245px;
  4019. top:507px;
  4020. width:160px;
  4021. height:80px;
  4022. display:flex;
  4023. }
  4024. #u35799 .text {
  4025. position:absolute;
  4026. align-self:center;
  4027. padding:2px 2px 2px 2px;
  4028. box-sizing:border-box;
  4029. width:100%;
  4030. }
  4031. #u35799_text {
  4032. border-width:0px;
  4033. word-wrap:break-word;
  4034. text-transform:none;
  4035. visibility:hidden;
  4036. }
  4037. #u35800_img {
  4038. border-width:0px;
  4039. position:absolute;
  4040. left:0px;
  4041. top:0px;
  4042. width:52px;
  4043. height:51px;
  4044. }
  4045. #u35800 {
  4046. border-width:0px;
  4047. position:absolute;
  4048. left:250px;
  4049. top:532px;
  4050. width:52px;
  4051. height:51px;
  4052. display:flex;
  4053. }
  4054. #u35800 .text {
  4055. position:absolute;
  4056. align-self:center;
  4057. padding:2px 2px 2px 2px;
  4058. box-sizing:border-box;
  4059. width:100%;
  4060. }
  4061. #u35800_text {
  4062. border-width:0px;
  4063. word-wrap:break-word;
  4064. text-transform:none;
  4065. visibility:hidden;
  4066. }
  4067. #u35801_div {
  4068. border-width:0px;
  4069. position:absolute;
  4070. left:0px;
  4071. top:0px;
  4072. width:60px;
  4073. height:45px;
  4074. background:inherit;
  4075. background-color:rgba(255, 255, 255, 1);
  4076. border:none;
  4077. border-left:0px;
  4078. border-top:0px;
  4079. border-right:0px;
  4080. border-radius:0px;
  4081. border-bottom-right-radius:0px;
  4082. border-bottom-left-radius:0px;
  4083. -moz-box-shadow:none;
  4084. -webkit-box-shadow:none;
  4085. box-shadow:none;
  4086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4087. font-weight:400;
  4088. font-style:normal;
  4089. font-size:8px;
  4090. line-height:15px;
  4091. }
  4092. #u35801 {
  4093. border-width:0px;
  4094. position:absolute;
  4095. left:331px;
  4096. top:535px;
  4097. width:60px;
  4098. height:45px;
  4099. display:flex;
  4100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4101. font-weight:400;
  4102. font-style:normal;
  4103. font-size:8px;
  4104. line-height:15px;
  4105. }
  4106. #u35801 .text {
  4107. position:absolute;
  4108. align-self:center;
  4109. padding:0px 0px 0px 0px;
  4110. box-sizing:border-box;
  4111. width:100%;
  4112. }
  4113. #u35801_text {
  4114. border-width:0px;
  4115. white-space:nowrap;
  4116. text-transform:none;
  4117. }
  4118. #u35802_div {
  4119. border-width:0px;
  4120. position:absolute;
  4121. left:0px;
  4122. top:0px;
  4123. width:156px;
  4124. height:15px;
  4125. background:inherit;
  4126. background-color:rgba(255, 255, 255, 1);
  4127. box-sizing:border-box;
  4128. border-width:1px;
  4129. border-style:solid;
  4130. border-color:rgba(215, 215, 215, 1);
  4131. border-left:0px;
  4132. border-top:0px;
  4133. border-right:0px;
  4134. border-radius:0px;
  4135. border-bottom-right-radius:0px;
  4136. border-bottom-left-radius:0px;
  4137. -moz-box-shadow:none;
  4138. -webkit-box-shadow:none;
  4139. box-shadow:none;
  4140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4141. font-weight:400;
  4142. font-style:normal;
  4143. font-size:8px;
  4144. text-align:center;
  4145. line-height:15px;
  4146. }
  4147. #u35802 {
  4148. border-width:0px;
  4149. position:absolute;
  4150. left:247px;
  4151. top:511px;
  4152. width:156px;
  4153. height:15px;
  4154. display:flex;
  4155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4156. font-weight:400;
  4157. font-style:normal;
  4158. font-size:8px;
  4159. text-align:center;
  4160. line-height:15px;
  4161. }
  4162. #u35802 .text {
  4163. position:absolute;
  4164. align-self:center;
  4165. padding:0px 0px 0px 0px;
  4166. box-sizing:border-box;
  4167. width:100%;
  4168. }
  4169. #u35802_text {
  4170. border-width:0px;
  4171. word-wrap:break-word;
  4172. text-transform:none;
  4173. }
  4174. #u35803_div {
  4175. border-width:0px;
  4176. position:absolute;
  4177. left:0px;
  4178. top:0px;
  4179. width:47px;
  4180. height:50px;
  4181. background:inherit;
  4182. background-color:rgba(255, 255, 255, 0);
  4183. border:none;
  4184. border-left:0px;
  4185. border-top:0px;
  4186. border-right:0px;
  4187. border-radius:0px;
  4188. border-bottom-right-radius:0px;
  4189. border-bottom-left-radius:0px;
  4190. -moz-box-shadow:none;
  4191. -webkit-box-shadow:none;
  4192. box-shadow:none;
  4193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4194. font-weight:400;
  4195. font-style:normal;
  4196. font-size:18px;
  4197. text-align:center;
  4198. }
  4199. #u35803 {
  4200. border-width:0px;
  4201. position:absolute;
  4202. left:295px;
  4203. top:587px;
  4204. width:47px;
  4205. height:50px;
  4206. display:flex;
  4207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4208. font-weight:400;
  4209. font-style:normal;
  4210. font-size:18px;
  4211. text-align:center;
  4212. }
  4213. #u35803 .text {
  4214. position:absolute;
  4215. align-self:center;
  4216. padding:0px 0px 0px 0px;
  4217. box-sizing:border-box;
  4218. width:100%;
  4219. }
  4220. #u35803_text {
  4221. border-width:0px;
  4222. white-space:nowrap;
  4223. text-transform:none;
  4224. }
  4225. #u35804_div {
  4226. border-width:0px;
  4227. position:absolute;
  4228. left:0px;
  4229. top:0px;
  4230. width:48px;
  4231. height:50px;
  4232. background:inherit;
  4233. background-color:rgba(255, 255, 255, 0);
  4234. border:none;
  4235. border-left:0px;
  4236. border-top:0px;
  4237. border-right:0px;
  4238. border-radius:0px;
  4239. border-bottom-right-radius:0px;
  4240. border-bottom-left-radius:0px;
  4241. -moz-box-shadow:none;
  4242. -webkit-box-shadow:none;
  4243. box-shadow:none;
  4244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4245. font-weight:400;
  4246. font-style:normal;
  4247. font-size:18px;
  4248. text-align:center;
  4249. }
  4250. #u35804 {
  4251. border-width:0px;
  4252. position:absolute;
  4253. left:481px;
  4254. top:587px;
  4255. width:48px;
  4256. height:50px;
  4257. display:flex;
  4258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4259. font-weight:400;
  4260. font-style:normal;
  4261. font-size:18px;
  4262. text-align:center;
  4263. }
  4264. #u35804 .text {
  4265. position:absolute;
  4266. align-self:center;
  4267. padding:0px 0px 0px 0px;
  4268. box-sizing:border-box;
  4269. width:100%;
  4270. }
  4271. #u35804_text {
  4272. border-width:0px;
  4273. white-space:nowrap;
  4274. text-transform:none;
  4275. }
  4276. #u35805 {
  4277. border-width:0px;
  4278. position:absolute;
  4279. left:0px;
  4280. top:0px;
  4281. width:0px;
  4282. height:0px;
  4283. }
  4284. #u35806_div {
  4285. border-width:0px;
  4286. position:absolute;
  4287. left:0px;
  4288. top:0px;
  4289. width:160px;
  4290. height:80px;
  4291. background:inherit;
  4292. background-color:rgba(255, 255, 255, 1);
  4293. box-sizing:border-box;
  4294. border-width:2px;
  4295. border-style:solid;
  4296. border-color:rgba(121, 121, 121, 1);
  4297. border-radius:0px;
  4298. -moz-box-shadow:none;
  4299. -webkit-box-shadow:none;
  4300. box-shadow:none;
  4301. }
  4302. #u35806 {
  4303. border-width:0px;
  4304. position:absolute;
  4305. left:425px;
  4306. top:507px;
  4307. width:160px;
  4308. height:80px;
  4309. display:flex;
  4310. }
  4311. #u35806 .text {
  4312. position:absolute;
  4313. align-self:center;
  4314. padding:2px 2px 2px 2px;
  4315. box-sizing:border-box;
  4316. width:100%;
  4317. }
  4318. #u35806_text {
  4319. border-width:0px;
  4320. word-wrap:break-word;
  4321. text-transform:none;
  4322. visibility:hidden;
  4323. }
  4324. #u35807_img {
  4325. border-width:0px;
  4326. position:absolute;
  4327. left:0px;
  4328. top:0px;
  4329. width:52px;
  4330. height:51px;
  4331. }
  4332. #u35807 {
  4333. border-width:0px;
  4334. position:absolute;
  4335. left:430px;
  4336. top:532px;
  4337. width:52px;
  4338. height:51px;
  4339. display:flex;
  4340. }
  4341. #u35807 .text {
  4342. position:absolute;
  4343. align-self:center;
  4344. padding:2px 2px 2px 2px;
  4345. box-sizing:border-box;
  4346. width:100%;
  4347. }
  4348. #u35807_text {
  4349. border-width:0px;
  4350. word-wrap:break-word;
  4351. text-transform:none;
  4352. visibility:hidden;
  4353. }
  4354. #u35808_div {
  4355. border-width:0px;
  4356. position:absolute;
  4357. left:0px;
  4358. top:0px;
  4359. width:60px;
  4360. height:56px;
  4361. background:inherit;
  4362. background-color:rgba(255, 255, 255, 1);
  4363. border:none;
  4364. border-left:0px;
  4365. border-top:0px;
  4366. border-right:0px;
  4367. border-radius:0px;
  4368. border-bottom-right-radius:0px;
  4369. border-bottom-left-radius:0px;
  4370. -moz-box-shadow:none;
  4371. -webkit-box-shadow:none;
  4372. box-shadow:none;
  4373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4374. font-weight:400;
  4375. font-style:normal;
  4376. font-size:8px;
  4377. line-height:14px;
  4378. }
  4379. #u35808 {
  4380. border-width:0px;
  4381. position:absolute;
  4382. left:511px;
  4383. top:529px;
  4384. width:60px;
  4385. height:56px;
  4386. display:flex;
  4387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4388. font-weight:400;
  4389. font-style:normal;
  4390. font-size:8px;
  4391. line-height:14px;
  4392. }
  4393. #u35808 .text {
  4394. position:absolute;
  4395. align-self:center;
  4396. padding:0px 0px 0px 0px;
  4397. box-sizing:border-box;
  4398. width:100%;
  4399. }
  4400. #u35808_text {
  4401. border-width:0px;
  4402. white-space:nowrap;
  4403. text-transform:none;
  4404. }
  4405. #u35809_div {
  4406. border-width:0px;
  4407. position:absolute;
  4408. left:0px;
  4409. top:0px;
  4410. width:156px;
  4411. height:15px;
  4412. background:inherit;
  4413. background-color:rgba(255, 255, 255, 1);
  4414. box-sizing:border-box;
  4415. border-width:1px;
  4416. border-style:solid;
  4417. border-color:rgba(215, 215, 215, 1);
  4418. border-left:0px;
  4419. border-top:0px;
  4420. border-right:0px;
  4421. border-radius:0px;
  4422. border-bottom-right-radius:0px;
  4423. border-bottom-left-radius:0px;
  4424. -moz-box-shadow:none;
  4425. -webkit-box-shadow:none;
  4426. box-shadow:none;
  4427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4428. font-weight:400;
  4429. font-style:normal;
  4430. font-size:8px;
  4431. text-align:center;
  4432. line-height:15px;
  4433. }
  4434. #u35809 {
  4435. border-width:0px;
  4436. position:absolute;
  4437. left:427px;
  4438. top:511px;
  4439. width:156px;
  4440. height:15px;
  4441. display:flex;
  4442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4443. font-weight:400;
  4444. font-style:normal;
  4445. font-size:8px;
  4446. text-align:center;
  4447. line-height:15px;
  4448. }
  4449. #u35809 .text {
  4450. position:absolute;
  4451. align-self:center;
  4452. padding:0px 0px 0px 0px;
  4453. box-sizing:border-box;
  4454. width:100%;
  4455. }
  4456. #u35809_text {
  4457. border-width:0px;
  4458. word-wrap:break-word;
  4459. text-transform:none;
  4460. }
  4461. #u35810 {
  4462. border-width:0px;
  4463. position:absolute;
  4464. left:0px;
  4465. top:0px;
  4466. width:0px;
  4467. height:0px;
  4468. }
  4469. #u35811_div {
  4470. border-width:0px;
  4471. position:absolute;
  4472. left:0px;
  4473. top:0px;
  4474. width:160px;
  4475. height:80px;
  4476. background:inherit;
  4477. background-color:rgba(255, 255, 255, 1);
  4478. box-sizing:border-box;
  4479. border-width:2px;
  4480. border-style:solid;
  4481. border-color:rgba(121, 121, 121, 1);
  4482. border-radius:0px;
  4483. -moz-box-shadow:none;
  4484. -webkit-box-shadow:none;
  4485. box-shadow:none;
  4486. }
  4487. #u35811 {
  4488. border-width:0px;
  4489. position:absolute;
  4490. left:245px;
  4491. top:637px;
  4492. width:160px;
  4493. height:80px;
  4494. display:flex;
  4495. }
  4496. #u35811 .text {
  4497. position:absolute;
  4498. align-self:center;
  4499. padding:2px 2px 2px 2px;
  4500. box-sizing:border-box;
  4501. width:100%;
  4502. }
  4503. #u35811_text {
  4504. border-width:0px;
  4505. word-wrap:break-word;
  4506. text-transform:none;
  4507. visibility:hidden;
  4508. }
  4509. #u35812_img {
  4510. border-width:0px;
  4511. position:absolute;
  4512. left:0px;
  4513. top:0px;
  4514. width:52px;
  4515. height:51px;
  4516. }
  4517. #u35812 {
  4518. border-width:0px;
  4519. position:absolute;
  4520. left:299px;
  4521. top:661px;
  4522. width:52px;
  4523. height:51px;
  4524. display:flex;
  4525. }
  4526. #u35812 .text {
  4527. position:absolute;
  4528. align-self:center;
  4529. padding:2px 2px 2px 2px;
  4530. box-sizing:border-box;
  4531. width:100%;
  4532. }
  4533. #u35812_text {
  4534. border-width:0px;
  4535. word-wrap:break-word;
  4536. text-transform:none;
  4537. visibility:hidden;
  4538. }
  4539. #u35813_div {
  4540. border-width:0px;
  4541. position:absolute;
  4542. left:0px;
  4543. top:0px;
  4544. width:156px;
  4545. height:15px;
  4546. background:inherit;
  4547. background-color:rgba(255, 255, 255, 1);
  4548. border:none;
  4549. border-left:0px;
  4550. border-top:0px;
  4551. border-right:0px;
  4552. border-radius:0px;
  4553. border-bottom-right-radius:0px;
  4554. border-bottom-left-radius:0px;
  4555. -moz-box-shadow:none;
  4556. -webkit-box-shadow:none;
  4557. box-shadow:none;
  4558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4559. font-weight:400;
  4560. font-style:normal;
  4561. font-size:8px;
  4562. text-align:center;
  4563. line-height:15px;
  4564. }
  4565. #u35813 {
  4566. border-width:0px;
  4567. position:absolute;
  4568. left:247px;
  4569. top:642px;
  4570. width:156px;
  4571. height:15px;
  4572. display:flex;
  4573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4574. font-weight:400;
  4575. font-style:normal;
  4576. font-size:8px;
  4577. text-align:center;
  4578. line-height:15px;
  4579. }
  4580. #u35813 .text {
  4581. position:absolute;
  4582. align-self:center;
  4583. padding:0px 0px 0px 0px;
  4584. box-sizing:border-box;
  4585. width:100%;
  4586. }
  4587. #u35813_text {
  4588. border-width:0px;
  4589. word-wrap:break-word;
  4590. text-transform:none;
  4591. }
  4592. #u35814_div {
  4593. border-width:0px;
  4594. position:absolute;
  4595. left:0px;
  4596. top:0px;
  4597. width:48px;
  4598. height:50px;
  4599. background:inherit;
  4600. background-color:rgba(255, 255, 255, 0);
  4601. border:none;
  4602. border-left:0px;
  4603. border-top:0px;
  4604. border-right:0px;
  4605. border-radius:0px;
  4606. border-bottom-right-radius:0px;
  4607. border-bottom-left-radius:0px;
  4608. -moz-box-shadow:none;
  4609. -webkit-box-shadow:none;
  4610. box-shadow:none;
  4611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4612. font-weight:400;
  4613. font-style:normal;
  4614. font-size:18px;
  4615. text-align:center;
  4616. }
  4617. #u35814 {
  4618. border-width:0px;
  4619. position:absolute;
  4620. left:294px;
  4621. top:717px;
  4622. width:48px;
  4623. height:50px;
  4624. display:flex;
  4625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4626. font-weight:400;
  4627. font-style:normal;
  4628. font-size:18px;
  4629. text-align:center;
  4630. }
  4631. #u35814 .text {
  4632. position:absolute;
  4633. align-self:center;
  4634. padding:0px 0px 0px 0px;
  4635. box-sizing:border-box;
  4636. width:100%;
  4637. }
  4638. #u35814_text {
  4639. border-width:0px;
  4640. white-space:nowrap;
  4641. text-transform:none;
  4642. }
  4643. #u35815_div {
  4644. border-width:0px;
  4645. position:absolute;
  4646. left:0px;
  4647. top:0px;
  4648. width:55px;
  4649. height:50px;
  4650. background:inherit;
  4651. background-color:rgba(255, 255, 255, 0);
  4652. border:none;
  4653. border-left:0px;
  4654. border-top:0px;
  4655. border-right:0px;
  4656. border-radius:0px;
  4657. border-bottom-right-radius:0px;
  4658. border-bottom-left-radius:0px;
  4659. -moz-box-shadow:none;
  4660. -webkit-box-shadow:none;
  4661. box-shadow:none;
  4662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4663. font-weight:400;
  4664. font-style:normal;
  4665. font-size:18px;
  4666. text-align:center;
  4667. }
  4668. #u35815 {
  4669. border-width:0px;
  4670. position:absolute;
  4671. left:478px;
  4672. top:717px;
  4673. width:55px;
  4674. height:50px;
  4675. display:flex;
  4676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4677. font-weight:400;
  4678. font-style:normal;
  4679. font-size:18px;
  4680. text-align:center;
  4681. }
  4682. #u35815 .text {
  4683. position:absolute;
  4684. align-self:center;
  4685. padding:0px 0px 0px 0px;
  4686. box-sizing:border-box;
  4687. width:100%;
  4688. }
  4689. #u35815_text {
  4690. border-width:0px;
  4691. white-space:nowrap;
  4692. text-transform:none;
  4693. }
  4694. #u35816 {
  4695. border-width:0px;
  4696. position:absolute;
  4697. left:0px;
  4698. top:0px;
  4699. width:0px;
  4700. height:0px;
  4701. }
  4702. #u35817_div {
  4703. border-width:0px;
  4704. position:absolute;
  4705. left:0px;
  4706. top:0px;
  4707. width:160px;
  4708. height:80px;
  4709. background:inherit;
  4710. background-color:rgba(255, 255, 255, 1);
  4711. box-sizing:border-box;
  4712. border-width:2px;
  4713. border-style:solid;
  4714. border-color:rgba(121, 121, 121, 1);
  4715. border-radius:0px;
  4716. -moz-box-shadow:none;
  4717. -webkit-box-shadow:none;
  4718. box-shadow:none;
  4719. }
  4720. #u35817 {
  4721. border-width:0px;
  4722. position:absolute;
  4723. left:425px;
  4724. top:637px;
  4725. width:160px;
  4726. height:80px;
  4727. display:flex;
  4728. }
  4729. #u35817 .text {
  4730. position:absolute;
  4731. align-self:center;
  4732. padding:2px 2px 2px 2px;
  4733. box-sizing:border-box;
  4734. width:100%;
  4735. }
  4736. #u35817_text {
  4737. border-width:0px;
  4738. word-wrap:break-word;
  4739. text-transform:none;
  4740. visibility:hidden;
  4741. }
  4742. #u35818_img {
  4743. border-width:0px;
  4744. position:absolute;
  4745. left:0px;
  4746. top:0px;
  4747. width:52px;
  4748. height:51px;
  4749. }
  4750. #u35818 {
  4751. border-width:0px;
  4752. position:absolute;
  4753. left:479px;
  4754. top:645px;
  4755. width:52px;
  4756. height:51px;
  4757. display:flex;
  4758. }
  4759. #u35818 .text {
  4760. position:absolute;
  4761. align-self:center;
  4762. padding:2px 2px 2px 2px;
  4763. box-sizing:border-box;
  4764. width:100%;
  4765. }
  4766. #u35818_text {
  4767. border-width:0px;
  4768. word-wrap:break-word;
  4769. text-transform:none;
  4770. visibility:hidden;
  4771. }
  4772. #u35819_div {
  4773. border-width:0px;
  4774. position:absolute;
  4775. left:0px;
  4776. top:0px;
  4777. width:156px;
  4778. height:15px;
  4779. background:inherit;
  4780. background-color:rgba(255, 255, 255, 1);
  4781. border:none;
  4782. border-left:0px;
  4783. border-top:0px;
  4784. border-right:0px;
  4785. border-radius:0px;
  4786. border-bottom-right-radius:0px;
  4787. border-bottom-left-radius:0px;
  4788. -moz-box-shadow:none;
  4789. -webkit-box-shadow:none;
  4790. box-shadow:none;
  4791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4792. font-weight:400;
  4793. font-style:normal;
  4794. font-size:8px;
  4795. text-align:center;
  4796. line-height:15px;
  4797. }
  4798. #u35819 {
  4799. border-width:0px;
  4800. position:absolute;
  4801. left:427px;
  4802. top:700px;
  4803. width:156px;
  4804. height:15px;
  4805. display:flex;
  4806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4807. font-weight:400;
  4808. font-style:normal;
  4809. font-size:8px;
  4810. text-align:center;
  4811. line-height:15px;
  4812. }
  4813. #u35819 .text {
  4814. position:absolute;
  4815. align-self:center;
  4816. padding:0px 0px 0px 0px;
  4817. box-sizing:border-box;
  4818. width:100%;
  4819. }
  4820. #u35819_text {
  4821. border-width:0px;
  4822. word-wrap:break-word;
  4823. text-transform:none;
  4824. }
  4825. #u35820 {
  4826. border-width:0px;
  4827. position:absolute;
  4828. left:0px;
  4829. top:0px;
  4830. width:0px;
  4831. height:0px;
  4832. }
  4833. #u35821_div {
  4834. border-width:0px;
  4835. position:absolute;
  4836. left:0px;
  4837. top:0px;
  4838. width:160px;
  4839. height:80px;
  4840. background:inherit;
  4841. background-color:rgba(255, 255, 255, 1);
  4842. box-sizing:border-box;
  4843. border-width:2px;
  4844. border-style:solid;
  4845. border-color:rgba(121, 121, 121, 1);
  4846. border-radius:0px;
  4847. -moz-box-shadow:none;
  4848. -webkit-box-shadow:none;
  4849. box-shadow:none;
  4850. }
  4851. #u35821 {
  4852. border-width:0px;
  4853. position:absolute;
  4854. left:245px;
  4855. top:767px;
  4856. width:160px;
  4857. height:80px;
  4858. display:flex;
  4859. }
  4860. #u35821 .text {
  4861. position:absolute;
  4862. align-self:center;
  4863. padding:2px 2px 2px 2px;
  4864. box-sizing:border-box;
  4865. width:100%;
  4866. }
  4867. #u35821_text {
  4868. border-width:0px;
  4869. word-wrap:break-word;
  4870. text-transform:none;
  4871. visibility:hidden;
  4872. }
  4873. #u35822_div {
  4874. border-width:0px;
  4875. position:absolute;
  4876. left:0px;
  4877. top:0px;
  4878. width:156px;
  4879. height:45px;
  4880. background:inherit;
  4881. background-color:rgba(255, 255, 255, 1);
  4882. border:none;
  4883. border-left:0px;
  4884. border-top:0px;
  4885. border-right:0px;
  4886. border-radius:0px;
  4887. border-bottom-right-radius:0px;
  4888. border-bottom-left-radius:0px;
  4889. -moz-box-shadow:none;
  4890. -webkit-box-shadow:none;
  4891. box-shadow:none;
  4892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4893. font-weight:400;
  4894. font-style:normal;
  4895. font-size:8px;
  4896. text-align:center;
  4897. line-height:15px;
  4898. }
  4899. #u35822 {
  4900. border-width:0px;
  4901. position:absolute;
  4902. left:247px;
  4903. top:770px;
  4904. width:156px;
  4905. height:45px;
  4906. display:flex;
  4907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4908. font-weight:400;
  4909. font-style:normal;
  4910. font-size:8px;
  4911. text-align:center;
  4912. line-height:15px;
  4913. }
  4914. #u35822 .text {
  4915. position:absolute;
  4916. align-self:center;
  4917. padding:0px 0px 0px 0px;
  4918. box-sizing:border-box;
  4919. width:100%;
  4920. }
  4921. #u35822_text {
  4922. border-width:0px;
  4923. word-wrap:break-word;
  4924. text-transform:none;
  4925. }
  4926. #u35823_img {
  4927. border-width:0px;
  4928. position:absolute;
  4929. left:0px;
  4930. top:0px;
  4931. width:138px;
  4932. height:26px;
  4933. }
  4934. #u35823 {
  4935. border-width:0px;
  4936. position:absolute;
  4937. left:256px;
  4938. top:816px;
  4939. width:138px;
  4940. height:26px;
  4941. display:flex;
  4942. }
  4943. #u35823 .text {
  4944. position:absolute;
  4945. align-self:center;
  4946. padding:2px 2px 2px 2px;
  4947. box-sizing:border-box;
  4948. width:100%;
  4949. }
  4950. #u35823_text {
  4951. border-width:0px;
  4952. word-wrap:break-word;
  4953. text-transform:none;
  4954. visibility:hidden;
  4955. }
  4956. #u35824_div {
  4957. border-width:0px;
  4958. position:absolute;
  4959. left:0px;
  4960. top:0px;
  4961. width:51px;
  4962. height:50px;
  4963. background:inherit;
  4964. background-color:rgba(255, 255, 255, 0);
  4965. border:none;
  4966. border-left:0px;
  4967. border-top:0px;
  4968. border-right:0px;
  4969. border-radius:0px;
  4970. border-bottom-right-radius:0px;
  4971. border-bottom-left-radius:0px;
  4972. -moz-box-shadow:none;
  4973. -webkit-box-shadow:none;
  4974. box-shadow:none;
  4975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4976. font-weight:400;
  4977. font-style:normal;
  4978. font-size:18px;
  4979. text-align:center;
  4980. }
  4981. #u35824 {
  4982. border-width:0px;
  4983. position:absolute;
  4984. left:293px;
  4985. top:847px;
  4986. width:51px;
  4987. height:50px;
  4988. display:flex;
  4989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4990. font-weight:400;
  4991. font-style:normal;
  4992. font-size:18px;
  4993. text-align:center;
  4994. }
  4995. #u35824 .text {
  4996. position:absolute;
  4997. align-self:center;
  4998. padding:0px 0px 0px 0px;
  4999. box-sizing:border-box;
  5000. width:100%;
  5001. }
  5002. #u35824_text {
  5003. border-width:0px;
  5004. white-space:nowrap;
  5005. text-transform:none;
  5006. }
  5007. #u35825_div {
  5008. border-width:0px;
  5009. position:absolute;
  5010. left:0px;
  5011. top:0px;
  5012. width:55px;
  5013. height:50px;
  5014. background:inherit;
  5015. background-color:rgba(255, 255, 255, 0);
  5016. border:none;
  5017. border-left:0px;
  5018. border-top:0px;
  5019. border-right:0px;
  5020. border-radius:0px;
  5021. border-bottom-right-radius:0px;
  5022. border-bottom-left-radius:0px;
  5023. -moz-box-shadow:none;
  5024. -webkit-box-shadow:none;
  5025. box-shadow:none;
  5026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5027. font-weight:400;
  5028. font-style:normal;
  5029. font-size:18px;
  5030. text-align:center;
  5031. }
  5032. #u35825 {
  5033. border-width:0px;
  5034. position:absolute;
  5035. left:478px;
  5036. top:847px;
  5037. width:55px;
  5038. height:50px;
  5039. display:flex;
  5040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5041. font-weight:400;
  5042. font-style:normal;
  5043. font-size:18px;
  5044. text-align:center;
  5045. }
  5046. #u35825 .text {
  5047. position:absolute;
  5048. align-self:center;
  5049. padding:0px 0px 0px 0px;
  5050. box-sizing:border-box;
  5051. width:100%;
  5052. }
  5053. #u35825_text {
  5054. border-width:0px;
  5055. white-space:nowrap;
  5056. text-transform:none;
  5057. }
  5058. #u35826 {
  5059. border-width:0px;
  5060. position:absolute;
  5061. left:0px;
  5062. top:0px;
  5063. width:0px;
  5064. height:0px;
  5065. }
  5066. #u35827_div {
  5067. border-width:0px;
  5068. position:absolute;
  5069. left:0px;
  5070. top:0px;
  5071. width:160px;
  5072. height:80px;
  5073. background:inherit;
  5074. background-color:rgba(255, 255, 255, 1);
  5075. box-sizing:border-box;
  5076. border-width:2px;
  5077. border-style:solid;
  5078. border-color:rgba(121, 121, 121, 1);
  5079. border-radius:0px;
  5080. -moz-box-shadow:none;
  5081. -webkit-box-shadow:none;
  5082. box-shadow:none;
  5083. }
  5084. #u35827 {
  5085. border-width:0px;
  5086. position:absolute;
  5087. left:425px;
  5088. top:767px;
  5089. width:160px;
  5090. height:80px;
  5091. display:flex;
  5092. }
  5093. #u35827 .text {
  5094. position:absolute;
  5095. align-self:center;
  5096. padding:2px 2px 2px 2px;
  5097. box-sizing:border-box;
  5098. width:100%;
  5099. }
  5100. #u35827_text {
  5101. border-width:0px;
  5102. word-wrap:break-word;
  5103. text-transform:none;
  5104. visibility:hidden;
  5105. }
  5106. #u35828_div {
  5107. border-width:0px;
  5108. position:absolute;
  5109. left:0px;
  5110. top:0px;
  5111. width:156px;
  5112. height:48px;
  5113. background:inherit;
  5114. background-color:rgba(255, 255, 255, 0);
  5115. border:none;
  5116. border-left:0px;
  5117. border-top:0px;
  5118. border-right:0px;
  5119. border-radius:0px;
  5120. border-bottom-right-radius:0px;
  5121. border-bottom-left-radius:0px;
  5122. -moz-box-shadow:none;
  5123. -webkit-box-shadow:none;
  5124. box-shadow:none;
  5125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5126. font-weight:400;
  5127. font-style:normal;
  5128. font-size:8px;
  5129. text-align:center;
  5130. line-height:12px;
  5131. }
  5132. #u35828 {
  5133. border-width:0px;
  5134. position:absolute;
  5135. left:427px;
  5136. top:769px;
  5137. width:156px;
  5138. height:48px;
  5139. display:flex;
  5140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5141. font-weight:400;
  5142. font-style:normal;
  5143. font-size:8px;
  5144. text-align:center;
  5145. line-height:12px;
  5146. }
  5147. #u35828 .text {
  5148. position:absolute;
  5149. align-self:center;
  5150. padding:0px 0px 0px 0px;
  5151. box-sizing:border-box;
  5152. width:100%;
  5153. }
  5154. #u35828_text {
  5155. border-width:0px;
  5156. word-wrap:break-word;
  5157. text-transform:none;
  5158. }
  5159. #u35829_img {
  5160. border-width:0px;
  5161. position:absolute;
  5162. left:0px;
  5163. top:0px;
  5164. width:138px;
  5165. height:26px;
  5166. }
  5167. #u35829 {
  5168. border-width:0px;
  5169. position:absolute;
  5170. left:436px;
  5171. top:816px;
  5172. width:138px;
  5173. height:26px;
  5174. display:flex;
  5175. }
  5176. #u35829 .text {
  5177. position:absolute;
  5178. align-self:center;
  5179. padding:2px 2px 2px 2px;
  5180. box-sizing:border-box;
  5181. width:100%;
  5182. }
  5183. #u35829_text {
  5184. border-width:0px;
  5185. word-wrap:break-word;
  5186. text-transform:none;
  5187. visibility:hidden;
  5188. }
  5189. #u35830_div {
  5190. border-width:0px;
  5191. position:absolute;
  5192. left:0px;
  5193. top:0px;
  5194. width:55px;
  5195. height:50px;
  5196. background:inherit;
  5197. background-color:rgba(255, 255, 255, 0);
  5198. border:none;
  5199. border-left:0px;
  5200. border-top:0px;
  5201. border-right:0px;
  5202. border-radius:0px;
  5203. border-bottom-right-radius:0px;
  5204. border-bottom-left-radius:0px;
  5205. -moz-box-shadow:none;
  5206. -webkit-box-shadow:none;
  5207. box-shadow:none;
  5208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5209. font-weight:400;
  5210. font-style:normal;
  5211. font-size:18px;
  5212. text-align:center;
  5213. }
  5214. #u35830 {
  5215. border-width:0px;
  5216. position:absolute;
  5217. left:291px;
  5218. top:962px;
  5219. width:55px;
  5220. height:50px;
  5221. display:flex;
  5222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5223. font-weight:400;
  5224. font-style:normal;
  5225. font-size:18px;
  5226. text-align:center;
  5227. }
  5228. #u35830 .text {
  5229. position:absolute;
  5230. align-self:center;
  5231. padding:0px 0px 0px 0px;
  5232. box-sizing:border-box;
  5233. width:100%;
  5234. }
  5235. #u35830_text {
  5236. border-width:0px;
  5237. white-space:nowrap;
  5238. text-transform:none;
  5239. }
  5240. #u35831_div {
  5241. border-width:0px;
  5242. position:absolute;
  5243. left:0px;
  5244. top:0px;
  5245. width:55px;
  5246. height:50px;
  5247. background:inherit;
  5248. background-color:rgba(255, 255, 255, 0);
  5249. border:none;
  5250. border-left:0px;
  5251. border-top:0px;
  5252. border-right:0px;
  5253. border-radius:0px;
  5254. border-bottom-right-radius:0px;
  5255. border-bottom-left-radius:0px;
  5256. -moz-box-shadow:none;
  5257. -webkit-box-shadow:none;
  5258. box-shadow:none;
  5259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5260. font-weight:400;
  5261. font-style:normal;
  5262. font-size:18px;
  5263. text-align:center;
  5264. }
  5265. #u35831 {
  5266. border-width:0px;
  5267. position:absolute;
  5268. left:478px;
  5269. top:962px;
  5270. width:55px;
  5271. height:50px;
  5272. display:flex;
  5273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5274. font-weight:400;
  5275. font-style:normal;
  5276. font-size:18px;
  5277. text-align:center;
  5278. }
  5279. #u35831 .text {
  5280. position:absolute;
  5281. align-self:center;
  5282. padding:0px 0px 0px 0px;
  5283. box-sizing:border-box;
  5284. width:100%;
  5285. }
  5286. #u35831_text {
  5287. border-width:0px;
  5288. white-space:nowrap;
  5289. text-transform:none;
  5290. }
  5291. #u35832 {
  5292. border-width:0px;
  5293. position:absolute;
  5294. left:0px;
  5295. top:0px;
  5296. width:0px;
  5297. height:0px;
  5298. }
  5299. #u35833_div {
  5300. border-width:0px;
  5301. position:absolute;
  5302. left:0px;
  5303. top:0px;
  5304. width:160px;
  5305. height:65px;
  5306. background:inherit;
  5307. background-color:rgba(255, 255, 255, 1);
  5308. box-sizing:border-box;
  5309. border-width:2px;
  5310. border-style:solid;
  5311. border-color:rgba(121, 121, 121, 1);
  5312. border-radius:0px;
  5313. -moz-box-shadow:none;
  5314. -webkit-box-shadow:none;
  5315. box-shadow:none;
  5316. }
  5317. #u35833 {
  5318. border-width:0px;
  5319. position:absolute;
  5320. left:425px;
  5321. top:897px;
  5322. width:160px;
  5323. height:65px;
  5324. display:flex;
  5325. }
  5326. #u35833 .text {
  5327. position:absolute;
  5328. align-self:center;
  5329. padding:2px 2px 2px 2px;
  5330. box-sizing:border-box;
  5331. width:100%;
  5332. }
  5333. #u35833_text {
  5334. border-width:0px;
  5335. word-wrap:break-word;
  5336. text-transform:none;
  5337. visibility:hidden;
  5338. }
  5339. #u35834_div {
  5340. border-width:0px;
  5341. position:absolute;
  5342. left:0px;
  5343. top:0px;
  5344. width:156px;
  5345. height:12px;
  5346. background:inherit;
  5347. background-color:rgba(255, 255, 255, 0);
  5348. border:none;
  5349. border-left:0px;
  5350. border-top:0px;
  5351. border-right:0px;
  5352. border-radius:0px;
  5353. border-bottom-right-radius:0px;
  5354. border-bottom-left-radius:0px;
  5355. -moz-box-shadow:none;
  5356. -webkit-box-shadow:none;
  5357. box-shadow:none;
  5358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5359. font-weight:400;
  5360. font-style:normal;
  5361. font-size:8px;
  5362. text-align:center;
  5363. line-height:12px;
  5364. }
  5365. #u35834 {
  5366. border-width:0px;
  5367. position:absolute;
  5368. left:427px;
  5369. top:909px;
  5370. width:156px;
  5371. height:12px;
  5372. display:flex;
  5373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5374. font-weight:400;
  5375. font-style:normal;
  5376. font-size:8px;
  5377. text-align:center;
  5378. line-height:12px;
  5379. }
  5380. #u35834 .text {
  5381. position:absolute;
  5382. align-self:center;
  5383. padding:0px 0px 0px 0px;
  5384. box-sizing:border-box;
  5385. width:100%;
  5386. }
  5387. #u35834_text {
  5388. border-width:0px;
  5389. word-wrap:break-word;
  5390. text-transform:none;
  5391. }
  5392. #u35835_img {
  5393. border-width:0px;
  5394. position:absolute;
  5395. left:0px;
  5396. top:0px;
  5397. width:138px;
  5398. height:26px;
  5399. }
  5400. #u35835 {
  5401. border-width:0px;
  5402. position:absolute;
  5403. left:436px;
  5404. top:931px;
  5405. width:138px;
  5406. height:26px;
  5407. display:flex;
  5408. }
  5409. #u35835 .text {
  5410. position:absolute;
  5411. align-self:center;
  5412. padding:2px 2px 2px 2px;
  5413. box-sizing:border-box;
  5414. width:100%;
  5415. }
  5416. #u35835_text {
  5417. border-width:0px;
  5418. word-wrap:break-word;
  5419. text-transform:none;
  5420. visibility:hidden;
  5421. }
  5422. #u35836 {
  5423. border-width:0px;
  5424. position:absolute;
  5425. left:0px;
  5426. top:0px;
  5427. width:0px;
  5428. height:0px;
  5429. }
  5430. #u35837_div {
  5431. border-width:0px;
  5432. position:absolute;
  5433. left:0px;
  5434. top:0px;
  5435. width:160px;
  5436. height:65px;
  5437. background:inherit;
  5438. background-color:rgba(255, 255, 255, 1);
  5439. box-sizing:border-box;
  5440. border-width:2px;
  5441. border-style:solid;
  5442. border-color:rgba(121, 121, 121, 1);
  5443. border-radius:0px;
  5444. -moz-box-shadow:none;
  5445. -webkit-box-shadow:none;
  5446. box-shadow:none;
  5447. }
  5448. #u35837 {
  5449. border-width:0px;
  5450. position:absolute;
  5451. left:245px;
  5452. top:897px;
  5453. width:160px;
  5454. height:65px;
  5455. display:flex;
  5456. }
  5457. #u35837 .text {
  5458. position:absolute;
  5459. align-self:center;
  5460. padding:2px 2px 2px 2px;
  5461. box-sizing:border-box;
  5462. width:100%;
  5463. }
  5464. #u35837_text {
  5465. border-width:0px;
  5466. word-wrap:break-word;
  5467. text-transform:none;
  5468. visibility:hidden;
  5469. }
  5470. #u35838_img {
  5471. border-width:0px;
  5472. position:absolute;
  5473. left:0px;
  5474. top:0px;
  5475. width:52px;
  5476. height:51px;
  5477. }
  5478. #u35838 {
  5479. border-width:0px;
  5480. position:absolute;
  5481. left:250px;
  5482. top:904px;
  5483. width:52px;
  5484. height:51px;
  5485. display:flex;
  5486. }
  5487. #u35838 .text {
  5488. position:absolute;
  5489. align-self:center;
  5490. padding:2px 2px 2px 2px;
  5491. box-sizing:border-box;
  5492. width:100%;
  5493. }
  5494. #u35838_text {
  5495. border-width:0px;
  5496. word-wrap:break-word;
  5497. text-transform:none;
  5498. visibility:hidden;
  5499. }
  5500. #u35839_div {
  5501. border-width:0px;
  5502. position:absolute;
  5503. left:0px;
  5504. top:0px;
  5505. width:57px;
  5506. height:11px;
  5507. background:inherit;
  5508. background-color:rgba(255, 255, 255, 1);
  5509. border:none;
  5510. border-left:0px;
  5511. border-top:0px;
  5512. border-right:0px;
  5513. border-radius:0px;
  5514. border-bottom-right-radius:0px;
  5515. border-bottom-left-radius:0px;
  5516. -moz-box-shadow:none;
  5517. -webkit-box-shadow:none;
  5518. box-shadow:none;
  5519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5520. font-weight:400;
  5521. font-style:normal;
  5522. font-size:8px;
  5523. }
  5524. #u35839 {
  5525. border-width:0px;
  5526. position:absolute;
  5527. left:315px;
  5528. top:924px;
  5529. width:57px;
  5530. height:11px;
  5531. display:flex;
  5532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5533. font-weight:400;
  5534. font-style:normal;
  5535. font-size:8px;
  5536. }
  5537. #u35839 .text {
  5538. position:absolute;
  5539. align-self:center;
  5540. padding:0px 0px 0px 0px;
  5541. box-sizing:border-box;
  5542. width:100%;
  5543. }
  5544. #u35839_text {
  5545. border-width:0px;
  5546. white-space:nowrap;
  5547. text-transform:none;
  5548. }
  5549. #u35840_div {
  5550. border-width:0px;
  5551. position:absolute;
  5552. left:0px;
  5553. top:0px;
  5554. width:55px;
  5555. height:50px;
  5556. background:inherit;
  5557. background-color:rgba(255, 255, 255, 0);
  5558. border:none;
  5559. border-left:0px;
  5560. border-top:0px;
  5561. border-right:0px;
  5562. border-radius:0px;
  5563. border-bottom-right-radius:0px;
  5564. border-bottom-left-radius:0px;
  5565. -moz-box-shadow:none;
  5566. -webkit-box-shadow:none;
  5567. box-shadow:none;
  5568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5569. font-weight:400;
  5570. font-style:normal;
  5571. font-size:18px;
  5572. text-align:center;
  5573. }
  5574. #u35840 {
  5575. border-width:0px;
  5576. position:absolute;
  5577. left:291px;
  5578. top:1092px;
  5579. width:55px;
  5580. height:50px;
  5581. display:flex;
  5582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5583. font-weight:400;
  5584. font-style:normal;
  5585. font-size:18px;
  5586. text-align:center;
  5587. }
  5588. #u35840 .text {
  5589. position:absolute;
  5590. align-self:center;
  5591. padding:0px 0px 0px 0px;
  5592. box-sizing:border-box;
  5593. width:100%;
  5594. }
  5595. #u35840_text {
  5596. border-width:0px;
  5597. white-space:nowrap;
  5598. text-transform:none;
  5599. }
  5600. #u35841_div {
  5601. border-width:0px;
  5602. position:absolute;
  5603. left:0px;
  5604. top:0px;
  5605. width:55px;
  5606. height:50px;
  5607. background:inherit;
  5608. background-color:rgba(255, 255, 255, 0);
  5609. border:none;
  5610. border-left:0px;
  5611. border-top:0px;
  5612. border-right:0px;
  5613. border-radius:0px;
  5614. border-bottom-right-radius:0px;
  5615. border-bottom-left-radius:0px;
  5616. -moz-box-shadow:none;
  5617. -webkit-box-shadow:none;
  5618. box-shadow:none;
  5619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5620. font-weight:400;
  5621. font-style:normal;
  5622. font-size:18px;
  5623. text-align:center;
  5624. }
  5625. #u35841 {
  5626. border-width:0px;
  5627. position:absolute;
  5628. left:478px;
  5629. top:1092px;
  5630. width:55px;
  5631. height:50px;
  5632. display:flex;
  5633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5634. font-weight:400;
  5635. font-style:normal;
  5636. font-size:18px;
  5637. text-align:center;
  5638. }
  5639. #u35841 .text {
  5640. position:absolute;
  5641. align-self:center;
  5642. padding:0px 0px 0px 0px;
  5643. box-sizing:border-box;
  5644. width:100%;
  5645. }
  5646. #u35841_text {
  5647. border-width:0px;
  5648. white-space:nowrap;
  5649. text-transform:none;
  5650. }
  5651. #u35842 {
  5652. border-width:0px;
  5653. position:absolute;
  5654. left:0px;
  5655. top:0px;
  5656. width:0px;
  5657. height:0px;
  5658. }
  5659. #u35843_div {
  5660. border-width:0px;
  5661. position:absolute;
  5662. left:0px;
  5663. top:0px;
  5664. width:160px;
  5665. height:80px;
  5666. background:inherit;
  5667. background-color:rgba(255, 255, 255, 1);
  5668. box-sizing:border-box;
  5669. border-width:2px;
  5670. border-style:solid;
  5671. border-color:rgba(121, 121, 121, 1);
  5672. border-radius:0px;
  5673. -moz-box-shadow:none;
  5674. -webkit-box-shadow:none;
  5675. box-shadow:none;
  5676. }
  5677. #u35843 {
  5678. border-width:0px;
  5679. position:absolute;
  5680. left:243px;
  5681. top:1012px;
  5682. width:160px;
  5683. height:80px;
  5684. display:flex;
  5685. }
  5686. #u35843 .text {
  5687. position:absolute;
  5688. align-self:center;
  5689. padding:2px 2px 2px 2px;
  5690. box-sizing:border-box;
  5691. width:100%;
  5692. }
  5693. #u35843_text {
  5694. border-width:0px;
  5695. word-wrap:break-word;
  5696. text-transform:none;
  5697. visibility:hidden;
  5698. }
  5699. #u35844_div {
  5700. border-width:0px;
  5701. position:absolute;
  5702. left:0px;
  5703. top:0px;
  5704. width:69px;
  5705. height:34px;
  5706. background:inherit;
  5707. background-color:rgba(255, 255, 255, 1);
  5708. border:none;
  5709. border-left:0px;
  5710. border-top:0px;
  5711. border-right:0px;
  5712. border-radius:0px;
  5713. border-bottom-right-radius:0px;
  5714. border-bottom-left-radius:0px;
  5715. -moz-box-shadow:none;
  5716. -webkit-box-shadow:none;
  5717. box-shadow:none;
  5718. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5719. font-weight:500;
  5720. font-style:normal;
  5721. font-size:14px;
  5722. }
  5723. #u35844 {
  5724. border-width:0px;
  5725. position:absolute;
  5726. left:301px;
  5727. top:1015px;
  5728. width:69px;
  5729. height:34px;
  5730. display:flex;
  5731. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5732. font-weight:500;
  5733. font-style:normal;
  5734. font-size:14px;
  5735. }
  5736. #u35844 .text {
  5737. position:absolute;
  5738. align-self:center;
  5739. padding:0px 0px 0px 0px;
  5740. box-sizing:border-box;
  5741. width:100%;
  5742. }
  5743. #u35844_text {
  5744. border-width:0px;
  5745. word-wrap:break-word;
  5746. text-transform:none;
  5747. }
  5748. #u35845_img {
  5749. border-width:0px;
  5750. position:absolute;
  5751. left:0px;
  5752. top:0px;
  5753. width:21px;
  5754. height:21px;
  5755. }
  5756. #u35845 {
  5757. border-width:0px;
  5758. position:absolute;
  5759. left:274px;
  5760. top:1022px;
  5761. width:21px;
  5762. height:21px;
  5763. display:flex;
  5764. }
  5765. #u35845 .text {
  5766. position:absolute;
  5767. align-self:center;
  5768. padding:2px 2px 2px 2px;
  5769. box-sizing:border-box;
  5770. width:100%;
  5771. }
  5772. #u35845_text {
  5773. border-width:0px;
  5774. word-wrap:break-word;
  5775. text-transform:none;
  5776. visibility:hidden;
  5777. }
  5778. #u35846_div {
  5779. border-width:0px;
  5780. position:absolute;
  5781. left:0px;
  5782. top:0px;
  5783. width:60px;
  5784. height:30px;
  5785. background:inherit;
  5786. background-color:rgba(255, 255, 255, 1);
  5787. border:none;
  5788. border-left:0px;
  5789. border-top:0px;
  5790. border-right:0px;
  5791. border-radius:0px;
  5792. border-bottom-right-radius:0px;
  5793. border-bottom-left-radius:0px;
  5794. -moz-box-shadow:none;
  5795. -webkit-box-shadow:none;
  5796. box-shadow:none;
  5797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5798. font-weight:400;
  5799. font-style:normal;
  5800. font-size:8px;
  5801. line-height:15px;
  5802. }
  5803. #u35846 {
  5804. border-width:0px;
  5805. position:absolute;
  5806. left:301px;
  5807. top:1052px;
  5808. width:60px;
  5809. height:30px;
  5810. display:flex;
  5811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5812. font-weight:400;
  5813. font-style:normal;
  5814. font-size:8px;
  5815. line-height:15px;
  5816. }
  5817. #u35846 .text {
  5818. position:absolute;
  5819. align-self:center;
  5820. padding:0px 0px 0px 0px;
  5821. box-sizing:border-box;
  5822. width:100%;
  5823. }
  5824. #u35846_text {
  5825. border-width:0px;
  5826. white-space:nowrap;
  5827. text-transform:none;
  5828. }
  5829. #u35847 {
  5830. border-width:0px;
  5831. position:absolute;
  5832. left:0px;
  5833. top:0px;
  5834. width:0px;
  5835. height:0px;
  5836. }
  5837. #u35848_div {
  5838. border-width:0px;
  5839. position:absolute;
  5840. left:0px;
  5841. top:0px;
  5842. width:160px;
  5843. height:80px;
  5844. background:inherit;
  5845. background-color:rgba(255, 255, 255, 1);
  5846. box-sizing:border-box;
  5847. border-width:2px;
  5848. border-style:solid;
  5849. border-color:rgba(121, 121, 121, 1);
  5850. border-radius:0px;
  5851. -moz-box-shadow:none;
  5852. -webkit-box-shadow:none;
  5853. box-shadow:none;
  5854. }
  5855. #u35848 {
  5856. border-width:0px;
  5857. position:absolute;
  5858. left:425px;
  5859. top:1012px;
  5860. width:160px;
  5861. height:80px;
  5862. display:flex;
  5863. }
  5864. #u35848 .text {
  5865. position:absolute;
  5866. align-self:center;
  5867. padding:2px 2px 2px 2px;
  5868. box-sizing:border-box;
  5869. width:100%;
  5870. }
  5871. #u35848_text {
  5872. border-width:0px;
  5873. word-wrap:break-word;
  5874. text-transform:none;
  5875. visibility:hidden;
  5876. }
  5877. #u35849_img {
  5878. border-width:0px;
  5879. position:absolute;
  5880. left:0px;
  5881. top:0px;
  5882. width:52px;
  5883. height:51px;
  5884. }
  5885. #u35849 {
  5886. border-width:0px;
  5887. position:absolute;
  5888. left:430px;
  5889. top:1037px;
  5890. width:52px;
  5891. height:51px;
  5892. display:flex;
  5893. }
  5894. #u35849 .text {
  5895. position:absolute;
  5896. align-self:center;
  5897. padding:2px 2px 2px 2px;
  5898. box-sizing:border-box;
  5899. width:100%;
  5900. }
  5901. #u35849_text {
  5902. border-width:0px;
  5903. word-wrap:break-word;
  5904. text-transform:none;
  5905. visibility:hidden;
  5906. }
  5907. #u35850_div {
  5908. border-width:0px;
  5909. position:absolute;
  5910. left:0px;
  5911. top:0px;
  5912. width:57px;
  5913. height:14px;
  5914. background:inherit;
  5915. background-color:rgba(255, 255, 255, 1);
  5916. border:none;
  5917. border-left:0px;
  5918. border-top:0px;
  5919. border-right:0px;
  5920. border-radius:0px;
  5921. border-bottom-right-radius:0px;
  5922. border-bottom-left-radius:0px;
  5923. -moz-box-shadow:none;
  5924. -webkit-box-shadow:none;
  5925. box-shadow:none;
  5926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5927. font-weight:400;
  5928. font-style:normal;
  5929. font-size:8px;
  5930. line-height:14px;
  5931. }
  5932. #u35850 {
  5933. border-width:0px;
  5934. position:absolute;
  5935. left:511px;
  5936. top:1055px;
  5937. width:57px;
  5938. height:14px;
  5939. display:flex;
  5940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5941. font-weight:400;
  5942. font-style:normal;
  5943. font-size:8px;
  5944. line-height:14px;
  5945. }
  5946. #u35850 .text {
  5947. position:absolute;
  5948. align-self:center;
  5949. padding:0px 0px 0px 0px;
  5950. box-sizing:border-box;
  5951. width:100%;
  5952. }
  5953. #u35850_text {
  5954. border-width:0px;
  5955. white-space:nowrap;
  5956. text-transform:none;
  5957. }
  5958. #u35851_div {
  5959. border-width:0px;
  5960. position:absolute;
  5961. left:0px;
  5962. top:0px;
  5963. width:156px;
  5964. height:15px;
  5965. background:inherit;
  5966. background-color:rgba(255, 255, 255, 1);
  5967. box-sizing:border-box;
  5968. border-width:1px;
  5969. border-style:solid;
  5970. border-color:rgba(215, 215, 215, 1);
  5971. border-left:0px;
  5972. border-top:0px;
  5973. border-right:0px;
  5974. border-radius:0px;
  5975. border-bottom-right-radius:0px;
  5976. border-bottom-left-radius:0px;
  5977. -moz-box-shadow:none;
  5978. -webkit-box-shadow:none;
  5979. box-shadow:none;
  5980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5981. font-weight:400;
  5982. font-style:normal;
  5983. font-size:8px;
  5984. text-align:center;
  5985. line-height:15px;
  5986. }
  5987. #u35851 {
  5988. border-width:0px;
  5989. position:absolute;
  5990. left:427px;
  5991. top:1016px;
  5992. width:156px;
  5993. height:15px;
  5994. display:flex;
  5995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5996. font-weight:400;
  5997. font-style:normal;
  5998. font-size:8px;
  5999. text-align:center;
  6000. line-height:15px;
  6001. }
  6002. #u35851 .text {
  6003. position:absolute;
  6004. align-self:center;
  6005. padding:0px 0px 0px 0px;
  6006. box-sizing:border-box;
  6007. width:100%;
  6008. }
  6009. #u35851_text {
  6010. border-width:0px;
  6011. word-wrap:break-word;
  6012. text-transform:none;
  6013. }
  6014. #u35852_div {
  6015. border-width:0px;
  6016. position:absolute;
  6017. left:0px;
  6018. top:0px;
  6019. width:137px;
  6020. height:25px;
  6021. background:inherit;
  6022. background-color:rgba(51, 51, 51, 0);
  6023. box-sizing:border-box;
  6024. border-width:3px;
  6025. border-style:solid;
  6026. border-color:rgba(51, 51, 51, 1);
  6027. border-top:0px;
  6028. border-right:0px;
  6029. border-bottom:0px;
  6030. border-radius:0px;
  6031. border-top-left-radius:0px;
  6032. border-bottom-left-radius:0px;
  6033. -moz-box-shadow:none;
  6034. -webkit-box-shadow:none;
  6035. box-shadow:none;
  6036. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6037. font-weight:650;
  6038. font-style:normal;
  6039. font-size:18px;
  6040. }
  6041. #u35852 {
  6042. border-width:0px;
  6043. position:absolute;
  6044. left:653px;
  6045. top:145px;
  6046. width:137px;
  6047. height:25px;
  6048. display:flex;
  6049. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6050. font-weight:650;
  6051. font-style:normal;
  6052. font-size:18px;
  6053. }
  6054. #u35852 .text {
  6055. position:absolute;
  6056. align-self:center;
  6057. padding:0px 0px 0px 10px;
  6058. box-sizing:border-box;
  6059. width:100%;
  6060. }
  6061. #u35852_text {
  6062. border-width:0px;
  6063. white-space:nowrap;
  6064. text-transform:none;
  6065. }
  6066. #u35853_div {
  6067. border-width:0px;
  6068. position:absolute;
  6069. left:0px;
  6070. top:0px;
  6071. width:119px;
  6072. height:25px;
  6073. background:inherit;
  6074. background-color:rgba(51, 51, 51, 0);
  6075. box-sizing:border-box;
  6076. border-width:3px;
  6077. border-style:solid;
  6078. border-color:rgba(51, 51, 51, 1);
  6079. border-top:0px;
  6080. border-right:0px;
  6081. border-bottom:0px;
  6082. border-radius:0px;
  6083. border-top-left-radius:0px;
  6084. border-bottom-left-radius:0px;
  6085. -moz-box-shadow:none;
  6086. -webkit-box-shadow:none;
  6087. box-shadow:none;
  6088. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6089. font-weight:650;
  6090. font-style:normal;
  6091. font-size:18px;
  6092. }
  6093. #u35853 {
  6094. border-width:0px;
  6095. position:absolute;
  6096. left:653px;
  6097. top:394px;
  6098. width:119px;
  6099. height:25px;
  6100. display:flex;
  6101. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6102. font-weight:650;
  6103. font-style:normal;
  6104. font-size:18px;
  6105. }
  6106. #u35853 .text {
  6107. position:absolute;
  6108. align-self:center;
  6109. padding:0px 0px 0px 10px;
  6110. box-sizing:border-box;
  6111. width:100%;
  6112. }
  6113. #u35853_text {
  6114. border-width:0px;
  6115. white-space:nowrap;
  6116. text-transform:none;
  6117. }
  6118. #u35854_div {
  6119. border-width:0px;
  6120. position:absolute;
  6121. left:0px;
  6122. top:0px;
  6123. width:57px;
  6124. height:20px;
  6125. background:inherit;
  6126. background-color:rgba(51, 51, 51, 0);
  6127. border:none;
  6128. border-top:0px;
  6129. border-right:0px;
  6130. border-bottom:0px;
  6131. border-radius:0px;
  6132. border-top-left-radius:0px;
  6133. border-bottom-left-radius:0px;
  6134. -moz-box-shadow:none;
  6135. -webkit-box-shadow:none;
  6136. box-shadow:none;
  6137. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6138. font-weight:650;
  6139. font-style:normal;
  6140. font-size:14px;
  6141. }
  6142. #u35854 {
  6143. border-width:0px;
  6144. position:absolute;
  6145. left:671px;
  6146. top:540px;
  6147. width:57px;
  6148. height:20px;
  6149. display:flex;
  6150. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6151. font-weight:650;
  6152. font-style:normal;
  6153. font-size:14px;
  6154. }
  6155. #u35854 .text {
  6156. position:absolute;
  6157. align-self:center;
  6158. padding:0px 0px 0px 0px;
  6159. box-sizing:border-box;
  6160. width:100%;
  6161. }
  6162. #u35854_text {
  6163. border-width:0px;
  6164. white-space:nowrap;
  6165. text-transform:none;
  6166. }
  6167. #u35855 {
  6168. border-width:0px;
  6169. position:absolute;
  6170. left:0px;
  6171. top:0px;
  6172. width:0px;
  6173. height:0px;
  6174. }
  6175. #u35856_div {
  6176. border-width:0px;
  6177. position:absolute;
  6178. left:0px;
  6179. top:0px;
  6180. width:222px;
  6181. height:40px;
  6182. background:inherit;
  6183. background-color:rgba(255, 255, 255, 1);
  6184. box-sizing:border-box;
  6185. border-width:1px;
  6186. border-style:solid;
  6187. border-color:rgba(215, 215, 215, 1);
  6188. border-radius:4px;
  6189. -moz-box-shadow:none;
  6190. -webkit-box-shadow:none;
  6191. box-shadow:none;
  6192. font-size:11px;
  6193. }
  6194. #u35856 {
  6195. border-width:0px;
  6196. position:absolute;
  6197. left:671px;
  6198. top:570px;
  6199. width:222px;
  6200. height:40px;
  6201. display:flex;
  6202. font-size:11px;
  6203. }
  6204. #u35856 .text {
  6205. position:absolute;
  6206. align-self:center;
  6207. padding:2px 2px 2px 2px;
  6208. box-sizing:border-box;
  6209. width:100%;
  6210. }
  6211. #u35856_text {
  6212. border-width:0px;
  6213. word-wrap:break-word;
  6214. text-transform:none;
  6215. visibility:hidden;
  6216. }
  6217. #u35857_input {
  6218. position:absolute;
  6219. left:0px;
  6220. top:0px;
  6221. width:211px;
  6222. height:31px;
  6223. padding:2px 2px 2px 2px;
  6224. font-family:'ArialMT', 'Arial', sans-serif;
  6225. font-weight:400;
  6226. font-style:normal;
  6227. font-size:11px;
  6228. letter-spacing:normal;
  6229. color:#AAAAAA;
  6230. vertical-align:none;
  6231. text-align:left;
  6232. text-transform:none;
  6233. background-color:transparent;
  6234. border-color:transparent;
  6235. }
  6236. #u35857_input.disabled {
  6237. position:absolute;
  6238. left:0px;
  6239. top:0px;
  6240. width:211px;
  6241. height:31px;
  6242. padding:2px 2px 2px 2px;
  6243. font-family:'ArialMT', 'Arial', sans-serif;
  6244. font-weight:400;
  6245. font-style:normal;
  6246. font-size:11px;
  6247. letter-spacing:normal;
  6248. color:#AAAAAA;
  6249. vertical-align:none;
  6250. text-align:left;
  6251. text-transform:none;
  6252. background-color:transparent;
  6253. border-color:transparent;
  6254. }
  6255. #u35857_div {
  6256. border-width:0px;
  6257. position:absolute;
  6258. left:0px;
  6259. top:0px;
  6260. width:211px;
  6261. height:31px;
  6262. background:inherit;
  6263. background-color:rgba(255, 255, 255, 1);
  6264. border:none;
  6265. border-radius:0px;
  6266. -moz-box-shadow:none;
  6267. -webkit-box-shadow:none;
  6268. box-shadow:none;
  6269. font-size:11px;
  6270. color:#AAAAAA;
  6271. }
  6272. #u35857 {
  6273. border-width:0px;
  6274. position:absolute;
  6275. left:678px;
  6276. top:573px;
  6277. width:211px;
  6278. height:31px;
  6279. display:flex;
  6280. font-size:11px;
  6281. color:#AAAAAA;
  6282. }
  6283. #u35857 .text {
  6284. position:absolute;
  6285. align-self:flex-start;
  6286. padding:2px 2px 2px 2px;
  6287. box-sizing:border-box;
  6288. width:100%;
  6289. }
  6290. #u35857_div.disabled {
  6291. border-width:0px;
  6292. position:absolute;
  6293. left:0px;
  6294. top:0px;
  6295. width:211px;
  6296. height:31px;
  6297. background:inherit;
  6298. background-color:rgba(240, 240, 240, 1);
  6299. border:none;
  6300. border-radius:0px;
  6301. -moz-box-shadow:none;
  6302. -webkit-box-shadow:none;
  6303. box-shadow:none;
  6304. font-size:11px;
  6305. color:#AAAAAA;
  6306. }
  6307. #u35857.disabled {
  6308. }
  6309. .u35857_input_option {
  6310. font-size:11px;
  6311. }
  6312. #u35858 {
  6313. border-width:0px;
  6314. position:absolute;
  6315. left:0px;
  6316. top:0px;
  6317. width:0px;
  6318. height:0px;
  6319. }
  6320. #u35859_div {
  6321. border-width:0px;
  6322. position:absolute;
  6323. left:0px;
  6324. top:0px;
  6325. width:100px;
  6326. height:40px;
  6327. background:inherit;
  6328. background-color:rgba(255, 255, 255, 1);
  6329. box-sizing:border-box;
  6330. border-width:1px;
  6331. border-style:solid;
  6332. border-color:rgba(201, 201, 201, 1);
  6333. border-radius:4px;
  6334. -moz-box-shadow:none;
  6335. -webkit-box-shadow:none;
  6336. box-shadow:none;
  6337. font-family:'Microsoft YaHei', sans-serif;
  6338. font-weight:400;
  6339. font-style:normal;
  6340. font-size:14px;
  6341. color:#CCCCCC;
  6342. text-align:left;
  6343. }
  6344. #u35859 {
  6345. border-width:0px;
  6346. position:absolute;
  6347. left:901px;
  6348. top:570px;
  6349. width:100px;
  6350. height:40px;
  6351. display:flex;
  6352. font-family:'Microsoft YaHei', sans-serif;
  6353. font-weight:400;
  6354. font-style:normal;
  6355. font-size:14px;
  6356. color:#CCCCCC;
  6357. text-align:left;
  6358. }
  6359. #u35859 .text {
  6360. position:absolute;
  6361. align-self:center;
  6362. padding:2px 8px 2px 8px;
  6363. box-sizing:border-box;
  6364. width:100%;
  6365. }
  6366. #u35859_text {
  6367. border-width:0px;
  6368. word-wrap:break-word;
  6369. text-transform:none;
  6370. visibility:hidden;
  6371. }
  6372. #u35860_input {
  6373. position:absolute;
  6374. left:0px;
  6375. top:0px;
  6376. width:95px;
  6377. height:38px;
  6378. padding:2px 2px 2px 2px;
  6379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6380. font-weight:400;
  6381. font-style:normal;
  6382. font-size:14px;
  6383. letter-spacing:normal;
  6384. color:#000000;
  6385. vertical-align:none;
  6386. text-align:left;
  6387. text-transform:none;
  6388. background-color:transparent;
  6389. border-color:transparent;
  6390. }
  6391. #u35860_input.disabled {
  6392. position:absolute;
  6393. left:0px;
  6394. top:0px;
  6395. width:95px;
  6396. height:38px;
  6397. padding:2px 2px 2px 2px;
  6398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6399. font-weight:400;
  6400. font-style:normal;
  6401. font-size:14px;
  6402. letter-spacing:normal;
  6403. color:#000000;
  6404. vertical-align:none;
  6405. text-align:left;
  6406. text-transform:none;
  6407. background-color:transparent;
  6408. border-color:transparent;
  6409. }
  6410. #u35860_div {
  6411. border-width:0px;
  6412. position:absolute;
  6413. left:0px;
  6414. top:0px;
  6415. width:95px;
  6416. height:38px;
  6417. background:inherit;
  6418. background-color:rgba(255, 255, 255, 1);
  6419. border:none;
  6420. border-radius:0px;
  6421. -moz-box-shadow:none;
  6422. -webkit-box-shadow:none;
  6423. box-shadow:none;
  6424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6425. font-weight:400;
  6426. font-style:normal;
  6427. font-size:14px;
  6428. }
  6429. #u35860 {
  6430. border-width:0px;
  6431. position:absolute;
  6432. left:904px;
  6433. top:571px;
  6434. width:95px;
  6435. height:38px;
  6436. display:flex;
  6437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6438. font-weight:400;
  6439. font-style:normal;
  6440. font-size:14px;
  6441. }
  6442. #u35860 .text {
  6443. position:absolute;
  6444. align-self:center;
  6445. padding:2px 2px 2px 2px;
  6446. box-sizing:border-box;
  6447. width:100%;
  6448. }
  6449. #u35860_div.disabled {
  6450. border-width:0px;
  6451. position:absolute;
  6452. left:0px;
  6453. top:0px;
  6454. width:95px;
  6455. height:38px;
  6456. background:inherit;
  6457. background-color:rgba(240, 240, 240, 1);
  6458. border:none;
  6459. border-radius:0px;
  6460. -moz-box-shadow:none;
  6461. -webkit-box-shadow:none;
  6462. box-shadow:none;
  6463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6464. font-weight:400;
  6465. font-style:normal;
  6466. font-size:14px;
  6467. }
  6468. #u35860.disabled {
  6469. }
  6470. #u35861 label {
  6471. left:0px;
  6472. width:100%;
  6473. }
  6474. #u35861_img {
  6475. border-width:0px;
  6476. position:absolute;
  6477. left:0px;
  6478. top:4px;
  6479. width:12px;
  6480. height:12px;
  6481. }
  6482. #u35861 {
  6483. border-width:0px;
  6484. position:absolute;
  6485. left:1014px;
  6486. top:580px;
  6487. width:100px;
  6488. height:20px;
  6489. display:flex;
  6490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6491. font-weight:400;
  6492. font-style:normal;
  6493. font-size:14px;
  6494. }
  6495. #u35861 .text {
  6496. position:absolute;
  6497. align-self:center;
  6498. padding:0px 2px 0px 2px;
  6499. box-sizing:border-box;
  6500. }
  6501. #u35861_img.selected {
  6502. }
  6503. #u35861.selected {
  6504. }
  6505. #u35861_img.disabled {
  6506. }
  6507. #u35861.disabled {
  6508. }
  6509. #u35861_img.selectedDisabled {
  6510. }
  6511. #u35861.selectedDisabled {
  6512. }
  6513. #u35861_text {
  6514. border-width:0px;
  6515. position:absolute;
  6516. left:14px;
  6517. top:0px;
  6518. width:84px;
  6519. word-wrap:break-word;
  6520. text-transform:none;
  6521. }
  6522. #u35861_input {
  6523. border-width:0px;
  6524. position:absolute;
  6525. left:0px;
  6526. top:0px;
  6527. width:0px;
  6528. height:0px;
  6529. opacity:0;
  6530. }
  6531. #u35862_div {
  6532. border-width:0px;
  6533. position:absolute;
  6534. left:0px;
  6535. top:0px;
  6536. width:98px;
  6537. height:20px;
  6538. background:inherit;
  6539. background-color:rgba(51, 51, 51, 0);
  6540. border:none;
  6541. border-top:0px;
  6542. border-right:0px;
  6543. border-bottom:0px;
  6544. border-radius:0px;
  6545. border-top-left-radius:0px;
  6546. border-bottom-left-radius:0px;
  6547. -moz-box-shadow:none;
  6548. -webkit-box-shadow:none;
  6549. box-shadow:none;
  6550. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6551. font-weight:650;
  6552. font-style:normal;
  6553. font-size:14px;
  6554. }
  6555. #u35862 {
  6556. border-width:0px;
  6557. position:absolute;
  6558. left:671px;
  6559. top:630px;
  6560. width:98px;
  6561. height:20px;
  6562. display:flex;
  6563. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6564. font-weight:650;
  6565. font-style:normal;
  6566. font-size:14px;
  6567. }
  6568. #u35862 .text {
  6569. position:absolute;
  6570. align-self:center;
  6571. padding:0px 0px 0px 0px;
  6572. box-sizing:border-box;
  6573. width:100%;
  6574. }
  6575. #u35862_text {
  6576. border-width:0px;
  6577. white-space:nowrap;
  6578. text-transform:none;
  6579. }
  6580. #u35863_div {
  6581. border-width:0px;
  6582. position:absolute;
  6583. left:0px;
  6584. top:0px;
  6585. width:278px;
  6586. height:17px;
  6587. background:inherit;
  6588. background-color:rgba(51, 51, 51, 0);
  6589. border:none;
  6590. border-top:0px;
  6591. border-right:0px;
  6592. border-bottom:0px;
  6593. border-radius:0px;
  6594. border-top-left-radius:0px;
  6595. border-bottom-left-radius:0px;
  6596. -moz-box-shadow:none;
  6597. -webkit-box-shadow:none;
  6598. box-shadow:none;
  6599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6600. font-weight:400;
  6601. font-style:normal;
  6602. font-size:12px;
  6603. }
  6604. #u35863 {
  6605. border-width:0px;
  6606. position:absolute;
  6607. left:1014px;
  6608. top:703px;
  6609. width:278px;
  6610. height:17px;
  6611. display:flex;
  6612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6613. font-weight:400;
  6614. font-style:normal;
  6615. font-size:12px;
  6616. }
  6617. #u35863 .text {
  6618. position:absolute;
  6619. align-self:center;
  6620. padding:0px 0px 0px 0px;
  6621. box-sizing:border-box;
  6622. width:100%;
  6623. }
  6624. #u35863_text {
  6625. border-width:0px;
  6626. white-space:nowrap;
  6627. text-transform:none;
  6628. }
  6629. #u35864_div {
  6630. border-width:0px;
  6631. position:absolute;
  6632. left:0px;
  6633. top:0px;
  6634. width:85px;
  6635. height:20px;
  6636. background:inherit;
  6637. background-color:rgba(51, 51, 51, 0);
  6638. border:none;
  6639. border-top:0px;
  6640. border-right:0px;
  6641. border-bottom:0px;
  6642. border-radius:0px;
  6643. border-top-left-radius:0px;
  6644. border-bottom-left-radius:0px;
  6645. -moz-box-shadow:none;
  6646. -webkit-box-shadow:none;
  6647. box-shadow:none;
  6648. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6649. font-weight:650;
  6650. font-style:normal;
  6651. font-size:14px;
  6652. }
  6653. #u35864 {
  6654. border-width:0px;
  6655. position:absolute;
  6656. left:671px;
  6657. top:783px;
  6658. width:85px;
  6659. height:20px;
  6660. display:flex;
  6661. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6662. font-weight:650;
  6663. font-style:normal;
  6664. font-size:14px;
  6665. }
  6666. #u35864 .text {
  6667. position:absolute;
  6668. align-self:center;
  6669. padding:0px 0px 0px 0px;
  6670. box-sizing:border-box;
  6671. width:100%;
  6672. }
  6673. #u35864_text {
  6674. border-width:0px;
  6675. white-space:nowrap;
  6676. text-transform:none;
  6677. }
  6678. #u35865_img {
  6679. border-width:0px;
  6680. position:absolute;
  6681. left:0px;
  6682. top:0px;
  6683. width:333px;
  6684. height:106px;
  6685. }
  6686. #u35865 {
  6687. border-width:0px;
  6688. position:absolute;
  6689. left:671px;
  6690. top:660px;
  6691. width:333px;
  6692. height:106px;
  6693. display:flex;
  6694. }
  6695. #u35865 .text {
  6696. position:absolute;
  6697. align-self:center;
  6698. padding:2px 2px 2px 2px;
  6699. box-sizing:border-box;
  6700. width:100%;
  6701. }
  6702. #u35865_text {
  6703. border-width:0px;
  6704. word-wrap:break-word;
  6705. text-transform:none;
  6706. visibility:hidden;
  6707. }
  6708. #u35866 label {
  6709. left:0px;
  6710. width:100%;
  6711. }
  6712. #u35866_img {
  6713. border-width:0px;
  6714. position:absolute;
  6715. left:0px;
  6716. top:4px;
  6717. width:12px;
  6718. height:12px;
  6719. }
  6720. #u35866 {
  6721. border-width:0px;
  6722. position:absolute;
  6723. left:671px;
  6724. top:818px;
  6725. width:328px;
  6726. height:20px;
  6727. display:flex;
  6728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6729. font-weight:400;
  6730. font-style:normal;
  6731. font-size:14px;
  6732. }
  6733. #u35866 .text {
  6734. position:absolute;
  6735. align-self:center;
  6736. padding:0px 2px 0px 2px;
  6737. box-sizing:border-box;
  6738. }
  6739. #u35866_img.selected {
  6740. }
  6741. #u35866.selected {
  6742. }
  6743. #u35866_img.disabled {
  6744. }
  6745. #u35866.disabled {
  6746. }
  6747. #u35866_img.selectedDisabled {
  6748. }
  6749. #u35866.selectedDisabled {
  6750. }
  6751. #u35866_text {
  6752. border-width:0px;
  6753. position:absolute;
  6754. left:14px;
  6755. top:0px;
  6756. width:312px;
  6757. word-wrap:break-word;
  6758. text-transform:none;
  6759. }
  6760. #u35866_input {
  6761. border-width:0px;
  6762. position:absolute;
  6763. left:0px;
  6764. top:0px;
  6765. width:0px;
  6766. height:0px;
  6767. opacity:0;
  6768. }
  6769. #u35867 label {
  6770. left:0px;
  6771. width:100%;
  6772. }
  6773. #u35867_img {
  6774. border-width:0px;
  6775. position:absolute;
  6776. left:0px;
  6777. top:4px;
  6778. width:12px;
  6779. height:12px;
  6780. }
  6781. #u35867 {
  6782. border-width:0px;
  6783. position:absolute;
  6784. left:671px;
  6785. top:853px;
  6786. width:328px;
  6787. height:20px;
  6788. display:flex;
  6789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6790. font-weight:400;
  6791. font-style:normal;
  6792. font-size:14px;
  6793. }
  6794. #u35867 .text {
  6795. position:absolute;
  6796. align-self:center;
  6797. padding:0px 2px 0px 2px;
  6798. box-sizing:border-box;
  6799. }
  6800. #u35867_img.selected {
  6801. }
  6802. #u35867.selected {
  6803. }
  6804. #u35867_img.disabled {
  6805. }
  6806. #u35867.disabled {
  6807. }
  6808. #u35867_img.selectedDisabled {
  6809. }
  6810. #u35867.selectedDisabled {
  6811. }
  6812. #u35867_text {
  6813. border-width:0px;
  6814. position:absolute;
  6815. left:14px;
  6816. top:0px;
  6817. width:312px;
  6818. word-wrap:break-word;
  6819. text-transform:none;
  6820. }
  6821. #u35867_input {
  6822. border-width:0px;
  6823. position:absolute;
  6824. left:0px;
  6825. top:0px;
  6826. width:0px;
  6827. height:0px;
  6828. opacity:0;
  6829. }
  6830. #u35868 label {
  6831. left:0px;
  6832. width:100%;
  6833. }
  6834. #u35868_img {
  6835. border-width:0px;
  6836. position:absolute;
  6837. left:0px;
  6838. top:4px;
  6839. width:12px;
  6840. height:12px;
  6841. }
  6842. #u35868 {
  6843. border-width:0px;
  6844. position:absolute;
  6845. left:671px;
  6846. top:888px;
  6847. width:328px;
  6848. height:20px;
  6849. display:flex;
  6850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6851. font-weight:400;
  6852. font-style:normal;
  6853. font-size:14px;
  6854. }
  6855. #u35868 .text {
  6856. position:absolute;
  6857. align-self:center;
  6858. padding:0px 2px 0px 2px;
  6859. box-sizing:border-box;
  6860. }
  6861. #u35868_img.selected {
  6862. }
  6863. #u35868.selected {
  6864. }
  6865. #u35868_img.disabled {
  6866. }
  6867. #u35868.disabled {
  6868. }
  6869. #u35868_img.selectedDisabled {
  6870. }
  6871. #u35868.selectedDisabled {
  6872. }
  6873. #u35868_text {
  6874. border-width:0px;
  6875. position:absolute;
  6876. left:14px;
  6877. top:0px;
  6878. width:312px;
  6879. word-wrap:break-word;
  6880. text-transform:none;
  6881. }
  6882. #u35868_input {
  6883. border-width:0px;
  6884. position:absolute;
  6885. left:0px;
  6886. top:0px;
  6887. width:0px;
  6888. height:0px;
  6889. opacity:0;
  6890. }
  6891. #u35869_div {
  6892. border-width:0px;
  6893. position:absolute;
  6894. left:0px;
  6895. top:0px;
  6896. width:85px;
  6897. height:20px;
  6898. background:inherit;
  6899. background-color:rgba(51, 51, 51, 0);
  6900. border:none;
  6901. border-top:0px;
  6902. border-right:0px;
  6903. border-bottom:0px;
  6904. border-radius:0px;
  6905. border-top-left-radius:0px;
  6906. border-bottom-left-radius:0px;
  6907. -moz-box-shadow:none;
  6908. -webkit-box-shadow:none;
  6909. box-shadow:none;
  6910. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6911. font-weight:650;
  6912. font-style:normal;
  6913. font-size:14px;
  6914. }
  6915. #u35869 {
  6916. border-width:0px;
  6917. position:absolute;
  6918. left:671px;
  6919. top:928px;
  6920. width:85px;
  6921. height:20px;
  6922. display:flex;
  6923. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6924. font-weight:650;
  6925. font-style:normal;
  6926. font-size:14px;
  6927. }
  6928. #u35869 .text {
  6929. position:absolute;
  6930. align-self:center;
  6931. padding:0px 0px 0px 0px;
  6932. box-sizing:border-box;
  6933. width:100%;
  6934. }
  6935. #u35869_text {
  6936. border-width:0px;
  6937. white-space:nowrap;
  6938. text-transform:none;
  6939. }
  6940. #u35870 {
  6941. border-width:0px;
  6942. position:absolute;
  6943. left:0px;
  6944. top:0px;
  6945. width:0px;
  6946. height:0px;
  6947. }
  6948. #u35871_div {
  6949. border-width:0px;
  6950. position:absolute;
  6951. left:0px;
  6952. top:0px;
  6953. width:162px;
  6954. height:40px;
  6955. background:inherit;
  6956. background-color:rgba(255, 255, 255, 1);
  6957. box-sizing:border-box;
  6958. border-width:1px;
  6959. border-style:solid;
  6960. border-color:rgba(201, 201, 201, 1);
  6961. border-radius:4px;
  6962. -moz-box-shadow:none;
  6963. -webkit-box-shadow:none;
  6964. box-shadow:none;
  6965. font-family:'Microsoft YaHei', sans-serif;
  6966. font-weight:400;
  6967. font-style:normal;
  6968. font-size:14px;
  6969. color:#CCCCCC;
  6970. text-align:left;
  6971. }
  6972. #u35871 {
  6973. border-width:0px;
  6974. position:absolute;
  6975. left:728px;
  6976. top:958px;
  6977. width:162px;
  6978. height:40px;
  6979. display:flex;
  6980. font-family:'Microsoft YaHei', sans-serif;
  6981. font-weight:400;
  6982. font-style:normal;
  6983. font-size:14px;
  6984. color:#CCCCCC;
  6985. text-align:left;
  6986. }
  6987. #u35871 .text {
  6988. position:absolute;
  6989. align-self:center;
  6990. padding:2px 8px 2px 8px;
  6991. box-sizing:border-box;
  6992. width:100%;
  6993. }
  6994. #u35871_text {
  6995. border-width:0px;
  6996. word-wrap:break-word;
  6997. text-transform:none;
  6998. visibility:hidden;
  6999. }
  7000. #u35872_input {
  7001. position:absolute;
  7002. left:0px;
  7003. top:0px;
  7004. width:154px;
  7005. height:38px;
  7006. padding:2px 2px 2px 2px;
  7007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7008. font-weight:400;
  7009. font-style:normal;
  7010. font-size:14px;
  7011. letter-spacing:normal;
  7012. color:#000000;
  7013. vertical-align:none;
  7014. text-align:left;
  7015. text-transform:none;
  7016. background-color:transparent;
  7017. border-color:transparent;
  7018. }
  7019. #u35872_input.disabled {
  7020. position:absolute;
  7021. left:0px;
  7022. top:0px;
  7023. width:154px;
  7024. height:38px;
  7025. padding:2px 2px 2px 2px;
  7026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7027. font-weight:400;
  7028. font-style:normal;
  7029. font-size:14px;
  7030. letter-spacing:normal;
  7031. color:#000000;
  7032. vertical-align:none;
  7033. text-align:left;
  7034. text-transform:none;
  7035. background-color:transparent;
  7036. border-color:transparent;
  7037. }
  7038. #u35872_div {
  7039. border-width:0px;
  7040. position:absolute;
  7041. left:0px;
  7042. top:0px;
  7043. width:154px;
  7044. height:38px;
  7045. background:inherit;
  7046. background-color:rgba(255, 255, 255, 1);
  7047. border:none;
  7048. border-radius:0px;
  7049. -moz-box-shadow:none;
  7050. -webkit-box-shadow:none;
  7051. box-shadow:none;
  7052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7053. font-weight:400;
  7054. font-style:normal;
  7055. font-size:14px;
  7056. }
  7057. #u35872 {
  7058. border-width:0px;
  7059. position:absolute;
  7060. left:733px;
  7061. top:959px;
  7062. width:154px;
  7063. height:38px;
  7064. display:flex;
  7065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7066. font-weight:400;
  7067. font-style:normal;
  7068. font-size:14px;
  7069. }
  7070. #u35872 .text {
  7071. position:absolute;
  7072. align-self:center;
  7073. padding:2px 2px 2px 2px;
  7074. box-sizing:border-box;
  7075. width:100%;
  7076. }
  7077. #u35872_div.disabled {
  7078. border-width:0px;
  7079. position:absolute;
  7080. left:0px;
  7081. top:0px;
  7082. width:154px;
  7083. height:38px;
  7084. background:inherit;
  7085. background-color:rgba(240, 240, 240, 1);
  7086. border:none;
  7087. border-radius:0px;
  7088. -moz-box-shadow:none;
  7089. -webkit-box-shadow:none;
  7090. box-shadow:none;
  7091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7092. font-weight:400;
  7093. font-style:normal;
  7094. font-size:14px;
  7095. }
  7096. #u35872.disabled {
  7097. }
  7098. #u35873_div {
  7099. border-width:0px;
  7100. position:absolute;
  7101. left:0px;
  7102. top:0px;
  7103. width:57px;
  7104. height:20px;
  7105. background:inherit;
  7106. background-color:rgba(51, 51, 51, 0);
  7107. border:none;
  7108. border-top:0px;
  7109. border-right:0px;
  7110. border-bottom:0px;
  7111. border-radius:0px;
  7112. border-top-left-radius:0px;
  7113. border-bottom-left-radius:0px;
  7114. -moz-box-shadow:none;
  7115. -webkit-box-shadow:none;
  7116. box-shadow:none;
  7117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7118. font-weight:400;
  7119. font-style:normal;
  7120. font-size:14px;
  7121. }
  7122. #u35873 {
  7123. border-width:0px;
  7124. position:absolute;
  7125. left:671px;
  7126. top:968px;
  7127. width:57px;
  7128. height:20px;
  7129. display:flex;
  7130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7131. font-weight:400;
  7132. font-style:normal;
  7133. font-size:14px;
  7134. }
  7135. #u35873 .text {
  7136. position:absolute;
  7137. align-self:center;
  7138. padding:0px 0px 0px 0px;
  7139. box-sizing:border-box;
  7140. width:100%;
  7141. }
  7142. #u35873_text {
  7143. border-width:0px;
  7144. white-space:nowrap;
  7145. text-transform:none;
  7146. }
  7147. #u35874_div {
  7148. border-width:0px;
  7149. position:absolute;
  7150. left:0px;
  7151. top:0px;
  7152. width:85px;
  7153. height:20px;
  7154. background:inherit;
  7155. background-color:rgba(255, 255, 255, 0);
  7156. border:none;
  7157. border-radius:0px;
  7158. -moz-box-shadow:none;
  7159. -webkit-box-shadow:none;
  7160. box-shadow:none;
  7161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7162. font-weight:400;
  7163. font-style:normal;
  7164. font-size:14px;
  7165. color:#1890FF;
  7166. }
  7167. #u35874 {
  7168. border-width:0px;
  7169. position:absolute;
  7170. left:890px;
  7171. top:968px;
  7172. width:85px;
  7173. height:20px;
  7174. display:flex;
  7175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7176. font-weight:400;
  7177. font-style:normal;
  7178. font-size:14px;
  7179. color:#1890FF;
  7180. }
  7181. #u35874 .text {
  7182. position:absolute;
  7183. align-self:flex-start;
  7184. padding:0px 0px 0px 0px;
  7185. box-sizing:border-box;
  7186. width:100%;
  7187. }
  7188. #u35874_text {
  7189. border-width:0px;
  7190. white-space:nowrap;
  7191. text-transform:none;
  7192. }
  7193. #u35875_div {
  7194. border-width:0px;
  7195. position:absolute;
  7196. left:0px;
  7197. top:0px;
  7198. width:57px;
  7199. height:20px;
  7200. background:inherit;
  7201. background-color:rgba(51, 51, 51, 0);
  7202. border:none;
  7203. border-top:0px;
  7204. border-right:0px;
  7205. border-bottom:0px;
  7206. border-radius:0px;
  7207. border-top-left-radius:0px;
  7208. border-bottom-left-radius:0px;
  7209. -moz-box-shadow:none;
  7210. -webkit-box-shadow:none;
  7211. box-shadow:none;
  7212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7213. font-weight:400;
  7214. font-style:normal;
  7215. font-size:14px;
  7216. }
  7217. #u35875 {
  7218. border-width:0px;
  7219. position:absolute;
  7220. left:671px;
  7221. top:1018px;
  7222. width:57px;
  7223. height:20px;
  7224. display:flex;
  7225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7226. font-weight:400;
  7227. font-style:normal;
  7228. font-size:14px;
  7229. }
  7230. #u35875 .text {
  7231. position:absolute;
  7232. align-self:center;
  7233. padding:0px 0px 0px 0px;
  7234. box-sizing:border-box;
  7235. width:100%;
  7236. }
  7237. #u35875_text {
  7238. border-width:0px;
  7239. white-space:nowrap;
  7240. text-transform:none;
  7241. }
  7242. #u35876_div {
  7243. border-width:0px;
  7244. position:absolute;
  7245. left:0px;
  7246. top:0px;
  7247. width:85px;
  7248. height:20px;
  7249. background:inherit;
  7250. background-color:rgba(255, 255, 255, 0);
  7251. border:none;
  7252. border-radius:0px;
  7253. -moz-box-shadow:none;
  7254. -webkit-box-shadow:none;
  7255. box-shadow:none;
  7256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7257. font-weight:400;
  7258. font-style:normal;
  7259. font-size:14px;
  7260. color:#1890FF;
  7261. }
  7262. #u35876 {
  7263. border-width:0px;
  7264. position:absolute;
  7265. left:890px;
  7266. top:1018px;
  7267. width:85px;
  7268. height:20px;
  7269. display:flex;
  7270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7271. font-weight:400;
  7272. font-style:normal;
  7273. font-size:14px;
  7274. color:#1890FF;
  7275. }
  7276. #u35876 .text {
  7277. position:absolute;
  7278. align-self:flex-start;
  7279. padding:0px 0px 0px 0px;
  7280. box-sizing:border-box;
  7281. width:100%;
  7282. }
  7283. #u35876_text {
  7284. border-width:0px;
  7285. white-space:nowrap;
  7286. text-transform:none;
  7287. }
  7288. #u35877 {
  7289. border-width:0px;
  7290. position:absolute;
  7291. left:0px;
  7292. top:0px;
  7293. width:0px;
  7294. height:0px;
  7295. }
  7296. #u35878_div {
  7297. border-width:0px;
  7298. position:absolute;
  7299. left:0px;
  7300. top:0px;
  7301. width:162px;
  7302. height:40px;
  7303. background:inherit;
  7304. background-color:rgba(255, 255, 255, 1);
  7305. box-sizing:border-box;
  7306. border-width:1px;
  7307. border-style:solid;
  7308. border-color:rgba(201, 201, 201, 1);
  7309. border-radius:4px;
  7310. -moz-box-shadow:none;
  7311. -webkit-box-shadow:none;
  7312. box-shadow:none;
  7313. font-family:'Microsoft YaHei', sans-serif;
  7314. font-weight:400;
  7315. font-style:normal;
  7316. font-size:14px;
  7317. color:#CCCCCC;
  7318. text-align:left;
  7319. }
  7320. #u35878 {
  7321. border-width:0px;
  7322. position:absolute;
  7323. left:728px;
  7324. top:1008px;
  7325. width:162px;
  7326. height:40px;
  7327. display:flex;
  7328. font-family:'Microsoft YaHei', sans-serif;
  7329. font-weight:400;
  7330. font-style:normal;
  7331. font-size:14px;
  7332. color:#CCCCCC;
  7333. text-align:left;
  7334. }
  7335. #u35878 .text {
  7336. position:absolute;
  7337. align-self:center;
  7338. padding:2px 8px 2px 8px;
  7339. box-sizing:border-box;
  7340. width:100%;
  7341. }
  7342. #u35878_text {
  7343. border-width:0px;
  7344. word-wrap:break-word;
  7345. text-transform:none;
  7346. visibility:hidden;
  7347. }
  7348. #u35879_input {
  7349. position:absolute;
  7350. left:0px;
  7351. top:0px;
  7352. width:154px;
  7353. height:38px;
  7354. padding:2px 2px 2px 2px;
  7355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7356. font-weight:400;
  7357. font-style:normal;
  7358. font-size:14px;
  7359. letter-spacing:normal;
  7360. color:#000000;
  7361. vertical-align:none;
  7362. text-align:left;
  7363. text-transform:none;
  7364. background-color:transparent;
  7365. border-color:transparent;
  7366. }
  7367. #u35879_input.disabled {
  7368. position:absolute;
  7369. left:0px;
  7370. top:0px;
  7371. width:154px;
  7372. height:38px;
  7373. padding:2px 2px 2px 2px;
  7374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7375. font-weight:400;
  7376. font-style:normal;
  7377. font-size:14px;
  7378. letter-spacing:normal;
  7379. color:#000000;
  7380. vertical-align:none;
  7381. text-align:left;
  7382. text-transform:none;
  7383. background-color:transparent;
  7384. border-color:transparent;
  7385. }
  7386. #u35879_div {
  7387. border-width:0px;
  7388. position:absolute;
  7389. left:0px;
  7390. top:0px;
  7391. width:154px;
  7392. height:38px;
  7393. background:inherit;
  7394. background-color:rgba(255, 255, 255, 1);
  7395. border:none;
  7396. border-radius:0px;
  7397. -moz-box-shadow:none;
  7398. -webkit-box-shadow:none;
  7399. box-shadow:none;
  7400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7401. font-weight:400;
  7402. font-style:normal;
  7403. font-size:14px;
  7404. }
  7405. #u35879 {
  7406. border-width:0px;
  7407. position:absolute;
  7408. left:733px;
  7409. top:1009px;
  7410. width:154px;
  7411. height:38px;
  7412. display:flex;
  7413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7414. font-weight:400;
  7415. font-style:normal;
  7416. font-size:14px;
  7417. }
  7418. #u35879 .text {
  7419. position:absolute;
  7420. align-self:center;
  7421. padding:2px 2px 2px 2px;
  7422. box-sizing:border-box;
  7423. width:100%;
  7424. }
  7425. #u35879_div.disabled {
  7426. border-width:0px;
  7427. position:absolute;
  7428. left:0px;
  7429. top:0px;
  7430. width:154px;
  7431. height:38px;
  7432. background:inherit;
  7433. background-color:rgba(240, 240, 240, 1);
  7434. border:none;
  7435. border-radius:0px;
  7436. -moz-box-shadow:none;
  7437. -webkit-box-shadow:none;
  7438. box-shadow:none;
  7439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7440. font-weight:400;
  7441. font-style:normal;
  7442. font-size:14px;
  7443. }
  7444. #u35879.disabled {
  7445. }
  7446. #u35880 {
  7447. border-width:0px;
  7448. position:absolute;
  7449. left:0px;
  7450. top:0px;
  7451. width:0px;
  7452. height:0px;
  7453. }
  7454. #u35881_div {
  7455. border-width:0px;
  7456. position:absolute;
  7457. left:0px;
  7458. top:0px;
  7459. width:930px;
  7460. height:60px;
  7461. background:inherit;
  7462. background-color:rgba(255, 255, 255, 1);
  7463. box-sizing:border-box;
  7464. border-width:1px;
  7465. border-style:solid;
  7466. border-color:rgba(215, 215, 215, 1);
  7467. border-radius:0px;
  7468. -moz-box-shadow:none;
  7469. -webkit-box-shadow:none;
  7470. box-shadow:none;
  7471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7472. font-weight:400;
  7473. font-style:normal;
  7474. font-size:14px;
  7475. color:#AAAAAA;
  7476. text-align:center;
  7477. line-height:30px;
  7478. }
  7479. #u35881 {
  7480. border-width:0px;
  7481. position:absolute;
  7482. left:633px;
  7483. top:1165px;
  7484. width:930px;
  7485. height:60px;
  7486. display:flex;
  7487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7488. font-weight:400;
  7489. font-style:normal;
  7490. font-size:14px;
  7491. color:#AAAAAA;
  7492. text-align:center;
  7493. line-height:30px;
  7494. }
  7495. #u35881 .text {
  7496. position:absolute;
  7497. align-self:center;
  7498. padding:5px 10px 5px 10px;
  7499. box-sizing:border-box;
  7500. width:100%;
  7501. }
  7502. #u35881_text {
  7503. border-width:0px;
  7504. word-wrap:break-word;
  7505. text-transform:none;
  7506. visibility:hidden;
  7507. }
  7508. #u35882_div {
  7509. border-width:0px;
  7510. position:absolute;
  7511. left:0px;
  7512. top:0px;
  7513. width:60px;
  7514. height:30px;
  7515. background:inherit;
  7516. background-color:rgba(24, 144, 255, 1);
  7517. border:none;
  7518. border-radius:4px;
  7519. -moz-box-shadow:none;
  7520. -webkit-box-shadow:none;
  7521. box-shadow:none;
  7522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7523. font-weight:400;
  7524. font-style:normal;
  7525. font-size:14px;
  7526. color:#FFFFFF;
  7527. }
  7528. #u35882 {
  7529. border-width:0px;
  7530. position:absolute;
  7531. left:1483px;
  7532. top:1180px;
  7533. width:60px;
  7534. height:30px;
  7535. display:flex;
  7536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7537. font-weight:400;
  7538. font-style:normal;
  7539. font-size:14px;
  7540. color:#FFFFFF;
  7541. }
  7542. #u35882 .text {
  7543. position:absolute;
  7544. align-self:center;
  7545. padding:2px 2px 2px 2px;
  7546. box-sizing:border-box;
  7547. width:100%;
  7548. }
  7549. #u35882_text {
  7550. border-width:0px;
  7551. word-wrap:break-word;
  7552. text-transform:none;
  7553. }
  7554. #u35883 label {
  7555. left:0px;
  7556. width:100%;
  7557. }
  7558. #u35883_img {
  7559. border-width:0px;
  7560. position:absolute;
  7561. left:0px;
  7562. top:4px;
  7563. width:12px;
  7564. height:12px;
  7565. }
  7566. #u35883 {
  7567. border-width:0px;
  7568. position:absolute;
  7569. left:1141px;
  7570. top:580px;
  7571. width:100px;
  7572. height:20px;
  7573. display:flex;
  7574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7575. font-weight:400;
  7576. font-style:normal;
  7577. font-size:14px;
  7578. }
  7579. #u35883 .text {
  7580. position:absolute;
  7581. align-self:center;
  7582. padding:0px 2px 0px 2px;
  7583. box-sizing:border-box;
  7584. }
  7585. #u35883_img.selected {
  7586. }
  7587. #u35883.selected {
  7588. }
  7589. #u35883_img.disabled {
  7590. }
  7591. #u35883.disabled {
  7592. }
  7593. #u35883_img.selectedDisabled {
  7594. }
  7595. #u35883.selectedDisabled {
  7596. }
  7597. #u35883_text {
  7598. border-width:0px;
  7599. position:absolute;
  7600. left:14px;
  7601. top:0px;
  7602. width:84px;
  7603. word-wrap:break-word;
  7604. text-transform:none;
  7605. }
  7606. #u35883_input {
  7607. border-width:0px;
  7608. position:absolute;
  7609. left:0px;
  7610. top:0px;
  7611. width:0px;
  7612. height:0px;
  7613. opacity:0;
  7614. }
  7615. #u35884_div {
  7616. border-width:0px;
  7617. position:absolute;
  7618. left:0px;
  7619. top:0px;
  7620. width:141px;
  7621. height:15px;
  7622. background:inherit;
  7623. background-color:rgba(255, 255, 255, 0);
  7624. border:none;
  7625. border-left:0px;
  7626. border-top:0px;
  7627. border-right:0px;
  7628. border-radius:0px;
  7629. border-bottom-right-radius:0px;
  7630. border-bottom-left-radius:0px;
  7631. -moz-box-shadow:none;
  7632. -webkit-box-shadow:none;
  7633. box-shadow:none;
  7634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7635. font-weight:400;
  7636. font-style:normal;
  7637. font-size:14px;
  7638. color:#D9001B;
  7639. line-height:15px;
  7640. }
  7641. #u35884 {
  7642. border-width:0px;
  7643. position:absolute;
  7644. left:653px;
  7645. top:90px;
  7646. width:141px;
  7647. height:15px;
  7648. display:flex;
  7649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7650. font-weight:400;
  7651. font-style:normal;
  7652. font-size:14px;
  7653. color:#D9001B;
  7654. line-height:15px;
  7655. }
  7656. #u35884 .text {
  7657. position:absolute;
  7658. align-self:center;
  7659. padding:0px 0px 0px 0px;
  7660. box-sizing:border-box;
  7661. width:100%;
  7662. }
  7663. #u35884_text {
  7664. border-width:0px;
  7665. white-space:nowrap;
  7666. text-transform:none;
  7667. }
  7668. #u35885 {
  7669. border-width:0px;
  7670. position:absolute;
  7671. left:505px;
  7672. top:377px;
  7673. width:0px;
  7674. height:0px;
  7675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7676. font-weight:400;
  7677. font-style:normal;
  7678. color:#0089FE;
  7679. }
  7680. #u35885_seg0 {
  7681. border-width:0px;
  7682. position:absolute;
  7683. left:-5px;
  7684. top:-284px;
  7685. width:10px;
  7686. height:284px;
  7687. }
  7688. #u35885_seg1 {
  7689. border-width:0px;
  7690. position:absolute;
  7691. left:-5px;
  7692. top:-284px;
  7693. width:153px;
  7694. height:10px;
  7695. }
  7696. #u35885_seg2 {
  7697. border-width:0px;
  7698. position:absolute;
  7699. left:-9px;
  7700. top:-12px;
  7701. width:18px;
  7702. height:18px;
  7703. }
  7704. #u35885_seg3 {
  7705. border-width:0px;
  7706. position:absolute;
  7707. left:131px;
  7708. top:-295px;
  7709. width:32px;
  7710. height:32px;
  7711. }
  7712. #u35885_text {
  7713. border-width:0px;
  7714. position:absolute;
  7715. left:-50px;
  7716. top:-222px;
  7717. width:100px;
  7718. word-wrap:break-word;
  7719. text-transform:none;
  7720. visibility:hidden;
  7721. }
  7722. #u35886_div {
  7723. border-width:0px;
  7724. position:absolute;
  7725. left:0px;
  7726. top:0px;
  7727. width:183px;
  7728. height:20px;
  7729. background:inherit;
  7730. background-color:rgba(51, 51, 51, 0);
  7731. border:none;
  7732. border-top:0px;
  7733. border-right:0px;
  7734. border-bottom:0px;
  7735. border-radius:0px;
  7736. border-top-left-radius:0px;
  7737. border-bottom-left-radius:0px;
  7738. -moz-box-shadow:none;
  7739. -webkit-box-shadow:none;
  7740. box-shadow:none;
  7741. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7742. font-weight:650;
  7743. font-style:normal;
  7744. font-size:14px;
  7745. }
  7746. #u35886 {
  7747. border-width:0px;
  7748. position:absolute;
  7749. left:671px;
  7750. top:445px;
  7751. width:183px;
  7752. height:20px;
  7753. display:flex;
  7754. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7755. font-weight:650;
  7756. font-style:normal;
  7757. font-size:14px;
  7758. }
  7759. #u35886 .text {
  7760. position:absolute;
  7761. align-self:center;
  7762. padding:0px 0px 0px 0px;
  7763. box-sizing:border-box;
  7764. width:100%;
  7765. }
  7766. #u35886_text {
  7767. border-width:0px;
  7768. white-space:nowrap;
  7769. text-transform:none;
  7770. }
  7771. #u35887 {
  7772. border-width:0px;
  7773. position:absolute;
  7774. left:0px;
  7775. top:0px;
  7776. width:0px;
  7777. height:0px;
  7778. }
  7779. #u35888_div {
  7780. border-width:0px;
  7781. position:absolute;
  7782. left:0px;
  7783. top:0px;
  7784. width:848px;
  7785. height:40px;
  7786. background:inherit;
  7787. background-color:rgba(255, 255, 255, 1);
  7788. box-sizing:border-box;
  7789. border-width:1px;
  7790. border-style:solid;
  7791. border-color:rgba(215, 215, 215, 1);
  7792. border-radius:4px;
  7793. -moz-box-shadow:none;
  7794. -webkit-box-shadow:none;
  7795. box-shadow:none;
  7796. font-size:11px;
  7797. }
  7798. #u35888 {
  7799. border-width:0px;
  7800. position:absolute;
  7801. left:671px;
  7802. top:480px;
  7803. width:848px;
  7804. height:40px;
  7805. display:flex;
  7806. font-size:11px;
  7807. }
  7808. #u35888 .text {
  7809. position:absolute;
  7810. align-self:center;
  7811. padding:2px 2px 2px 2px;
  7812. box-sizing:border-box;
  7813. width:100%;
  7814. }
  7815. #u35888_text {
  7816. border-width:0px;
  7817. word-wrap:break-word;
  7818. text-transform:none;
  7819. visibility:hidden;
  7820. }
  7821. #u35889_input {
  7822. position:absolute;
  7823. left:0px;
  7824. top:0px;
  7825. width:834px;
  7826. height:31px;
  7827. padding:2px 2px 2px 2px;
  7828. font-family:'ArialMT', 'Arial', sans-serif;
  7829. font-weight:400;
  7830. font-style:normal;
  7831. font-size:11px;
  7832. letter-spacing:normal;
  7833. color:#AAAAAA;
  7834. vertical-align:none;
  7835. text-align:left;
  7836. text-transform:none;
  7837. background-color:transparent;
  7838. border-color:transparent;
  7839. }
  7840. #u35889_input.disabled {
  7841. position:absolute;
  7842. left:0px;
  7843. top:0px;
  7844. width:834px;
  7845. height:31px;
  7846. padding:2px 2px 2px 2px;
  7847. font-family:'ArialMT', 'Arial', sans-serif;
  7848. font-weight:400;
  7849. font-style:normal;
  7850. font-size:11px;
  7851. letter-spacing:normal;
  7852. color:#AAAAAA;
  7853. vertical-align:none;
  7854. text-align:left;
  7855. text-transform:none;
  7856. background-color:transparent;
  7857. border-color:transparent;
  7858. }
  7859. #u35889_div {
  7860. border-width:0px;
  7861. position:absolute;
  7862. left:0px;
  7863. top:0px;
  7864. width:834px;
  7865. height:31px;
  7866. background:inherit;
  7867. background-color:rgba(255, 255, 255, 1);
  7868. border:none;
  7869. border-radius:0px;
  7870. -moz-box-shadow:none;
  7871. -webkit-box-shadow:none;
  7872. box-shadow:none;
  7873. font-size:11px;
  7874. color:#AAAAAA;
  7875. }
  7876. #u35889 {
  7877. border-width:0px;
  7878. position:absolute;
  7879. left:678px;
  7880. top:483px;
  7881. width:834px;
  7882. height:31px;
  7883. display:flex;
  7884. font-size:11px;
  7885. color:#AAAAAA;
  7886. }
  7887. #u35889 .text {
  7888. position:absolute;
  7889. align-self:flex-start;
  7890. padding:2px 2px 2px 2px;
  7891. box-sizing:border-box;
  7892. width:100%;
  7893. }
  7894. #u35889_div.disabled {
  7895. border-width:0px;
  7896. position:absolute;
  7897. left:0px;
  7898. top:0px;
  7899. width:834px;
  7900. height:31px;
  7901. background:inherit;
  7902. background-color:rgba(240, 240, 240, 1);
  7903. border:none;
  7904. border-radius:0px;
  7905. -moz-box-shadow:none;
  7906. -webkit-box-shadow:none;
  7907. box-shadow:none;
  7908. font-size:11px;
  7909. color:#AAAAAA;
  7910. }
  7911. #u35889.disabled {
  7912. }
  7913. .u35889_input_option {
  7914. font-size:11px;
  7915. }
  7916. #u35890_div {
  7917. border-width:0px;
  7918. position:absolute;
  7919. left:0px;
  7920. top:0px;
  7921. width:300px;
  7922. height:20px;
  7923. background:inherit;
  7924. background-color:rgba(255, 255, 255, 0);
  7925. border:none;
  7926. border-radius:0px;
  7927. -moz-box-shadow:none;
  7928. -webkit-box-shadow:none;
  7929. box-shadow:none;
  7930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7931. font-weight:400;
  7932. font-style:normal;
  7933. font-size:14px;
  7934. color:#D9001B;
  7935. }
  7936. #u35890 {
  7937. border-width:0px;
  7938. position:absolute;
  7939. left:945px;
  7940. top:487px;
  7941. width:300px;
  7942. height:20px;
  7943. display:flex;
  7944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7945. font-weight:400;
  7946. font-style:normal;
  7947. font-size:14px;
  7948. color:#D9001B;
  7949. }
  7950. #u35890 .text {
  7951. position:absolute;
  7952. align-self:flex-start;
  7953. padding:0px 0px 0px 0px;
  7954. box-sizing:border-box;
  7955. width:100%;
  7956. }
  7957. #u35890_text {
  7958. border-width:0px;
  7959. word-wrap:break-word;
  7960. text-transform:none;
  7961. }