styles.css 112 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:464px;
  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. #u38979_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u38979 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u38979 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u38979_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u38980_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u38980 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u38980 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u38980_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u38981_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u38981 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u38981 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u38981_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u38982 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u38983_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u38983 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u38983 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u38983_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u38984_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u38984 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u38984 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u38984_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u38985_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u38985 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u38985 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u38985_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u38986 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u38987_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u38987 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:71px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u38987 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u38987_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u38988_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u38988 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u38988 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u38988_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u38989 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u38990_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u38990 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:147px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u38990 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u38990_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u38991_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u38991 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u38991 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u38991_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u38992 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u38993_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:33px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u38993 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:399px;
  458. width:33px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u38993 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u38993_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u38994_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u38994 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u38994 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u38994_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u38995 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u38996_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:49px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u38996 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:109px;
  542. width:49px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u38996 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u38996_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u38997_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u38997 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u38997 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u38997_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u38998 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u38999_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u38999 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:441px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u38999 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u38999_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u39000_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u39000 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u39000 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u39000_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u39001 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u39002_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u39002 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:315px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u39002 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u39002_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u39003_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u39003 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u39003 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u39003_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u39004 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u39005_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u39005 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:189px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u39005 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u39005_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u39006_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u39006 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u39006 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u39006_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u39007 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u39008_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u39008 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:357px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u39008 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u39008_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u39009_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u39009 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u39009 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u39009_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u39010 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u39011_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:33px;
  943. height:22px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:0px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. font-size:16px;
  955. color:#FFFFFF;
  956. }
  957. #u39011 {
  958. border-width:0px;
  959. position:absolute;
  960. left:39px;
  961. top:483px;
  962. width:33px;
  963. height:22px;
  964. display:flex;
  965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  966. font-weight:400;
  967. font-style:normal;
  968. font-size:16px;
  969. color:#FFFFFF;
  970. }
  971. #u39011 .text {
  972. position:absolute;
  973. align-self:flex-start;
  974. padding:0px 0px 0px 0px;
  975. box-sizing:border-box;
  976. width:100%;
  977. }
  978. #u39011_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u39012_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u39012 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u39012 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u39012_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u39013_div {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:0px;
  1017. top:0px;
  1018. width:29px;
  1019. height:20px;
  1020. background:inherit;
  1021. background-color:rgba(255, 255, 255, 0);
  1022. border:none;
  1023. border-radius:25px;
  1024. -moz-box-shadow:none;
  1025. -webkit-box-shadow:none;
  1026. box-shadow:none;
  1027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1028. font-weight:400;
  1029. font-style:normal;
  1030. color:#FFFFFF;
  1031. }
  1032. #u39013 {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:52px;
  1036. top:1145px;
  1037. width:29px;
  1038. height:20px;
  1039. display:flex;
  1040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1041. font-weight:400;
  1042. font-style:normal;
  1043. color:#FFFFFF;
  1044. }
  1045. #u39013 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u39013_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u39014_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u39014 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u39014 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u39014_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u39015_div {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:0px;
  1091. top:0px;
  1092. width:29px;
  1093. height:20px;
  1094. background:inherit;
  1095. background-color:rgba(255, 255, 255, 0);
  1096. border:none;
  1097. border-radius:25px;
  1098. -moz-box-shadow:none;
  1099. -webkit-box-shadow:none;
  1100. box-shadow:none;
  1101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1102. font-weight:400;
  1103. font-style:normal;
  1104. color:#FFFFFF;
  1105. }
  1106. #u39015 {
  1107. border-width:0px;
  1108. position:absolute;
  1109. left:52px;
  1110. top:1187px;
  1111. width:29px;
  1112. height:20px;
  1113. display:flex;
  1114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1115. font-weight:400;
  1116. font-style:normal;
  1117. color:#FFFFFF;
  1118. }
  1119. #u39015 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u39015_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u39016_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u39016 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u39016 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u39016_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u39017 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u39018_div {
  1170. border-width:0px;
  1171. position:absolute;
  1172. left:0px;
  1173. top:0px;
  1174. width:33px;
  1175. height:22px;
  1176. background:inherit;
  1177. background-color:rgba(255, 255, 255, 0);
  1178. border:none;
  1179. border-radius:0px;
  1180. -moz-box-shadow:none;
  1181. -webkit-box-shadow:none;
  1182. box-shadow:none;
  1183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1184. font-weight:400;
  1185. font-style:normal;
  1186. font-size:16px;
  1187. color:#FFFFFF;
  1188. }
  1189. #u39018 {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:39px;
  1193. top:231px;
  1194. width:33px;
  1195. height:22px;
  1196. display:flex;
  1197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1198. font-weight:400;
  1199. font-style:normal;
  1200. font-size:16px;
  1201. color:#FFFFFF;
  1202. }
  1203. #u39018 .text {
  1204. position:absolute;
  1205. align-self:flex-start;
  1206. padding:0px 0px 0px 0px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u39018_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u39019_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u39019 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u39019 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u39019_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u39020 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u39021_div {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:0px;
  1257. top:0px;
  1258. width:33px;
  1259. height:22px;
  1260. background:inherit;
  1261. background-color:rgba(255, 255, 255, 0);
  1262. border:none;
  1263. border-radius:0px;
  1264. -moz-box-shadow:none;
  1265. -webkit-box-shadow:none;
  1266. box-shadow:none;
  1267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1268. font-weight:400;
  1269. font-style:normal;
  1270. font-size:16px;
  1271. color:#FFFFFF;
  1272. }
  1273. #u39021 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:39px;
  1277. top:273px;
  1278. width:33px;
  1279. height:22px;
  1280. display:flex;
  1281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1282. font-weight:400;
  1283. font-style:normal;
  1284. font-size:16px;
  1285. color:#FFFFFF;
  1286. }
  1287. #u39021 .text {
  1288. position:absolute;
  1289. align-self:flex-start;
  1290. padding:0px 0px 0px 0px;
  1291. box-sizing:border-box;
  1292. width:100%;
  1293. }
  1294. #u39021_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u39022_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u39022 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u39022 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u39022_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u39023 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u39024_input {
  1338. position:absolute;
  1339. left:0px;
  1340. top:0px;
  1341. width:214px;
  1342. height:27px;
  1343. padding:2px 2px 2px 2px;
  1344. font-family:'ArialMT', 'Arial', sans-serif;
  1345. font-weight:400;
  1346. font-style:normal;
  1347. font-size:14px;
  1348. letter-spacing:normal;
  1349. color:#FFFFFF;
  1350. vertical-align:none;
  1351. text-align:left;
  1352. text-transform:none;
  1353. background-color:transparent;
  1354. border-color:transparent;
  1355. }
  1356. #u39024_input.disabled {
  1357. position:absolute;
  1358. left:0px;
  1359. top:0px;
  1360. width:214px;
  1361. height:27px;
  1362. padding:2px 2px 2px 2px;
  1363. font-family:'ArialMT', 'Arial', sans-serif;
  1364. font-weight:400;
  1365. font-style:normal;
  1366. font-size:14px;
  1367. letter-spacing:normal;
  1368. color:#FFFFFF;
  1369. vertical-align:none;
  1370. text-align:left;
  1371. text-transform:none;
  1372. background-color:transparent;
  1373. border-color:transparent;
  1374. }
  1375. #u39024_div {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:0px;
  1379. top:0px;
  1380. width:214px;
  1381. height:27px;
  1382. background:inherit;
  1383. background-color:rgba(255, 255, 255, 0);
  1384. border:none;
  1385. border-radius:0px;
  1386. -moz-box-shadow:none;
  1387. -webkit-box-shadow:none;
  1388. box-shadow:none;
  1389. font-size:14px;
  1390. color:#FFFFFF;
  1391. }
  1392. #u39024 {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:1221px;
  1396. top:11px;
  1397. width:214px;
  1398. height:27px;
  1399. display:flex;
  1400. font-size:14px;
  1401. color:#FFFFFF;
  1402. }
  1403. #u39024 .text {
  1404. position:absolute;
  1405. align-self:flex-start;
  1406. padding:2px 2px 2px 2px;
  1407. box-sizing:border-box;
  1408. width:100%;
  1409. }
  1410. #u39024_div.disabled {
  1411. border-width:0px;
  1412. position:absolute;
  1413. left:0px;
  1414. top:0px;
  1415. width:214px;
  1416. height:27px;
  1417. background:inherit;
  1418. background-color:rgba(240, 240, 240, 1);
  1419. border:none;
  1420. border-radius:0px;
  1421. -moz-box-shadow:none;
  1422. -webkit-box-shadow:none;
  1423. box-shadow:none;
  1424. font-size:14px;
  1425. color:#FFFFFF;
  1426. }
  1427. #u39024.disabled {
  1428. }
  1429. .u39024_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u39025_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u39025 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u39025 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u39025_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u39026_div {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:100px;
  1468. height:24px;
  1469. background:inherit;
  1470. background-color:rgba(242, 242, 242, 0.2);
  1471. border:none;
  1472. border-radius:25px;
  1473. -moz-box-shadow:none;
  1474. -webkit-box-shadow:none;
  1475. box-shadow:none;
  1476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1477. font-weight:400;
  1478. font-style:normal;
  1479. color:#FFFFFF;
  1480. text-align:center;
  1481. }
  1482. #u39026 {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:1480px;
  1486. top:13px;
  1487. width:100px;
  1488. height:24px;
  1489. display:flex;
  1490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1491. font-weight:400;
  1492. font-style:normal;
  1493. color:#FFFFFF;
  1494. text-align:center;
  1495. }
  1496. #u39026 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u39026_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u39027_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u39027 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u39027 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u39027_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u39028 {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:0px;
  1544. height:0px;
  1545. }
  1546. #u39029_div {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:200px;
  1552. height:1180px;
  1553. background:inherit;
  1554. background-color:rgba(255, 255, 255, 1);
  1555. border:none;
  1556. border-radius:0px;
  1557. -moz-box-shadow:none;
  1558. -webkit-box-shadow:none;
  1559. box-shadow:none;
  1560. }
  1561. #u39029 {
  1562. border-width:0px;
  1563. position:absolute;
  1564. left:-1136px;
  1565. top:49px;
  1566. width:200px;
  1567. height:1180px;
  1568. display:flex;
  1569. }
  1570. #u39029 .text {
  1571. position:absolute;
  1572. align-self:center;
  1573. padding:2px 2px 2px 2px;
  1574. box-sizing:border-box;
  1575. width:100%;
  1576. }
  1577. #u39029_text {
  1578. border-width:0px;
  1579. word-wrap:break-word;
  1580. text-transform:none;
  1581. visibility:hidden;
  1582. }
  1583. #u39030_div {
  1584. border-width:0px;
  1585. position:absolute;
  1586. left:0px;
  1587. top:0px;
  1588. width:200px;
  1589. height:60px;
  1590. background:inherit;
  1591. background-color:rgba(224, 231, 247, 1);
  1592. border:none;
  1593. border-radius:0px;
  1594. -moz-box-shadow:none;
  1595. -webkit-box-shadow:none;
  1596. box-shadow:none;
  1597. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1598. font-weight:500;
  1599. font-style:normal;
  1600. font-size:18px;
  1601. }
  1602. #u39030 {
  1603. border-width:0px;
  1604. position:absolute;
  1605. left:-1136px;
  1606. top:49px;
  1607. width:200px;
  1608. height:60px;
  1609. display:flex;
  1610. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1611. font-weight:500;
  1612. font-style:normal;
  1613. font-size:18px;
  1614. }
  1615. #u39030 .text {
  1616. position:absolute;
  1617. align-self:center;
  1618. padding:0px 0px 0px 20px;
  1619. box-sizing:border-box;
  1620. width:100%;
  1621. }
  1622. #u39030_text {
  1623. border-width:0px;
  1624. word-wrap:break-word;
  1625. text-transform:none;
  1626. }
  1627. #u39031_div {
  1628. border-width:0px;
  1629. position:absolute;
  1630. left:0px;
  1631. top:0px;
  1632. width:65px;
  1633. height:22px;
  1634. background:inherit;
  1635. background-color:rgba(255, 255, 255, 0);
  1636. border:none;
  1637. border-radius:0px;
  1638. -moz-box-shadow:none;
  1639. -webkit-box-shadow:none;
  1640. box-shadow:none;
  1641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1642. font-weight:400;
  1643. font-style:normal;
  1644. font-size:16px;
  1645. color:#1890FF;
  1646. }
  1647. #u39031 {
  1648. border-width:0px;
  1649. position:absolute;
  1650. left:-1109px;
  1651. top:130px;
  1652. width:65px;
  1653. height:22px;
  1654. display:flex;
  1655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1656. font-weight:400;
  1657. font-style:normal;
  1658. font-size:16px;
  1659. color:#1890FF;
  1660. }
  1661. #u39031 .text {
  1662. position:absolute;
  1663. align-self:flex-start;
  1664. padding:0px 0px 0px 0px;
  1665. box-sizing:border-box;
  1666. width:100%;
  1667. }
  1668. #u39031_text {
  1669. border-width:0px;
  1670. white-space:nowrap;
  1671. text-transform:none;
  1672. }
  1673. #u39032_div {
  1674. border-width:0px;
  1675. position:absolute;
  1676. left:0px;
  1677. top:0px;
  1678. width:65px;
  1679. height:22px;
  1680. background:inherit;
  1681. background-color:rgba(255, 255, 255, 0);
  1682. border:none;
  1683. border-radius:0px;
  1684. -moz-box-shadow:none;
  1685. -webkit-box-shadow:none;
  1686. box-shadow:none;
  1687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1688. font-weight:400;
  1689. font-style:normal;
  1690. font-size:16px;
  1691. }
  1692. #u39032 {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:-1109px;
  1696. top:172px;
  1697. width:65px;
  1698. height:22px;
  1699. display:flex;
  1700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1701. font-weight:400;
  1702. font-style:normal;
  1703. font-size:16px;
  1704. }
  1705. #u39032 .text {
  1706. position:absolute;
  1707. align-self:flex-start;
  1708. padding:0px 0px 0px 0px;
  1709. box-sizing:border-box;
  1710. width:100%;
  1711. }
  1712. #u39032_text {
  1713. border-width:0px;
  1714. white-space:nowrap;
  1715. text-transform:none;
  1716. }
  1717. #u39033_div {
  1718. border-width:0px;
  1719. position:absolute;
  1720. left:0px;
  1721. top:0px;
  1722. width:65px;
  1723. height:22px;
  1724. background:inherit;
  1725. background-color:rgba(255, 255, 255, 0);
  1726. border:none;
  1727. border-radius:0px;
  1728. -moz-box-shadow:none;
  1729. -webkit-box-shadow:none;
  1730. box-shadow:none;
  1731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1732. font-weight:400;
  1733. font-style:normal;
  1734. font-size:16px;
  1735. }
  1736. #u39033 {
  1737. border-width:0px;
  1738. position:absolute;
  1739. left:-1109px;
  1740. top:214px;
  1741. width:65px;
  1742. height:22px;
  1743. display:flex;
  1744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1745. font-weight:400;
  1746. font-style:normal;
  1747. font-size:16px;
  1748. }
  1749. #u39033 .text {
  1750. position:absolute;
  1751. align-self:flex-start;
  1752. padding:0px 0px 0px 0px;
  1753. box-sizing:border-box;
  1754. width:100%;
  1755. }
  1756. #u39033_text {
  1757. border-width:0px;
  1758. white-space:nowrap;
  1759. text-transform:none;
  1760. }
  1761. #u39034_div {
  1762. border-width:0px;
  1763. position:absolute;
  1764. left:0px;
  1765. top:0px;
  1766. width:1255px;
  1767. height:1176px;
  1768. background:inherit;
  1769. background-color:rgba(255, 255, 255, 1);
  1770. border:none;
  1771. border-radius:0px;
  1772. -moz-box-shadow:none;
  1773. -webkit-box-shadow:none;
  1774. box-shadow:none;
  1775. }
  1776. #u39034 {
  1777. border-width:0px;
  1778. position:absolute;
  1779. left:333px;
  1780. top:51px;
  1781. width:1255px;
  1782. height:1176px;
  1783. display:flex;
  1784. }
  1785. #u39034 .text {
  1786. position:absolute;
  1787. align-self:center;
  1788. padding:2px 2px 2px 2px;
  1789. box-sizing:border-box;
  1790. width:100%;
  1791. }
  1792. #u39034_text {
  1793. border-width:0px;
  1794. word-wrap:break-word;
  1795. text-transform:none;
  1796. visibility:hidden;
  1797. }
  1798. #u39035 {
  1799. border-width:0px;
  1800. position:absolute;
  1801. left:0px;
  1802. top:0px;
  1803. width:0px;
  1804. height:0px;
  1805. }
  1806. #u39036_img {
  1807. border-width:0px;
  1808. position:absolute;
  1809. left:0px;
  1810. top:0px;
  1811. width:993px;
  1812. height:950px;
  1813. }
  1814. #u39036 {
  1815. border-width:0px;
  1816. position:absolute;
  1817. left:582px;
  1818. top:115px;
  1819. width:993px;
  1820. height:950px;
  1821. display:flex;
  1822. }
  1823. #u39036 .text {
  1824. position:absolute;
  1825. align-self:center;
  1826. padding:2px 2px 2px 2px;
  1827. box-sizing:border-box;
  1828. width:100%;
  1829. }
  1830. #u39036_text {
  1831. border-width:0px;
  1832. word-wrap:break-word;
  1833. text-transform:none;
  1834. visibility:hidden;
  1835. }
  1836. #u39037_div {
  1837. border-width:0px;
  1838. position:absolute;
  1839. left:0px;
  1840. top:0px;
  1841. width:29px;
  1842. height:17px;
  1843. background:inherit;
  1844. background-color:rgba(0, 191, 191, 1);
  1845. border:none;
  1846. border-radius:4px;
  1847. -moz-box-shadow:none;
  1848. -webkit-box-shadow:none;
  1849. box-shadow:none;
  1850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1851. font-weight:400;
  1852. font-style:normal;
  1853. font-size:10px;
  1854. color:#FFFFFF;
  1855. }
  1856. #u39037 {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:582px;
  1860. top:118px;
  1861. width:29px;
  1862. height:17px;
  1863. display:flex;
  1864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1865. font-weight:400;
  1866. font-style:normal;
  1867. font-size:10px;
  1868. color:#FFFFFF;
  1869. }
  1870. #u39037 .text {
  1871. position:absolute;
  1872. align-self:center;
  1873. padding:5px 0px 5px 0px;
  1874. box-sizing:border-box;
  1875. width:100%;
  1876. }
  1877. #u39037_text {
  1878. border-width:0px;
  1879. word-wrap:break-word;
  1880. text-transform:none;
  1881. }
  1882. #u39038_div {
  1883. border-width:0px;
  1884. position:absolute;
  1885. left:0px;
  1886. top:0px;
  1887. width:29px;
  1888. height:17px;
  1889. background:inherit;
  1890. background-color:rgba(217, 0, 27, 1);
  1891. border:none;
  1892. border-radius:4px;
  1893. -moz-box-shadow:none;
  1894. -webkit-box-shadow:none;
  1895. box-shadow:none;
  1896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1897. font-weight:400;
  1898. font-style:normal;
  1899. font-size:10px;
  1900. color:#FFFFFF;
  1901. }
  1902. #u39038 {
  1903. border-width:0px;
  1904. position:absolute;
  1905. left:1249px;
  1906. top:115px;
  1907. width:29px;
  1908. height:17px;
  1909. display:flex;
  1910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1911. font-weight:400;
  1912. font-style:normal;
  1913. font-size:10px;
  1914. color:#FFFFFF;
  1915. }
  1916. #u39038 .text {
  1917. position:absolute;
  1918. align-self:center;
  1919. padding:5px 0px 5px 0px;
  1920. box-sizing:border-box;
  1921. width:100%;
  1922. }
  1923. #u39038_text {
  1924. border-width:0px;
  1925. word-wrap:break-word;
  1926. text-transform:none;
  1927. }
  1928. #u39039_div {
  1929. border-width:0px;
  1930. position:absolute;
  1931. left:0px;
  1932. top:0px;
  1933. width:29px;
  1934. height:17px;
  1935. background:inherit;
  1936. background-color:rgba(245, 154, 35, 1);
  1937. border:none;
  1938. border-radius:4px;
  1939. -moz-box-shadow:none;
  1940. -webkit-box-shadow:none;
  1941. box-shadow:none;
  1942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1943. font-weight:400;
  1944. font-style:normal;
  1945. font-size:10px;
  1946. color:#FFFFFF;
  1947. }
  1948. #u39039 {
  1949. border-width:0px;
  1950. position:absolute;
  1951. left:582px;
  1952. top:346px;
  1953. width:29px;
  1954. height:17px;
  1955. display:flex;
  1956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1957. font-weight:400;
  1958. font-style:normal;
  1959. font-size:10px;
  1960. color:#FFFFFF;
  1961. }
  1962. #u39039 .text {
  1963. position:absolute;
  1964. align-self:center;
  1965. padding:5px 0px 5px 0px;
  1966. box-sizing:border-box;
  1967. width:100%;
  1968. }
  1969. #u39039_text {
  1970. border-width:0px;
  1971. word-wrap:break-word;
  1972. text-transform:none;
  1973. }
  1974. #u39040_div {
  1975. border-width:0px;
  1976. position:absolute;
  1977. left:0px;
  1978. top:0px;
  1979. width:29px;
  1980. height:17px;
  1981. background:inherit;
  1982. background-color:rgba(0, 191, 191, 1);
  1983. border:none;
  1984. border-radius:4px;
  1985. -moz-box-shadow:none;
  1986. -webkit-box-shadow:none;
  1987. box-shadow:none;
  1988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1989. font-weight:400;
  1990. font-style:normal;
  1991. font-size:10px;
  1992. color:#FFFFFF;
  1993. }
  1994. #u39040 {
  1995. border-width:0px;
  1996. position:absolute;
  1997. left:913px;
  1998. top:115px;
  1999. width:29px;
  2000. height:17px;
  2001. display:flex;
  2002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2003. font-weight:400;
  2004. font-style:normal;
  2005. font-size:10px;
  2006. color:#FFFFFF;
  2007. }
  2008. #u39040 .text {
  2009. position:absolute;
  2010. align-self:center;
  2011. padding:5px 0px 5px 0px;
  2012. box-sizing:border-box;
  2013. width:100%;
  2014. }
  2015. #u39040_text {
  2016. border-width:0px;
  2017. word-wrap:break-word;
  2018. text-transform:none;
  2019. }
  2020. #u39041_div {
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:0px;
  2024. top:0px;
  2025. width:29px;
  2026. height:17px;
  2027. background:inherit;
  2028. background-color:rgba(0, 191, 191, 1);
  2029. border:none;
  2030. border-radius:4px;
  2031. -moz-box-shadow:none;
  2032. -webkit-box-shadow:none;
  2033. box-shadow:none;
  2034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2035. font-weight:400;
  2036. font-style:normal;
  2037. font-size:10px;
  2038. color:#FFFFFF;
  2039. }
  2040. #u39041 {
  2041. border-width:0px;
  2042. position:absolute;
  2043. left:913px;
  2044. top:349px;
  2045. width:29px;
  2046. height:17px;
  2047. display:flex;
  2048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2049. font-weight:400;
  2050. font-style:normal;
  2051. font-size:10px;
  2052. color:#FFFFFF;
  2053. }
  2054. #u39041 .text {
  2055. position:absolute;
  2056. align-self:center;
  2057. padding:5px 0px 5px 0px;
  2058. box-sizing:border-box;
  2059. width:100%;
  2060. }
  2061. #u39041_text {
  2062. border-width:0px;
  2063. word-wrap:break-word;
  2064. text-transform:none;
  2065. }
  2066. #u39042_div {
  2067. border-width:0px;
  2068. position:absolute;
  2069. left:0px;
  2070. top:0px;
  2071. width:29px;
  2072. height:17px;
  2073. background:inherit;
  2074. background-color:rgba(0, 191, 191, 1);
  2075. border:none;
  2076. border-radius:4px;
  2077. -moz-box-shadow:none;
  2078. -webkit-box-shadow:none;
  2079. box-shadow:none;
  2080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2081. font-weight:400;
  2082. font-style:normal;
  2083. font-size:10px;
  2084. color:#FFFFFF;
  2085. }
  2086. #u39042 {
  2087. border-width:0px;
  2088. position:absolute;
  2089. left:1243px;
  2090. top:346px;
  2091. width:29px;
  2092. height:17px;
  2093. display:flex;
  2094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2095. font-weight:400;
  2096. font-style:normal;
  2097. font-size:10px;
  2098. color:#FFFFFF;
  2099. }
  2100. #u39042 .text {
  2101. position:absolute;
  2102. align-self:center;
  2103. padding:5px 0px 5px 0px;
  2104. box-sizing:border-box;
  2105. width:100%;
  2106. }
  2107. #u39042_text {
  2108. border-width:0px;
  2109. word-wrap:break-word;
  2110. text-transform:none;
  2111. }
  2112. #u39043_div {
  2113. border-width:0px;
  2114. position:absolute;
  2115. left:0px;
  2116. top:0px;
  2117. width:29px;
  2118. height:17px;
  2119. background:inherit;
  2120. background-color:rgba(0, 191, 191, 1);
  2121. border:none;
  2122. border-radius:4px;
  2123. -moz-box-shadow:none;
  2124. -webkit-box-shadow:none;
  2125. box-shadow:none;
  2126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2127. font-weight:400;
  2128. font-style:normal;
  2129. font-size:10px;
  2130. color:#FFFFFF;
  2131. }
  2132. #u39043 {
  2133. border-width:0px;
  2134. position:absolute;
  2135. left:913px;
  2136. top:602px;
  2137. width:29px;
  2138. height:17px;
  2139. display:flex;
  2140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2141. font-weight:400;
  2142. font-style:normal;
  2143. font-size:10px;
  2144. color:#FFFFFF;
  2145. }
  2146. #u39043 .text {
  2147. position:absolute;
  2148. align-self:center;
  2149. padding:5px 0px 5px 0px;
  2150. box-sizing:border-box;
  2151. width:100%;
  2152. }
  2153. #u39043_text {
  2154. border-width:0px;
  2155. word-wrap:break-word;
  2156. text-transform:none;
  2157. }
  2158. #u39044_div {
  2159. border-width:0px;
  2160. position:absolute;
  2161. left:0px;
  2162. top:0px;
  2163. width:29px;
  2164. height:17px;
  2165. background:inherit;
  2166. background-color:rgba(0, 191, 191, 1);
  2167. border:none;
  2168. border-radius:4px;
  2169. -moz-box-shadow:none;
  2170. -webkit-box-shadow:none;
  2171. box-shadow:none;
  2172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2173. font-weight:400;
  2174. font-style:normal;
  2175. font-size:10px;
  2176. color:#FFFFFF;
  2177. }
  2178. #u39044 {
  2179. border-width:0px;
  2180. position:absolute;
  2181. left:1243px;
  2182. top:598px;
  2183. width:29px;
  2184. height:17px;
  2185. display:flex;
  2186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2187. font-weight:400;
  2188. font-style:normal;
  2189. font-size:10px;
  2190. color:#FFFFFF;
  2191. }
  2192. #u39044 .text {
  2193. position:absolute;
  2194. align-self:center;
  2195. padding:5px 0px 5px 0px;
  2196. box-sizing:border-box;
  2197. width:100%;
  2198. }
  2199. #u39044_text {
  2200. border-width:0px;
  2201. word-wrap:break-word;
  2202. text-transform:none;
  2203. }
  2204. #u39045_div {
  2205. border-width:0px;
  2206. position:absolute;
  2207. left:0px;
  2208. top:0px;
  2209. width:29px;
  2210. height:17px;
  2211. background:inherit;
  2212. background-color:rgba(0, 191, 191, 1);
  2213. border:none;
  2214. border-radius:4px;
  2215. -moz-box-shadow:none;
  2216. -webkit-box-shadow:none;
  2217. box-shadow:none;
  2218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2219. font-weight:400;
  2220. font-style:normal;
  2221. font-size:10px;
  2222. color:#FFFFFF;
  2223. }
  2224. #u39045 {
  2225. border-width:0px;
  2226. position:absolute;
  2227. left:582px;
  2228. top:602px;
  2229. width:29px;
  2230. height:17px;
  2231. display:flex;
  2232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2233. font-weight:400;
  2234. font-style:normal;
  2235. font-size:10px;
  2236. color:#FFFFFF;
  2237. }
  2238. #u39045 .text {
  2239. position:absolute;
  2240. align-self:center;
  2241. padding:5px 0px 5px 0px;
  2242. box-sizing:border-box;
  2243. width:100%;
  2244. }
  2245. #u39045_text {
  2246. border-width:0px;
  2247. word-wrap:break-word;
  2248. text-transform:none;
  2249. }
  2250. #u39046_div {
  2251. border-width:0px;
  2252. position:absolute;
  2253. left:0px;
  2254. top:0px;
  2255. width:29px;
  2256. height:17px;
  2257. background:inherit;
  2258. background-color:rgba(0, 191, 191, 1);
  2259. border:none;
  2260. border-radius:4px;
  2261. -moz-box-shadow:none;
  2262. -webkit-box-shadow:none;
  2263. box-shadow:none;
  2264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2265. font-weight:400;
  2266. font-style:normal;
  2267. font-size:10px;
  2268. color:#FFFFFF;
  2269. }
  2270. #u39046 {
  2271. border-width:0px;
  2272. position:absolute;
  2273. left:913px;
  2274. top:848px;
  2275. width:29px;
  2276. height:17px;
  2277. display:flex;
  2278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2279. font-weight:400;
  2280. font-style:normal;
  2281. font-size:10px;
  2282. color:#FFFFFF;
  2283. }
  2284. #u39046 .text {
  2285. position:absolute;
  2286. align-self:center;
  2287. padding:5px 0px 5px 0px;
  2288. box-sizing:border-box;
  2289. width:100%;
  2290. }
  2291. #u39046_text {
  2292. border-width:0px;
  2293. word-wrap:break-word;
  2294. text-transform:none;
  2295. }
  2296. #u39047_div {
  2297. border-width:0px;
  2298. position:absolute;
  2299. left:0px;
  2300. top:0px;
  2301. width:29px;
  2302. height:17px;
  2303. background:inherit;
  2304. background-color:rgba(0, 191, 191, 1);
  2305. border:none;
  2306. border-radius:4px;
  2307. -moz-box-shadow:none;
  2308. -webkit-box-shadow:none;
  2309. box-shadow:none;
  2310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2311. font-weight:400;
  2312. font-style:normal;
  2313. font-size:10px;
  2314. color:#FFFFFF;
  2315. }
  2316. #u39047 {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:1243px;
  2320. top:845px;
  2321. width:29px;
  2322. height:17px;
  2323. display:flex;
  2324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2325. font-weight:400;
  2326. font-style:normal;
  2327. font-size:10px;
  2328. color:#FFFFFF;
  2329. }
  2330. #u39047 .text {
  2331. position:absolute;
  2332. align-self:center;
  2333. padding:5px 0px 5px 0px;
  2334. box-sizing:border-box;
  2335. width:100%;
  2336. }
  2337. #u39047_text {
  2338. border-width:0px;
  2339. word-wrap:break-word;
  2340. text-transform:none;
  2341. }
  2342. #u39048_div {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:0px;
  2346. top:0px;
  2347. width:29px;
  2348. height:17px;
  2349. background:inherit;
  2350. background-color:rgba(0, 191, 191, 1);
  2351. border:none;
  2352. border-radius:4px;
  2353. -moz-box-shadow:none;
  2354. -webkit-box-shadow:none;
  2355. box-shadow:none;
  2356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2357. font-weight:400;
  2358. font-style:normal;
  2359. font-size:10px;
  2360. color:#FFFFFF;
  2361. }
  2362. #u39048 {
  2363. border-width:0px;
  2364. position:absolute;
  2365. left:582px;
  2366. top:848px;
  2367. width:29px;
  2368. height:17px;
  2369. display:flex;
  2370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2371. font-weight:400;
  2372. font-style:normal;
  2373. font-size:10px;
  2374. color:#FFFFFF;
  2375. }
  2376. #u39048 .text {
  2377. position:absolute;
  2378. align-self:center;
  2379. padding:5px 0px 5px 0px;
  2380. box-sizing:border-box;
  2381. width:100%;
  2382. }
  2383. #u39048_text {
  2384. border-width:0px;
  2385. word-wrap:break-word;
  2386. text-transform:none;
  2387. }
  2388. #u39049_div {
  2389. border-width:0px;
  2390. position:absolute;
  2391. left:0px;
  2392. top:0px;
  2393. width:73px;
  2394. height:50px;
  2395. background:inherit;
  2396. background-color:rgba(255, 255, 255, 0);
  2397. border:none;
  2398. border-left:0px;
  2399. border-top:0px;
  2400. border-right:0px;
  2401. border-radius:0px;
  2402. border-bottom-right-radius:0px;
  2403. border-bottom-left-radius:0px;
  2404. -moz-box-shadow:none;
  2405. -webkit-box-shadow:none;
  2406. box-shadow:none;
  2407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2408. font-weight:400;
  2409. font-style:normal;
  2410. font-size:18px;
  2411. }
  2412. #u39049 {
  2413. border-width:0px;
  2414. position:absolute;
  2415. left:352px;
  2416. top:51px;
  2417. width:73px;
  2418. height:50px;
  2419. display:flex;
  2420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2421. font-weight:400;
  2422. font-style:normal;
  2423. font-size:18px;
  2424. }
  2425. #u39049 .text {
  2426. position:absolute;
  2427. align-self:center;
  2428. padding:0px 0px 0px 0px;
  2429. box-sizing:border-box;
  2430. width:100%;
  2431. }
  2432. #u39049_text {
  2433. border-width:0px;
  2434. white-space:nowrap;
  2435. text-transform:none;
  2436. }
  2437. #u39050_div {
  2438. border-width:0px;
  2439. position:absolute;
  2440. left:0px;
  2441. top:0px;
  2442. width:191px;
  2443. height:435px;
  2444. background:inherit;
  2445. background-color:rgba(242, 242, 242, 1);
  2446. border:none;
  2447. border-radius:4px;
  2448. -moz-box-shadow:none;
  2449. -webkit-box-shadow:none;
  2450. box-shadow:none;
  2451. }
  2452. #u39050 {
  2453. border-width:0px;
  2454. position:absolute;
  2455. left:351px;
  2456. top:321px;
  2457. width:191px;
  2458. height:435px;
  2459. display:flex;
  2460. }
  2461. #u39050 .text {
  2462. position:absolute;
  2463. align-self:center;
  2464. padding:2px 2px 2px 2px;
  2465. box-sizing:border-box;
  2466. width:100%;
  2467. }
  2468. #u39050_text {
  2469. border-width:0px;
  2470. word-wrap:break-word;
  2471. text-transform:none;
  2472. visibility:hidden;
  2473. }
  2474. #u39051_div {
  2475. border-width:0px;
  2476. position:absolute;
  2477. left:0px;
  2478. top:0px;
  2479. width:57px;
  2480. height:30px;
  2481. background:inherit;
  2482. background-color:rgba(255, 255, 255, 0);
  2483. border:none;
  2484. border-radius:0px;
  2485. -moz-box-shadow:none;
  2486. -webkit-box-shadow:none;
  2487. box-shadow:none;
  2488. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2489. font-weight:500;
  2490. font-style:normal;
  2491. font-size:14px;
  2492. color:#000000;
  2493. line-height:30px;
  2494. }
  2495. #u39051 {
  2496. border-width:0px;
  2497. position:absolute;
  2498. left:351px;
  2499. top:99px;
  2500. width:57px;
  2501. height:30px;
  2502. display:flex;
  2503. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2504. font-weight:500;
  2505. font-style:normal;
  2506. font-size:14px;
  2507. color:#000000;
  2508. line-height:30px;
  2509. }
  2510. #u39051 .text {
  2511. position:absolute;
  2512. align-self:flex-start;
  2513. padding:0px 0px 0px 0px;
  2514. box-sizing:border-box;
  2515. width:100%;
  2516. }
  2517. #u39051_text {
  2518. border-width:0px;
  2519. white-space:nowrap;
  2520. text-transform:none;
  2521. }
  2522. #u39052 {
  2523. border-width:0px;
  2524. position:absolute;
  2525. left:0px;
  2526. top:0px;
  2527. width:0px;
  2528. height:0px;
  2529. }
  2530. #u39053_img {
  2531. border-width:0px;
  2532. position:absolute;
  2533. left:0px;
  2534. top:0px;
  2535. width:18px;
  2536. height:18px;
  2537. }
  2538. #u39053 {
  2539. border-width:0px;
  2540. position:absolute;
  2541. left:1550px;
  2542. top:67px;
  2543. width:18px;
  2544. height:18px;
  2545. display:flex;
  2546. }
  2547. #u39053 .text {
  2548. position:absolute;
  2549. align-self:center;
  2550. padding:2px 2px 2px 2px;
  2551. box-sizing:border-box;
  2552. width:100%;
  2553. }
  2554. #u39053_text {
  2555. border-width:0px;
  2556. word-wrap:break-word;
  2557. text-transform:none;
  2558. visibility:hidden;
  2559. }
  2560. #u39054_img {
  2561. border-width:0px;
  2562. position:absolute;
  2563. left:0px;
  2564. top:0px;
  2565. width:2px;
  2566. height:15px;
  2567. }
  2568. #u39054 {
  2569. border-width:0px;
  2570. position:absolute;
  2571. left:1535px;
  2572. top:69px;
  2573. width:1px;
  2574. height:14px;
  2575. display:flex;
  2576. }
  2577. #u39054 .text {
  2578. position:absolute;
  2579. align-self:center;
  2580. padding:2px 2px 2px 2px;
  2581. box-sizing:border-box;
  2582. width:100%;
  2583. }
  2584. #u39054_text {
  2585. border-width:0px;
  2586. word-wrap:break-word;
  2587. text-transform:none;
  2588. visibility:hidden;
  2589. }
  2590. #u39055 {
  2591. border-width:0px;
  2592. position:absolute;
  2593. left:0px;
  2594. top:0px;
  2595. width:0px;
  2596. height:0px;
  2597. }
  2598. #u39056_img {
  2599. border-width:0px;
  2600. position:absolute;
  2601. left:0px;
  2602. top:0px;
  2603. width:9px;
  2604. height:9px;
  2605. }
  2606. #u39056 {
  2607. border-width:0px;
  2608. position:absolute;
  2609. left:1412px;
  2610. top:66px;
  2611. width:9px;
  2612. height:9px;
  2613. display:flex;
  2614. }
  2615. #u39056 .text {
  2616. position:absolute;
  2617. align-self:center;
  2618. padding:2px 2px 2px 2px;
  2619. box-sizing:border-box;
  2620. width:100%;
  2621. }
  2622. #u39056_text {
  2623. border-width:0px;
  2624. word-wrap:break-word;
  2625. text-transform:none;
  2626. visibility:hidden;
  2627. }
  2628. #u39057_img {
  2629. border-width:0px;
  2630. position:absolute;
  2631. left:0px;
  2632. top:0px;
  2633. width:9px;
  2634. height:9px;
  2635. }
  2636. #u39057 {
  2637. border-width:0px;
  2638. position:absolute;
  2639. left:1424px;
  2640. top:66px;
  2641. width:9px;
  2642. height:9px;
  2643. display:flex;
  2644. }
  2645. #u39057 .text {
  2646. position:absolute;
  2647. align-self:center;
  2648. padding:2px 2px 2px 2px;
  2649. box-sizing:border-box;
  2650. width:100%;
  2651. }
  2652. #u39057_text {
  2653. border-width:0px;
  2654. word-wrap:break-word;
  2655. text-transform:none;
  2656. visibility:hidden;
  2657. }
  2658. #u39058_img {
  2659. border-width:0px;
  2660. position:absolute;
  2661. left:0px;
  2662. top:0px;
  2663. width:9px;
  2664. height:9px;
  2665. }
  2666. #u39058 {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:1412px;
  2670. top:78px;
  2671. width:9px;
  2672. height:9px;
  2673. display:flex;
  2674. }
  2675. #u39058 .text {
  2676. position:absolute;
  2677. align-self:center;
  2678. padding:2px 2px 2px 2px;
  2679. box-sizing:border-box;
  2680. width:100%;
  2681. }
  2682. #u39058_text {
  2683. border-width:0px;
  2684. word-wrap:break-word;
  2685. text-transform:none;
  2686. visibility:hidden;
  2687. }
  2688. #u39059_img {
  2689. border-width:0px;
  2690. position:absolute;
  2691. left:0px;
  2692. top:0px;
  2693. width:9px;
  2694. height:9px;
  2695. }
  2696. #u39059 {
  2697. border-width:0px;
  2698. position:absolute;
  2699. left:1424px;
  2700. top:78px;
  2701. width:9px;
  2702. height:9px;
  2703. display:flex;
  2704. }
  2705. #u39059 .text {
  2706. position:absolute;
  2707. align-self:center;
  2708. padding:2px 2px 2px 2px;
  2709. box-sizing:border-box;
  2710. width:100%;
  2711. }
  2712. #u39059_text {
  2713. border-width:0px;
  2714. word-wrap:break-word;
  2715. text-transform:none;
  2716. visibility:hidden;
  2717. }
  2718. #u39060 {
  2719. border-width:0px;
  2720. position:absolute;
  2721. left:0px;
  2722. top:0px;
  2723. width:0px;
  2724. height:0px;
  2725. }
  2726. #u39061_img {
  2727. border-width:0px;
  2728. position:absolute;
  2729. left:0px;
  2730. top:0px;
  2731. width:6px;
  2732. height:6px;
  2733. }
  2734. #u39061 {
  2735. border-width:0px;
  2736. position:absolute;
  2737. left:1372px;
  2738. top:66px;
  2739. width:6px;
  2740. height:6px;
  2741. display:flex;
  2742. }
  2743. #u39061 .text {
  2744. position:absolute;
  2745. align-self:center;
  2746. padding:2px 2px 2px 2px;
  2747. box-sizing:border-box;
  2748. width:100%;
  2749. }
  2750. #u39061_text {
  2751. border-width:0px;
  2752. word-wrap:break-word;
  2753. text-transform:none;
  2754. visibility:hidden;
  2755. }
  2756. #u39062_img {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:0px;
  2760. top:0px;
  2761. width:6px;
  2762. height:6px;
  2763. }
  2764. #u39062 {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:1379px;
  2768. top:66px;
  2769. width:6px;
  2770. height:6px;
  2771. display:flex;
  2772. }
  2773. #u39062 .text {
  2774. position:absolute;
  2775. align-self:center;
  2776. padding:2px 2px 2px 2px;
  2777. box-sizing:border-box;
  2778. width:100%;
  2779. }
  2780. #u39062_text {
  2781. border-width:0px;
  2782. word-wrap:break-word;
  2783. text-transform:none;
  2784. visibility:hidden;
  2785. }
  2786. #u39063_img {
  2787. border-width:0px;
  2788. position:absolute;
  2789. left:0px;
  2790. top:0px;
  2791. width:6px;
  2792. height:6px;
  2793. }
  2794. #u39063 {
  2795. border-width:0px;
  2796. position:absolute;
  2797. left:1386px;
  2798. top:66px;
  2799. width:6px;
  2800. height:6px;
  2801. display:flex;
  2802. }
  2803. #u39063 .text {
  2804. position:absolute;
  2805. align-self:center;
  2806. padding:2px 2px 2px 2px;
  2807. box-sizing:border-box;
  2808. width:100%;
  2809. }
  2810. #u39063_text {
  2811. border-width:0px;
  2812. word-wrap:break-word;
  2813. text-transform:none;
  2814. visibility:hidden;
  2815. }
  2816. #u39064_img {
  2817. border-width:0px;
  2818. position:absolute;
  2819. left:0px;
  2820. top:0px;
  2821. width:6px;
  2822. height:6px;
  2823. }
  2824. #u39064 {
  2825. border-width:0px;
  2826. position:absolute;
  2827. left:1372px;
  2828. top:73px;
  2829. width:6px;
  2830. height:6px;
  2831. display:flex;
  2832. }
  2833. #u39064 .text {
  2834. position:absolute;
  2835. align-self:center;
  2836. padding:2px 2px 2px 2px;
  2837. box-sizing:border-box;
  2838. width:100%;
  2839. }
  2840. #u39064_text {
  2841. border-width:0px;
  2842. word-wrap:break-word;
  2843. text-transform:none;
  2844. visibility:hidden;
  2845. }
  2846. #u39065_img {
  2847. border-width:0px;
  2848. position:absolute;
  2849. left:0px;
  2850. top:0px;
  2851. width:6px;
  2852. height:6px;
  2853. }
  2854. #u39065 {
  2855. border-width:0px;
  2856. position:absolute;
  2857. left:1379px;
  2858. top:73px;
  2859. width:6px;
  2860. height:6px;
  2861. display:flex;
  2862. }
  2863. #u39065 .text {
  2864. position:absolute;
  2865. align-self:center;
  2866. padding:2px 2px 2px 2px;
  2867. box-sizing:border-box;
  2868. width:100%;
  2869. }
  2870. #u39065_text {
  2871. border-width:0px;
  2872. word-wrap:break-word;
  2873. text-transform:none;
  2874. visibility:hidden;
  2875. }
  2876. #u39066_img {
  2877. border-width:0px;
  2878. position:absolute;
  2879. left:0px;
  2880. top:0px;
  2881. width:6px;
  2882. height:6px;
  2883. }
  2884. #u39066 {
  2885. border-width:0px;
  2886. position:absolute;
  2887. left:1386px;
  2888. top:73px;
  2889. width:6px;
  2890. height:6px;
  2891. display:flex;
  2892. }
  2893. #u39066 .text {
  2894. position:absolute;
  2895. align-self:center;
  2896. padding:2px 2px 2px 2px;
  2897. box-sizing:border-box;
  2898. width:100%;
  2899. }
  2900. #u39066_text {
  2901. border-width:0px;
  2902. word-wrap:break-word;
  2903. text-transform:none;
  2904. visibility:hidden;
  2905. }
  2906. #u39067_img {
  2907. border-width:0px;
  2908. position:absolute;
  2909. left:0px;
  2910. top:0px;
  2911. width:6px;
  2912. height:6px;
  2913. }
  2914. #u39067 {
  2915. border-width:0px;
  2916. position:absolute;
  2917. left:1372px;
  2918. top:80px;
  2919. width:6px;
  2920. height:6px;
  2921. display:flex;
  2922. }
  2923. #u39067 .text {
  2924. position:absolute;
  2925. align-self:center;
  2926. padding:2px 2px 2px 2px;
  2927. box-sizing:border-box;
  2928. width:100%;
  2929. }
  2930. #u39067_text {
  2931. border-width:0px;
  2932. word-wrap:break-word;
  2933. text-transform:none;
  2934. visibility:hidden;
  2935. }
  2936. #u39068_img {
  2937. border-width:0px;
  2938. position:absolute;
  2939. left:0px;
  2940. top:0px;
  2941. width:6px;
  2942. height:6px;
  2943. }
  2944. #u39068 {
  2945. border-width:0px;
  2946. position:absolute;
  2947. left:1379px;
  2948. top:80px;
  2949. width:6px;
  2950. height:6px;
  2951. display:flex;
  2952. }
  2953. #u39068 .text {
  2954. position:absolute;
  2955. align-self:center;
  2956. padding:2px 2px 2px 2px;
  2957. box-sizing:border-box;
  2958. width:100%;
  2959. }
  2960. #u39068_text {
  2961. border-width:0px;
  2962. word-wrap:break-word;
  2963. text-transform:none;
  2964. visibility:hidden;
  2965. }
  2966. #u39069_img {
  2967. border-width:0px;
  2968. position:absolute;
  2969. left:0px;
  2970. top:0px;
  2971. width:6px;
  2972. height:6px;
  2973. }
  2974. #u39069 {
  2975. border-width:0px;
  2976. position:absolute;
  2977. left:1386px;
  2978. top:80px;
  2979. width:6px;
  2980. height:6px;
  2981. display:flex;
  2982. }
  2983. #u39069 .text {
  2984. position:absolute;
  2985. align-self:center;
  2986. padding:2px 2px 2px 2px;
  2987. box-sizing:border-box;
  2988. width:100%;
  2989. }
  2990. #u39069_text {
  2991. border-width:0px;
  2992. word-wrap:break-word;
  2993. text-transform:none;
  2994. visibility:hidden;
  2995. }
  2996. #u39070 {
  2997. border-width:0px;
  2998. position:absolute;
  2999. left:0px;
  3000. top:0px;
  3001. width:0px;
  3002. height:0px;
  3003. }
  3004. #u39071_img {
  3005. border-width:0px;
  3006. position:absolute;
  3007. left:0px;
  3008. top:0px;
  3009. width:4px;
  3010. height:4px;
  3011. }
  3012. #u39071 {
  3013. border-width:0px;
  3014. position:absolute;
  3015. left:1332px;
  3016. top:67px;
  3017. width:4px;
  3018. height:4px;
  3019. display:flex;
  3020. }
  3021. #u39071 .text {
  3022. position:absolute;
  3023. align-self:center;
  3024. padding:2px 2px 2px 2px;
  3025. box-sizing:border-box;
  3026. width:100%;
  3027. }
  3028. #u39071_text {
  3029. border-width:0px;
  3030. word-wrap:break-word;
  3031. text-transform:none;
  3032. visibility:hidden;
  3033. }
  3034. #u39072_img {
  3035. border-width:0px;
  3036. position:absolute;
  3037. left:0px;
  3038. top:0px;
  3039. width:4px;
  3040. height:4px;
  3041. }
  3042. #u39072 {
  3043. border-width:0px;
  3044. position:absolute;
  3045. left:1337px;
  3046. top:67px;
  3047. width:4px;
  3048. height:4px;
  3049. display:flex;
  3050. }
  3051. #u39072 .text {
  3052. position:absolute;
  3053. align-self:center;
  3054. padding:2px 2px 2px 2px;
  3055. box-sizing:border-box;
  3056. width:100%;
  3057. }
  3058. #u39072_text {
  3059. border-width:0px;
  3060. word-wrap:break-word;
  3061. text-transform:none;
  3062. visibility:hidden;
  3063. }
  3064. #u39073_img {
  3065. border-width:0px;
  3066. position:absolute;
  3067. left:0px;
  3068. top:0px;
  3069. width:4px;
  3070. height:4px;
  3071. }
  3072. #u39073 {
  3073. border-width:0px;
  3074. position:absolute;
  3075. left:1342px;
  3076. top:67px;
  3077. width:4px;
  3078. height:4px;
  3079. display:flex;
  3080. }
  3081. #u39073 .text {
  3082. position:absolute;
  3083. align-self:center;
  3084. padding:2px 2px 2px 2px;
  3085. box-sizing:border-box;
  3086. width:100%;
  3087. }
  3088. #u39073_text {
  3089. border-width:0px;
  3090. word-wrap:break-word;
  3091. text-transform:none;
  3092. visibility:hidden;
  3093. }
  3094. #u39074_img {
  3095. border-width:0px;
  3096. position:absolute;
  3097. left:0px;
  3098. top:0px;
  3099. width:4px;
  3100. height:4px;
  3101. }
  3102. #u39074 {
  3103. border-width:0px;
  3104. position:absolute;
  3105. left:1347px;
  3106. top:67px;
  3107. width:4px;
  3108. height:4px;
  3109. display:flex;
  3110. }
  3111. #u39074 .text {
  3112. position:absolute;
  3113. align-self:center;
  3114. padding:2px 2px 2px 2px;
  3115. box-sizing:border-box;
  3116. width:100%;
  3117. }
  3118. #u39074_text {
  3119. border-width:0px;
  3120. word-wrap:break-word;
  3121. text-transform:none;
  3122. visibility:hidden;
  3123. }
  3124. #u39075_img {
  3125. border-width:0px;
  3126. position:absolute;
  3127. left:0px;
  3128. top:0px;
  3129. width:4px;
  3130. height:4px;
  3131. }
  3132. #u39075 {
  3133. border-width:0px;
  3134. position:absolute;
  3135. left:1332px;
  3136. top:72px;
  3137. width:4px;
  3138. height:4px;
  3139. display:flex;
  3140. }
  3141. #u39075 .text {
  3142. position:absolute;
  3143. align-self:center;
  3144. padding:2px 2px 2px 2px;
  3145. box-sizing:border-box;
  3146. width:100%;
  3147. }
  3148. #u39075_text {
  3149. border-width:0px;
  3150. word-wrap:break-word;
  3151. text-transform:none;
  3152. visibility:hidden;
  3153. }
  3154. #u39076_img {
  3155. border-width:0px;
  3156. position:absolute;
  3157. left:0px;
  3158. top:0px;
  3159. width:4px;
  3160. height:4px;
  3161. }
  3162. #u39076 {
  3163. border-width:0px;
  3164. position:absolute;
  3165. left:1337px;
  3166. top:72px;
  3167. width:4px;
  3168. height:4px;
  3169. display:flex;
  3170. }
  3171. #u39076 .text {
  3172. position:absolute;
  3173. align-self:center;
  3174. padding:2px 2px 2px 2px;
  3175. box-sizing:border-box;
  3176. width:100%;
  3177. }
  3178. #u39076_text {
  3179. border-width:0px;
  3180. word-wrap:break-word;
  3181. text-transform:none;
  3182. visibility:hidden;
  3183. }
  3184. #u39077_img {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:0px;
  3188. top:0px;
  3189. width:4px;
  3190. height:4px;
  3191. }
  3192. #u39077 {
  3193. border-width:0px;
  3194. position:absolute;
  3195. left:1342px;
  3196. top:72px;
  3197. width:4px;
  3198. height:4px;
  3199. display:flex;
  3200. }
  3201. #u39077 .text {
  3202. position:absolute;
  3203. align-self:center;
  3204. padding:2px 2px 2px 2px;
  3205. box-sizing:border-box;
  3206. width:100%;
  3207. }
  3208. #u39077_text {
  3209. border-width:0px;
  3210. word-wrap:break-word;
  3211. text-transform:none;
  3212. visibility:hidden;
  3213. }
  3214. #u39078_img {
  3215. border-width:0px;
  3216. position:absolute;
  3217. left:0px;
  3218. top:0px;
  3219. width:4px;
  3220. height:4px;
  3221. }
  3222. #u39078 {
  3223. border-width:0px;
  3224. position:absolute;
  3225. left:1347px;
  3226. top:72px;
  3227. width:4px;
  3228. height:4px;
  3229. display:flex;
  3230. }
  3231. #u39078 .text {
  3232. position:absolute;
  3233. align-self:center;
  3234. padding:2px 2px 2px 2px;
  3235. box-sizing:border-box;
  3236. width:100%;
  3237. }
  3238. #u39078_text {
  3239. border-width:0px;
  3240. word-wrap:break-word;
  3241. text-transform:none;
  3242. visibility:hidden;
  3243. }
  3244. #u39079_img {
  3245. border-width:0px;
  3246. position:absolute;
  3247. left:0px;
  3248. top:0px;
  3249. width:4px;
  3250. height:4px;
  3251. }
  3252. #u39079 {
  3253. border-width:0px;
  3254. position:absolute;
  3255. left:1332px;
  3256. top:77px;
  3257. width:4px;
  3258. height:4px;
  3259. display:flex;
  3260. }
  3261. #u39079 .text {
  3262. position:absolute;
  3263. align-self:center;
  3264. padding:2px 2px 2px 2px;
  3265. box-sizing:border-box;
  3266. width:100%;
  3267. }
  3268. #u39079_text {
  3269. border-width:0px;
  3270. word-wrap:break-word;
  3271. text-transform:none;
  3272. visibility:hidden;
  3273. }
  3274. #u39080_img {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:0px;
  3278. top:0px;
  3279. width:4px;
  3280. height:4px;
  3281. }
  3282. #u39080 {
  3283. border-width:0px;
  3284. position:absolute;
  3285. left:1337px;
  3286. top:77px;
  3287. width:4px;
  3288. height:4px;
  3289. display:flex;
  3290. }
  3291. #u39080 .text {
  3292. position:absolute;
  3293. align-self:center;
  3294. padding:2px 2px 2px 2px;
  3295. box-sizing:border-box;
  3296. width:100%;
  3297. }
  3298. #u39080_text {
  3299. border-width:0px;
  3300. word-wrap:break-word;
  3301. text-transform:none;
  3302. visibility:hidden;
  3303. }
  3304. #u39081_img {
  3305. border-width:0px;
  3306. position:absolute;
  3307. left:0px;
  3308. top:0px;
  3309. width:4px;
  3310. height:4px;
  3311. }
  3312. #u39081 {
  3313. border-width:0px;
  3314. position:absolute;
  3315. left:1342px;
  3316. top:77px;
  3317. width:4px;
  3318. height:4px;
  3319. display:flex;
  3320. }
  3321. #u39081 .text {
  3322. position:absolute;
  3323. align-self:center;
  3324. padding:2px 2px 2px 2px;
  3325. box-sizing:border-box;
  3326. width:100%;
  3327. }
  3328. #u39081_text {
  3329. border-width:0px;
  3330. word-wrap:break-word;
  3331. text-transform:none;
  3332. visibility:hidden;
  3333. }
  3334. #u39082_img {
  3335. border-width:0px;
  3336. position:absolute;
  3337. left:0px;
  3338. top:0px;
  3339. width:4px;
  3340. height:4px;
  3341. }
  3342. #u39082 {
  3343. border-width:0px;
  3344. position:absolute;
  3345. left:1347px;
  3346. top:77px;
  3347. width:4px;
  3348. height:4px;
  3349. display:flex;
  3350. }
  3351. #u39082 .text {
  3352. position:absolute;
  3353. align-self:center;
  3354. padding:2px 2px 2px 2px;
  3355. box-sizing:border-box;
  3356. width:100%;
  3357. }
  3358. #u39082_text {
  3359. border-width:0px;
  3360. word-wrap:break-word;
  3361. text-transform:none;
  3362. visibility:hidden;
  3363. }
  3364. #u39083_img {
  3365. border-width:0px;
  3366. position:absolute;
  3367. left:0px;
  3368. top:0px;
  3369. width:4px;
  3370. height:4px;
  3371. }
  3372. #u39083 {
  3373. border-width:0px;
  3374. position:absolute;
  3375. left:1332px;
  3376. top:82px;
  3377. width:4px;
  3378. height:4px;
  3379. display:flex;
  3380. }
  3381. #u39083 .text {
  3382. position:absolute;
  3383. align-self:center;
  3384. padding:2px 2px 2px 2px;
  3385. box-sizing:border-box;
  3386. width:100%;
  3387. }
  3388. #u39083_text {
  3389. border-width:0px;
  3390. word-wrap:break-word;
  3391. text-transform:none;
  3392. visibility:hidden;
  3393. }
  3394. #u39084_img {
  3395. border-width:0px;
  3396. position:absolute;
  3397. left:0px;
  3398. top:0px;
  3399. width:4px;
  3400. height:4px;
  3401. }
  3402. #u39084 {
  3403. border-width:0px;
  3404. position:absolute;
  3405. left:1337px;
  3406. top:82px;
  3407. width:4px;
  3408. height:4px;
  3409. display:flex;
  3410. }
  3411. #u39084 .text {
  3412. position:absolute;
  3413. align-self:center;
  3414. padding:2px 2px 2px 2px;
  3415. box-sizing:border-box;
  3416. width:100%;
  3417. }
  3418. #u39084_text {
  3419. border-width:0px;
  3420. word-wrap:break-word;
  3421. text-transform:none;
  3422. visibility:hidden;
  3423. }
  3424. #u39085_img {
  3425. border-width:0px;
  3426. position:absolute;
  3427. left:0px;
  3428. top:0px;
  3429. width:4px;
  3430. height:4px;
  3431. }
  3432. #u39085 {
  3433. border-width:0px;
  3434. position:absolute;
  3435. left:1342px;
  3436. top:82px;
  3437. width:4px;
  3438. height:4px;
  3439. display:flex;
  3440. }
  3441. #u39085 .text {
  3442. position:absolute;
  3443. align-self:center;
  3444. padding:2px 2px 2px 2px;
  3445. box-sizing:border-box;
  3446. width:100%;
  3447. }
  3448. #u39085_text {
  3449. border-width:0px;
  3450. word-wrap:break-word;
  3451. text-transform:none;
  3452. visibility:hidden;
  3453. }
  3454. #u39086_img {
  3455. border-width:0px;
  3456. position:absolute;
  3457. left:0px;
  3458. top:0px;
  3459. width:4px;
  3460. height:4px;
  3461. }
  3462. #u39086 {
  3463. border-width:0px;
  3464. position:absolute;
  3465. left:1347px;
  3466. top:82px;
  3467. width:4px;
  3468. height:4px;
  3469. display:flex;
  3470. }
  3471. #u39086 .text {
  3472. position:absolute;
  3473. align-self:center;
  3474. padding:2px 2px 2px 2px;
  3475. box-sizing:border-box;
  3476. width:100%;
  3477. }
  3478. #u39086_text {
  3479. border-width:0px;
  3480. word-wrap:break-word;
  3481. text-transform:none;
  3482. visibility:hidden;
  3483. }
  3484. #u39087_img {
  3485. border-width:0px;
  3486. position:absolute;
  3487. left:0px;
  3488. top:0px;
  3489. width:20px;
  3490. height:20px;
  3491. }
  3492. #u39087 {
  3493. border-width:0px;
  3494. position:absolute;
  3495. left:1454px;
  3496. top:66px;
  3497. width:20px;
  3498. height:20px;
  3499. display:flex;
  3500. }
  3501. #u39087 .text {
  3502. position:absolute;
  3503. align-self:center;
  3504. padding:2px 2px 2px 2px;
  3505. box-sizing:border-box;
  3506. width:100%;
  3507. }
  3508. #u39087_text {
  3509. border-width:0px;
  3510. word-wrap:break-word;
  3511. text-transform:none;
  3512. visibility:hidden;
  3513. }
  3514. #u39088_img {
  3515. border-width:0px;
  3516. position:absolute;
  3517. left:0px;
  3518. top:0px;
  3519. width:18px;
  3520. height:18px;
  3521. }
  3522. #u39088 {
  3523. border-width:0px;
  3524. position:absolute;
  3525. left:1503px;
  3526. top:67px;
  3527. width:18px;
  3528. height:18px;
  3529. display:flex;
  3530. }
  3531. #u39088 .text {
  3532. position:absolute;
  3533. align-self:center;
  3534. padding:2px 2px 2px 2px;
  3535. box-sizing:border-box;
  3536. width:100%;
  3537. }
  3538. #u39088_text {
  3539. border-width:0px;
  3540. word-wrap:break-word;
  3541. text-transform:none;
  3542. visibility:hidden;
  3543. }
  3544. #u39089_img {
  3545. border-width:0px;
  3546. position:absolute;
  3547. left:0px;
  3548. top:0px;
  3549. width:2px;
  3550. height:15px;
  3551. }
  3552. #u39089 {
  3553. border-width:0px;
  3554. position:absolute;
  3555. left:1488px;
  3556. top:69px;
  3557. width:1px;
  3558. height:14px;
  3559. display:flex;
  3560. }
  3561. #u39089 .text {
  3562. position:absolute;
  3563. align-self:center;
  3564. padding:2px 2px 2px 2px;
  3565. box-sizing:border-box;
  3566. width:100%;
  3567. }
  3568. #u39089_text {
  3569. border-width:0px;
  3570. word-wrap:break-word;
  3571. text-transform:none;
  3572. visibility:hidden;
  3573. }
  3574. #u39090_div {
  3575. border-width:0px;
  3576. position:absolute;
  3577. left:0px;
  3578. top:0px;
  3579. width:43px;
  3580. height:30px;
  3581. background:inherit;
  3582. background-color:rgba(255, 255, 255, 0);
  3583. border:none;
  3584. border-radius:0px;
  3585. -moz-box-shadow:none;
  3586. -webkit-box-shadow:none;
  3587. box-shadow:none;
  3588. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3589. font-weight:500;
  3590. font-style:normal;
  3591. font-size:14px;
  3592. color:#000000;
  3593. line-height:30px;
  3594. }
  3595. #u39090 {
  3596. border-width:0px;
  3597. position:absolute;
  3598. left:351px;
  3599. top:291px;
  3600. width:43px;
  3601. height:30px;
  3602. display:flex;
  3603. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3604. font-weight:500;
  3605. font-style:normal;
  3606. font-size:14px;
  3607. color:#000000;
  3608. line-height:30px;
  3609. }
  3610. #u39090 .text {
  3611. position:absolute;
  3612. align-self:flex-start;
  3613. padding:0px 0px 0px 0px;
  3614. box-sizing:border-box;
  3615. width:100%;
  3616. }
  3617. #u39090_text {
  3618. border-width:0px;
  3619. white-space:nowrap;
  3620. text-transform:none;
  3621. }
  3622. #u39091 {
  3623. border-width:0px;
  3624. position:absolute;
  3625. left:0px;
  3626. top:0px;
  3627. width:0px;
  3628. height:0px;
  3629. }
  3630. #u39092_div {
  3631. border-width:0px;
  3632. position:absolute;
  3633. left:0px;
  3634. top:0px;
  3635. width:30px;
  3636. height:30px;
  3637. background:inherit;
  3638. background-color:rgba(255, 255, 255, 1);
  3639. box-sizing:border-box;
  3640. border-width:1px;
  3641. border-style:solid;
  3642. border-color:rgba(121, 121, 121, 1);
  3643. border-radius:0px;
  3644. -moz-box-shadow:none;
  3645. -webkit-box-shadow:none;
  3646. box-shadow:none;
  3647. }
  3648. #u39092 {
  3649. border-width:0px;
  3650. position:absolute;
  3651. left:352px;
  3652. top:134px;
  3653. width:30px;
  3654. height:30px;
  3655. display:flex;
  3656. }
  3657. #u39092 .text {
  3658. position:absolute;
  3659. align-self:center;
  3660. padding:2px 2px 2px 2px;
  3661. box-sizing:border-box;
  3662. width:100%;
  3663. }
  3664. #u39092_text {
  3665. border-width:0px;
  3666. word-wrap:break-word;
  3667. text-transform:none;
  3668. visibility:hidden;
  3669. }
  3670. #u39093_img {
  3671. border-width:0px;
  3672. position:absolute;
  3673. left:0px;
  3674. top:0px;
  3675. width:19px;
  3676. height:18px;
  3677. }
  3678. #u39093 {
  3679. border-width:0px;
  3680. position:absolute;
  3681. left:358px;
  3682. top:140px;
  3683. width:19px;
  3684. height:18px;
  3685. display:flex;
  3686. -webkit-transform:rotate(135deg);
  3687. -moz-transform:rotate(135deg);
  3688. -ms-transform:rotate(135deg);
  3689. transform:rotate(135deg);
  3690. }
  3691. #u39093 .text {
  3692. position:absolute;
  3693. align-self:center;
  3694. padding:2px 2px 2px 2px;
  3695. box-sizing:border-box;
  3696. width:100%;
  3697. }
  3698. #u39093_text {
  3699. border-width:0px;
  3700. word-wrap:break-word;
  3701. text-transform:none;
  3702. visibility:hidden;
  3703. }
  3704. #u39094 {
  3705. border-width:0px;
  3706. position:absolute;
  3707. left:0px;
  3708. top:0px;
  3709. width:0px;
  3710. height:0px;
  3711. }
  3712. #u39095_div {
  3713. border-width:0px;
  3714. position:absolute;
  3715. left:0px;
  3716. top:0px;
  3717. width:30px;
  3718. height:30px;
  3719. background:inherit;
  3720. background-color:rgba(255, 255, 255, 1);
  3721. box-sizing:border-box;
  3722. border-width:1px;
  3723. border-style:solid;
  3724. border-color:rgba(121, 121, 121, 1);
  3725. border-radius:0px;
  3726. -moz-box-shadow:none;
  3727. -webkit-box-shadow:none;
  3728. box-shadow:none;
  3729. }
  3730. #u39095 {
  3731. border-width:0px;
  3732. position:absolute;
  3733. left:392px;
  3734. top:134px;
  3735. width:30px;
  3736. height:30px;
  3737. display:flex;
  3738. }
  3739. #u39095 .text {
  3740. position:absolute;
  3741. align-self:center;
  3742. padding:2px 2px 2px 2px;
  3743. box-sizing:border-box;
  3744. width:100%;
  3745. }
  3746. #u39095_text {
  3747. border-width:0px;
  3748. word-wrap:break-word;
  3749. text-transform:none;
  3750. visibility:hidden;
  3751. }
  3752. #u39096_img {
  3753. border-width:0px;
  3754. position:absolute;
  3755. left:0px;
  3756. top:0px;
  3757. width:19px;
  3758. height:18px;
  3759. }
  3760. #u39096 {
  3761. border-width:0px;
  3762. position:absolute;
  3763. left:398px;
  3764. top:140px;
  3765. width:19px;
  3766. height:18px;
  3767. display:flex;
  3768. -webkit-transform:rotate(180deg);
  3769. -moz-transform:rotate(180deg);
  3770. -ms-transform:rotate(180deg);
  3771. transform:rotate(180deg);
  3772. }
  3773. #u39096 .text {
  3774. position:absolute;
  3775. align-self:center;
  3776. padding:2px 2px 2px 2px;
  3777. box-sizing:border-box;
  3778. width:100%;
  3779. }
  3780. #u39096_text {
  3781. border-width:0px;
  3782. word-wrap:break-word;
  3783. text-transform:none;
  3784. visibility:hidden;
  3785. }
  3786. #u39097 {
  3787. border-width:0px;
  3788. position:absolute;
  3789. left:0px;
  3790. top:0px;
  3791. width:0px;
  3792. height:0px;
  3793. }
  3794. #u39098_div {
  3795. border-width:0px;
  3796. position:absolute;
  3797. left:0px;
  3798. top:0px;
  3799. width:30px;
  3800. height:30px;
  3801. background:inherit;
  3802. background-color:rgba(255, 255, 255, 1);
  3803. box-sizing:border-box;
  3804. border-width:1px;
  3805. border-style:solid;
  3806. border-color:rgba(121, 121, 121, 1);
  3807. border-radius:0px;
  3808. -moz-box-shadow:none;
  3809. -webkit-box-shadow:none;
  3810. box-shadow:none;
  3811. }
  3812. #u39098 {
  3813. border-width:0px;
  3814. position:absolute;
  3815. left:432px;
  3816. top:134px;
  3817. width:30px;
  3818. height:30px;
  3819. display:flex;
  3820. }
  3821. #u39098 .text {
  3822. position:absolute;
  3823. align-self:center;
  3824. padding:2px 2px 2px 2px;
  3825. box-sizing:border-box;
  3826. width:100%;
  3827. }
  3828. #u39098_text {
  3829. border-width:0px;
  3830. word-wrap:break-word;
  3831. text-transform:none;
  3832. visibility:hidden;
  3833. }
  3834. #u39099_img {
  3835. border-width:0px;
  3836. position:absolute;
  3837. left:0px;
  3838. top:0px;
  3839. width:19px;
  3840. height:18px;
  3841. }
  3842. #u39099 {
  3843. border-width:0px;
  3844. position:absolute;
  3845. left:438px;
  3846. top:140px;
  3847. width:19px;
  3848. height:18px;
  3849. display:flex;
  3850. -webkit-transform:rotate(225deg);
  3851. -moz-transform:rotate(225deg);
  3852. -ms-transform:rotate(225deg);
  3853. transform:rotate(225deg);
  3854. }
  3855. #u39099 .text {
  3856. position:absolute;
  3857. align-self:center;
  3858. padding:2px 2px 2px 2px;
  3859. box-sizing:border-box;
  3860. width:100%;
  3861. }
  3862. #u39099_text {
  3863. border-width:0px;
  3864. word-wrap:break-word;
  3865. text-transform:none;
  3866. visibility:hidden;
  3867. }
  3868. #u39100 {
  3869. border-width:0px;
  3870. position:absolute;
  3871. left:0px;
  3872. top:0px;
  3873. width:0px;
  3874. height:0px;
  3875. }
  3876. #u39101_div {
  3877. border-width:0px;
  3878. position:absolute;
  3879. left:0px;
  3880. top:0px;
  3881. width:30px;
  3882. height:30px;
  3883. background:inherit;
  3884. background-color:rgba(255, 255, 255, 1);
  3885. box-sizing:border-box;
  3886. border-width:1px;
  3887. border-style:solid;
  3888. border-color:rgba(121, 121, 121, 1);
  3889. border-radius:0px;
  3890. -moz-box-shadow:none;
  3891. -webkit-box-shadow:none;
  3892. box-shadow:none;
  3893. }
  3894. #u39101 {
  3895. border-width:0px;
  3896. position:absolute;
  3897. left:352px;
  3898. top:174px;
  3899. width:30px;
  3900. height:30px;
  3901. display:flex;
  3902. }
  3903. #u39101 .text {
  3904. position:absolute;
  3905. align-self:center;
  3906. padding:2px 2px 2px 2px;
  3907. box-sizing:border-box;
  3908. width:100%;
  3909. }
  3910. #u39101_text {
  3911. border-width:0px;
  3912. word-wrap:break-word;
  3913. text-transform:none;
  3914. visibility:hidden;
  3915. }
  3916. #u39102_img {
  3917. border-width:0px;
  3918. position:absolute;
  3919. left:0px;
  3920. top:0px;
  3921. width:19px;
  3922. height:18px;
  3923. }
  3924. #u39102 {
  3925. border-width:0px;
  3926. position:absolute;
  3927. left:358px;
  3928. top:180px;
  3929. width:19px;
  3930. height:18px;
  3931. display:flex;
  3932. -webkit-transform:rotate(90deg);
  3933. -moz-transform:rotate(90deg);
  3934. -ms-transform:rotate(90deg);
  3935. transform:rotate(90deg);
  3936. }
  3937. #u39102 .text {
  3938. position:absolute;
  3939. align-self:center;
  3940. padding:2px 2px 2px 2px;
  3941. box-sizing:border-box;
  3942. width:100%;
  3943. }
  3944. #u39102_text {
  3945. border-width:0px;
  3946. word-wrap:break-word;
  3947. text-transform:none;
  3948. visibility:hidden;
  3949. }
  3950. #u39103 {
  3951. border-width:0px;
  3952. position:absolute;
  3953. left:0px;
  3954. top:0px;
  3955. width:0px;
  3956. height:0px;
  3957. }
  3958. #u39104_div {
  3959. border-width:0px;
  3960. position:absolute;
  3961. left:0px;
  3962. top:0px;
  3963. width:30px;
  3964. height:30px;
  3965. background:inherit;
  3966. background-color:rgba(255, 255, 255, 1);
  3967. box-sizing:border-box;
  3968. border-width:1px;
  3969. border-style:solid;
  3970. border-color:rgba(121, 121, 121, 1);
  3971. border-radius:0px;
  3972. -moz-box-shadow:none;
  3973. -webkit-box-shadow:none;
  3974. box-shadow:none;
  3975. }
  3976. #u39104 {
  3977. border-width:0px;
  3978. position:absolute;
  3979. left:432px;
  3980. top:174px;
  3981. width:30px;
  3982. height:30px;
  3983. display:flex;
  3984. }
  3985. #u39104 .text {
  3986. position:absolute;
  3987. align-self:center;
  3988. padding:2px 2px 2px 2px;
  3989. box-sizing:border-box;
  3990. width:100%;
  3991. }
  3992. #u39104_text {
  3993. border-width:0px;
  3994. word-wrap:break-word;
  3995. text-transform:none;
  3996. visibility:hidden;
  3997. }
  3998. #u39105_img {
  3999. border-width:0px;
  4000. position:absolute;
  4001. left:0px;
  4002. top:0px;
  4003. width:19px;
  4004. height:18px;
  4005. }
  4006. #u39105 {
  4007. border-width:0px;
  4008. position:absolute;
  4009. left:438px;
  4010. top:180px;
  4011. width:19px;
  4012. height:18px;
  4013. display:flex;
  4014. -webkit-transform:rotate(270deg);
  4015. -moz-transform:rotate(270deg);
  4016. -ms-transform:rotate(270deg);
  4017. transform:rotate(270deg);
  4018. }
  4019. #u39105 .text {
  4020. position:absolute;
  4021. align-self:center;
  4022. padding:2px 2px 2px 2px;
  4023. box-sizing:border-box;
  4024. width:100%;
  4025. }
  4026. #u39105_text {
  4027. border-width:0px;
  4028. word-wrap:break-word;
  4029. text-transform:none;
  4030. visibility:hidden;
  4031. }
  4032. #u39106 {
  4033. border-width:0px;
  4034. position:absolute;
  4035. left:0px;
  4036. top:0px;
  4037. width:0px;
  4038. height:0px;
  4039. }
  4040. #u39107_div {
  4041. border-width:0px;
  4042. position:absolute;
  4043. left:0px;
  4044. top:0px;
  4045. width:30px;
  4046. height:30px;
  4047. background:inherit;
  4048. background-color:rgba(255, 255, 255, 1);
  4049. box-sizing:border-box;
  4050. border-width:1px;
  4051. border-style:solid;
  4052. border-color:rgba(121, 121, 121, 1);
  4053. border-radius:0px;
  4054. -moz-box-shadow:none;
  4055. -webkit-box-shadow:none;
  4056. box-shadow:none;
  4057. }
  4058. #u39107 {
  4059. border-width:0px;
  4060. position:absolute;
  4061. left:352px;
  4062. top:214px;
  4063. width:30px;
  4064. height:30px;
  4065. display:flex;
  4066. }
  4067. #u39107 .text {
  4068. position:absolute;
  4069. align-self:center;
  4070. padding:2px 2px 2px 2px;
  4071. box-sizing:border-box;
  4072. width:100%;
  4073. }
  4074. #u39107_text {
  4075. border-width:0px;
  4076. word-wrap:break-word;
  4077. text-transform:none;
  4078. visibility:hidden;
  4079. }
  4080. #u39108_img {
  4081. border-width:0px;
  4082. position:absolute;
  4083. left:0px;
  4084. top:0px;
  4085. width:19px;
  4086. height:18px;
  4087. }
  4088. #u39108 {
  4089. border-width:0px;
  4090. position:absolute;
  4091. left:358px;
  4092. top:220px;
  4093. width:19px;
  4094. height:18px;
  4095. display:flex;
  4096. -webkit-transform:rotate(51deg);
  4097. -moz-transform:rotate(51deg);
  4098. -ms-transform:rotate(51deg);
  4099. transform:rotate(51deg);
  4100. }
  4101. #u39108 .text {
  4102. position:absolute;
  4103. align-self:center;
  4104. padding:2px 2px 2px 2px;
  4105. box-sizing:border-box;
  4106. width:100%;
  4107. }
  4108. #u39108_text {
  4109. border-width:0px;
  4110. word-wrap:break-word;
  4111. text-transform:none;
  4112. visibility:hidden;
  4113. }
  4114. #u39109 {
  4115. border-width:0px;
  4116. position:absolute;
  4117. left:0px;
  4118. top:0px;
  4119. width:0px;
  4120. height:0px;
  4121. }
  4122. #u39110_div {
  4123. border-width:0px;
  4124. position:absolute;
  4125. left:0px;
  4126. top:0px;
  4127. width:30px;
  4128. height:30px;
  4129. background:inherit;
  4130. background-color:rgba(255, 255, 255, 1);
  4131. box-sizing:border-box;
  4132. border-width:1px;
  4133. border-style:solid;
  4134. border-color:rgba(121, 121, 121, 1);
  4135. border-radius:0px;
  4136. -moz-box-shadow:none;
  4137. -webkit-box-shadow:none;
  4138. box-shadow:none;
  4139. }
  4140. #u39110 {
  4141. border-width:0px;
  4142. position:absolute;
  4143. left:392px;
  4144. top:214px;
  4145. width:30px;
  4146. height:30px;
  4147. display:flex;
  4148. }
  4149. #u39110 .text {
  4150. position:absolute;
  4151. align-self:center;
  4152. padding:2px 2px 2px 2px;
  4153. box-sizing:border-box;
  4154. width:100%;
  4155. }
  4156. #u39110_text {
  4157. border-width:0px;
  4158. word-wrap:break-word;
  4159. text-transform:none;
  4160. visibility:hidden;
  4161. }
  4162. #u39111_img {
  4163. border-width:0px;
  4164. position:absolute;
  4165. left:0px;
  4166. top:0px;
  4167. width:19px;
  4168. height:18px;
  4169. }
  4170. #u39111 {
  4171. border-width:0px;
  4172. position:absolute;
  4173. left:398px;
  4174. top:220px;
  4175. width:19px;
  4176. height:18px;
  4177. display:flex;
  4178. }
  4179. #u39111 .text {
  4180. position:absolute;
  4181. align-self:center;
  4182. padding:2px 2px 2px 2px;
  4183. box-sizing:border-box;
  4184. width:100%;
  4185. }
  4186. #u39111_text {
  4187. border-width:0px;
  4188. word-wrap:break-word;
  4189. text-transform:none;
  4190. visibility:hidden;
  4191. }
  4192. #u39112 {
  4193. border-width:0px;
  4194. position:absolute;
  4195. left:0px;
  4196. top:0px;
  4197. width:0px;
  4198. height:0px;
  4199. }
  4200. #u39113_div {
  4201. border-width:0px;
  4202. position:absolute;
  4203. left:0px;
  4204. top:0px;
  4205. width:30px;
  4206. height:30px;
  4207. background:inherit;
  4208. background-color:rgba(255, 255, 255, 1);
  4209. box-sizing:border-box;
  4210. border-width:1px;
  4211. border-style:solid;
  4212. border-color:rgba(121, 121, 121, 1);
  4213. border-radius:0px;
  4214. -moz-box-shadow:none;
  4215. -webkit-box-shadow:none;
  4216. box-shadow:none;
  4217. }
  4218. #u39113 {
  4219. border-width:0px;
  4220. position:absolute;
  4221. left:432px;
  4222. top:214px;
  4223. width:30px;
  4224. height:30px;
  4225. display:flex;
  4226. }
  4227. #u39113 .text {
  4228. position:absolute;
  4229. align-self:center;
  4230. padding:2px 2px 2px 2px;
  4231. box-sizing:border-box;
  4232. width:100%;
  4233. }
  4234. #u39113_text {
  4235. border-width:0px;
  4236. word-wrap:break-word;
  4237. text-transform:none;
  4238. visibility:hidden;
  4239. }
  4240. #u39114_img {
  4241. border-width:0px;
  4242. position:absolute;
  4243. left:0px;
  4244. top:0px;
  4245. width:19px;
  4246. height:18px;
  4247. }
  4248. #u39114 {
  4249. border-width:0px;
  4250. position:absolute;
  4251. left:438px;
  4252. top:220px;
  4253. width:19px;
  4254. height:18px;
  4255. display:flex;
  4256. -webkit-transform:rotate(300deg);
  4257. -moz-transform:rotate(300deg);
  4258. -ms-transform:rotate(300deg);
  4259. transform:rotate(300deg);
  4260. }
  4261. #u39114 .text {
  4262. position:absolute;
  4263. align-self:center;
  4264. padding:2px 2px 2px 2px;
  4265. box-sizing:border-box;
  4266. width:100%;
  4267. }
  4268. #u39114_text {
  4269. border-width:0px;
  4270. word-wrap:break-word;
  4271. text-transform:none;
  4272. visibility:hidden;
  4273. }
  4274. #u39115_div {
  4275. border-width:0px;
  4276. position:absolute;
  4277. left:0px;
  4278. top:0px;
  4279. width:30px;
  4280. height:30px;
  4281. background:inherit;
  4282. background-color:rgba(255, 255, 255, 1);
  4283. box-sizing:border-box;
  4284. border-width:1px;
  4285. border-style:solid;
  4286. border-color:rgba(121, 121, 121, 1);
  4287. border-radius:0px;
  4288. -moz-box-shadow:none;
  4289. -webkit-box-shadow:none;
  4290. box-shadow:none;
  4291. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4292. font-weight:700;
  4293. font-style:normal;
  4294. font-size:24px;
  4295. }
  4296. #u39115 {
  4297. border-width:0px;
  4298. position:absolute;
  4299. left:472px;
  4300. top:134px;
  4301. width:30px;
  4302. height:30px;
  4303. display:flex;
  4304. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4305. font-weight:700;
  4306. font-style:normal;
  4307. font-size:24px;
  4308. }
  4309. #u39115 .text {
  4310. position:absolute;
  4311. align-self:center;
  4312. padding:2px 2px 2px 2px;
  4313. box-sizing:border-box;
  4314. width:100%;
  4315. }
  4316. #u39115_text {
  4317. border-width:0px;
  4318. word-wrap:break-word;
  4319. text-transform:none;
  4320. }
  4321. #u39116_div {
  4322. border-width:0px;
  4323. position:absolute;
  4324. left:0px;
  4325. top:0px;
  4326. width:30px;
  4327. height:30px;
  4328. background:inherit;
  4329. background-color:rgba(255, 255, 255, 1);
  4330. box-sizing:border-box;
  4331. border-width:1px;
  4332. border-style:solid;
  4333. border-color:rgba(121, 121, 121, 1);
  4334. border-radius:0px;
  4335. -moz-box-shadow:none;
  4336. -webkit-box-shadow:none;
  4337. box-shadow:none;
  4338. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4339. font-weight:700;
  4340. font-style:normal;
  4341. font-size:24px;
  4342. }
  4343. #u39116 {
  4344. border-width:0px;
  4345. position:absolute;
  4346. left:472px;
  4347. top:174px;
  4348. width:30px;
  4349. height:30px;
  4350. display:flex;
  4351. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4352. font-weight:700;
  4353. font-style:normal;
  4354. font-size:24px;
  4355. }
  4356. #u39116 .text {
  4357. position:absolute;
  4358. align-self:center;
  4359. padding:2px 2px 2px 2px;
  4360. box-sizing:border-box;
  4361. width:100%;
  4362. }
  4363. #u39116_text {
  4364. border-width:0px;
  4365. word-wrap:break-word;
  4366. text-transform:none;
  4367. }
  4368. #u39117_div {
  4369. border-width:0px;
  4370. position:absolute;
  4371. left:0px;
  4372. top:0px;
  4373. width:30px;
  4374. height:30px;
  4375. background:inherit;
  4376. background-color:rgba(255, 255, 255, 1);
  4377. box-sizing:border-box;
  4378. border-width:1px;
  4379. border-style:solid;
  4380. border-color:rgba(121, 121, 121, 1);
  4381. border-radius:0px;
  4382. -moz-box-shadow:none;
  4383. -webkit-box-shadow:none;
  4384. box-shadow:none;
  4385. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4386. font-weight:700;
  4387. font-style:normal;
  4388. font-size:24px;
  4389. }
  4390. #u39117 {
  4391. border-width:0px;
  4392. position:absolute;
  4393. left:472px;
  4394. top:214px;
  4395. width:30px;
  4396. height:30px;
  4397. display:flex;
  4398. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4399. font-weight:700;
  4400. font-style:normal;
  4401. font-size:24px;
  4402. }
  4403. #u39117 .text {
  4404. position:absolute;
  4405. align-self:center;
  4406. padding:2px 2px 2px 2px;
  4407. box-sizing:border-box;
  4408. width:100%;
  4409. }
  4410. #u39117_text {
  4411. border-width:0px;
  4412. word-wrap:break-word;
  4413. text-transform:none;
  4414. }
  4415. #u39118 {
  4416. border-width:0px;
  4417. position:absolute;
  4418. left:0px;
  4419. top:0px;
  4420. width:0px;
  4421. height:0px;
  4422. }
  4423. #u39119_div {
  4424. border-width:0px;
  4425. position:absolute;
  4426. left:0px;
  4427. top:0px;
  4428. width:30px;
  4429. height:30px;
  4430. background:inherit;
  4431. background-color:rgba(255, 255, 255, 1);
  4432. box-sizing:border-box;
  4433. border-width:1px;
  4434. border-style:solid;
  4435. border-color:rgba(121, 121, 121, 1);
  4436. border-radius:0px;
  4437. -moz-box-shadow:none;
  4438. -webkit-box-shadow:none;
  4439. box-shadow:none;
  4440. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4441. font-weight:700;
  4442. font-style:normal;
  4443. font-size:18px;
  4444. }
  4445. #u39119 {
  4446. border-width:0px;
  4447. position:absolute;
  4448. left:512px;
  4449. top:134px;
  4450. width:30px;
  4451. height:30px;
  4452. display:flex;
  4453. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4454. font-weight:700;
  4455. font-style:normal;
  4456. font-size:18px;
  4457. }
  4458. #u39119 .text {
  4459. position:absolute;
  4460. align-self:center;
  4461. padding:2px 2px 2px 2px;
  4462. box-sizing:border-box;
  4463. width:100%;
  4464. }
  4465. #u39119_text {
  4466. border-width:0px;
  4467. word-wrap:break-word;
  4468. text-transform:none;
  4469. visibility:hidden;
  4470. }
  4471. #u39120_img {
  4472. border-width:0px;
  4473. position:absolute;
  4474. left:0px;
  4475. top:0px;
  4476. width:14px;
  4477. height:14px;
  4478. }
  4479. #u39120 {
  4480. border-width:0px;
  4481. position:absolute;
  4482. left:520px;
  4483. top:142px;
  4484. width:14px;
  4485. height:14px;
  4486. display:flex;
  4487. }
  4488. #u39120 .text {
  4489. position:absolute;
  4490. align-self:center;
  4491. padding:2px 2px 2px 2px;
  4492. box-sizing:border-box;
  4493. width:100%;
  4494. }
  4495. #u39120_text {
  4496. border-width:0px;
  4497. word-wrap:break-word;
  4498. text-transform:none;
  4499. visibility:hidden;
  4500. }
  4501. #u39121 {
  4502. border-width:0px;
  4503. position:absolute;
  4504. left:0px;
  4505. top:0px;
  4506. width:0px;
  4507. height:0px;
  4508. }
  4509. #u39122_div {
  4510. border-width:0px;
  4511. position:absolute;
  4512. left:0px;
  4513. top:0px;
  4514. width:30px;
  4515. height:30px;
  4516. background:inherit;
  4517. background-color:rgba(255, 255, 255, 1);
  4518. box-sizing:border-box;
  4519. border-width:1px;
  4520. border-style:solid;
  4521. border-color:rgba(121, 121, 121, 1);
  4522. border-radius:0px;
  4523. -moz-box-shadow:none;
  4524. -webkit-box-shadow:none;
  4525. box-shadow:none;
  4526. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4527. font-weight:700;
  4528. font-style:normal;
  4529. font-size:18px;
  4530. }
  4531. #u39122 {
  4532. border-width:0px;
  4533. position:absolute;
  4534. left:512px;
  4535. top:174px;
  4536. width:30px;
  4537. height:30px;
  4538. display:flex;
  4539. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4540. font-weight:700;
  4541. font-style:normal;
  4542. font-size:18px;
  4543. }
  4544. #u39122 .text {
  4545. position:absolute;
  4546. align-self:center;
  4547. padding:2px 2px 2px 2px;
  4548. box-sizing:border-box;
  4549. width:100%;
  4550. }
  4551. #u39122_text {
  4552. border-width:0px;
  4553. word-wrap:break-word;
  4554. text-transform:none;
  4555. visibility:hidden;
  4556. }
  4557. #u39123_img {
  4558. border-width:0px;
  4559. position:absolute;
  4560. left:0px;
  4561. top:0px;
  4562. width:14px;
  4563. height:14px;
  4564. }
  4565. #u39123 {
  4566. border-width:0px;
  4567. position:absolute;
  4568. left:520px;
  4569. top:182px;
  4570. width:14px;
  4571. height:14px;
  4572. display:flex;
  4573. }
  4574. #u39123 .text {
  4575. position:absolute;
  4576. align-self:center;
  4577. padding:2px 2px 2px 2px;
  4578. box-sizing:border-box;
  4579. width:100%;
  4580. }
  4581. #u39123_text {
  4582. border-width:0px;
  4583. word-wrap:break-word;
  4584. text-transform:none;
  4585. visibility:hidden;
  4586. }
  4587. #u39124 {
  4588. border-width:0px;
  4589. position:absolute;
  4590. left:0px;
  4591. top:0px;
  4592. width:0px;
  4593. height:0px;
  4594. }
  4595. #u39125_div {
  4596. border-width:0px;
  4597. position:absolute;
  4598. left:0px;
  4599. top:0px;
  4600. width:30px;
  4601. height:30px;
  4602. background:inherit;
  4603. background-color:rgba(255, 255, 255, 1);
  4604. box-sizing:border-box;
  4605. border-width:1px;
  4606. border-style:solid;
  4607. border-color:rgba(121, 121, 121, 1);
  4608. border-radius:0px;
  4609. -moz-box-shadow:none;
  4610. -webkit-box-shadow:none;
  4611. box-shadow:none;
  4612. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4613. font-weight:700;
  4614. font-style:normal;
  4615. font-size:18px;
  4616. }
  4617. #u39125 {
  4618. border-width:0px;
  4619. position:absolute;
  4620. left:512px;
  4621. top:214px;
  4622. width:30px;
  4623. height:30px;
  4624. display:flex;
  4625. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4626. font-weight:700;
  4627. font-style:normal;
  4628. font-size:18px;
  4629. }
  4630. #u39125 .text {
  4631. position:absolute;
  4632. align-self:center;
  4633. padding:2px 2px 2px 2px;
  4634. box-sizing:border-box;
  4635. width:100%;
  4636. }
  4637. #u39125_text {
  4638. border-width:0px;
  4639. word-wrap:break-word;
  4640. text-transform:none;
  4641. visibility:hidden;
  4642. }
  4643. #u39126_img {
  4644. border-width:0px;
  4645. position:absolute;
  4646. left:0px;
  4647. top:0px;
  4648. width:17px;
  4649. height:11px;
  4650. }
  4651. #u39126 {
  4652. border-width:0px;
  4653. position:absolute;
  4654. left:519px;
  4655. top:224px;
  4656. width:17px;
  4657. height:11px;
  4658. display:flex;
  4659. }
  4660. #u39126 .text {
  4661. position:absolute;
  4662. align-self:center;
  4663. padding:2px 2px 2px 2px;
  4664. box-sizing:border-box;
  4665. width:100%;
  4666. }
  4667. #u39126_text {
  4668. border-width:0px;
  4669. word-wrap:break-word;
  4670. text-transform:none;
  4671. visibility:hidden;
  4672. }
  4673. #u39127 {
  4674. border-width:0px;
  4675. position:absolute;
  4676. left:0px;
  4677. top:0px;
  4678. width:0px;
  4679. height:0px;
  4680. }
  4681. #u39128_div {
  4682. border-width:0px;
  4683. position:absolute;
  4684. left:0px;
  4685. top:0px;
  4686. width:84px;
  4687. height:21px;
  4688. background:inherit;
  4689. background-color:rgba(51, 51, 51, 1);
  4690. border:none;
  4691. border-radius:11px;
  4692. -moz-box-shadow:none;
  4693. -webkit-box-shadow:none;
  4694. box-shadow:none;
  4695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4696. font-weight:400;
  4697. font-style:normal;
  4698. font-size:12px;
  4699. color:#FFFFFF;
  4700. text-align:center;
  4701. }
  4702. #u39128 {
  4703. border-width:0px;
  4704. position:absolute;
  4705. left:443px;
  4706. top:240px;
  4707. width:84px;
  4708. height:21px;
  4709. display:flex;
  4710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4711. font-weight:400;
  4712. font-style:normal;
  4713. font-size:12px;
  4714. color:#FFFFFF;
  4715. text-align:center;
  4716. }
  4717. #u39128 .text {
  4718. position:absolute;
  4719. align-self:center;
  4720. padding:2px 2px 2px 2px;
  4721. box-sizing:border-box;
  4722. width:100%;
  4723. }
  4724. #u39128_text {
  4725. border-width:0px;
  4726. white-space:nowrap;
  4727. text-transform:none;
  4728. }
  4729. #u39129_img {
  4730. border-width:0px;
  4731. position:absolute;
  4732. left:0px;
  4733. top:0px;
  4734. width:11px;
  4735. height:17px;
  4736. }
  4737. #u39129 {
  4738. border-width:0px;
  4739. position:absolute;
  4740. left:495px;
  4741. top:271px;
  4742. width:11px;
  4743. height:17px;
  4744. display:flex;
  4745. }
  4746. #u39129 .text {
  4747. position:absolute;
  4748. align-self:center;
  4749. padding:2px 2px 2px 2px;
  4750. box-sizing:border-box;
  4751. width:100%;
  4752. }
  4753. #u39129_text {
  4754. border-width:0px;
  4755. word-wrap:break-word;
  4756. text-transform:none;
  4757. visibility:hidden;
  4758. }
  4759. #u39130_div {
  4760. border-width:0px;
  4761. position:absolute;
  4762. left:0px;
  4763. top:0px;
  4764. width:191px;
  4765. height:6px;
  4766. background:inherit;
  4767. background-color:rgba(255, 255, 255, 1);
  4768. box-sizing:border-box;
  4769. border-width:1px;
  4770. border-style:solid;
  4771. border-color:rgba(228, 228, 228, 1);
  4772. border-radius:0px;
  4773. -moz-box-shadow:none;
  4774. -webkit-box-shadow:none;
  4775. box-shadow:none;
  4776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4777. font-weight:400;
  4778. font-style:normal;
  4779. font-size:12px;
  4780. color:#FFFFFF;
  4781. }
  4782. #u39130 {
  4783. border-width:0px;
  4784. position:absolute;
  4785. left:351px;
  4786. top:268px;
  4787. width:191px;
  4788. height:6px;
  4789. display:flex;
  4790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4791. font-weight:400;
  4792. font-style:normal;
  4793. font-size:12px;
  4794. color:#FFFFFF;
  4795. }
  4796. #u39130 .text {
  4797. position:absolute;
  4798. align-self:center;
  4799. padding:8px 15px 8px 15px;
  4800. box-sizing:border-box;
  4801. width:100%;
  4802. }
  4803. #u39130_text {
  4804. border-width:0px;
  4805. word-wrap:break-word;
  4806. text-transform:none;
  4807. visibility:hidden;
  4808. }
  4809. #u39131_div {
  4810. border-width:0px;
  4811. position:absolute;
  4812. left:0px;
  4813. top:0px;
  4814. width:140px;
  4815. height:6px;
  4816. background:inherit;
  4817. background-color:rgba(51, 153, 255, 1);
  4818. box-sizing:border-box;
  4819. border-width:1px;
  4820. border-style:solid;
  4821. border-color:rgba(228, 228, 228, 1);
  4822. border-radius:0px;
  4823. -moz-box-shadow:none;
  4824. -webkit-box-shadow:none;
  4825. box-shadow:none;
  4826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4827. font-weight:400;
  4828. font-style:normal;
  4829. font-size:12px;
  4830. color:#FFFFFF;
  4831. }
  4832. #u39131 {
  4833. border-width:0px;
  4834. position:absolute;
  4835. left:351px;
  4836. top:268px;
  4837. width:140px;
  4838. height:6px;
  4839. display:flex;
  4840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4841. font-weight:400;
  4842. font-style:normal;
  4843. font-size:12px;
  4844. color:#FFFFFF;
  4845. }
  4846. #u39131 .text {
  4847. position:absolute;
  4848. align-self:center;
  4849. padding:8px 15px 8px 15px;
  4850. box-sizing:border-box;
  4851. width:100%;
  4852. }
  4853. #u39131_text {
  4854. border-width:0px;
  4855. word-wrap:break-word;
  4856. text-transform:none;
  4857. visibility:hidden;
  4858. }
  4859. #u39132_img {
  4860. border-width:0px;
  4861. position:absolute;
  4862. left:-3px;
  4863. top:-3px;
  4864. width:20px;
  4865. height:20px;
  4866. }
  4867. #u39132 {
  4868. border-width:0px;
  4869. position:absolute;
  4870. left:480px;
  4871. top:264px;
  4872. width:14px;
  4873. height:14px;
  4874. display:flex;
  4875. }
  4876. #u39132 .text {
  4877. position:absolute;
  4878. align-self:center;
  4879. padding:2px 2px 2px 2px;
  4880. box-sizing:border-box;
  4881. width:100%;
  4882. }
  4883. #u39132_text {
  4884. border-width:0px;
  4885. word-wrap:break-word;
  4886. text-transform:none;
  4887. visibility:hidden;
  4888. }
  4889. #u39133 {
  4890. border-width:0px;
  4891. position:absolute;
  4892. left:358px;
  4893. top:410px;
  4894. width:127px;
  4895. height:240px;
  4896. }
  4897. #u39133_children {
  4898. border-width:0px;
  4899. position:absolute;
  4900. left:0px;
  4901. top:0px;
  4902. width:0px;
  4903. height:0px;
  4904. }
  4905. #u39134 {
  4906. border-width:0px;
  4907. position:absolute;
  4908. left:0px;
  4909. top:0px;
  4910. width:80px;
  4911. height:20px;
  4912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4913. font-weight:400;
  4914. font-style:normal;
  4915. }
  4916. #u39135_img {
  4917. border-width:0px;
  4918. position:absolute;
  4919. left:0px;
  4920. top:0px;
  4921. width:9px;
  4922. height:9px;
  4923. }
  4924. #u39135 {
  4925. border-width:0px;
  4926. position:absolute;
  4927. left:6px;
  4928. top:6px;
  4929. width:9px;
  4930. height:9px;
  4931. display:flex;
  4932. }
  4933. #u39135 .text {
  4934. position:absolute;
  4935. align-self:center;
  4936. padding:2px 2px 2px 2px;
  4937. box-sizing:border-box;
  4938. width:100%;
  4939. }
  4940. #u39135_img.selected {
  4941. }
  4942. #u39135.selected {
  4943. }
  4944. #u39135_text {
  4945. border-width:0px;
  4946. word-wrap:break-word;
  4947. text-transform:none;
  4948. visibility:hidden;
  4949. }
  4950. #u39136_div {
  4951. border-width:0px;
  4952. position:absolute;
  4953. left:0px;
  4954. top:0px;
  4955. width:58px;
  4956. height:20px;
  4957. background:inherit;
  4958. background-color:rgba(255, 255, 255, 0);
  4959. border:none;
  4960. border-radius:0px;
  4961. -moz-box-shadow:none;
  4962. -webkit-box-shadow:none;
  4963. box-shadow:none;
  4964. }
  4965. #u39136 {
  4966. border-width:0px;
  4967. position:absolute;
  4968. left:22px;
  4969. top:0px;
  4970. width:58px;
  4971. height:20px;
  4972. display:flex;
  4973. }
  4974. #u39136 .text {
  4975. position:absolute;
  4976. align-self:center;
  4977. padding:2px 2px 2px 3px;
  4978. box-sizing:border-box;
  4979. width:100%;
  4980. }
  4981. #u39136_text {
  4982. border-width:0px;
  4983. white-space:nowrap;
  4984. text-transform:none;
  4985. }
  4986. #u39134_children {
  4987. border-width:0px;
  4988. position:absolute;
  4989. left:0px;
  4990. top:0px;
  4991. width:0px;
  4992. height:0px;
  4993. }
  4994. #u39137 {
  4995. border-width:0px;
  4996. position:absolute;
  4997. left:20px;
  4998. top:20px;
  4999. width:87px;
  5000. height:20px;
  5001. }
  5002. #u39138_img {
  5003. border-width:0px;
  5004. position:absolute;
  5005. left:0px;
  5006. top:0px;
  5007. width:9px;
  5008. height:9px;
  5009. }
  5010. #u39138 {
  5011. border-width:0px;
  5012. position:absolute;
  5013. left:6px;
  5014. top:6px;
  5015. width:9px;
  5016. height:9px;
  5017. display:flex;
  5018. }
  5019. #u39138 .text {
  5020. position:absolute;
  5021. align-self:center;
  5022. padding:2px 2px 2px 2px;
  5023. box-sizing:border-box;
  5024. width:100%;
  5025. }
  5026. #u39138_img.selected {
  5027. }
  5028. #u39138.selected {
  5029. }
  5030. #u39138_text {
  5031. border-width:0px;
  5032. word-wrap:break-word;
  5033. text-transform:none;
  5034. visibility:hidden;
  5035. }
  5036. #u39139_div {
  5037. border-width:0px;
  5038. position:absolute;
  5039. left:0px;
  5040. top:0px;
  5041. width:65px;
  5042. height:20px;
  5043. background:inherit;
  5044. background-color:rgba(255, 255, 255, 0);
  5045. border:none;
  5046. border-radius:0px;
  5047. -moz-box-shadow:none;
  5048. -webkit-box-shadow:none;
  5049. box-shadow:none;
  5050. }
  5051. #u39139 {
  5052. border-width:0px;
  5053. position:absolute;
  5054. left:22px;
  5055. top:0px;
  5056. width:65px;
  5057. height:20px;
  5058. display:flex;
  5059. }
  5060. #u39139 .text {
  5061. position:absolute;
  5062. align-self:center;
  5063. padding:2px 2px 2px 3px;
  5064. box-sizing:border-box;
  5065. width:100%;
  5066. }
  5067. #u39139_text {
  5068. border-width:0px;
  5069. white-space:nowrap;
  5070. text-transform:none;
  5071. }
  5072. #u39137_children {
  5073. border-width:0px;
  5074. position:absolute;
  5075. left:0px;
  5076. top:0px;
  5077. width:0px;
  5078. height:0px;
  5079. }
  5080. #u39140 {
  5081. border-width:0px;
  5082. position:absolute;
  5083. left:20px;
  5084. top:20px;
  5085. width:87px;
  5086. height:20px;
  5087. }
  5088. #u39141_div {
  5089. border-width:0px;
  5090. position:absolute;
  5091. left:0px;
  5092. top:0px;
  5093. width:65px;
  5094. height:20px;
  5095. background:inherit;
  5096. background-color:rgba(255, 255, 255, 0);
  5097. border:none;
  5098. border-radius:0px;
  5099. -moz-box-shadow:none;
  5100. -webkit-box-shadow:none;
  5101. box-shadow:none;
  5102. }
  5103. #u39141 {
  5104. border-width:0px;
  5105. position:absolute;
  5106. left:22px;
  5107. top:0px;
  5108. width:65px;
  5109. height:20px;
  5110. display:flex;
  5111. }
  5112. #u39141 .text {
  5113. position:absolute;
  5114. align-self:center;
  5115. padding:2px 2px 2px 3px;
  5116. box-sizing:border-box;
  5117. width:100%;
  5118. }
  5119. #u39141_text {
  5120. border-width:0px;
  5121. white-space:nowrap;
  5122. text-transform:none;
  5123. }
  5124. #u39142 {
  5125. border-width:0px;
  5126. position:absolute;
  5127. left:20px;
  5128. top:40px;
  5129. width:87px;
  5130. height:20px;
  5131. }
  5132. #u39143_div {
  5133. border-width:0px;
  5134. position:absolute;
  5135. left:0px;
  5136. top:0px;
  5137. width:65px;
  5138. height:20px;
  5139. background:inherit;
  5140. background-color:rgba(255, 255, 255, 0);
  5141. border:none;
  5142. border-radius:0px;
  5143. -moz-box-shadow:none;
  5144. -webkit-box-shadow:none;
  5145. box-shadow:none;
  5146. }
  5147. #u39143 {
  5148. border-width:0px;
  5149. position:absolute;
  5150. left:22px;
  5151. top:0px;
  5152. width:65px;
  5153. height:20px;
  5154. display:flex;
  5155. }
  5156. #u39143 .text {
  5157. position:absolute;
  5158. align-self:center;
  5159. padding:2px 2px 2px 3px;
  5160. box-sizing:border-box;
  5161. width:100%;
  5162. }
  5163. #u39143_text {
  5164. border-width:0px;
  5165. white-space:nowrap;
  5166. text-transform:none;
  5167. }
  5168. #u39144 {
  5169. border-width:0px;
  5170. position:absolute;
  5171. left:20px;
  5172. top:60px;
  5173. width:54px;
  5174. height:20px;
  5175. }
  5176. #u39145_div {
  5177. border-width:0px;
  5178. position:absolute;
  5179. left:0px;
  5180. top:0px;
  5181. width:32px;
  5182. height:20px;
  5183. background:inherit;
  5184. background-color:rgba(255, 255, 255, 0);
  5185. border:none;
  5186. border-radius:0px;
  5187. -moz-box-shadow:none;
  5188. -webkit-box-shadow:none;
  5189. box-shadow:none;
  5190. }
  5191. #u39145 {
  5192. border-width:0px;
  5193. position:absolute;
  5194. left:22px;
  5195. top:0px;
  5196. width:32px;
  5197. height:20px;
  5198. display:flex;
  5199. }
  5200. #u39145 .text {
  5201. position:absolute;
  5202. align-self:center;
  5203. padding:2px 2px 2px 3px;
  5204. box-sizing:border-box;
  5205. width:100%;
  5206. }
  5207. #u39145_text {
  5208. border-width:0px;
  5209. white-space:nowrap;
  5210. text-transform:none;
  5211. }
  5212. #u39146 {
  5213. border-width:0px;
  5214. position:absolute;
  5215. left:20px;
  5216. top:100px;
  5217. width:87px;
  5218. height:20px;
  5219. }
  5220. #u39147_img {
  5221. border-width:0px;
  5222. position:absolute;
  5223. left:0px;
  5224. top:0px;
  5225. width:9px;
  5226. height:9px;
  5227. }
  5228. #u39147 {
  5229. border-width:0px;
  5230. position:absolute;
  5231. left:6px;
  5232. top:6px;
  5233. width:9px;
  5234. height:9px;
  5235. display:flex;
  5236. }
  5237. #u39147 .text {
  5238. position:absolute;
  5239. align-self:center;
  5240. padding:2px 2px 2px 2px;
  5241. box-sizing:border-box;
  5242. width:100%;
  5243. }
  5244. #u39147_img.selected {
  5245. }
  5246. #u39147.selected {
  5247. }
  5248. #u39147_text {
  5249. border-width:0px;
  5250. word-wrap:break-word;
  5251. text-transform:none;
  5252. visibility:hidden;
  5253. }
  5254. #u39148_div {
  5255. border-width:0px;
  5256. position:absolute;
  5257. left:0px;
  5258. top:0px;
  5259. width:65px;
  5260. height:20px;
  5261. background:inherit;
  5262. background-color:rgba(255, 255, 255, 0);
  5263. border:none;
  5264. border-radius:0px;
  5265. -moz-box-shadow:none;
  5266. -webkit-box-shadow:none;
  5267. box-shadow:none;
  5268. }
  5269. #u39148 {
  5270. border-width:0px;
  5271. position:absolute;
  5272. left:22px;
  5273. top:0px;
  5274. width:65px;
  5275. height:20px;
  5276. display:flex;
  5277. }
  5278. #u39148 .text {
  5279. position:absolute;
  5280. align-self:center;
  5281. padding:2px 2px 2px 3px;
  5282. box-sizing:border-box;
  5283. width:100%;
  5284. }
  5285. #u39148_text {
  5286. border-width:0px;
  5287. white-space:nowrap;
  5288. text-transform:none;
  5289. }
  5290. #u39146_children {
  5291. border-width:0px;
  5292. position:absolute;
  5293. left:0px;
  5294. top:0px;
  5295. width:0px;
  5296. height:0px;
  5297. }
  5298. #u39149 {
  5299. border-width:0px;
  5300. position:absolute;
  5301. left:20px;
  5302. top:20px;
  5303. width:87px;
  5304. height:20px;
  5305. }
  5306. #u39150_div {
  5307. border-width:0px;
  5308. position:absolute;
  5309. left:0px;
  5310. top:0px;
  5311. width:65px;
  5312. height:20px;
  5313. background:inherit;
  5314. background-color:rgba(255, 255, 255, 0);
  5315. border:none;
  5316. border-radius:0px;
  5317. -moz-box-shadow:none;
  5318. -webkit-box-shadow:none;
  5319. box-shadow:none;
  5320. }
  5321. #u39150 {
  5322. border-width:0px;
  5323. position:absolute;
  5324. left:22px;
  5325. top:0px;
  5326. width:65px;
  5327. height:20px;
  5328. display:flex;
  5329. }
  5330. #u39150 .text {
  5331. position:absolute;
  5332. align-self:center;
  5333. padding:2px 2px 2px 3px;
  5334. box-sizing:border-box;
  5335. width:100%;
  5336. }
  5337. #u39150_text {
  5338. border-width:0px;
  5339. white-space:nowrap;
  5340. text-transform:none;
  5341. }
  5342. #u39151 {
  5343. border-width:0px;
  5344. position:absolute;
  5345. left:20px;
  5346. top:40px;
  5347. width:87px;
  5348. height:20px;
  5349. }
  5350. #u39152_div {
  5351. border-width:0px;
  5352. position:absolute;
  5353. left:0px;
  5354. top:0px;
  5355. width:65px;
  5356. height:20px;
  5357. background:inherit;
  5358. background-color:rgba(255, 255, 255, 0);
  5359. border:none;
  5360. border-radius:0px;
  5361. -moz-box-shadow:none;
  5362. -webkit-box-shadow:none;
  5363. box-shadow:none;
  5364. }
  5365. #u39152 {
  5366. border-width:0px;
  5367. position:absolute;
  5368. left:22px;
  5369. top:0px;
  5370. width:65px;
  5371. height:20px;
  5372. display:flex;
  5373. }
  5374. #u39152 .text {
  5375. position:absolute;
  5376. align-self:center;
  5377. padding:2px 2px 2px 3px;
  5378. box-sizing:border-box;
  5379. width:100%;
  5380. }
  5381. #u39152_text {
  5382. border-width:0px;
  5383. white-space:nowrap;
  5384. text-transform:none;
  5385. }
  5386. #u39153 {
  5387. border-width:0px;
  5388. position:absolute;
  5389. left:20px;
  5390. top:60px;
  5391. width:54px;
  5392. height:20px;
  5393. }
  5394. #u39154_div {
  5395. border-width:0px;
  5396. position:absolute;
  5397. left:0px;
  5398. top:0px;
  5399. width:32px;
  5400. height:20px;
  5401. background:inherit;
  5402. background-color:rgba(255, 255, 255, 0);
  5403. border:none;
  5404. border-radius:0px;
  5405. -moz-box-shadow:none;
  5406. -webkit-box-shadow:none;
  5407. box-shadow:none;
  5408. }
  5409. #u39154 {
  5410. border-width:0px;
  5411. position:absolute;
  5412. left:22px;
  5413. top:0px;
  5414. width:32px;
  5415. height:20px;
  5416. display:flex;
  5417. }
  5418. #u39154 .text {
  5419. position:absolute;
  5420. align-self:center;
  5421. padding:2px 2px 2px 3px;
  5422. box-sizing:border-box;
  5423. width:100%;
  5424. }
  5425. #u39154_text {
  5426. border-width:0px;
  5427. white-space:nowrap;
  5428. text-transform:none;
  5429. }
  5430. #u39155 {
  5431. border-width:0px;
  5432. position:absolute;
  5433. left:20px;
  5434. top:180px;
  5435. width:87px;
  5436. height:20px;
  5437. }
  5438. #u39156_img {
  5439. border-width:0px;
  5440. position:absolute;
  5441. left:0px;
  5442. top:0px;
  5443. width:9px;
  5444. height:9px;
  5445. }
  5446. #u39156 {
  5447. border-width:0px;
  5448. position:absolute;
  5449. left:6px;
  5450. top:6px;
  5451. width:9px;
  5452. height:9px;
  5453. display:flex;
  5454. }
  5455. #u39156 .text {
  5456. position:absolute;
  5457. align-self:center;
  5458. padding:2px 2px 2px 2px;
  5459. box-sizing:border-box;
  5460. width:100%;
  5461. }
  5462. #u39156_img.selected {
  5463. }
  5464. #u39156.selected {
  5465. }
  5466. #u39156_text {
  5467. border-width:0px;
  5468. word-wrap:break-word;
  5469. text-transform:none;
  5470. visibility:hidden;
  5471. }
  5472. #u39157_div {
  5473. border-width:0px;
  5474. position:absolute;
  5475. left:0px;
  5476. top:0px;
  5477. width:65px;
  5478. height:20px;
  5479. background:inherit;
  5480. background-color:rgba(255, 255, 255, 0);
  5481. border:none;
  5482. border-radius:0px;
  5483. -moz-box-shadow:none;
  5484. -webkit-box-shadow:none;
  5485. box-shadow:none;
  5486. }
  5487. #u39157 {
  5488. border-width:0px;
  5489. position:absolute;
  5490. left:22px;
  5491. top:0px;
  5492. width:65px;
  5493. height:20px;
  5494. display:flex;
  5495. }
  5496. #u39157 .text {
  5497. position:absolute;
  5498. align-self:center;
  5499. padding:2px 2px 2px 3px;
  5500. box-sizing:border-box;
  5501. width:100%;
  5502. }
  5503. #u39157_text {
  5504. border-width:0px;
  5505. white-space:nowrap;
  5506. text-transform:none;
  5507. }
  5508. #u39155_children {
  5509. border-width:0px;
  5510. position:absolute;
  5511. left:0px;
  5512. top:0px;
  5513. width:0px;
  5514. height:0px;
  5515. }
  5516. #u39158 {
  5517. border-width:0px;
  5518. position:absolute;
  5519. left:20px;
  5520. top:20px;
  5521. width:87px;
  5522. height:20px;
  5523. }
  5524. #u39159_div {
  5525. border-width:0px;
  5526. position:absolute;
  5527. left:0px;
  5528. top:0px;
  5529. width:65px;
  5530. height:20px;
  5531. background:inherit;
  5532. background-color:rgba(255, 255, 255, 0);
  5533. border:none;
  5534. border-radius:0px;
  5535. -moz-box-shadow:none;
  5536. -webkit-box-shadow:none;
  5537. box-shadow:none;
  5538. }
  5539. #u39159 {
  5540. border-width:0px;
  5541. position:absolute;
  5542. left:22px;
  5543. top:0px;
  5544. width:65px;
  5545. height:20px;
  5546. display:flex;
  5547. }
  5548. #u39159 .text {
  5549. position:absolute;
  5550. align-self:center;
  5551. padding:2px 2px 2px 3px;
  5552. box-sizing:border-box;
  5553. width:100%;
  5554. }
  5555. #u39159_text {
  5556. border-width:0px;
  5557. white-space:nowrap;
  5558. text-transform:none;
  5559. }
  5560. #u39160 {
  5561. border-width:0px;
  5562. position:absolute;
  5563. left:20px;
  5564. top:40px;
  5565. width:54px;
  5566. height:20px;
  5567. }
  5568. #u39161_div {
  5569. border-width:0px;
  5570. position:absolute;
  5571. left:0px;
  5572. top:0px;
  5573. width:32px;
  5574. height:20px;
  5575. background:inherit;
  5576. background-color:rgba(255, 255, 255, 0);
  5577. border:none;
  5578. border-radius:0px;
  5579. -moz-box-shadow:none;
  5580. -webkit-box-shadow:none;
  5581. box-shadow:none;
  5582. }
  5583. #u39161 {
  5584. border-width:0px;
  5585. position:absolute;
  5586. left:22px;
  5587. top:0px;
  5588. width:32px;
  5589. height:20px;
  5590. display:flex;
  5591. }
  5592. #u39161 .text {
  5593. position:absolute;
  5594. align-self:center;
  5595. padding:2px 2px 2px 3px;
  5596. box-sizing:border-box;
  5597. width:100%;
  5598. }
  5599. #u39161_text {
  5600. border-width:0px;
  5601. white-space:nowrap;
  5602. text-transform:none;
  5603. }
  5604. #u39162 {
  5605. border-width:0px;
  5606. position:absolute;
  5607. left:0px;
  5608. top:0px;
  5609. width:0px;
  5610. height:0px;
  5611. }
  5612. #u39163_div {
  5613. border-width:0px;
  5614. position:absolute;
  5615. left:0px;
  5616. top:0px;
  5617. width:175px;
  5618. height:30px;
  5619. background:inherit;
  5620. background-color:rgba(255, 255, 255, 1);
  5621. box-sizing:border-box;
  5622. border-width:1px;
  5623. border-style:solid;
  5624. border-color:rgba(201, 201, 201, 1);
  5625. border-radius:4px;
  5626. -moz-box-shadow:none;
  5627. -webkit-box-shadow:none;
  5628. box-shadow:none;
  5629. font-family:'Microsoft YaHei', sans-serif;
  5630. font-weight:400;
  5631. font-style:normal;
  5632. font-size:14px;
  5633. color:#CCCCCC;
  5634. text-align:left;
  5635. }
  5636. #u39163 {
  5637. border-width:0px;
  5638. position:absolute;
  5639. left:359px;
  5640. top:333px;
  5641. width:175px;
  5642. height:30px;
  5643. display:flex;
  5644. font-family:'Microsoft YaHei', sans-serif;
  5645. font-weight:400;
  5646. font-style:normal;
  5647. font-size:14px;
  5648. color:#CCCCCC;
  5649. text-align:left;
  5650. }
  5651. #u39163 .text {
  5652. position:absolute;
  5653. align-self:center;
  5654. padding:2px 8px 2px 8px;
  5655. box-sizing:border-box;
  5656. width:100%;
  5657. }
  5658. #u39163_text {
  5659. border-width:0px;
  5660. word-wrap:break-word;
  5661. text-transform:none;
  5662. visibility:hidden;
  5663. }
  5664. #u39164_input {
  5665. position:absolute;
  5666. left:0px;
  5667. top:0px;
  5668. width:159px;
  5669. height:25px;
  5670. padding:2px 2px 2px 2px;
  5671. font-family:'Microsoft YaHei', sans-serif;
  5672. font-weight:400;
  5673. font-style:normal;
  5674. font-size:10px;
  5675. letter-spacing:normal;
  5676. color:#000000;
  5677. vertical-align:none;
  5678. text-align:left;
  5679. text-transform:none;
  5680. background-color:transparent;
  5681. border-color:transparent;
  5682. }
  5683. #u39164_input.disabled {
  5684. position:absolute;
  5685. left:0px;
  5686. top:0px;
  5687. width:159px;
  5688. height:25px;
  5689. padding:2px 2px 2px 2px;
  5690. font-family:'Microsoft YaHei', sans-serif;
  5691. font-weight:400;
  5692. font-style:normal;
  5693. font-size:10px;
  5694. letter-spacing:normal;
  5695. color:#000000;
  5696. vertical-align:none;
  5697. text-align:left;
  5698. text-transform:none;
  5699. background-color:transparent;
  5700. border-color:transparent;
  5701. }
  5702. #u39164_div {
  5703. border-width:0px;
  5704. position:absolute;
  5705. left:0px;
  5706. top:0px;
  5707. width:159px;
  5708. height:25px;
  5709. background:inherit;
  5710. background-color:rgba(255, 255, 255, 1);
  5711. border:none;
  5712. border-radius:0px;
  5713. -moz-box-shadow:none;
  5714. -webkit-box-shadow:none;
  5715. box-shadow:none;
  5716. font-family:'Microsoft YaHei', sans-serif;
  5717. font-weight:400;
  5718. font-style:normal;
  5719. font-size:10px;
  5720. }
  5721. #u39164 {
  5722. border-width:0px;
  5723. position:absolute;
  5724. left:369px;
  5725. top:334px;
  5726. width:159px;
  5727. height:25px;
  5728. display:flex;
  5729. font-family:'Microsoft YaHei', sans-serif;
  5730. font-weight:400;
  5731. font-style:normal;
  5732. font-size:10px;
  5733. }
  5734. #u39164 .text {
  5735. position:absolute;
  5736. align-self:center;
  5737. padding:2px 2px 2px 2px;
  5738. box-sizing:border-box;
  5739. width:100%;
  5740. }
  5741. #u39164_div.disabled {
  5742. border-width:0px;
  5743. position:absolute;
  5744. left:0px;
  5745. top:0px;
  5746. width:159px;
  5747. height:25px;
  5748. background:inherit;
  5749. background-color:rgba(240, 240, 240, 1);
  5750. border:none;
  5751. border-radius:0px;
  5752. -moz-box-shadow:none;
  5753. -webkit-box-shadow:none;
  5754. box-shadow:none;
  5755. font-family:'Microsoft YaHei', sans-serif;
  5756. font-weight:400;
  5757. font-style:normal;
  5758. font-size:10px;
  5759. }
  5760. #u39164.disabled {
  5761. }
  5762. #u39165_div {
  5763. border-width:0px;
  5764. position:absolute;
  5765. left:0px;
  5766. top:0px;
  5767. width:25px;
  5768. height:30px;
  5769. background:inherit;
  5770. background-color:rgba(255, 255, 255, 0);
  5771. border:none;
  5772. border-radius:0px;
  5773. -moz-box-shadow:none;
  5774. -webkit-box-shadow:none;
  5775. box-shadow:none;
  5776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5777. font-weight:400;
  5778. font-style:normal;
  5779. font-size:12px;
  5780. color:#3399FF;
  5781. line-height:30px;
  5782. }
  5783. #u39165 {
  5784. border-width:0px;
  5785. position:absolute;
  5786. left:359px;
  5787. top:372px;
  5788. width:25px;
  5789. height:30px;
  5790. display:flex;
  5791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5792. font-weight:400;
  5793. font-style:normal;
  5794. font-size:12px;
  5795. color:#3399FF;
  5796. line-height:30px;
  5797. }
  5798. #u39165 .text {
  5799. position:absolute;
  5800. align-self:flex-start;
  5801. padding:0px 0px 0px 0px;
  5802. box-sizing:border-box;
  5803. width:100%;
  5804. }
  5805. #u39165_text {
  5806. border-width:0px;
  5807. white-space:nowrap;
  5808. text-transform:none;
  5809. }
  5810. #u39166_div {
  5811. border-width:0px;
  5812. position:absolute;
  5813. left:0px;
  5814. top:0px;
  5815. width:25px;
  5816. height:30px;
  5817. background:inherit;
  5818. background-color:rgba(255, 255, 255, 0);
  5819. border:none;
  5820. border-radius:0px;
  5821. -moz-box-shadow:none;
  5822. -webkit-box-shadow:none;
  5823. box-shadow:none;
  5824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5825. font-weight:400;
  5826. font-style:normal;
  5827. font-size:12px;
  5828. color:#7F7F7F;
  5829. line-height:30px;
  5830. }
  5831. #u39166 {
  5832. border-width:0px;
  5833. position:absolute;
  5834. left:396px;
  5835. top:372px;
  5836. width:25px;
  5837. height:30px;
  5838. display:flex;
  5839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5840. font-weight:400;
  5841. font-style:normal;
  5842. font-size:12px;
  5843. color:#7F7F7F;
  5844. line-height:30px;
  5845. }
  5846. #u39166 .text {
  5847. position:absolute;
  5848. align-self:flex-start;
  5849. padding:0px 0px 0px 0px;
  5850. box-sizing:border-box;
  5851. width:100%;
  5852. }
  5853. #u39166_text {
  5854. border-width:0px;
  5855. white-space:nowrap;
  5856. text-transform:none;
  5857. }
  5858. #u39167_div {
  5859. border-width:0px;
  5860. position:absolute;
  5861. left:0px;
  5862. top:0px;
  5863. width:25px;
  5864. height:30px;
  5865. background:inherit;
  5866. background-color:rgba(255, 255, 255, 0);
  5867. border:none;
  5868. border-radius:0px;
  5869. -moz-box-shadow:none;
  5870. -webkit-box-shadow:none;
  5871. box-shadow:none;
  5872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5873. font-weight:400;
  5874. font-style:normal;
  5875. font-size:12px;
  5876. color:#7F7F7F;
  5877. line-height:30px;
  5878. }
  5879. #u39167 {
  5880. border-width:0px;
  5881. position:absolute;
  5882. left:432px;
  5883. top:372px;
  5884. width:25px;
  5885. height:30px;
  5886. display:flex;
  5887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5888. font-weight:400;
  5889. font-style:normal;
  5890. font-size:12px;
  5891. color:#7F7F7F;
  5892. line-height:30px;
  5893. }
  5894. #u39167 .text {
  5895. position:absolute;
  5896. align-self:flex-start;
  5897. padding:0px 0px 0px 0px;
  5898. box-sizing:border-box;
  5899. width:100%;
  5900. }
  5901. #u39167_text {
  5902. border-width:0px;
  5903. white-space:nowrap;
  5904. text-transform:none;
  5905. }
  5906. #u39168_div {
  5907. border-width:0px;
  5908. position:absolute;
  5909. left:0px;
  5910. top:0px;
  5911. width:25px;
  5912. height:30px;
  5913. background:inherit;
  5914. background-color:rgba(255, 255, 255, 0);
  5915. border:none;
  5916. border-radius:0px;
  5917. -moz-box-shadow:none;
  5918. -webkit-box-shadow:none;
  5919. box-shadow:none;
  5920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5921. font-weight:400;
  5922. font-style:normal;
  5923. font-size:12px;
  5924. color:#7F7F7F;
  5925. line-height:30px;
  5926. }
  5927. #u39168 {
  5928. border-width:0px;
  5929. position:absolute;
  5930. left:469px;
  5931. top:372px;
  5932. width:25px;
  5933. height:30px;
  5934. display:flex;
  5935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5936. font-weight:400;
  5937. font-style:normal;
  5938. font-size:12px;
  5939. color:#7F7F7F;
  5940. line-height:30px;
  5941. }
  5942. #u39168 .text {
  5943. position:absolute;
  5944. align-self:flex-start;
  5945. padding:0px 0px 0px 0px;
  5946. box-sizing:border-box;
  5947. width:100%;
  5948. }
  5949. #u39168_text {
  5950. border-width:0px;
  5951. white-space:nowrap;
  5952. text-transform:none;
  5953. }
  5954. #u39169 {
  5955. border-width:0px;
  5956. position:absolute;
  5957. left:0px;
  5958. top:0px;
  5959. width:0px;
  5960. height:0px;
  5961. }
  5962. #u39170_div {
  5963. border-width:0px;
  5964. position:absolute;
  5965. left:0px;
  5966. top:0px;
  5967. width:200px;
  5968. height:1187px;
  5969. background:inherit;
  5970. background-color:rgba(255, 255, 255, 1);
  5971. border:none;
  5972. border-radius:0px;
  5973. -moz-box-shadow:none;
  5974. -webkit-box-shadow:none;
  5975. box-shadow:none;
  5976. }
  5977. #u39170 {
  5978. border-width:0px;
  5979. position:absolute;
  5980. left:120px;
  5981. top:50px;
  5982. width:200px;
  5983. height:1187px;
  5984. display:flex;
  5985. }
  5986. #u39170 .text {
  5987. position:absolute;
  5988. align-self:center;
  5989. padding:2px 2px 2px 2px;
  5990. box-sizing:border-box;
  5991. width:100%;
  5992. }
  5993. #u39170_text {
  5994. border-width:0px;
  5995. word-wrap:break-word;
  5996. text-transform:none;
  5997. visibility:hidden;
  5998. }
  5999. #u39171_div {
  6000. border-width:0px;
  6001. position:absolute;
  6002. left:0px;
  6003. top:0px;
  6004. width:200px;
  6005. height:60px;
  6006. background:inherit;
  6007. background-color:rgba(224, 231, 247, 1);
  6008. border:none;
  6009. border-radius:0px;
  6010. -moz-box-shadow:none;
  6011. -webkit-box-shadow:none;
  6012. box-shadow:none;
  6013. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6014. font-weight:500;
  6015. font-style:normal;
  6016. font-size:18px;
  6017. }
  6018. #u39171 {
  6019. border-width:0px;
  6020. position:absolute;
  6021. left:120px;
  6022. top:50px;
  6023. width:200px;
  6024. height:60px;
  6025. display:flex;
  6026. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6027. font-weight:500;
  6028. font-style:normal;
  6029. font-size:18px;
  6030. }
  6031. #u39171 .text {
  6032. position:absolute;
  6033. align-self:center;
  6034. padding:0px 0px 0px 20px;
  6035. box-sizing:border-box;
  6036. width:100%;
  6037. }
  6038. #u39171_text {
  6039. border-width:0px;
  6040. word-wrap:break-word;
  6041. text-transform:none;
  6042. }
  6043. #u39172_div {
  6044. border-width:0px;
  6045. position:absolute;
  6046. left:0px;
  6047. top:0px;
  6048. width:65px;
  6049. height:22px;
  6050. background:inherit;
  6051. background-color:rgba(255, 255, 255, 0);
  6052. border:none;
  6053. border-radius:0px;
  6054. -moz-box-shadow:none;
  6055. -webkit-box-shadow:none;
  6056. box-shadow:none;
  6057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6058. font-weight:400;
  6059. font-style:normal;
  6060. font-size:16px;
  6061. }
  6062. #u39172 {
  6063. border-width:0px;
  6064. position:absolute;
  6065. left:147px;
  6066. top:204px;
  6067. width:65px;
  6068. height:22px;
  6069. display:flex;
  6070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6071. font-weight:400;
  6072. font-style:normal;
  6073. font-size:16px;
  6074. }
  6075. #u39172 .text {
  6076. position:absolute;
  6077. align-self:flex-start;
  6078. padding:0px 0px 0px 0px;
  6079. box-sizing:border-box;
  6080. width:100%;
  6081. }
  6082. #u39172_text {
  6083. border-width:0px;
  6084. white-space:nowrap;
  6085. text-transform:none;
  6086. }
  6087. #u39173_div {
  6088. border-width:0px;
  6089. position:absolute;
  6090. left:0px;
  6091. top:0px;
  6092. width:49px;
  6093. height:17px;
  6094. background:inherit;
  6095. background-color:rgba(255, 255, 255, 0);
  6096. border:none;
  6097. border-radius:0px;
  6098. -moz-box-shadow:none;
  6099. -webkit-box-shadow:none;
  6100. box-shadow:none;
  6101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6102. font-weight:400;
  6103. font-style:normal;
  6104. font-size:12px;
  6105. color:#AAAAAA;
  6106. }
  6107. #u39173 {
  6108. border-width:0px;
  6109. position:absolute;
  6110. left:147px;
  6111. top:125px;
  6112. width:49px;
  6113. height:17px;
  6114. display:flex;
  6115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6116. font-weight:400;
  6117. font-style:normal;
  6118. font-size:12px;
  6119. color:#AAAAAA;
  6120. }
  6121. #u39173 .text {
  6122. position:absolute;
  6123. align-self:flex-start;
  6124. padding:0px 0px 0px 0px;
  6125. box-sizing:border-box;
  6126. width:100%;
  6127. }
  6128. #u39173_text {
  6129. border-width:0px;
  6130. white-space:nowrap;
  6131. text-transform:none;
  6132. }
  6133. #u39174_div {
  6134. border-width:0px;
  6135. position:absolute;
  6136. left:0px;
  6137. top:0px;
  6138. width:49px;
  6139. height:17px;
  6140. background:inherit;
  6141. background-color:rgba(255, 255, 255, 0);
  6142. border:none;
  6143. border-radius:0px;
  6144. -moz-box-shadow:none;
  6145. -webkit-box-shadow:none;
  6146. box-shadow:none;
  6147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6148. font-weight:400;
  6149. font-style:normal;
  6150. font-size:12px;
  6151. color:#AAAAAA;
  6152. }
  6153. #u39174 {
  6154. border-width:0px;
  6155. position:absolute;
  6156. left:147px;
  6157. top:461px;
  6158. width:49px;
  6159. height:17px;
  6160. display:flex;
  6161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6162. font-weight:400;
  6163. font-style:normal;
  6164. font-size:12px;
  6165. color:#AAAAAA;
  6166. }
  6167. #u39174 .text {
  6168. position:absolute;
  6169. align-self:flex-start;
  6170. padding:0px 0px 0px 0px;
  6171. box-sizing:border-box;
  6172. width:100%;
  6173. }
  6174. #u39174_text {
  6175. border-width:0px;
  6176. white-space:nowrap;
  6177. text-transform:none;
  6178. }
  6179. #u39175_img {
  6180. border-width:0px;
  6181. position:absolute;
  6182. left:0px;
  6183. top:0px;
  6184. width:201px;
  6185. height:2px;
  6186. }
  6187. #u39175 {
  6188. border-width:0px;
  6189. position:absolute;
  6190. left:120px;
  6191. top:439px;
  6192. width:200px;
  6193. height:1px;
  6194. display:flex;
  6195. }
  6196. #u39175 .text {
  6197. position:absolute;
  6198. align-self:center;
  6199. padding:2px 2px 2px 2px;
  6200. box-sizing:border-box;
  6201. width:100%;
  6202. }
  6203. #u39175_text {
  6204. border-width:0px;
  6205. word-wrap:break-word;
  6206. text-transform:none;
  6207. visibility:hidden;
  6208. }
  6209. #u39176_div {
  6210. border-width:0px;
  6211. position:absolute;
  6212. left:0px;
  6213. top:0px;
  6214. width:65px;
  6215. height:22px;
  6216. background:inherit;
  6217. background-color:rgba(255, 255, 255, 0);
  6218. border:none;
  6219. border-radius:0px;
  6220. -moz-box-shadow:none;
  6221. -webkit-box-shadow:none;
  6222. box-shadow:none;
  6223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6224. font-weight:400;
  6225. font-style:normal;
  6226. font-size:16px;
  6227. }
  6228. #u39176 {
  6229. border-width:0px;
  6230. position:absolute;
  6231. left:147px;
  6232. top:349px;
  6233. width:65px;
  6234. height:22px;
  6235. display:flex;
  6236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6237. font-weight:400;
  6238. font-style:normal;
  6239. font-size:16px;
  6240. }
  6241. #u39176 .text {
  6242. position:absolute;
  6243. align-self:flex-start;
  6244. padding:0px 0px 0px 0px;
  6245. box-sizing:border-box;
  6246. width:100%;
  6247. }
  6248. #u39176_text {
  6249. border-width:0px;
  6250. white-space:nowrap;
  6251. text-transform:none;
  6252. }
  6253. #u39177_div {
  6254. border-width:0px;
  6255. position:absolute;
  6256. left:0px;
  6257. top:0px;
  6258. width:49px;
  6259. height:17px;
  6260. background:inherit;
  6261. background-color:rgba(255, 255, 255, 0);
  6262. border:none;
  6263. border-radius:0px;
  6264. -moz-box-shadow:none;
  6265. -webkit-box-shadow:none;
  6266. box-shadow:none;
  6267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6268. font-weight:400;
  6269. font-style:normal;
  6270. font-size:12px;
  6271. color:#AAAAAA;
  6272. }
  6273. #u39177 {
  6274. border-width:0px;
  6275. position:absolute;
  6276. left:147px;
  6277. top:313px;
  6278. width:49px;
  6279. height:17px;
  6280. display:flex;
  6281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6282. font-weight:400;
  6283. font-style:normal;
  6284. font-size:12px;
  6285. color:#AAAAAA;
  6286. }
  6287. #u39177 .text {
  6288. position:absolute;
  6289. align-self:flex-start;
  6290. padding:0px 0px 0px 0px;
  6291. box-sizing:border-box;
  6292. width:100%;
  6293. }
  6294. #u39177_text {
  6295. border-width:0px;
  6296. white-space:nowrap;
  6297. text-transform:none;
  6298. }
  6299. #u39178_img {
  6300. border-width:0px;
  6301. position:absolute;
  6302. left:0px;
  6303. top:0px;
  6304. width:201px;
  6305. height:2px;
  6306. }
  6307. #u39178 {
  6308. border-width:0px;
  6309. position:absolute;
  6310. left:120px;
  6311. top:291px;
  6312. width:200px;
  6313. height:1px;
  6314. display:flex;
  6315. }
  6316. #u39178 .text {
  6317. position:absolute;
  6318. align-self:center;
  6319. padding:2px 2px 2px 2px;
  6320. box-sizing:border-box;
  6321. width:100%;
  6322. }
  6323. #u39178_text {
  6324. border-width:0px;
  6325. word-wrap:break-word;
  6326. text-transform:none;
  6327. visibility:hidden;
  6328. }
  6329. #u39179_div {
  6330. border-width:0px;
  6331. position:absolute;
  6332. left:0px;
  6333. top:0px;
  6334. width:65px;
  6335. height:22px;
  6336. background:inherit;
  6337. background-color:rgba(255, 255, 255, 0);
  6338. border:none;
  6339. border-radius:0px;
  6340. -moz-box-shadow:none;
  6341. -webkit-box-shadow:none;
  6342. box-shadow:none;
  6343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6344. font-weight:400;
  6345. font-style:normal;
  6346. font-size:16px;
  6347. }
  6348. #u39179 {
  6349. border-width:0px;
  6350. position:absolute;
  6351. left:147px;
  6352. top:162px;
  6353. width:65px;
  6354. height:22px;
  6355. display:flex;
  6356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6357. font-weight:400;
  6358. font-style:normal;
  6359. font-size:16px;
  6360. }
  6361. #u39179 .text {
  6362. position:absolute;
  6363. align-self:flex-start;
  6364. padding:0px 0px 0px 0px;
  6365. box-sizing:border-box;
  6366. width:100%;
  6367. }
  6368. #u39179_text {
  6369. border-width:0px;
  6370. white-space:nowrap;
  6371. text-transform:none;
  6372. }
  6373. #u39180_div {
  6374. border-width:0px;
  6375. position:absolute;
  6376. left:0px;
  6377. top:0px;
  6378. width:65px;
  6379. height:22px;
  6380. background:inherit;
  6381. background-color:rgba(255, 255, 255, 0);
  6382. border:none;
  6383. border-radius:0px;
  6384. -moz-box-shadow:none;
  6385. -webkit-box-shadow:none;
  6386. box-shadow:none;
  6387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6388. font-weight:400;
  6389. font-style:normal;
  6390. font-size:16px;
  6391. }
  6392. #u39180 {
  6393. border-width:0px;
  6394. position:absolute;
  6395. left:148px;
  6396. top:538px;
  6397. width:65px;
  6398. height:22px;
  6399. display:flex;
  6400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6401. font-weight:400;
  6402. font-style:normal;
  6403. font-size:16px;
  6404. }
  6405. #u39180 .text {
  6406. position:absolute;
  6407. align-self:flex-start;
  6408. padding:0px 0px 0px 0px;
  6409. box-sizing:border-box;
  6410. width:100%;
  6411. }
  6412. #u39180_text {
  6413. border-width:0px;
  6414. white-space:nowrap;
  6415. text-transform:none;
  6416. }
  6417. #u39181_div {
  6418. border-width:0px;
  6419. position:absolute;
  6420. left:0px;
  6421. top:0px;
  6422. width:65px;
  6423. height:22px;
  6424. background:inherit;
  6425. background-color:rgba(255, 255, 255, 0);
  6426. border:none;
  6427. border-radius:0px;
  6428. -moz-box-shadow:none;
  6429. -webkit-box-shadow:none;
  6430. box-shadow:none;
  6431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6432. font-weight:400;
  6433. font-style:normal;
  6434. font-size:16px;
  6435. }
  6436. #u39181 {
  6437. border-width:0px;
  6438. position:absolute;
  6439. left:148px;
  6440. top:496px;
  6441. width:65px;
  6442. height:22px;
  6443. display:flex;
  6444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6445. font-weight:400;
  6446. font-style:normal;
  6447. font-size:16px;
  6448. }
  6449. #u39181 .text {
  6450. position:absolute;
  6451. align-self:flex-start;
  6452. padding:0px 0px 0px 0px;
  6453. box-sizing:border-box;
  6454. width:100%;
  6455. }
  6456. #u39181_text {
  6457. border-width:0px;
  6458. white-space:nowrap;
  6459. text-transform:none;
  6460. }
  6461. #u39182_div {
  6462. border-width:0px;
  6463. position:absolute;
  6464. left:0px;
  6465. top:0px;
  6466. width:65px;
  6467. height:22px;
  6468. background:inherit;
  6469. background-color:rgba(255, 255, 255, 0);
  6470. border:none;
  6471. border-radius:0px;
  6472. -moz-box-shadow:none;
  6473. -webkit-box-shadow:none;
  6474. box-shadow:none;
  6475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6476. font-weight:400;
  6477. font-style:normal;
  6478. font-size:16px;
  6479. }
  6480. #u39182 {
  6481. border-width:0px;
  6482. position:absolute;
  6483. left:147px;
  6484. top:391px;
  6485. width:65px;
  6486. height:22px;
  6487. display:flex;
  6488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6489. font-weight:400;
  6490. font-style:normal;
  6491. font-size:16px;
  6492. }
  6493. #u39182 .text {
  6494. position:absolute;
  6495. align-self:flex-start;
  6496. padding:0px 0px 0px 0px;
  6497. box-sizing:border-box;
  6498. width:100%;
  6499. }
  6500. #u39182_text {
  6501. border-width:0px;
  6502. white-space:nowrap;
  6503. text-transform:none;
  6504. }
  6505. #u39183_div {
  6506. border-width:0px;
  6507. position:absolute;
  6508. left:0px;
  6509. top:0px;
  6510. width:65px;
  6511. height:22px;
  6512. background:inherit;
  6513. background-color:rgba(255, 255, 255, 0);
  6514. border:none;
  6515. border-radius:0px;
  6516. -moz-box-shadow:none;
  6517. -webkit-box-shadow:none;
  6518. box-shadow:none;
  6519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6520. font-weight:400;
  6521. font-style:normal;
  6522. font-size:16px;
  6523. }
  6524. #u39183 {
  6525. border-width:0px;
  6526. position:absolute;
  6527. left:147px;
  6528. top:246px;
  6529. width:65px;
  6530. height:22px;
  6531. display:flex;
  6532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6533. font-weight:400;
  6534. font-style:normal;
  6535. font-size:16px;
  6536. }
  6537. #u39183 .text {
  6538. position:absolute;
  6539. align-self:flex-start;
  6540. padding:0px 0px 0px 0px;
  6541. box-sizing:border-box;
  6542. width:100%;
  6543. }
  6544. #u39183_text {
  6545. border-width:0px;
  6546. white-space:nowrap;
  6547. text-transform:none;
  6548. }