styles.css 125 KB

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