styles.css 187 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:4127px;
  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. #u10619_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:854px;
  25. height:50px;
  26. background:inherit;
  27. background-color:rgba(255, 255, 255, 0);
  28. border-radius:0px;
  29. filter:drop-shadow(none);
  30. transition:none;
  31. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  32. font-weight:400;
  33. font-style:normal;
  34. font-size:18px;
  35. color:#D9001B;
  36. }
  37. #u10619 {
  38. border-width:0px;
  39. position:absolute;
  40. left:2012px;
  41. top:-212px;
  42. width:854px;
  43. height:50px;
  44. display:flex;
  45. transition:none;
  46. transform-origin:50% 50%;
  47. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  48. font-weight:400;
  49. font-style:normal;
  50. font-size:18px;
  51. color:#D9001B;
  52. }
  53. #u10619 .text {
  54. position:absolute;
  55. align-self:flex-start;
  56. padding:0px 0px 0px 0px;
  57. box-sizing:border-box;
  58. width:100%;
  59. }
  60. #u10619_text {
  61. border-width:0px;
  62. white-space:nowrap;
  63. text-transform:none;
  64. }
  65. #u10620 {
  66. border-width:0px;
  67. position:absolute;
  68. left:0px;
  69. top:0px;
  70. width:1600px;
  71. height:1250px;
  72. }
  73. #u10621_div {
  74. border-width:0px;
  75. position:absolute;
  76. left:0px;
  77. top:0px;
  78. width:1480px;
  79. height:1200px;
  80. background:inherit;
  81. background-color:rgba(242, 242, 242, 1);
  82. border-radius:0px;
  83. filter:drop-shadow(none);
  84. transition:none;
  85. }
  86. #u10621 {
  87. border-width:0px;
  88. position:absolute;
  89. left:120px;
  90. top:50px;
  91. width:1480px;
  92. height:1200px;
  93. display:flex;
  94. transition:none;
  95. transform-origin:50% 50%;
  96. }
  97. #u10621 .text {
  98. position:absolute;
  99. align-self:center;
  100. padding:2px 2px 2px 2px;
  101. box-sizing:border-box;
  102. width:100%;
  103. }
  104. #u10621_text {
  105. border-width:0px;
  106. word-wrap:break-word;
  107. text-transform:none;
  108. visibility:hidden;
  109. }
  110. #u10622_div {
  111. border-width:0px;
  112. position:absolute;
  113. left:0px;
  114. top:0px;
  115. width:129px;
  116. height:22px;
  117. background:inherit;
  118. background-color:rgba(255, 255, 255, 0);
  119. border-radius:0px;
  120. filter:drop-shadow(none);
  121. transition:none;
  122. font-size:16px;
  123. color:#FFFFFF;
  124. }
  125. #u10622 {
  126. border-width:0px;
  127. position:absolute;
  128. left:49px;
  129. top:14px;
  130. width:129px;
  131. height:22px;
  132. display:flex;
  133. transition:none;
  134. transform-origin:50% 50%;
  135. font-size:16px;
  136. color:#FFFFFF;
  137. }
  138. #u10622 .text {
  139. position:absolute;
  140. align-self:flex-start;
  141. padding:0px 0px 0px 0px;
  142. box-sizing:border-box;
  143. width:100%;
  144. }
  145. #u10622_text {
  146. border-width:0px;
  147. white-space:nowrap;
  148. text-transform:none;
  149. }
  150. #u10623_div {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:1600px;
  156. height:50px;
  157. background:inherit;
  158. background-color:rgba(30, 42, 68, 1);
  159. border-radius:0px;
  160. filter:drop-shadow(none);
  161. transition:none;
  162. color:#AFB3B6;
  163. }
  164. #u10623 {
  165. border-width:0px;
  166. position:absolute;
  167. left:0px;
  168. top:0px;
  169. width:1600px;
  170. height:50px;
  171. display:flex;
  172. transition:none;
  173. transform-origin:50% 50%;
  174. color:#AFB3B6;
  175. }
  176. #u10623 .text {
  177. position:absolute;
  178. align-self:center;
  179. padding:2px 2px 2px 2px;
  180. box-sizing:border-box;
  181. width:100%;
  182. }
  183. #u10623_text {
  184. border-width:0px;
  185. word-wrap:break-word;
  186. text-transform:none;
  187. visibility:hidden;
  188. }
  189. #u10624 {
  190. border-width:0px;
  191. position:absolute;
  192. left:0px;
  193. top:0px;
  194. width:0px;
  195. height:0px;
  196. }
  197. #u10625 {
  198. border-width:0px;
  199. position:absolute;
  200. left:19px;
  201. top:10px;
  202. width:31px;
  203. height:31px;
  204. display:flex;
  205. transition:none;
  206. }
  207. #u10625 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u10625_img {
  215. border-width:0px;
  216. position:absolute;
  217. left:0px;
  218. top:0px;
  219. width:31px;
  220. height:31px;
  221. }
  222. #u10625_text {
  223. border-width:0px;
  224. word-wrap:break-word;
  225. text-transform:none;
  226. }
  227. #u10626_div {
  228. border-width:0px;
  229. position:absolute;
  230. left:0px;
  231. top:0px;
  232. width:161px;
  233. height:22px;
  234. background:inherit;
  235. background-color:rgba(255, 255, 255, 0);
  236. border-radius:0px;
  237. filter:drop-shadow(none);
  238. transition:none;
  239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  240. font-weight:400;
  241. font-style:normal;
  242. font-size:16px;
  243. color:#FFFFFF;
  244. }
  245. #u10626 {
  246. border-width:0px;
  247. position:absolute;
  248. left:62px;
  249. top:14px;
  250. width:161px;
  251. height:22px;
  252. display:flex;
  253. transition:none;
  254. transform-origin:50% 50%;
  255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  256. font-weight:400;
  257. font-style:normal;
  258. font-size:16px;
  259. color:#FFFFFF;
  260. }
  261. #u10626 .text {
  262. position:absolute;
  263. align-self:flex-start;
  264. padding:0px 0px 0px 0px;
  265. box-sizing:border-box;
  266. width:100%;
  267. }
  268. #u10626_text {
  269. border-width:0px;
  270. white-space:nowrap;
  271. text-transform:none;
  272. }
  273. #u10627_div {
  274. border-width:0px;
  275. position:absolute;
  276. left:0px;
  277. top:0px;
  278. width:120px;
  279. height:1200px;
  280. background:inherit;
  281. background-color:rgba(30, 42, 68, 1);
  282. border-radius:0px;
  283. filter:drop-shadow(none);
  284. transition:none;
  285. color:#AFB3B6;
  286. }
  287. #u10627 {
  288. border-width:0px;
  289. position:absolute;
  290. left:0px;
  291. top:47px;
  292. width:120px;
  293. height:1200px;
  294. display:flex;
  295. transition:none;
  296. transform-origin:50% 50%;
  297. color:#AFB3B6;
  298. }
  299. #u10627 .text {
  300. position:absolute;
  301. align-self:center;
  302. padding:2px 2px 2px 2px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u10627_text {
  307. border-width:0px;
  308. word-wrap:break-word;
  309. text-transform:none;
  310. visibility:hidden;
  311. }
  312. #u10628 {
  313. border-width:0px;
  314. position:absolute;
  315. left:0px;
  316. top:0px;
  317. width:0px;
  318. height:0px;
  319. }
  320. #u10629_div {
  321. border-width:0px;
  322. position:absolute;
  323. left:0px;
  324. top:0px;
  325. width:33px;
  326. height:22px;
  327. background:inherit;
  328. background-color:rgba(255, 255, 255, 0);
  329. border-radius:0px;
  330. filter:drop-shadow(none);
  331. transition:none;
  332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  333. font-weight:400;
  334. font-style:normal;
  335. font-size:16px;
  336. color:#FFFFFF;
  337. }
  338. #u10629 {
  339. border-width:0px;
  340. position:absolute;
  341. left:39px;
  342. top:171px;
  343. width:33px;
  344. height:22px;
  345. display:flex;
  346. transition:none;
  347. transform-origin:50% 50%;
  348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  349. font-weight:400;
  350. font-style:normal;
  351. font-size:16px;
  352. color:#FFFFFF;
  353. }
  354. #u10629 .text {
  355. position:absolute;
  356. align-self:flex-start;
  357. padding:0px 0px 0px 0px;
  358. box-sizing:border-box;
  359. width:100%;
  360. }
  361. #u10629_text {
  362. border-width:0px;
  363. white-space:nowrap;
  364. text-transform:none;
  365. }
  366. #u10630 {
  367. border-width:0px;
  368. position:absolute;
  369. left:20px;
  370. top:175px;
  371. width:14px;
  372. height:14px;
  373. display:flex;
  374. transition:none;
  375. }
  376. #u10630 .text {
  377. position:absolute;
  378. align-self:center;
  379. padding:2px 2px 2px 2px;
  380. box-sizing:border-box;
  381. width:100%;
  382. }
  383. #u10630_img {
  384. border-width:0px;
  385. position:absolute;
  386. left:0px;
  387. top:0px;
  388. width:14px;
  389. height:14px;
  390. }
  391. #u10630_text {
  392. border-width:0px;
  393. word-wrap:break-word;
  394. text-transform:none;
  395. visibility:hidden;
  396. }
  397. #u10631 {
  398. border-width:0px;
  399. position:absolute;
  400. left:0px;
  401. top:0px;
  402. width:0px;
  403. height:0px;
  404. }
  405. #u10632_div {
  406. border-width:0px;
  407. position:absolute;
  408. left:0px;
  409. top:0px;
  410. width:33px;
  411. height:22px;
  412. background:inherit;
  413. background-color:rgba(255, 255, 255, 0);
  414. border-radius:0px;
  415. filter:drop-shadow(none);
  416. transition:none;
  417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  418. font-weight:400;
  419. font-style:normal;
  420. font-size:16px;
  421. color:#FFFFFF;
  422. }
  423. #u10632 {
  424. border-width:0px;
  425. position:absolute;
  426. left:39px;
  427. top:381px;
  428. width:33px;
  429. height:22px;
  430. display:flex;
  431. transition:none;
  432. transform-origin:50% 50%;
  433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  434. font-weight:400;
  435. font-style:normal;
  436. font-size:16px;
  437. color:#FFFFFF;
  438. }
  439. #u10632 .text {
  440. position:absolute;
  441. align-self:flex-start;
  442. padding:0px 0px 0px 0px;
  443. box-sizing:border-box;
  444. width:100%;
  445. }
  446. #u10632_text {
  447. border-width:0px;
  448. white-space:nowrap;
  449. text-transform:none;
  450. }
  451. #u10633 {
  452. border-width:0px;
  453. position:absolute;
  454. left:20px;
  455. top:385px;
  456. width:14px;
  457. height:14px;
  458. display:flex;
  459. transition:none;
  460. }
  461. #u10633 .text {
  462. position:absolute;
  463. align-self:center;
  464. padding:2px 2px 2px 2px;
  465. box-sizing:border-box;
  466. width:100%;
  467. }
  468. #u10633_img {
  469. border-width:0px;
  470. position:absolute;
  471. left:0px;
  472. top:0px;
  473. width:14px;
  474. height:14px;
  475. }
  476. #u10633_text {
  477. border-width:0px;
  478. word-wrap:break-word;
  479. text-transform:none;
  480. visibility:hidden;
  481. }
  482. #u10634 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u10635_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:49px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border-radius:0px;
  500. filter:drop-shadow(none);
  501. transition:none;
  502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  503. font-weight:400;
  504. font-style:normal;
  505. font-size:16px;
  506. color:#FFFFFF;
  507. }
  508. #u10635 {
  509. border-width:0px;
  510. position:absolute;
  511. left:39px;
  512. top:133px;
  513. width:49px;
  514. height:22px;
  515. display:flex;
  516. transition:none;
  517. transform-origin:50% 50%;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u10635 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u10635_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u10636 {
  537. border-width:0px;
  538. position:absolute;
  539. left:20px;
  540. top:137px;
  541. width:14px;
  542. height:14px;
  543. display:flex;
  544. transition:none;
  545. }
  546. #u10636 .text {
  547. position:absolute;
  548. align-self:center;
  549. padding:2px 2px 2px 2px;
  550. box-sizing:border-box;
  551. width:100%;
  552. }
  553. #u10636_img {
  554. border-width:0px;
  555. position:absolute;
  556. left:0px;
  557. top:0px;
  558. width:14px;
  559. height:14px;
  560. }
  561. #u10636_text {
  562. border-width:0px;
  563. word-wrap:break-word;
  564. text-transform:none;
  565. visibility:hidden;
  566. }
  567. #u10637 {
  568. border-width:0px;
  569. position:absolute;
  570. left:0px;
  571. top:0px;
  572. width:0px;
  573. height:0px;
  574. }
  575. #u10638_div {
  576. border-width:0px;
  577. position:absolute;
  578. left:0px;
  579. top:0px;
  580. width:33px;
  581. height:22px;
  582. background:inherit;
  583. background-color:rgba(255, 255, 255, 0);
  584. border-radius:0px;
  585. filter:drop-shadow(none);
  586. transition:none;
  587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  588. font-weight:400;
  589. font-style:normal;
  590. font-size:16px;
  591. color:#FFFFFF;
  592. }
  593. #u10638 {
  594. border-width:0px;
  595. position:absolute;
  596. left:39px;
  597. top:423px;
  598. width:33px;
  599. height:22px;
  600. display:flex;
  601. transition:none;
  602. transform-origin:50% 50%;
  603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  604. font-weight:400;
  605. font-style:normal;
  606. font-size:16px;
  607. color:#FFFFFF;
  608. }
  609. #u10638 .text {
  610. position:absolute;
  611. align-self:flex-start;
  612. padding:0px 0px 0px 0px;
  613. box-sizing:border-box;
  614. width:100%;
  615. }
  616. #u10638_text {
  617. border-width:0px;
  618. white-space:nowrap;
  619. text-transform:none;
  620. }
  621. #u10639 {
  622. border-width:0px;
  623. position:absolute;
  624. left:20px;
  625. top:427px;
  626. width:14px;
  627. height:14px;
  628. display:flex;
  629. transition:none;
  630. }
  631. #u10639 .text {
  632. position:absolute;
  633. align-self:center;
  634. padding:2px 2px 2px 2px;
  635. box-sizing:border-box;
  636. width:100%;
  637. }
  638. #u10639_img {
  639. border-width:0px;
  640. position:absolute;
  641. left:0px;
  642. top:0px;
  643. width:14px;
  644. height:14px;
  645. }
  646. #u10639_text {
  647. border-width:0px;
  648. word-wrap:break-word;
  649. text-transform:none;
  650. visibility:hidden;
  651. }
  652. #u10640 {
  653. border-width:0px;
  654. position:absolute;
  655. left:0px;
  656. top:0px;
  657. width:0px;
  658. height:0px;
  659. }
  660. #u10641_div {
  661. border-width:0px;
  662. position:absolute;
  663. left:0px;
  664. top:0px;
  665. width:33px;
  666. height:22px;
  667. background:inherit;
  668. background-color:rgba(255, 255, 255, 0);
  669. border-radius:0px;
  670. filter:drop-shadow(none);
  671. transition:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u10641 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:297px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. transition:none;
  687. transform-origin:50% 50%;
  688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  689. font-weight:400;
  690. font-style:normal;
  691. font-size:16px;
  692. color:#FFFFFF;
  693. }
  694. #u10641 .text {
  695. position:absolute;
  696. align-self:flex-start;
  697. padding:0px 0px 0px 0px;
  698. box-sizing:border-box;
  699. width:100%;
  700. }
  701. #u10641_text {
  702. border-width:0px;
  703. white-space:nowrap;
  704. text-transform:none;
  705. }
  706. #u10642 {
  707. border-width:0px;
  708. position:absolute;
  709. left:20px;
  710. top:301px;
  711. width:14px;
  712. height:14px;
  713. display:flex;
  714. transition:none;
  715. }
  716. #u10642 .text {
  717. position:absolute;
  718. align-self:center;
  719. padding:2px 2px 2px 2px;
  720. box-sizing:border-box;
  721. width:100%;
  722. }
  723. #u10642_img {
  724. border-width:0px;
  725. position:absolute;
  726. left:0px;
  727. top:0px;
  728. width:14px;
  729. height:14px;
  730. }
  731. #u10642_text {
  732. border-width:0px;
  733. word-wrap:break-word;
  734. text-transform:none;
  735. visibility:hidden;
  736. }
  737. #u10643 {
  738. border-width:0px;
  739. position:absolute;
  740. left:0px;
  741. top:0px;
  742. width:0px;
  743. height:0px;
  744. }
  745. #u10644_div {
  746. border-width:0px;
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:33px;
  751. height:22px;
  752. background:inherit;
  753. background-color:rgba(255, 255, 255, 0);
  754. border-radius:0px;
  755. filter:drop-shadow(none);
  756. transition:none;
  757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  758. font-weight:400;
  759. font-style:normal;
  760. font-size:16px;
  761. color:#FFFFFF;
  762. }
  763. #u10644 {
  764. border-width:0px;
  765. position:absolute;
  766. left:39px;
  767. top:213px;
  768. width:33px;
  769. height:22px;
  770. display:flex;
  771. transition:none;
  772. transform-origin:50% 50%;
  773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  774. font-weight:400;
  775. font-style:normal;
  776. font-size:16px;
  777. color:#FFFFFF;
  778. }
  779. #u10644 .text {
  780. position:absolute;
  781. align-self:flex-start;
  782. padding:0px 0px 0px 0px;
  783. box-sizing:border-box;
  784. width:100%;
  785. }
  786. #u10644_text {
  787. border-width:0px;
  788. white-space:nowrap;
  789. text-transform:none;
  790. }
  791. #u10645 {
  792. border-width:0px;
  793. position:absolute;
  794. left:20px;
  795. top:217px;
  796. width:14px;
  797. height:14px;
  798. display:flex;
  799. transition:none;
  800. }
  801. #u10645 .text {
  802. position:absolute;
  803. align-self:center;
  804. padding:2px 2px 2px 2px;
  805. box-sizing:border-box;
  806. width:100%;
  807. }
  808. #u10645_img {
  809. border-width:0px;
  810. position:absolute;
  811. left:0px;
  812. top:0px;
  813. width:14px;
  814. height:14px;
  815. }
  816. #u10645_text {
  817. border-width:0px;
  818. word-wrap:break-word;
  819. text-transform:none;
  820. visibility:hidden;
  821. }
  822. #u10646 {
  823. border-width:0px;
  824. position:absolute;
  825. left:0px;
  826. top:0px;
  827. width:0px;
  828. height:0px;
  829. }
  830. #u10647_div {
  831. border-width:0px;
  832. position:absolute;
  833. left:0px;
  834. top:0px;
  835. width:33px;
  836. height:22px;
  837. background:inherit;
  838. background-color:rgba(255, 255, 255, 0);
  839. border-radius:0px;
  840. filter:drop-shadow(none);
  841. transition:none;
  842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  843. font-weight:400;
  844. font-style:normal;
  845. font-size:16px;
  846. color:#FFFFFF;
  847. }
  848. #u10647 {
  849. border-width:0px;
  850. position:absolute;
  851. left:39px;
  852. top:339px;
  853. width:33px;
  854. height:22px;
  855. display:flex;
  856. transition:none;
  857. transform-origin:50% 50%;
  858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  859. font-weight:400;
  860. font-style:normal;
  861. font-size:16px;
  862. color:#FFFFFF;
  863. }
  864. #u10647 .text {
  865. position:absolute;
  866. align-self:flex-start;
  867. padding:0px 0px 0px 0px;
  868. box-sizing:border-box;
  869. width:100%;
  870. }
  871. #u10647_text {
  872. border-width:0px;
  873. white-space:nowrap;
  874. text-transform:none;
  875. }
  876. #u10648 {
  877. border-width:0px;
  878. position:absolute;
  879. left:20px;
  880. top:343px;
  881. width:14px;
  882. height:14px;
  883. display:flex;
  884. transition:none;
  885. }
  886. #u10648 .text {
  887. position:absolute;
  888. align-self:center;
  889. padding:2px 2px 2px 2px;
  890. box-sizing:border-box;
  891. width:100%;
  892. }
  893. #u10648_img {
  894. border-width:0px;
  895. position:absolute;
  896. left:0px;
  897. top:0px;
  898. width:14px;
  899. height:14px;
  900. }
  901. #u10648_text {
  902. border-width:0px;
  903. word-wrap:break-word;
  904. text-transform:none;
  905. visibility:hidden;
  906. }
  907. #u10649 {
  908. border-width:0px;
  909. position:absolute;
  910. left:0px;
  911. top:0px;
  912. width:0px;
  913. height:0px;
  914. }
  915. #u10650_div {
  916. border-width:0px;
  917. position:absolute;
  918. left:0px;
  919. top:0px;
  920. width:33px;
  921. height:22px;
  922. background:inherit;
  923. background-color:rgba(255, 255, 255, 0);
  924. border-radius:0px;
  925. filter:drop-shadow(none);
  926. transition:none;
  927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  928. font-weight:400;
  929. font-style:normal;
  930. font-size:16px;
  931. color:#FFFFFF;
  932. }
  933. #u10650 {
  934. border-width:0px;
  935. position:absolute;
  936. left:39px;
  937. top:465px;
  938. width:33px;
  939. height:22px;
  940. display:flex;
  941. transition:none;
  942. transform-origin:50% 50%;
  943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  944. font-weight:400;
  945. font-style:normal;
  946. font-size:16px;
  947. color:#FFFFFF;
  948. }
  949. #u10650 .text {
  950. position:absolute;
  951. align-self:flex-start;
  952. padding:0px 0px 0px 0px;
  953. box-sizing:border-box;
  954. width:100%;
  955. }
  956. #u10650_text {
  957. border-width:0px;
  958. white-space:nowrap;
  959. text-transform:none;
  960. }
  961. #u10651 {
  962. border-width:0px;
  963. position:absolute;
  964. left:20px;
  965. top:469px;
  966. width:14px;
  967. height:14px;
  968. display:flex;
  969. transition:none;
  970. }
  971. #u10651 .text {
  972. position:absolute;
  973. align-self:center;
  974. padding:2px 2px 2px 2px;
  975. box-sizing:border-box;
  976. width:100%;
  977. }
  978. #u10651_img {
  979. border-width:0px;
  980. position:absolute;
  981. left:0px;
  982. top:0px;
  983. width:14px;
  984. height:14px;
  985. }
  986. #u10651_text {
  987. border-width:0px;
  988. word-wrap:break-word;
  989. text-transform:none;
  990. visibility:hidden;
  991. }
  992. #u10652 {
  993. border-width:0px;
  994. position:absolute;
  995. left:0px;
  996. top:0px;
  997. width:0px;
  998. height:0px;
  999. }
  1000. #u10653_div {
  1001. border-width:0px;
  1002. position:absolute;
  1003. left:0px;
  1004. top:0px;
  1005. width:29px;
  1006. height:20px;
  1007. background:inherit;
  1008. background-color:rgba(255, 255, 255, 0);
  1009. border-radius:25px;
  1010. filter:drop-shadow(none);
  1011. transition:none;
  1012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1013. font-weight:400;
  1014. font-style:normal;
  1015. color:#FFFFFF;
  1016. }
  1017. #u10653 {
  1018. border-width:0px;
  1019. position:absolute;
  1020. left:52px;
  1021. top:1145px;
  1022. width:29px;
  1023. height:20px;
  1024. display:flex;
  1025. transition:none;
  1026. transform-origin:50% 50%;
  1027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1028. font-weight:400;
  1029. font-style:normal;
  1030. color:#FFFFFF;
  1031. }
  1032. #u10653 .text {
  1033. position:absolute;
  1034. align-self:center;
  1035. padding:0px 0px 0px 0px;
  1036. box-sizing:border-box;
  1037. width:100%;
  1038. }
  1039. #u10653_text {
  1040. border-width:0px;
  1041. white-space:nowrap;
  1042. text-transform:none;
  1043. }
  1044. #u10654 {
  1045. border-width:0px;
  1046. position:absolute;
  1047. left:20px;
  1048. top:1144px;
  1049. width:22px;
  1050. height:22px;
  1051. display:flex;
  1052. transition:none;
  1053. }
  1054. #u10654 .text {
  1055. position:absolute;
  1056. align-self:center;
  1057. padding:2px 2px 2px 2px;
  1058. box-sizing:border-box;
  1059. width:100%;
  1060. }
  1061. #u10654_img {
  1062. border-width:0px;
  1063. position:absolute;
  1064. left:0px;
  1065. top:0px;
  1066. width:22px;
  1067. height:22px;
  1068. }
  1069. #u10654_text {
  1070. border-width:0px;
  1071. word-wrap:break-word;
  1072. text-transform:none;
  1073. visibility:hidden;
  1074. }
  1075. #u10655 {
  1076. border-width:0px;
  1077. position:absolute;
  1078. left:0px;
  1079. top:0px;
  1080. width:0px;
  1081. height:0px;
  1082. }
  1083. #u10656_div {
  1084. border-width:0px;
  1085. position:absolute;
  1086. left:0px;
  1087. top:0px;
  1088. width:29px;
  1089. height:20px;
  1090. background:inherit;
  1091. background-color:rgba(255, 255, 255, 0);
  1092. border-radius:25px;
  1093. filter:drop-shadow(none);
  1094. transition:none;
  1095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1096. font-weight:400;
  1097. font-style:normal;
  1098. color:#FFFFFF;
  1099. }
  1100. #u10656 {
  1101. border-width:0px;
  1102. position:absolute;
  1103. left:52px;
  1104. top:1187px;
  1105. width:29px;
  1106. height:20px;
  1107. display:flex;
  1108. transition:none;
  1109. transform-origin:50% 50%;
  1110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1111. font-weight:400;
  1112. font-style:normal;
  1113. color:#FFFFFF;
  1114. }
  1115. #u10656 .text {
  1116. position:absolute;
  1117. align-self:center;
  1118. padding:0px 0px 0px 0px;
  1119. box-sizing:border-box;
  1120. width:100%;
  1121. }
  1122. #u10656_text {
  1123. border-width:0px;
  1124. white-space:nowrap;
  1125. text-transform:none;
  1126. }
  1127. #u10657 {
  1128. border-width:0px;
  1129. position:absolute;
  1130. left:20px;
  1131. top:1186px;
  1132. width:22px;
  1133. height:22px;
  1134. display:flex;
  1135. transition:none;
  1136. }
  1137. #u10657 .text {
  1138. position:absolute;
  1139. align-self:center;
  1140. padding:2px 2px 2px 2px;
  1141. box-sizing:border-box;
  1142. width:100%;
  1143. }
  1144. #u10657_img {
  1145. border-width:0px;
  1146. position:absolute;
  1147. left:0px;
  1148. top:0px;
  1149. width:22px;
  1150. height:22px;
  1151. }
  1152. #u10657_text {
  1153. border-width:0px;
  1154. word-wrap:break-word;
  1155. text-transform:none;
  1156. visibility:hidden;
  1157. }
  1158. #u10658 {
  1159. border-width:0px;
  1160. position:absolute;
  1161. left:0px;
  1162. top:0px;
  1163. width:0px;
  1164. height:0px;
  1165. }
  1166. #u10659_div {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:0px;
  1170. top:0px;
  1171. width:33px;
  1172. height:22px;
  1173. background:inherit;
  1174. background-color:rgba(255, 255, 255, 0);
  1175. border-radius:0px;
  1176. filter:drop-shadow(none);
  1177. transition:none;
  1178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1179. font-weight:400;
  1180. font-style:normal;
  1181. font-size:16px;
  1182. color:#FFFFFF;
  1183. }
  1184. #u10659 {
  1185. border-width:0px;
  1186. position:absolute;
  1187. left:39px;
  1188. top:255px;
  1189. width:33px;
  1190. height:22px;
  1191. display:flex;
  1192. transition:none;
  1193. transform-origin:50% 50%;
  1194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1195. font-weight:400;
  1196. font-style:normal;
  1197. font-size:16px;
  1198. color:#FFFFFF;
  1199. }
  1200. #u10659 .text {
  1201. position:absolute;
  1202. align-self:flex-start;
  1203. padding:0px 0px 0px 0px;
  1204. box-sizing:border-box;
  1205. width:100%;
  1206. }
  1207. #u10659_text {
  1208. border-width:0px;
  1209. white-space:nowrap;
  1210. text-transform:none;
  1211. }
  1212. #u10660 {
  1213. border-width:0px;
  1214. position:absolute;
  1215. left:20px;
  1216. top:259px;
  1217. width:14px;
  1218. height:14px;
  1219. display:flex;
  1220. transition:none;
  1221. }
  1222. #u10660 .text {
  1223. position:absolute;
  1224. align-self:center;
  1225. padding:2px 2px 2px 2px;
  1226. box-sizing:border-box;
  1227. width:100%;
  1228. }
  1229. #u10660_img {
  1230. border-width:0px;
  1231. position:absolute;
  1232. left:0px;
  1233. top:0px;
  1234. width:14px;
  1235. height:14px;
  1236. }
  1237. #u10660_text {
  1238. border-width:0px;
  1239. word-wrap:break-word;
  1240. text-transform:none;
  1241. visibility:hidden;
  1242. }
  1243. #u10661 {
  1244. border-width:0px;
  1245. position:absolute;
  1246. left:0px;
  1247. top:0px;
  1248. width:0px;
  1249. height:0px;
  1250. }
  1251. #u10662_input {
  1252. position:absolute;
  1253. left:0px;
  1254. top:0px;
  1255. width:214px;
  1256. height:27px;
  1257. padding:2px 2px 2px 2px;
  1258. font-family:'ArialMT', 'Arial', sans-serif;
  1259. font-weight:400;
  1260. font-style:normal;
  1261. font-size:14px;
  1262. letter-spacing:normal;
  1263. color:#FFFFFF;
  1264. vertical-align:none;
  1265. text-align:left;
  1266. text-transform:none;
  1267. background-color:transparent;
  1268. border-color:transparent;
  1269. }
  1270. #u10662_input.disabled {
  1271. position:absolute;
  1272. left:0px;
  1273. top:0px;
  1274. width:214px;
  1275. height:27px;
  1276. padding:2px 2px 2px 2px;
  1277. font-family:'ArialMT', 'Arial', sans-serif;
  1278. font-weight:400;
  1279. font-style:normal;
  1280. font-size:14px;
  1281. letter-spacing:normal;
  1282. color:#FFFFFF;
  1283. vertical-align:none;
  1284. text-align:left;
  1285. text-transform:none;
  1286. background-color:transparent;
  1287. border-color:transparent;
  1288. }
  1289. #u10662_div {
  1290. border-width:0px;
  1291. position:absolute;
  1292. left:0px;
  1293. top:0px;
  1294. width:214px;
  1295. height:27px;
  1296. background:inherit;
  1297. background-color:rgba(255, 255, 255, 0);
  1298. border-radius:0px;
  1299. filter:drop-shadow(none);
  1300. transition:none;
  1301. font-size:14px;
  1302. color:#FFFFFF;
  1303. }
  1304. #u10662 {
  1305. border-width:0px;
  1306. position:absolute;
  1307. left:1221px;
  1308. top:11px;
  1309. width:214px;
  1310. height:27px;
  1311. display:flex;
  1312. transition:none;
  1313. transform-origin:50% 50%;
  1314. font-size:14px;
  1315. color:#FFFFFF;
  1316. }
  1317. #u10662 .text {
  1318. position:absolute;
  1319. align-self:flex-start;
  1320. padding:2px 2px 2px 2px;
  1321. box-sizing:border-box;
  1322. width:100%;
  1323. }
  1324. #u10662_div.disabled {
  1325. border-width:0px;
  1326. position:absolute;
  1327. left:0px;
  1328. top:0px;
  1329. width:214px;
  1330. height:27px;
  1331. background:inherit;
  1332. background-color:rgba(240, 240, 240, 1);
  1333. border-radius:0px;
  1334. filter:drop-shadow(none);
  1335. transition:none;
  1336. font-size:14px;
  1337. color:#FFFFFF;
  1338. }
  1339. #u10662.disabled {
  1340. }
  1341. .u10662_input_option {
  1342. font-size:14px;
  1343. }
  1344. #u10663 {
  1345. border-width:0px;
  1346. position:absolute;
  1347. left:1194px;
  1348. top:14px;
  1349. width:22px;
  1350. height:22px;
  1351. display:flex;
  1352. transition:none;
  1353. }
  1354. #u10663 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:2px 2px 2px 2px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u10663_img {
  1362. border-width:0px;
  1363. position:absolute;
  1364. left:0px;
  1365. top:0px;
  1366. width:22px;
  1367. height:22px;
  1368. }
  1369. #u10663_text {
  1370. border-width:0px;
  1371. word-wrap:break-word;
  1372. text-transform:none;
  1373. visibility:hidden;
  1374. }
  1375. #u10664_div {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:0px;
  1379. top:0px;
  1380. width:100px;
  1381. height:24px;
  1382. background:inherit;
  1383. background-color:rgba(242, 242, 242, 0.2);
  1384. border-radius:25px;
  1385. filter:drop-shadow(none);
  1386. transition:none;
  1387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1388. font-weight:400;
  1389. font-style:normal;
  1390. color:#FFFFFF;
  1391. text-align:center;
  1392. }
  1393. #u10664 {
  1394. border-width:0px;
  1395. position:absolute;
  1396. left:1480px;
  1397. top:13px;
  1398. width:100px;
  1399. height:24px;
  1400. display:flex;
  1401. transition:none;
  1402. transform-origin:50% 50%;
  1403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1404. font-weight:400;
  1405. font-style:normal;
  1406. color:#FFFFFF;
  1407. text-align:center;
  1408. }
  1409. #u10664 .text {
  1410. position:absolute;
  1411. align-self:center;
  1412. padding:0px 0px 0px 0px;
  1413. box-sizing:border-box;
  1414. width:100%;
  1415. }
  1416. #u10664_text {
  1417. border-width:0px;
  1418. word-wrap:break-word;
  1419. text-transform:none;
  1420. }
  1421. #u10665 {
  1422. border-width:0px;
  1423. position:absolute;
  1424. left:1452px;
  1425. top:19px;
  1426. width:1px;
  1427. height:11px;
  1428. display:flex;
  1429. transition:none;
  1430. }
  1431. #u10665 .text {
  1432. position:absolute;
  1433. align-self:center;
  1434. padding:2px 2px 2px 2px;
  1435. box-sizing:border-box;
  1436. width:100%;
  1437. }
  1438. #u10665_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:2px;
  1444. height:12px;
  1445. }
  1446. #u10665_text {
  1447. border-width:0px;
  1448. word-wrap:break-word;
  1449. text-transform:none;
  1450. visibility:hidden;
  1451. }
  1452. #u10666 {
  1453. border-width:0px;
  1454. position:absolute;
  1455. left:0px;
  1456. top:0px;
  1457. width:0px;
  1458. height:0px;
  1459. }
  1460. #u10667_div {
  1461. border-width:0px;
  1462. position:absolute;
  1463. left:0px;
  1464. top:0px;
  1465. width:29px;
  1466. height:20px;
  1467. background:inherit;
  1468. background-color:rgba(255, 255, 255, 0);
  1469. border-radius:25px;
  1470. filter:drop-shadow(none);
  1471. transition:none;
  1472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1473. font-weight:400;
  1474. font-style:normal;
  1475. color:#FFFFFF;
  1476. }
  1477. #u10667 {
  1478. border-width:0px;
  1479. position:absolute;
  1480. left:52px;
  1481. top:1082px;
  1482. width:29px;
  1483. height:20px;
  1484. display:flex;
  1485. transition:none;
  1486. transform-origin:50% 50%;
  1487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1488. font-weight:400;
  1489. font-style:normal;
  1490. color:#FFFFFF;
  1491. }
  1492. #u10667 .text {
  1493. position:absolute;
  1494. align-self:center;
  1495. padding:0px 0px 0px 0px;
  1496. box-sizing:border-box;
  1497. width:100%;
  1498. }
  1499. #u10667_text {
  1500. border-width:0px;
  1501. white-space:nowrap;
  1502. text-transform:none;
  1503. }
  1504. #u10668 {
  1505. border-width:0px;
  1506. position:absolute;
  1507. left:20px;
  1508. top:1081px;
  1509. width:22px;
  1510. height:22px;
  1511. display:flex;
  1512. transition:none;
  1513. }
  1514. #u10668 .text {
  1515. position:absolute;
  1516. align-self:center;
  1517. padding:2px 2px 2px 2px;
  1518. box-sizing:border-box;
  1519. width:100%;
  1520. }
  1521. #u10668_img {
  1522. border-width:0px;
  1523. position:absolute;
  1524. left:0px;
  1525. top:0px;
  1526. width:22px;
  1527. height:22px;
  1528. }
  1529. #u10668_text {
  1530. border-width:0px;
  1531. word-wrap:break-word;
  1532. text-transform:none;
  1533. visibility:hidden;
  1534. }
  1535. #u10669 {
  1536. border-width:0px;
  1537. position:absolute;
  1538. left:20px;
  1539. top:1123px;
  1540. width:68px;
  1541. height:1px;
  1542. display:flex;
  1543. transition:none;
  1544. }
  1545. #u10669 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u10669_img {
  1553. border-width:0px;
  1554. position:absolute;
  1555. left:0px;
  1556. top:0px;
  1557. width:69px;
  1558. height:2px;
  1559. }
  1560. #u10669_text {
  1561. border-width:0px;
  1562. word-wrap:break-word;
  1563. text-transform:none;
  1564. visibility:hidden;
  1565. }
  1566. #u10670 {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:20px;
  1570. top:1061px;
  1571. width:68px;
  1572. height:1px;
  1573. display:flex;
  1574. transition:none;
  1575. }
  1576. #u10670 .text {
  1577. position:absolute;
  1578. align-self:center;
  1579. padding:2px 2px 2px 2px;
  1580. box-sizing:border-box;
  1581. width:100%;
  1582. }
  1583. #u10670_img {
  1584. border-width:0px;
  1585. position:absolute;
  1586. left:0px;
  1587. top:0px;
  1588. width:69px;
  1589. height:2px;
  1590. }
  1591. #u10670_text {
  1592. border-width:0px;
  1593. word-wrap:break-word;
  1594. text-transform:none;
  1595. visibility:hidden;
  1596. }
  1597. #u10671 {
  1598. border-width:0px;
  1599. position:absolute;
  1600. left:20px;
  1601. top:112px;
  1602. width:56px;
  1603. height:1px;
  1604. display:flex;
  1605. transition:none;
  1606. }
  1607. #u10671 .text {
  1608. position:absolute;
  1609. align-self:center;
  1610. padding:2px 2px 2px 2px;
  1611. box-sizing:border-box;
  1612. width:100%;
  1613. }
  1614. #u10671_img {
  1615. border-width:0px;
  1616. position:absolute;
  1617. left:0px;
  1618. top:0px;
  1619. width:57px;
  1620. height:2px;
  1621. }
  1622. #u10671_text {
  1623. border-width:0px;
  1624. word-wrap:break-word;
  1625. text-transform:none;
  1626. visibility:hidden;
  1627. }
  1628. #u10672 {
  1629. border-width:0px;
  1630. position:absolute;
  1631. left:0px;
  1632. top:0px;
  1633. width:0px;
  1634. height:0px;
  1635. }
  1636. #u10673_div {
  1637. border-width:0px;
  1638. position:absolute;
  1639. left:0px;
  1640. top:0px;
  1641. width:33px;
  1642. height:22px;
  1643. background:inherit;
  1644. background-color:rgba(255, 255, 255, 0);
  1645. border-radius:0px;
  1646. filter:drop-shadow(none);
  1647. transition:none;
  1648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1649. font-weight:400;
  1650. font-style:normal;
  1651. font-size:16px;
  1652. color:#FFFFFF;
  1653. }
  1654. #u10673 {
  1655. border-width:0px;
  1656. position:absolute;
  1657. left:43px;
  1658. top:71px;
  1659. width:33px;
  1660. height:22px;
  1661. display:flex;
  1662. transition:none;
  1663. transform-origin:50% 50%;
  1664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1665. font-weight:400;
  1666. font-style:normal;
  1667. font-size:16px;
  1668. color:#FFFFFF;
  1669. }
  1670. #u10673 .text {
  1671. position:absolute;
  1672. align-self:flex-start;
  1673. padding:0px 0px 0px 0px;
  1674. box-sizing:border-box;
  1675. width:100%;
  1676. }
  1677. #u10673_text {
  1678. border-width:0px;
  1679. white-space:nowrap;
  1680. text-transform:none;
  1681. }
  1682. #u10674 {
  1683. border-width:0px;
  1684. position:absolute;
  1685. left:20px;
  1686. top:75px;
  1687. width:18px;
  1688. height:14px;
  1689. display:flex;
  1690. transition:none;
  1691. }
  1692. #u10674 .text {
  1693. position:absolute;
  1694. align-self:center;
  1695. padding:2px 2px 2px 2px;
  1696. box-sizing:border-box;
  1697. width:100%;
  1698. }
  1699. #u10674_img {
  1700. border-width:0px;
  1701. position:absolute;
  1702. left:0px;
  1703. top:0px;
  1704. width:18px;
  1705. height:14px;
  1706. }
  1707. #u10674_text {
  1708. border-width:0px;
  1709. word-wrap:break-word;
  1710. text-transform:none;
  1711. visibility:hidden;
  1712. }
  1713. #u10675_div {
  1714. border-width:0px;
  1715. position:absolute;
  1716. left:0px;
  1717. top:0px;
  1718. width:1265px;
  1719. height:1180px;
  1720. background:inherit;
  1721. background-color:rgba(255, 255, 255, 1);
  1722. border-radius:0px;
  1723. filter:drop-shadow(0px 0px 1.5px rgba(127, 127, 127, 0.34901960784313724));
  1724. transition:none;
  1725. color:#1890FF;
  1726. }
  1727. #u10675 {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:329px;
  1731. top:51px;
  1732. width:1265px;
  1733. height:1180px;
  1734. display:flex;
  1735. transition:none;
  1736. transform-origin:50% 50%;
  1737. color:#1890FF;
  1738. }
  1739. #u10675 .text {
  1740. position:absolute;
  1741. align-self:center;
  1742. padding:2px 2px 2px 2px;
  1743. box-sizing:border-box;
  1744. width:100%;
  1745. }
  1746. #u10675_text {
  1747. border-width:0px;
  1748. word-wrap:break-word;
  1749. text-transform:none;
  1750. visibility:hidden;
  1751. }
  1752. #u10676_div {
  1753. border-width:0px;
  1754. position:absolute;
  1755. left:0px;
  1756. top:0px;
  1757. width:73px;
  1758. height:25px;
  1759. background:inherit;
  1760. background-color:rgba(255, 255, 255, 0);
  1761. border-radius:0px;
  1762. filter:drop-shadow(none);
  1763. transition:none;
  1764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1765. font-weight:400;
  1766. font-style:normal;
  1767. font-size:18px;
  1768. color:#1890FF;
  1769. }
  1770. #u10676 {
  1771. border-width:0px;
  1772. position:absolute;
  1773. left:349px;
  1774. top:60px;
  1775. width:73px;
  1776. height:25px;
  1777. display:flex;
  1778. transition:none;
  1779. transform-origin:50% 50%;
  1780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1781. font-weight:400;
  1782. font-style:normal;
  1783. font-size:18px;
  1784. color:#1890FF;
  1785. }
  1786. #u10676 .text {
  1787. position:absolute;
  1788. align-self:flex-start;
  1789. padding:0px 0px 0px 0px;
  1790. box-sizing:border-box;
  1791. width:100%;
  1792. }
  1793. #u10676_text {
  1794. border-width:0px;
  1795. white-space:nowrap;
  1796. text-transform:none;
  1797. }
  1798. #u10677 {
  1799. border-width:0px;
  1800. position:absolute;
  1801. left:620px;
  1802. top:140px;
  1803. width:960px;
  1804. height:637px;
  1805. display:flex;
  1806. transition:none;
  1807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1808. font-weight:400;
  1809. font-style:normal;
  1810. font-size:38px;
  1811. color:#FFFFFF;
  1812. }
  1813. #u10677 .text {
  1814. position:absolute;
  1815. align-self:center;
  1816. padding:2px 2px 2px 2px;
  1817. box-sizing:border-box;
  1818. width:100%;
  1819. }
  1820. #u10677_img {
  1821. border-width:0px;
  1822. position:absolute;
  1823. left:0px;
  1824. top:0px;
  1825. width:960px;
  1826. height:637px;
  1827. }
  1828. #u10677_text {
  1829. border-width:0px;
  1830. word-wrap:break-word;
  1831. text-transform:none;
  1832. }
  1833. #u10678 {
  1834. border-width:0px;
  1835. position:absolute;
  1836. left:0px;
  1837. top:0px;
  1838. width:0px;
  1839. height:0px;
  1840. }
  1841. #u10679_div {
  1842. border-width:0px;
  1843. position:absolute;
  1844. left:0px;
  1845. top:0px;
  1846. width:40px;
  1847. height:136px;
  1848. background:inherit;
  1849. background-color:rgba(2, 167, 240, 1);
  1850. border-radius:5px;
  1851. filter:drop-shadow(none);
  1852. transition:none;
  1853. }
  1854. #u10679 {
  1855. border-width:0px;
  1856. position:absolute;
  1857. left:1518px;
  1858. top:619px;
  1859. width:40px;
  1860. height:136px;
  1861. display:flex;
  1862. transition:none;
  1863. transform-origin:50% 50%;
  1864. }
  1865. #u10679 .text {
  1866. position:absolute;
  1867. align-self:center;
  1868. padding:2px 2px 2px 2px;
  1869. box-sizing:border-box;
  1870. width:100%;
  1871. }
  1872. #u10679_text {
  1873. border-width:0px;
  1874. word-wrap:break-word;
  1875. text-transform:none;
  1876. visibility:hidden;
  1877. }
  1878. #u10680 {
  1879. border-width:0px;
  1880. position:absolute;
  1881. left:1526px;
  1882. top:630px;
  1883. width:24px;
  1884. height:24px;
  1885. display:flex;
  1886. transition:none;
  1887. }
  1888. #u10680 .text {
  1889. position:absolute;
  1890. align-self:center;
  1891. padding:2px 2px 2px 2px;
  1892. box-sizing:border-box;
  1893. width:100%;
  1894. }
  1895. #u10680_img {
  1896. border-width:0px;
  1897. position:absolute;
  1898. left:0px;
  1899. top:0px;
  1900. width:24px;
  1901. height:24px;
  1902. }
  1903. #u10680_text {
  1904. border-width:0px;
  1905. word-wrap:break-word;
  1906. text-transform:none;
  1907. visibility:hidden;
  1908. }
  1909. #u10681 {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:1529px;
  1913. top:685px;
  1914. width:18px;
  1915. height:18px;
  1916. display:flex;
  1917. transition:none;
  1918. }
  1919. #u10681 .text {
  1920. position:absolute;
  1921. align-self:center;
  1922. padding:2px 2px 2px 2px;
  1923. box-sizing:border-box;
  1924. width:100%;
  1925. }
  1926. #u10681_img {
  1927. border-width:0px;
  1928. position:absolute;
  1929. left:0px;
  1930. top:0px;
  1931. width:18px;
  1932. height:18px;
  1933. }
  1934. #u10681_text {
  1935. border-width:0px;
  1936. word-wrap:break-word;
  1937. text-transform:none;
  1938. visibility:hidden;
  1939. }
  1940. #u10682_div {
  1941. border-width:0px;
  1942. position:absolute;
  1943. left:0px;
  1944. top:0px;
  1945. width:18px;
  1946. height:4px;
  1947. background:inherit;
  1948. background-color:rgba(255, 255, 255, 1);
  1949. border-radius:0px;
  1950. filter:drop-shadow(none);
  1951. transition:none;
  1952. }
  1953. #u10682 {
  1954. border-width:0px;
  1955. position:absolute;
  1956. left:1529px;
  1957. top:734px;
  1958. width:18px;
  1959. height:4px;
  1960. display:flex;
  1961. transition:none;
  1962. transform-origin:50% 50%;
  1963. }
  1964. #u10682 .text {
  1965. position:absolute;
  1966. align-self:center;
  1967. padding:2px 2px 2px 2px;
  1968. box-sizing:border-box;
  1969. width:100%;
  1970. }
  1971. #u10682_text {
  1972. border-width:0px;
  1973. word-wrap:break-word;
  1974. text-transform:none;
  1975. visibility:hidden;
  1976. }
  1977. #u10683 {
  1978. border-width:0px;
  1979. position:absolute;
  1980. left:1527px;
  1981. top:669px;
  1982. width:22px;
  1983. height:1px;
  1984. display:flex;
  1985. transition:none;
  1986. }
  1987. #u10683 .text {
  1988. position:absolute;
  1989. align-self:center;
  1990. padding:2px 2px 2px 2px;
  1991. box-sizing:border-box;
  1992. width:100%;
  1993. }
  1994. #u10683_img {
  1995. border-width:0px;
  1996. position:absolute;
  1997. left:0px;
  1998. top:0px;
  1999. width:23px;
  2000. height:2px;
  2001. }
  2002. #u10683_text {
  2003. border-width:0px;
  2004. word-wrap:break-word;
  2005. text-transform:none;
  2006. visibility:hidden;
  2007. }
  2008. #u10684 {
  2009. border-width:0px;
  2010. position:absolute;
  2011. left:1527px;
  2012. top:718px;
  2013. width:22px;
  2014. height:1px;
  2015. display:flex;
  2016. transition:none;
  2017. }
  2018. #u10684 .text {
  2019. position:absolute;
  2020. align-self:center;
  2021. padding:2px 2px 2px 2px;
  2022. box-sizing:border-box;
  2023. width:100%;
  2024. }
  2025. #u10684_img {
  2026. border-width:0px;
  2027. position:absolute;
  2028. left:0px;
  2029. top:0px;
  2030. width:23px;
  2031. height:2px;
  2032. }
  2033. #u10684_text {
  2034. border-width:0px;
  2035. word-wrap:break-word;
  2036. text-transform:none;
  2037. visibility:hidden;
  2038. }
  2039. #u10685_div {
  2040. border-width:0px;
  2041. position:absolute;
  2042. left:0px;
  2043. top:0px;
  2044. width:267px;
  2045. height:210px;
  2046. background:inherit;
  2047. background-color:rgba(255, 255, 255, 1);
  2048. box-sizing:border-box;
  2049. border-width:1px;
  2050. border-style:solid;
  2051. border-color:rgba(121, 121, 121, 1);
  2052. border-radius:0px;
  2053. filter:drop-shadow(none);
  2054. transition:none;
  2055. }
  2056. #u10685 {
  2057. border-width:0px;
  2058. position:absolute;
  2059. left:353px;
  2060. top:140px;
  2061. width:267px;
  2062. height:210px;
  2063. display:flex;
  2064. transition:none;
  2065. transform-origin:50% 50%;
  2066. }
  2067. #u10685 .text {
  2068. position:absolute;
  2069. align-self:center;
  2070. padding:2px 2px 2px 2px;
  2071. box-sizing:border-box;
  2072. width:100%;
  2073. }
  2074. #u10685_text {
  2075. border-width:0px;
  2076. word-wrap:break-word;
  2077. text-transform:none;
  2078. visibility:hidden;
  2079. }
  2080. #u10686_div {
  2081. border-width:0px;
  2082. position:absolute;
  2083. left:0px;
  2084. top:0px;
  2085. width:79px;
  2086. height:25px;
  2087. background:inherit;
  2088. background-color:rgba(255, 255, 255, 0);
  2089. border-radius:0px;
  2090. filter:drop-shadow(none);
  2091. transition:none;
  2092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2093. font-weight:400;
  2094. font-style:normal;
  2095. font-size:18px;
  2096. }
  2097. #u10686 {
  2098. border-width:0px;
  2099. position:absolute;
  2100. left:375px;
  2101. top:163px;
  2102. width:79px;
  2103. height:25px;
  2104. display:flex;
  2105. transition:none;
  2106. transform-origin:50% 50%;
  2107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2108. font-weight:400;
  2109. font-style:normal;
  2110. font-size:18px;
  2111. }
  2112. #u10686 .text {
  2113. position:absolute;
  2114. align-self:flex-start;
  2115. padding:0px 0px 0px 0px;
  2116. box-sizing:border-box;
  2117. width:100%;
  2118. }
  2119. #u10686_text {
  2120. border-width:0px;
  2121. white-space:nowrap;
  2122. text-transform:none;
  2123. }
  2124. #u10687 {
  2125. border-width:0px;
  2126. position:absolute;
  2127. left:447px;
  2128. top:202px;
  2129. width:75px;
  2130. height:62px;
  2131. display:flex;
  2132. transition:none;
  2133. }
  2134. #u10687 .text {
  2135. position:absolute;
  2136. align-self:center;
  2137. padding:2px 2px 2px 2px;
  2138. box-sizing:border-box;
  2139. width:100%;
  2140. }
  2141. #u10687_img {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:0px;
  2145. top:0px;
  2146. width:75px;
  2147. height:62px;
  2148. }
  2149. #u10687_text {
  2150. border-width:0px;
  2151. word-wrap:break-word;
  2152. text-transform:none;
  2153. visibility:hidden;
  2154. }
  2155. #u10688_div {
  2156. border-width:0px;
  2157. position:absolute;
  2158. left:0px;
  2159. top:0px;
  2160. width:29px;
  2161. height:25px;
  2162. background:inherit;
  2163. background-color:rgba(255, 255, 255, 0);
  2164. border-radius:0px;
  2165. filter:drop-shadow(none);
  2166. transition:none;
  2167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2168. font-weight:400;
  2169. font-style:normal;
  2170. }
  2171. #u10688 {
  2172. border-width:0px;
  2173. position:absolute;
  2174. left:470px;
  2175. top:272px;
  2176. width:29px;
  2177. height:25px;
  2178. display:flex;
  2179. transition:none;
  2180. transform-origin:50% 50%;
  2181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2182. font-weight:400;
  2183. font-style:normal;
  2184. }
  2185. #u10688 .text {
  2186. position:absolute;
  2187. align-self:flex-start;
  2188. padding:0px 0px 0px 0px;
  2189. box-sizing:border-box;
  2190. width:100%;
  2191. }
  2192. #u10688_text {
  2193. border-width:0px;
  2194. white-space:nowrap;
  2195. text-transform:none;
  2196. }
  2197. #u10689 {
  2198. border-width:0px;
  2199. position:absolute;
  2200. left:0px;
  2201. top:0px;
  2202. width:0px;
  2203. height:0px;
  2204. }
  2205. #u10690_div {
  2206. border-width:0px;
  2207. position:absolute;
  2208. left:0px;
  2209. top:0px;
  2210. width:85px;
  2211. height:20px;
  2212. background:inherit;
  2213. background-color:rgba(255, 255, 255, 0);
  2214. border-radius:0px;
  2215. filter:drop-shadow(none);
  2216. transition:none;
  2217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2218. font-weight:400;
  2219. font-style:normal;
  2220. }
  2221. #u10690 {
  2222. border-width:0px;
  2223. position:absolute;
  2224. left:429px;
  2225. top:303px;
  2226. width:85px;
  2227. height:20px;
  2228. display:flex;
  2229. transition:none;
  2230. transform-origin:50% 50%;
  2231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2232. font-weight:400;
  2233. font-style:normal;
  2234. }
  2235. #u10690 .text {
  2236. position:absolute;
  2237. align-self:flex-start;
  2238. padding:0px 0px 0px 0px;
  2239. box-sizing:border-box;
  2240. width:100%;
  2241. }
  2242. #u10690_text {
  2243. border-width:0px;
  2244. white-space:nowrap;
  2245. text-transform:none;
  2246. }
  2247. #u10691_div {
  2248. border-width:0px;
  2249. position:absolute;
  2250. left:0px;
  2251. top:0px;
  2252. width:20px;
  2253. height:20px;
  2254. background:inherit;
  2255. background-color:rgba(102, 88, 255, 1);
  2256. border-radius:4px;
  2257. filter:drop-shadow(none);
  2258. transition:none;
  2259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2260. font-weight:400;
  2261. font-style:normal;
  2262. color:#FFFFFF;
  2263. text-align:center;
  2264. }
  2265. #u10691 {
  2266. border-width:0px;
  2267. position:absolute;
  2268. left:519px;
  2269. top:303px;
  2270. width:20px;
  2271. height:20px;
  2272. display:flex;
  2273. transition:none;
  2274. transform-origin:50% 50%;
  2275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2276. font-weight:400;
  2277. font-style:normal;
  2278. color:#FFFFFF;
  2279. text-align:center;
  2280. }
  2281. #u10691 .text {
  2282. position:absolute;
  2283. align-self:flex-start;
  2284. padding:0px 0px 0px 0px;
  2285. box-sizing:border-box;
  2286. width:100%;
  2287. }
  2288. #u10691_text {
  2289. border-width:0px;
  2290. word-wrap:break-word;
  2291. text-transform:none;
  2292. }
  2293. #u10692_div {
  2294. border-width:0px;
  2295. position:absolute;
  2296. left:0px;
  2297. top:0px;
  2298. width:512px;
  2299. height:25px;
  2300. background:inherit;
  2301. background-color:rgba(255, 255, 255, 0);
  2302. border-radius:0px;
  2303. filter:drop-shadow(none);
  2304. transition:none;
  2305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2306. font-weight:400;
  2307. font-style:normal;
  2308. font-size:18px;
  2309. color:#D9001B;
  2310. }
  2311. #u10692 {
  2312. border-width:0px;
  2313. position:absolute;
  2314. left:365px;
  2315. top:798px;
  2316. width:512px;
  2317. height:25px;
  2318. display:flex;
  2319. transition:none;
  2320. transform-origin:50% 50%;
  2321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2322. font-weight:400;
  2323. font-style:normal;
  2324. font-size:18px;
  2325. color:#D9001B;
  2326. }
  2327. #u10692 .text {
  2328. position:absolute;
  2329. align-self:flex-start;
  2330. padding:0px 0px 0px 0px;
  2331. box-sizing:border-box;
  2332. width:100%;
  2333. }
  2334. #u10692_text {
  2335. border-width:0px;
  2336. white-space:nowrap;
  2337. text-transform:none;
  2338. }
  2339. #u10693 {
  2340. border-width:0px;
  2341. position:absolute;
  2342. left:121px;
  2343. top:50px;
  2344. width:200px;
  2345. height:1180px;
  2346. }
  2347. #u10694 {
  2348. border-width:0px;
  2349. position:absolute;
  2350. left:0px;
  2351. top:0px;
  2352. width:0px;
  2353. height:0px;
  2354. }
  2355. #u10695_div {
  2356. border-width:0px;
  2357. position:absolute;
  2358. left:0px;
  2359. top:0px;
  2360. width:200px;
  2361. height:1180px;
  2362. background:inherit;
  2363. background-color:rgba(255, 255, 255, 1);
  2364. border-radius:0px;
  2365. filter:drop-shadow(none);
  2366. transition:none;
  2367. }
  2368. #u10695 {
  2369. border-width:0px;
  2370. position:absolute;
  2371. left:0px;
  2372. top:0px;
  2373. width:200px;
  2374. height:1180px;
  2375. display:flex;
  2376. transition:none;
  2377. transform-origin:50% 50%;
  2378. }
  2379. #u10695 .text {
  2380. position:absolute;
  2381. align-self:center;
  2382. padding:2px 2px 2px 2px;
  2383. box-sizing:border-box;
  2384. width:100%;
  2385. }
  2386. #u10695_text {
  2387. border-width:0px;
  2388. word-wrap:break-word;
  2389. text-transform:none;
  2390. visibility:hidden;
  2391. }
  2392. #u10696_div {
  2393. border-width:0px;
  2394. position:absolute;
  2395. left:0px;
  2396. top:0px;
  2397. width:200px;
  2398. height:60px;
  2399. background:inherit;
  2400. background-color:rgba(224, 231, 247, 1);
  2401. border-radius:0px;
  2402. filter:drop-shadow(none);
  2403. transition:none;
  2404. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2405. font-weight:500;
  2406. font-style:normal;
  2407. font-size:18px;
  2408. }
  2409. #u10696 {
  2410. border-width:0px;
  2411. position:absolute;
  2412. left:0px;
  2413. top:0px;
  2414. width:200px;
  2415. height:60px;
  2416. display:flex;
  2417. transition:none;
  2418. transform-origin:50% 50%;
  2419. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2420. font-weight:500;
  2421. font-style:normal;
  2422. font-size:18px;
  2423. }
  2424. #u10696 .text {
  2425. position:absolute;
  2426. align-self:center;
  2427. padding:0px 0px 0px 20px;
  2428. box-sizing:border-box;
  2429. width:100%;
  2430. }
  2431. #u10696_text {
  2432. border-width:0px;
  2433. word-wrap:break-word;
  2434. text-transform:none;
  2435. }
  2436. #u10697_div {
  2437. border-width:0px;
  2438. position:absolute;
  2439. left:0px;
  2440. top:0px;
  2441. width:65px;
  2442. height:22px;
  2443. background:inherit;
  2444. background-color:rgba(255, 255, 255, 0);
  2445. border-radius:0px;
  2446. filter:drop-shadow(none);
  2447. transition:none;
  2448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2449. font-weight:400;
  2450. font-style:normal;
  2451. font-size:16px;
  2452. }
  2453. #u10697 {
  2454. border-width:0px;
  2455. position:absolute;
  2456. left:27px;
  2457. top:111px;
  2458. width:65px;
  2459. height:22px;
  2460. display:flex;
  2461. transition:none;
  2462. transform-origin:50% 50%;
  2463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2464. font-weight:400;
  2465. font-style:normal;
  2466. font-size:16px;
  2467. }
  2468. #u10697 .text {
  2469. position:absolute;
  2470. align-self:flex-start;
  2471. padding:0px 0px 0px 0px;
  2472. box-sizing:border-box;
  2473. width:100%;
  2474. }
  2475. #u10697_text {
  2476. border-width:0px;
  2477. white-space:nowrap;
  2478. text-transform:none;
  2479. }
  2480. #u10698_div {
  2481. border-width:0px;
  2482. position:absolute;
  2483. left:0px;
  2484. top:0px;
  2485. width:65px;
  2486. height:22px;
  2487. background:inherit;
  2488. background-color:rgba(255, 255, 255, 0);
  2489. border-radius:0px;
  2490. filter:drop-shadow(none);
  2491. transition:none;
  2492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2493. font-weight:400;
  2494. font-style:normal;
  2495. font-size:16px;
  2496. }
  2497. #u10698 {
  2498. border-width:0px;
  2499. position:absolute;
  2500. left:27px;
  2501. top:259px;
  2502. width:65px;
  2503. height:22px;
  2504. display:flex;
  2505. transition:none;
  2506. transform-origin:50% 50%;
  2507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2508. font-weight:400;
  2509. font-style:normal;
  2510. font-size:16px;
  2511. }
  2512. #u10698 .text {
  2513. position:absolute;
  2514. align-self:flex-start;
  2515. padding:0px 0px 0px 0px;
  2516. box-sizing:border-box;
  2517. width:100%;
  2518. }
  2519. #u10698_text {
  2520. border-width:0px;
  2521. white-space:nowrap;
  2522. text-transform:none;
  2523. }
  2524. #u10699_div {
  2525. border-width:0px;
  2526. position:absolute;
  2527. left:0px;
  2528. top:0px;
  2529. width:49px;
  2530. height:17px;
  2531. background:inherit;
  2532. background-color:rgba(255, 255, 255, 0);
  2533. border-radius:0px;
  2534. filter:drop-shadow(none);
  2535. transition:none;
  2536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2537. font-weight:400;
  2538. font-style:normal;
  2539. font-size:12px;
  2540. color:#AAAAAA;
  2541. }
  2542. #u10699 {
  2543. border-width:0px;
  2544. position:absolute;
  2545. left:27px;
  2546. top:222px;
  2547. width:49px;
  2548. height:17px;
  2549. display:flex;
  2550. transition:none;
  2551. transform-origin:50% 50%;
  2552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2553. font-weight:400;
  2554. font-style:normal;
  2555. font-size:12px;
  2556. color:#AAAAAA;
  2557. }
  2558. #u10699 .text {
  2559. position:absolute;
  2560. align-self:flex-start;
  2561. padding:0px 0px 0px 0px;
  2562. box-sizing:border-box;
  2563. width:100%;
  2564. }
  2565. #u10699_text {
  2566. border-width:0px;
  2567. white-space:nowrap;
  2568. text-transform:none;
  2569. }
  2570. #u10700 {
  2571. border-width:0px;
  2572. position:absolute;
  2573. left:0px;
  2574. top:200px;
  2575. width:200px;
  2576. height:1px;
  2577. display:flex;
  2578. transition:none;
  2579. }
  2580. #u10700 .text {
  2581. position:absolute;
  2582. align-self:center;
  2583. padding:2px 2px 2px 2px;
  2584. box-sizing:border-box;
  2585. width:100%;
  2586. }
  2587. #u10700_img {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:0px;
  2591. top:0px;
  2592. width:201px;
  2593. height:2px;
  2594. }
  2595. #u10700_text {
  2596. border-width:0px;
  2597. word-wrap:break-word;
  2598. text-transform:none;
  2599. visibility:hidden;
  2600. }
  2601. #u10701_div {
  2602. border-width:0px;
  2603. position:absolute;
  2604. left:0px;
  2605. top:0px;
  2606. width:65px;
  2607. height:22px;
  2608. background:inherit;
  2609. background-color:rgba(255, 255, 255, 0);
  2610. border-radius:0px;
  2611. filter:drop-shadow(none);
  2612. transition:none;
  2613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2614. font-weight:400;
  2615. font-style:normal;
  2616. font-size:16px;
  2617. }
  2618. #u10701 {
  2619. border-width:0px;
  2620. position:absolute;
  2621. left:27px;
  2622. top:301px;
  2623. width:65px;
  2624. height:22px;
  2625. display:flex;
  2626. transition:none;
  2627. transform-origin:50% 50%;
  2628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2629. font-weight:400;
  2630. font-style:normal;
  2631. font-size:16px;
  2632. }
  2633. #u10701 .text {
  2634. position:absolute;
  2635. align-self:flex-start;
  2636. padding:0px 0px 0px 0px;
  2637. box-sizing:border-box;
  2638. width:100%;
  2639. }
  2640. #u10701_text {
  2641. border-width:0px;
  2642. white-space:nowrap;
  2643. text-transform:none;
  2644. }
  2645. #u10702_div {
  2646. border-width:0px;
  2647. position:absolute;
  2648. left:0px;
  2649. top:0px;
  2650. width:49px;
  2651. height:17px;
  2652. background:inherit;
  2653. background-color:rgba(255, 255, 255, 0);
  2654. border-radius:0px;
  2655. filter:drop-shadow(none);
  2656. transition:none;
  2657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2658. font-weight:400;
  2659. font-style:normal;
  2660. font-size:12px;
  2661. color:#AAAAAA;
  2662. }
  2663. #u10702 {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:27px;
  2667. top:80px;
  2668. width:49px;
  2669. height:17px;
  2670. display:flex;
  2671. transition:none;
  2672. transform-origin:50% 50%;
  2673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2674. font-weight:400;
  2675. font-style:normal;
  2676. font-size:12px;
  2677. color:#AAAAAA;
  2678. }
  2679. #u10702 .text {
  2680. position:absolute;
  2681. align-self:flex-start;
  2682. padding:0px 0px 0px 0px;
  2683. box-sizing:border-box;
  2684. width:100%;
  2685. }
  2686. #u10702_text {
  2687. border-width:0px;
  2688. white-space:nowrap;
  2689. text-transform:none;
  2690. }
  2691. #u10703_div {
  2692. border-width:0px;
  2693. position:absolute;
  2694. left:0px;
  2695. top:0px;
  2696. width:65px;
  2697. height:22px;
  2698. background:inherit;
  2699. background-color:rgba(255, 255, 255, 0);
  2700. border-radius:0px;
  2701. filter:drop-shadow(none);
  2702. transition:none;
  2703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2704. font-weight:400;
  2705. font-style:normal;
  2706. font-size:16px;
  2707. }
  2708. #u10703 {
  2709. border-width:0px;
  2710. position:absolute;
  2711. left:27px;
  2712. top:343px;
  2713. width:65px;
  2714. height:22px;
  2715. display:flex;
  2716. transition:none;
  2717. transform-origin:50% 50%;
  2718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2719. font-weight:400;
  2720. font-style:normal;
  2721. font-size:16px;
  2722. }
  2723. #u10703 .text {
  2724. position:absolute;
  2725. align-self:flex-start;
  2726. padding:0px 0px 0px 0px;
  2727. box-sizing:border-box;
  2728. width:100%;
  2729. }
  2730. #u10703_text {
  2731. border-width:0px;
  2732. white-space:nowrap;
  2733. text-transform:none;
  2734. }
  2735. #u10704_div {
  2736. border-width:0px;
  2737. position:absolute;
  2738. left:0px;
  2739. top:0px;
  2740. width:65px;
  2741. height:22px;
  2742. background:inherit;
  2743. background-color:rgba(255, 255, 255, 0);
  2744. border-radius:0px;
  2745. filter:drop-shadow(none);
  2746. transition:none;
  2747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2748. font-weight:400;
  2749. font-style:normal;
  2750. font-size:16px;
  2751. }
  2752. #u10704 {
  2753. border-width:0px;
  2754. position:absolute;
  2755. left:27px;
  2756. top:153px;
  2757. width:65px;
  2758. height:22px;
  2759. display:flex;
  2760. transition:none;
  2761. transform-origin:50% 50%;
  2762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2763. font-weight:400;
  2764. font-style:normal;
  2765. font-size:16px;
  2766. }
  2767. #u10704 .text {
  2768. position:absolute;
  2769. align-self:flex-start;
  2770. padding:0px 0px 0px 0px;
  2771. box-sizing:border-box;
  2772. width:100%;
  2773. }
  2774. #u10704_text {
  2775. border-width:0px;
  2776. white-space:nowrap;
  2777. text-transform:none;
  2778. }
  2779. #u10705 {
  2780. border-width:0px;
  2781. position:absolute;
  2782. left:0px;
  2783. top:0px;
  2784. width:0px;
  2785. height:0px;
  2786. }
  2787. #u10706_div {
  2788. border-width:0px;
  2789. position:absolute;
  2790. left:0px;
  2791. top:0px;
  2792. width:140px;
  2793. height:30px;
  2794. background:inherit;
  2795. background-color:rgba(255, 255, 255, 1);
  2796. box-sizing:border-box;
  2797. border-width:1px;
  2798. border-style:solid;
  2799. border-color:rgba(215, 215, 215, 1);
  2800. border-radius:4px;
  2801. filter:drop-shadow(none);
  2802. transition:none;
  2803. font-size:12px;
  2804. }
  2805. #u10706 {
  2806. border-width:0px;
  2807. position:absolute;
  2808. left:1440px;
  2809. top:60px;
  2810. width:140px;
  2811. height:30px;
  2812. display:flex;
  2813. transition:none;
  2814. transform-origin:50% 50%;
  2815. font-size:12px;
  2816. }
  2817. #u10706 .text {
  2818. position:absolute;
  2819. align-self:center;
  2820. padding:2px 2px 2px 2px;
  2821. box-sizing:border-box;
  2822. width:100%;
  2823. }
  2824. #u10706_text {
  2825. border-width:0px;
  2826. word-wrap:break-word;
  2827. text-transform:none;
  2828. visibility:hidden;
  2829. }
  2830. #u10707_input {
  2831. position:absolute;
  2832. left:0px;
  2833. top:0px;
  2834. width:134px;
  2835. height:23px;
  2836. padding:2px 2px 2px 2px;
  2837. font-family:'ArialMT', 'Arial', sans-serif;
  2838. font-weight:400;
  2839. font-style:normal;
  2840. font-size:12px;
  2841. letter-spacing:normal;
  2842. color:#AAAAAA;
  2843. vertical-align:none;
  2844. text-align:left;
  2845. text-transform:none;
  2846. background-color:transparent;
  2847. border-color:transparent;
  2848. }
  2849. #u10707_input.disabled {
  2850. position:absolute;
  2851. left:0px;
  2852. top:0px;
  2853. width:134px;
  2854. height:23px;
  2855. padding:2px 2px 2px 2px;
  2856. font-family:'ArialMT', 'Arial', sans-serif;
  2857. font-weight:400;
  2858. font-style:normal;
  2859. font-size:12px;
  2860. letter-spacing:normal;
  2861. color:#AAAAAA;
  2862. vertical-align:none;
  2863. text-align:left;
  2864. text-transform:none;
  2865. background-color:transparent;
  2866. border-color:transparent;
  2867. }
  2868. #u10707_div {
  2869. border-width:0px;
  2870. position:absolute;
  2871. left:0px;
  2872. top:0px;
  2873. width:134px;
  2874. height:23px;
  2875. background:inherit;
  2876. background-color:rgba(255, 255, 255, 1);
  2877. border-radius:0px;
  2878. filter:drop-shadow(none);
  2879. transition:none;
  2880. font-size:12px;
  2881. color:#AAAAAA;
  2882. }
  2883. #u10707 {
  2884. border-width:0px;
  2885. position:absolute;
  2886. left:1444px;
  2887. top:62px;
  2888. width:134px;
  2889. height:23px;
  2890. display:flex;
  2891. transition:none;
  2892. transform-origin:50% 50%;
  2893. font-size:12px;
  2894. color:#AAAAAA;
  2895. }
  2896. #u10707 .text {
  2897. position:absolute;
  2898. align-self:flex-start;
  2899. padding:2px 2px 2px 2px;
  2900. box-sizing:border-box;
  2901. width:100%;
  2902. }
  2903. #u10707_div.disabled {
  2904. border-width:0px;
  2905. position:absolute;
  2906. left:0px;
  2907. top:0px;
  2908. width:134px;
  2909. height:23px;
  2910. background:inherit;
  2911. background-color:rgba(240, 240, 240, 1);
  2912. border-radius:0px;
  2913. filter:drop-shadow(none);
  2914. transition:none;
  2915. font-size:12px;
  2916. color:#AAAAAA;
  2917. }
  2918. #u10707.disabled {
  2919. }
  2920. .u10707_input_option {
  2921. font-size:12px;
  2922. }
  2923. #u10708_div {
  2924. border-width:0px;
  2925. position:absolute;
  2926. left:0px;
  2927. top:0px;
  2928. width:554px;
  2929. height:20px;
  2930. background:inherit;
  2931. background-color:rgba(255, 255, 255, 0);
  2932. border-left:0px;
  2933. border-top:0px;
  2934. border-right:0px;
  2935. border-radius:0px;
  2936. border-bottom-right-radius:0px;
  2937. border-bottom-left-radius:0px;
  2938. filter:drop-shadow(none);
  2939. transition:none;
  2940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2941. font-weight:400;
  2942. font-style:normal;
  2943. font-size:14px;
  2944. color:#7F7F7F;
  2945. }
  2946. #u10708 {
  2947. border-width:0px;
  2948. position:absolute;
  2949. left:352px;
  2950. top:100px;
  2951. width:554px;
  2952. height:20px;
  2953. display:flex;
  2954. transition:none;
  2955. transform-origin:50% 50%;
  2956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2957. font-weight:400;
  2958. font-style:normal;
  2959. font-size:14px;
  2960. color:#7F7F7F;
  2961. }
  2962. #u10708 .text {
  2963. position:absolute;
  2964. align-self:center;
  2965. padding:0px 0px 0px 0px;
  2966. box-sizing:border-box;
  2967. width:100%;
  2968. }
  2969. #u10708_text {
  2970. border-width:0px;
  2971. white-space:nowrap;
  2972. text-transform:none;
  2973. }
  2974. #u10709 {
  2975. border-width:0px;
  2976. position:absolute;
  2977. left:353px;
  2978. top:350px;
  2979. width:267px;
  2980. height:427px;
  2981. display:flex;
  2982. transition:none;
  2983. }
  2984. #u10709 .text {
  2985. position:absolute;
  2986. align-self:center;
  2987. padding:2px 2px 2px 2px;
  2988. box-sizing:border-box;
  2989. width:100%;
  2990. }
  2991. #u10709_img {
  2992. border-width:0px;
  2993. position:absolute;
  2994. left:0px;
  2995. top:0px;
  2996. width:267px;
  2997. height:427px;
  2998. }
  2999. #u10709_text {
  3000. border-width:0px;
  3001. word-wrap:break-word;
  3002. text-transform:none;
  3003. visibility:hidden;
  3004. }
  3005. #u10710_div {
  3006. border-width:0px;
  3007. position:absolute;
  3008. left:0px;
  3009. top:0px;
  3010. width:73px;
  3011. height:25px;
  3012. background:inherit;
  3013. background-color:rgba(255, 255, 255, 0);
  3014. border-radius:0px;
  3015. filter:drop-shadow(none);
  3016. transition:none;
  3017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3018. font-weight:400;
  3019. font-style:normal;
  3020. font-size:18px;
  3021. }
  3022. #u10710 {
  3023. border-width:0px;
  3024. position:absolute;
  3025. left:452px;
  3026. top:60px;
  3027. width:73px;
  3028. height:25px;
  3029. display:flex;
  3030. transition:none;
  3031. transform-origin:50% 50%;
  3032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3033. font-weight:400;
  3034. font-style:normal;
  3035. font-size:18px;
  3036. }
  3037. #u10710 .text {
  3038. position:absolute;
  3039. align-self:flex-start;
  3040. padding:0px 0px 0px 0px;
  3041. box-sizing:border-box;
  3042. width:100%;
  3043. }
  3044. #u10710_text {
  3045. border-width:0px;
  3046. white-space:nowrap;
  3047. text-transform:none;
  3048. }
  3049. #u10711_div {
  3050. border-width:0px;
  3051. position:absolute;
  3052. left:0px;
  3053. top:0px;
  3054. width:73px;
  3055. height:25px;
  3056. background:inherit;
  3057. background-color:rgba(255, 255, 255, 0);
  3058. border-radius:0px;
  3059. filter:drop-shadow(none);
  3060. transition:none;
  3061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3062. font-weight:400;
  3063. font-style:normal;
  3064. font-size:18px;
  3065. }
  3066. #u10711 {
  3067. border-width:0px;
  3068. position:absolute;
  3069. left:555px;
  3070. top:60px;
  3071. width:73px;
  3072. height:25px;
  3073. display:flex;
  3074. transition:none;
  3075. transform-origin:50% 50%;
  3076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3077. font-weight:400;
  3078. font-style:normal;
  3079. font-size:18px;
  3080. }
  3081. #u10711 .text {
  3082. position:absolute;
  3083. align-self:flex-start;
  3084. padding:0px 0px 0px 0px;
  3085. box-sizing:border-box;
  3086. width:100%;
  3087. }
  3088. #u10711_text {
  3089. border-width:0px;
  3090. white-space:nowrap;
  3091. text-transform:none;
  3092. }
  3093. #u10712 {
  3094. border-width:0px;
  3095. position:absolute;
  3096. left:0px;
  3097. top:0px;
  3098. width:0px;
  3099. height:0px;
  3100. }
  3101. #u10713 {
  3102. border-width:0px;
  3103. position:absolute;
  3104. left:736px;
  3105. top:190px;
  3106. width:729px;
  3107. height:525px;
  3108. display:flex;
  3109. transition:none;
  3110. }
  3111. #u10713 .text {
  3112. position:absolute;
  3113. align-self:center;
  3114. padding:2px 2px 2px 2px;
  3115. box-sizing:border-box;
  3116. width:100%;
  3117. }
  3118. #u10713_img {
  3119. border-width:0px;
  3120. position:absolute;
  3121. left:0px;
  3122. top:0px;
  3123. width:729px;
  3124. height:525px;
  3125. }
  3126. #u10713_text {
  3127. border-width:0px;
  3128. word-wrap:break-word;
  3129. text-transform:none;
  3130. visibility:hidden;
  3131. }
  3132. #u10714 {
  3133. border-width:0px;
  3134. position:absolute;
  3135. left:0px;
  3136. top:0px;
  3137. width:0px;
  3138. height:0px;
  3139. }
  3140. #u10715 {
  3141. border-width:0px;
  3142. position:absolute;
  3143. left:750px;
  3144. top:242px;
  3145. width:18px;
  3146. height:18px;
  3147. display:flex;
  3148. transition:none;
  3149. }
  3150. #u10715 .text {
  3151. position:absolute;
  3152. align-self:center;
  3153. padding:2px 2px 7.4px 2px;
  3154. box-sizing:border-box;
  3155. width:100%;
  3156. }
  3157. #u10715_img {
  3158. border-width:0px;
  3159. position:absolute;
  3160. left:0px;
  3161. top:0px;
  3162. width:18px;
  3163. height:18px;
  3164. }
  3165. #u10715_text {
  3166. border-width:0px;
  3167. word-wrap:break-word;
  3168. text-transform:none;
  3169. visibility:hidden;
  3170. }
  3171. #u10716_div {
  3172. border-width:0px;
  3173. position:absolute;
  3174. left:0px;
  3175. top:0px;
  3176. width:101px;
  3177. height:21px;
  3178. background:inherit;
  3179. background-color:rgba(255, 255, 255, 0);
  3180. border-left:0px;
  3181. border-top:0px;
  3182. border-right:0px;
  3183. border-radius:0px;
  3184. border-bottom-right-radius:0px;
  3185. border-bottom-left-radius:0px;
  3186. filter:drop-shadow(none);
  3187. transition:none;
  3188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3189. font-weight:400;
  3190. font-style:normal;
  3191. font-size:15px;
  3192. color:#FFFFFF;
  3193. }
  3194. #u10716 {
  3195. border-width:0px;
  3196. position:absolute;
  3197. left:756px;
  3198. top:217px;
  3199. width:101px;
  3200. height:21px;
  3201. display:flex;
  3202. transition:none;
  3203. transform-origin:50% 50%;
  3204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3205. font-weight:400;
  3206. font-style:normal;
  3207. font-size:15px;
  3208. color:#FFFFFF;
  3209. }
  3210. #u10716 .text {
  3211. position:absolute;
  3212. align-self:center;
  3213. padding:0px 0px 0px 0px;
  3214. box-sizing:border-box;
  3215. width:100%;
  3216. }
  3217. #u10716_text {
  3218. border-width:0px;
  3219. white-space:nowrap;
  3220. text-transform:none;
  3221. }
  3222. #u10717 {
  3223. border-width:0px;
  3224. position:absolute;
  3225. left:0px;
  3226. top:0px;
  3227. width:0px;
  3228. height:0px;
  3229. }
  3230. #u10718 {
  3231. border-width:0px;
  3232. position:absolute;
  3233. left:1046px;
  3234. top:192px;
  3235. width:18px;
  3236. height:18px;
  3237. display:flex;
  3238. transition:none;
  3239. }
  3240. #u10718 .text {
  3241. position:absolute;
  3242. align-self:center;
  3243. padding:2px 2px 7.4px 2px;
  3244. box-sizing:border-box;
  3245. width:100%;
  3246. }
  3247. #u10718_img {
  3248. border-width:0px;
  3249. position:absolute;
  3250. left:0px;
  3251. top:0px;
  3252. width:18px;
  3253. height:18px;
  3254. }
  3255. #u10718_text {
  3256. border-width:0px;
  3257. word-wrap:break-word;
  3258. text-transform:none;
  3259. visibility:hidden;
  3260. }
  3261. #u10719_div {
  3262. border-width:0px;
  3263. position:absolute;
  3264. left:0px;
  3265. top:0px;
  3266. width:94px;
  3267. height:20px;
  3268. background:inherit;
  3269. background-color:rgba(255, 255, 255, 0);
  3270. border-left:0px;
  3271. border-top:0px;
  3272. border-right:0px;
  3273. border-radius:0px;
  3274. border-bottom-right-radius:0px;
  3275. border-bottom-left-radius:0px;
  3276. filter:drop-shadow(none);
  3277. transition:none;
  3278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3279. font-weight:400;
  3280. font-style:normal;
  3281. font-size:14px;
  3282. color:#FFFFFF;
  3283. }
  3284. #u10719 {
  3285. border-width:0px;
  3286. position:absolute;
  3287. left:1052px;
  3288. top:167px;
  3289. width:94px;
  3290. height:20px;
  3291. display:flex;
  3292. transition:none;
  3293. transform-origin:50% 50%;
  3294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3295. font-weight:400;
  3296. font-style:normal;
  3297. font-size:14px;
  3298. color:#FFFFFF;
  3299. }
  3300. #u10719 .text {
  3301. position:absolute;
  3302. align-self:center;
  3303. padding:0px 0px 0px 0px;
  3304. box-sizing:border-box;
  3305. width:100%;
  3306. }
  3307. #u10719_text {
  3308. border-width:0px;
  3309. white-space:nowrap;
  3310. text-transform:none;
  3311. }
  3312. #u10720 {
  3313. border-width:0px;
  3314. position:absolute;
  3315. left:0px;
  3316. top:0px;
  3317. width:0px;
  3318. height:0px;
  3319. }
  3320. #u10721 {
  3321. border-width:0px;
  3322. position:absolute;
  3323. left:1358px;
  3324. top:305px;
  3325. width:18px;
  3326. height:18px;
  3327. display:flex;
  3328. transition:none;
  3329. }
  3330. #u10721 .text {
  3331. position:absolute;
  3332. align-self:center;
  3333. padding:2px 2px 7.4px 2px;
  3334. box-sizing:border-box;
  3335. width:100%;
  3336. }
  3337. #u10721_img {
  3338. border-width:0px;
  3339. position:absolute;
  3340. left:0px;
  3341. top:0px;
  3342. width:18px;
  3343. height:18px;
  3344. }
  3345. #u10721_text {
  3346. border-width:0px;
  3347. word-wrap:break-word;
  3348. text-transform:none;
  3349. visibility:hidden;
  3350. }
  3351. #u10722_div {
  3352. border-width:0px;
  3353. position:absolute;
  3354. left:0px;
  3355. top:0px;
  3356. width:94px;
  3357. height:20px;
  3358. background:inherit;
  3359. background-color:rgba(255, 255, 255, 0);
  3360. border-left:0px;
  3361. border-top:0px;
  3362. border-right:0px;
  3363. border-radius:0px;
  3364. border-bottom-right-radius:0px;
  3365. border-bottom-left-radius:0px;
  3366. filter:drop-shadow(none);
  3367. transition:none;
  3368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3369. font-weight:400;
  3370. font-style:normal;
  3371. font-size:14px;
  3372. color:#FFFFFF;
  3373. }
  3374. #u10722 {
  3375. border-width:0px;
  3376. position:absolute;
  3377. left:1364px;
  3378. top:280px;
  3379. width:94px;
  3380. height:20px;
  3381. display:flex;
  3382. transition:none;
  3383. transform-origin:50% 50%;
  3384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3385. font-weight:400;
  3386. font-style:normal;
  3387. font-size:14px;
  3388. color:#FFFFFF;
  3389. }
  3390. #u10722 .text {
  3391. position:absolute;
  3392. align-self:center;
  3393. padding:0px 0px 0px 0px;
  3394. box-sizing:border-box;
  3395. width:100%;
  3396. }
  3397. #u10722_text {
  3398. border-width:0px;
  3399. white-space:nowrap;
  3400. text-transform:none;
  3401. }
  3402. #u10723 {
  3403. border-width:0px;
  3404. position:absolute;
  3405. left:0px;
  3406. top:0px;
  3407. width:0px;
  3408. height:0px;
  3409. }
  3410. #u10724 {
  3411. border-width:0px;
  3412. position:absolute;
  3413. left:1191px;
  3414. top:421px;
  3415. width:18px;
  3416. height:18px;
  3417. display:flex;
  3418. transition:none;
  3419. }
  3420. #u10724 .text {
  3421. position:absolute;
  3422. align-self:center;
  3423. padding:2px 2px 7.4px 2px;
  3424. box-sizing:border-box;
  3425. width:100%;
  3426. }
  3427. #u10724_img {
  3428. border-width:0px;
  3429. position:absolute;
  3430. left:0px;
  3431. top:0px;
  3432. width:18px;
  3433. height:18px;
  3434. }
  3435. #u10724_text {
  3436. border-width:0px;
  3437. word-wrap:break-word;
  3438. text-transform:none;
  3439. visibility:hidden;
  3440. }
  3441. #u10725_div {
  3442. border-width:0px;
  3443. position:absolute;
  3444. left:0px;
  3445. top:0px;
  3446. width:94px;
  3447. height:20px;
  3448. background:inherit;
  3449. background-color:rgba(255, 255, 255, 0);
  3450. border-left:0px;
  3451. border-top:0px;
  3452. border-right:0px;
  3453. border-radius:0px;
  3454. border-bottom-right-radius:0px;
  3455. border-bottom-left-radius:0px;
  3456. filter:drop-shadow(none);
  3457. transition:none;
  3458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3459. font-weight:400;
  3460. font-style:normal;
  3461. font-size:14px;
  3462. color:#FFFFFF;
  3463. }
  3464. #u10725 {
  3465. border-width:0px;
  3466. position:absolute;
  3467. left:1197px;
  3468. top:396px;
  3469. width:94px;
  3470. height:20px;
  3471. display:flex;
  3472. transition:none;
  3473. transform-origin:50% 50%;
  3474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3475. font-weight:400;
  3476. font-style:normal;
  3477. font-size:14px;
  3478. color:#FFFFFF;
  3479. }
  3480. #u10725 .text {
  3481. position:absolute;
  3482. align-self:center;
  3483. padding:0px 0px 0px 0px;
  3484. box-sizing:border-box;
  3485. width:100%;
  3486. }
  3487. #u10725_text {
  3488. border-width:0px;
  3489. white-space:nowrap;
  3490. text-transform:none;
  3491. }
  3492. #u10726_div {
  3493. border-width:0px;
  3494. position:absolute;
  3495. left:0px;
  3496. top:0px;
  3497. width:426px;
  3498. height:50px;
  3499. background:inherit;
  3500. background-color:rgba(255, 255, 255, 0);
  3501. border-radius:0px;
  3502. filter:drop-shadow(none);
  3503. transition:none;
  3504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3505. font-weight:400;
  3506. font-style:normal;
  3507. font-size:18px;
  3508. color:#D9001B;
  3509. }
  3510. #u10726 {
  3511. border-width:0px;
  3512. position:absolute;
  3513. left:655px;
  3514. top:56px;
  3515. width:426px;
  3516. height:50px;
  3517. display:flex;
  3518. transition:none;
  3519. transform-origin:50% 50%;
  3520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3521. font-weight:400;
  3522. font-style:normal;
  3523. font-size:18px;
  3524. color:#D9001B;
  3525. }
  3526. #u10726 .text {
  3527. position:absolute;
  3528. align-self:flex-start;
  3529. padding:0px 0px 0px 0px;
  3530. box-sizing:border-box;
  3531. width:100%;
  3532. }
  3533. #u10726_text {
  3534. border-width:0px;
  3535. white-space:nowrap;
  3536. text-transform:none;
  3537. }
  3538. #u10727 {
  3539. border-width:0px;
  3540. position:absolute;
  3541. left:1620px;
  3542. top:0px;
  3543. width:1600px;
  3544. height:1250px;
  3545. }
  3546. #u10728_div {
  3547. border-width:0px;
  3548. position:absolute;
  3549. left:0px;
  3550. top:0px;
  3551. width:1480px;
  3552. height:1200px;
  3553. background:inherit;
  3554. background-color:rgba(242, 242, 242, 1);
  3555. border-radius:0px;
  3556. filter:drop-shadow(none);
  3557. transition:none;
  3558. }
  3559. #u10728 {
  3560. border-width:0px;
  3561. position:absolute;
  3562. left:120px;
  3563. top:50px;
  3564. width:1480px;
  3565. height:1200px;
  3566. display:flex;
  3567. transition:none;
  3568. transform-origin:50% 50%;
  3569. }
  3570. #u10728 .text {
  3571. position:absolute;
  3572. align-self:center;
  3573. padding:2px 2px 2px 2px;
  3574. box-sizing:border-box;
  3575. width:100%;
  3576. }
  3577. #u10728_text {
  3578. border-width:0px;
  3579. word-wrap:break-word;
  3580. text-transform:none;
  3581. visibility:hidden;
  3582. }
  3583. #u10729_div {
  3584. border-width:0px;
  3585. position:absolute;
  3586. left:0px;
  3587. top:0px;
  3588. width:129px;
  3589. height:22px;
  3590. background:inherit;
  3591. background-color:rgba(255, 255, 255, 0);
  3592. border-radius:0px;
  3593. filter:drop-shadow(none);
  3594. transition:none;
  3595. font-size:16px;
  3596. color:#FFFFFF;
  3597. }
  3598. #u10729 {
  3599. border-width:0px;
  3600. position:absolute;
  3601. left:49px;
  3602. top:14px;
  3603. width:129px;
  3604. height:22px;
  3605. display:flex;
  3606. transition:none;
  3607. transform-origin:50% 50%;
  3608. font-size:16px;
  3609. color:#FFFFFF;
  3610. }
  3611. #u10729 .text {
  3612. position:absolute;
  3613. align-self:flex-start;
  3614. padding:0px 0px 0px 0px;
  3615. box-sizing:border-box;
  3616. width:100%;
  3617. }
  3618. #u10729_text {
  3619. border-width:0px;
  3620. white-space:nowrap;
  3621. text-transform:none;
  3622. }
  3623. #u10730_div {
  3624. border-width:0px;
  3625. position:absolute;
  3626. left:0px;
  3627. top:0px;
  3628. width:1600px;
  3629. height:50px;
  3630. background:inherit;
  3631. background-color:rgba(30, 42, 68, 1);
  3632. border-radius:0px;
  3633. filter:drop-shadow(none);
  3634. transition:none;
  3635. color:#AFB3B6;
  3636. }
  3637. #u10730 {
  3638. border-width:0px;
  3639. position:absolute;
  3640. left:0px;
  3641. top:0px;
  3642. width:1600px;
  3643. height:50px;
  3644. display:flex;
  3645. transition:none;
  3646. transform-origin:50% 50%;
  3647. color:#AFB3B6;
  3648. }
  3649. #u10730 .text {
  3650. position:absolute;
  3651. align-self:center;
  3652. padding:2px 2px 2px 2px;
  3653. box-sizing:border-box;
  3654. width:100%;
  3655. }
  3656. #u10730_text {
  3657. border-width:0px;
  3658. word-wrap:break-word;
  3659. text-transform:none;
  3660. visibility:hidden;
  3661. }
  3662. #u10731 {
  3663. border-width:0px;
  3664. position:absolute;
  3665. left:0px;
  3666. top:0px;
  3667. width:0px;
  3668. height:0px;
  3669. }
  3670. #u10732 {
  3671. border-width:0px;
  3672. position:absolute;
  3673. left:19px;
  3674. top:10px;
  3675. width:31px;
  3676. height:31px;
  3677. display:flex;
  3678. transition:none;
  3679. }
  3680. #u10732 .text {
  3681. position:absolute;
  3682. align-self:center;
  3683. padding:2px 2px 2px 2px;
  3684. box-sizing:border-box;
  3685. width:100%;
  3686. }
  3687. #u10732_img {
  3688. border-width:0px;
  3689. position:absolute;
  3690. left:0px;
  3691. top:0px;
  3692. width:31px;
  3693. height:31px;
  3694. }
  3695. #u10732_text {
  3696. border-width:0px;
  3697. word-wrap:break-word;
  3698. text-transform:none;
  3699. }
  3700. #u10733_div {
  3701. border-width:0px;
  3702. position:absolute;
  3703. left:0px;
  3704. top:0px;
  3705. width:161px;
  3706. height:22px;
  3707. background:inherit;
  3708. background-color:rgba(255, 255, 255, 0);
  3709. border-radius:0px;
  3710. filter:drop-shadow(none);
  3711. transition:none;
  3712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3713. font-weight:400;
  3714. font-style:normal;
  3715. font-size:16px;
  3716. color:#FFFFFF;
  3717. }
  3718. #u10733 {
  3719. border-width:0px;
  3720. position:absolute;
  3721. left:62px;
  3722. top:14px;
  3723. width:161px;
  3724. height:22px;
  3725. display:flex;
  3726. transition:none;
  3727. transform-origin:50% 50%;
  3728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3729. font-weight:400;
  3730. font-style:normal;
  3731. font-size:16px;
  3732. color:#FFFFFF;
  3733. }
  3734. #u10733 .text {
  3735. position:absolute;
  3736. align-self:flex-start;
  3737. padding:0px 0px 0px 0px;
  3738. box-sizing:border-box;
  3739. width:100%;
  3740. }
  3741. #u10733_text {
  3742. border-width:0px;
  3743. white-space:nowrap;
  3744. text-transform:none;
  3745. }
  3746. #u10734_div {
  3747. border-width:0px;
  3748. position:absolute;
  3749. left:0px;
  3750. top:0px;
  3751. width:120px;
  3752. height:1200px;
  3753. background:inherit;
  3754. background-color:rgba(30, 42, 68, 1);
  3755. border-radius:0px;
  3756. filter:drop-shadow(none);
  3757. transition:none;
  3758. color:#AFB3B6;
  3759. }
  3760. #u10734 {
  3761. border-width:0px;
  3762. position:absolute;
  3763. left:0px;
  3764. top:47px;
  3765. width:120px;
  3766. height:1200px;
  3767. display:flex;
  3768. transition:none;
  3769. transform-origin:50% 50%;
  3770. color:#AFB3B6;
  3771. }
  3772. #u10734 .text {
  3773. position:absolute;
  3774. align-self:center;
  3775. padding:2px 2px 2px 2px;
  3776. box-sizing:border-box;
  3777. width:100%;
  3778. }
  3779. #u10734_text {
  3780. border-width:0px;
  3781. word-wrap:break-word;
  3782. text-transform:none;
  3783. visibility:hidden;
  3784. }
  3785. #u10735 {
  3786. border-width:0px;
  3787. position:absolute;
  3788. left:0px;
  3789. top:0px;
  3790. width:0px;
  3791. height:0px;
  3792. }
  3793. #u10736_div {
  3794. border-width:0px;
  3795. position:absolute;
  3796. left:0px;
  3797. top:0px;
  3798. width:33px;
  3799. height:22px;
  3800. background:inherit;
  3801. background-color:rgba(255, 255, 255, 0);
  3802. border-radius:0px;
  3803. filter:drop-shadow(none);
  3804. transition:none;
  3805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3806. font-weight:400;
  3807. font-style:normal;
  3808. font-size:16px;
  3809. color:#FFFFFF;
  3810. }
  3811. #u10736 {
  3812. border-width:0px;
  3813. position:absolute;
  3814. left:39px;
  3815. top:171px;
  3816. width:33px;
  3817. height:22px;
  3818. display:flex;
  3819. transition:none;
  3820. transform-origin:50% 50%;
  3821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3822. font-weight:400;
  3823. font-style:normal;
  3824. font-size:16px;
  3825. color:#FFFFFF;
  3826. }
  3827. #u10736 .text {
  3828. position:absolute;
  3829. align-self:flex-start;
  3830. padding:0px 0px 0px 0px;
  3831. box-sizing:border-box;
  3832. width:100%;
  3833. }
  3834. #u10736_text {
  3835. border-width:0px;
  3836. white-space:nowrap;
  3837. text-transform:none;
  3838. }
  3839. #u10737 {
  3840. border-width:0px;
  3841. position:absolute;
  3842. left:20px;
  3843. top:175px;
  3844. width:14px;
  3845. height:14px;
  3846. display:flex;
  3847. transition:none;
  3848. }
  3849. #u10737 .text {
  3850. position:absolute;
  3851. align-self:center;
  3852. padding:2px 2px 2px 2px;
  3853. box-sizing:border-box;
  3854. width:100%;
  3855. }
  3856. #u10737_img {
  3857. border-width:0px;
  3858. position:absolute;
  3859. left:0px;
  3860. top:0px;
  3861. width:14px;
  3862. height:14px;
  3863. }
  3864. #u10737_text {
  3865. border-width:0px;
  3866. word-wrap:break-word;
  3867. text-transform:none;
  3868. visibility:hidden;
  3869. }
  3870. #u10738 {
  3871. border-width:0px;
  3872. position:absolute;
  3873. left:0px;
  3874. top:0px;
  3875. width:0px;
  3876. height:0px;
  3877. }
  3878. #u10739_div {
  3879. border-width:0px;
  3880. position:absolute;
  3881. left:0px;
  3882. top:0px;
  3883. width:33px;
  3884. height:22px;
  3885. background:inherit;
  3886. background-color:rgba(255, 255, 255, 0);
  3887. border-radius:0px;
  3888. filter:drop-shadow(none);
  3889. transition:none;
  3890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3891. font-weight:400;
  3892. font-style:normal;
  3893. font-size:16px;
  3894. color:#FFFFFF;
  3895. }
  3896. #u10739 {
  3897. border-width:0px;
  3898. position:absolute;
  3899. left:39px;
  3900. top:381px;
  3901. width:33px;
  3902. height:22px;
  3903. display:flex;
  3904. transition:none;
  3905. transform-origin:50% 50%;
  3906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3907. font-weight:400;
  3908. font-style:normal;
  3909. font-size:16px;
  3910. color:#FFFFFF;
  3911. }
  3912. #u10739 .text {
  3913. position:absolute;
  3914. align-self:flex-start;
  3915. padding:0px 0px 0px 0px;
  3916. box-sizing:border-box;
  3917. width:100%;
  3918. }
  3919. #u10739_text {
  3920. border-width:0px;
  3921. white-space:nowrap;
  3922. text-transform:none;
  3923. }
  3924. #u10740 {
  3925. border-width:0px;
  3926. position:absolute;
  3927. left:20px;
  3928. top:385px;
  3929. width:14px;
  3930. height:14px;
  3931. display:flex;
  3932. transition:none;
  3933. }
  3934. #u10740 .text {
  3935. position:absolute;
  3936. align-self:center;
  3937. padding:2px 2px 2px 2px;
  3938. box-sizing:border-box;
  3939. width:100%;
  3940. }
  3941. #u10740_img {
  3942. border-width:0px;
  3943. position:absolute;
  3944. left:0px;
  3945. top:0px;
  3946. width:14px;
  3947. height:14px;
  3948. }
  3949. #u10740_text {
  3950. border-width:0px;
  3951. word-wrap:break-word;
  3952. text-transform:none;
  3953. visibility:hidden;
  3954. }
  3955. #u10741 {
  3956. border-width:0px;
  3957. position:absolute;
  3958. left:0px;
  3959. top:0px;
  3960. width:0px;
  3961. height:0px;
  3962. }
  3963. #u10742_div {
  3964. border-width:0px;
  3965. position:absolute;
  3966. left:0px;
  3967. top:0px;
  3968. width:49px;
  3969. height:22px;
  3970. background:inherit;
  3971. background-color:rgba(255, 255, 255, 0);
  3972. border-radius:0px;
  3973. filter:drop-shadow(none);
  3974. transition:none;
  3975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3976. font-weight:400;
  3977. font-style:normal;
  3978. font-size:16px;
  3979. color:#FFFFFF;
  3980. }
  3981. #u10742 {
  3982. border-width:0px;
  3983. position:absolute;
  3984. left:39px;
  3985. top:133px;
  3986. width:49px;
  3987. height:22px;
  3988. display:flex;
  3989. transition:none;
  3990. transform-origin:50% 50%;
  3991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3992. font-weight:400;
  3993. font-style:normal;
  3994. font-size:16px;
  3995. color:#FFFFFF;
  3996. }
  3997. #u10742 .text {
  3998. position:absolute;
  3999. align-self:flex-start;
  4000. padding:0px 0px 0px 0px;
  4001. box-sizing:border-box;
  4002. width:100%;
  4003. }
  4004. #u10742_text {
  4005. border-width:0px;
  4006. white-space:nowrap;
  4007. text-transform:none;
  4008. }
  4009. #u10743 {
  4010. border-width:0px;
  4011. position:absolute;
  4012. left:20px;
  4013. top:137px;
  4014. width:14px;
  4015. height:14px;
  4016. display:flex;
  4017. transition:none;
  4018. }
  4019. #u10743 .text {
  4020. position:absolute;
  4021. align-self:center;
  4022. padding:2px 2px 2px 2px;
  4023. box-sizing:border-box;
  4024. width:100%;
  4025. }
  4026. #u10743_img {
  4027. border-width:0px;
  4028. position:absolute;
  4029. left:0px;
  4030. top:0px;
  4031. width:14px;
  4032. height:14px;
  4033. }
  4034. #u10743_text {
  4035. border-width:0px;
  4036. word-wrap:break-word;
  4037. text-transform:none;
  4038. visibility:hidden;
  4039. }
  4040. #u10744 {
  4041. border-width:0px;
  4042. position:absolute;
  4043. left:0px;
  4044. top:0px;
  4045. width:0px;
  4046. height:0px;
  4047. }
  4048. #u10745_div {
  4049. border-width:0px;
  4050. position:absolute;
  4051. left:0px;
  4052. top:0px;
  4053. width:33px;
  4054. height:22px;
  4055. background:inherit;
  4056. background-color:rgba(255, 255, 255, 0);
  4057. border-radius:0px;
  4058. filter:drop-shadow(none);
  4059. transition:none;
  4060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4061. font-weight:400;
  4062. font-style:normal;
  4063. font-size:16px;
  4064. color:#FFFFFF;
  4065. }
  4066. #u10745 {
  4067. border-width:0px;
  4068. position:absolute;
  4069. left:39px;
  4070. top:423px;
  4071. width:33px;
  4072. height:22px;
  4073. display:flex;
  4074. transition:none;
  4075. transform-origin:50% 50%;
  4076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4077. font-weight:400;
  4078. font-style:normal;
  4079. font-size:16px;
  4080. color:#FFFFFF;
  4081. }
  4082. #u10745 .text {
  4083. position:absolute;
  4084. align-self:flex-start;
  4085. padding:0px 0px 0px 0px;
  4086. box-sizing:border-box;
  4087. width:100%;
  4088. }
  4089. #u10745_text {
  4090. border-width:0px;
  4091. white-space:nowrap;
  4092. text-transform:none;
  4093. }
  4094. #u10746 {
  4095. border-width:0px;
  4096. position:absolute;
  4097. left:20px;
  4098. top:427px;
  4099. width:14px;
  4100. height:14px;
  4101. display:flex;
  4102. transition:none;
  4103. }
  4104. #u10746 .text {
  4105. position:absolute;
  4106. align-self:center;
  4107. padding:2px 2px 2px 2px;
  4108. box-sizing:border-box;
  4109. width:100%;
  4110. }
  4111. #u10746_img {
  4112. border-width:0px;
  4113. position:absolute;
  4114. left:0px;
  4115. top:0px;
  4116. width:14px;
  4117. height:14px;
  4118. }
  4119. #u10746_text {
  4120. border-width:0px;
  4121. word-wrap:break-word;
  4122. text-transform:none;
  4123. visibility:hidden;
  4124. }
  4125. #u10747 {
  4126. border-width:0px;
  4127. position:absolute;
  4128. left:0px;
  4129. top:0px;
  4130. width:0px;
  4131. height:0px;
  4132. }
  4133. #u10748_div {
  4134. border-width:0px;
  4135. position:absolute;
  4136. left:0px;
  4137. top:0px;
  4138. width:33px;
  4139. height:22px;
  4140. background:inherit;
  4141. background-color:rgba(255, 255, 255, 0);
  4142. border-radius:0px;
  4143. filter:drop-shadow(none);
  4144. transition:none;
  4145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4146. font-weight:400;
  4147. font-style:normal;
  4148. font-size:16px;
  4149. color:#FFFFFF;
  4150. }
  4151. #u10748 {
  4152. border-width:0px;
  4153. position:absolute;
  4154. left:39px;
  4155. top:297px;
  4156. width:33px;
  4157. height:22px;
  4158. display:flex;
  4159. transition:none;
  4160. transform-origin:50% 50%;
  4161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4162. font-weight:400;
  4163. font-style:normal;
  4164. font-size:16px;
  4165. color:#FFFFFF;
  4166. }
  4167. #u10748 .text {
  4168. position:absolute;
  4169. align-self:flex-start;
  4170. padding:0px 0px 0px 0px;
  4171. box-sizing:border-box;
  4172. width:100%;
  4173. }
  4174. #u10748_text {
  4175. border-width:0px;
  4176. white-space:nowrap;
  4177. text-transform:none;
  4178. }
  4179. #u10749 {
  4180. border-width:0px;
  4181. position:absolute;
  4182. left:20px;
  4183. top:301px;
  4184. width:14px;
  4185. height:14px;
  4186. display:flex;
  4187. transition:none;
  4188. }
  4189. #u10749 .text {
  4190. position:absolute;
  4191. align-self:center;
  4192. padding:2px 2px 2px 2px;
  4193. box-sizing:border-box;
  4194. width:100%;
  4195. }
  4196. #u10749_img {
  4197. border-width:0px;
  4198. position:absolute;
  4199. left:0px;
  4200. top:0px;
  4201. width:14px;
  4202. height:14px;
  4203. }
  4204. #u10749_text {
  4205. border-width:0px;
  4206. word-wrap:break-word;
  4207. text-transform:none;
  4208. visibility:hidden;
  4209. }
  4210. #u10750 {
  4211. border-width:0px;
  4212. position:absolute;
  4213. left:0px;
  4214. top:0px;
  4215. width:0px;
  4216. height:0px;
  4217. }
  4218. #u10751_div {
  4219. border-width:0px;
  4220. position:absolute;
  4221. left:0px;
  4222. top:0px;
  4223. width:33px;
  4224. height:22px;
  4225. background:inherit;
  4226. background-color:rgba(255, 255, 255, 0);
  4227. border-radius:0px;
  4228. filter:drop-shadow(none);
  4229. transition:none;
  4230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4231. font-weight:400;
  4232. font-style:normal;
  4233. font-size:16px;
  4234. color:#FFFFFF;
  4235. }
  4236. #u10751 {
  4237. border-width:0px;
  4238. position:absolute;
  4239. left:39px;
  4240. top:213px;
  4241. width:33px;
  4242. height:22px;
  4243. display:flex;
  4244. transition:none;
  4245. transform-origin:50% 50%;
  4246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4247. font-weight:400;
  4248. font-style:normal;
  4249. font-size:16px;
  4250. color:#FFFFFF;
  4251. }
  4252. #u10751 .text {
  4253. position:absolute;
  4254. align-self:flex-start;
  4255. padding:0px 0px 0px 0px;
  4256. box-sizing:border-box;
  4257. width:100%;
  4258. }
  4259. #u10751_text {
  4260. border-width:0px;
  4261. white-space:nowrap;
  4262. text-transform:none;
  4263. }
  4264. #u10752 {
  4265. border-width:0px;
  4266. position:absolute;
  4267. left:20px;
  4268. top:217px;
  4269. width:14px;
  4270. height:14px;
  4271. display:flex;
  4272. transition:none;
  4273. }
  4274. #u10752 .text {
  4275. position:absolute;
  4276. align-self:center;
  4277. padding:2px 2px 2px 2px;
  4278. box-sizing:border-box;
  4279. width:100%;
  4280. }
  4281. #u10752_img {
  4282. border-width:0px;
  4283. position:absolute;
  4284. left:0px;
  4285. top:0px;
  4286. width:14px;
  4287. height:14px;
  4288. }
  4289. #u10752_text {
  4290. border-width:0px;
  4291. word-wrap:break-word;
  4292. text-transform:none;
  4293. visibility:hidden;
  4294. }
  4295. #u10753 {
  4296. border-width:0px;
  4297. position:absolute;
  4298. left:0px;
  4299. top:0px;
  4300. width:0px;
  4301. height:0px;
  4302. }
  4303. #u10754_div {
  4304. border-width:0px;
  4305. position:absolute;
  4306. left:0px;
  4307. top:0px;
  4308. width:33px;
  4309. height:22px;
  4310. background:inherit;
  4311. background-color:rgba(255, 255, 255, 0);
  4312. border-radius:0px;
  4313. filter:drop-shadow(none);
  4314. transition:none;
  4315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4316. font-weight:400;
  4317. font-style:normal;
  4318. font-size:16px;
  4319. color:#FFFFFF;
  4320. }
  4321. #u10754 {
  4322. border-width:0px;
  4323. position:absolute;
  4324. left:39px;
  4325. top:339px;
  4326. width:33px;
  4327. height:22px;
  4328. display:flex;
  4329. transition:none;
  4330. transform-origin:50% 50%;
  4331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4332. font-weight:400;
  4333. font-style:normal;
  4334. font-size:16px;
  4335. color:#FFFFFF;
  4336. }
  4337. #u10754 .text {
  4338. position:absolute;
  4339. align-self:flex-start;
  4340. padding:0px 0px 0px 0px;
  4341. box-sizing:border-box;
  4342. width:100%;
  4343. }
  4344. #u10754_text {
  4345. border-width:0px;
  4346. white-space:nowrap;
  4347. text-transform:none;
  4348. }
  4349. #u10755 {
  4350. border-width:0px;
  4351. position:absolute;
  4352. left:20px;
  4353. top:343px;
  4354. width:14px;
  4355. height:14px;
  4356. display:flex;
  4357. transition:none;
  4358. }
  4359. #u10755 .text {
  4360. position:absolute;
  4361. align-self:center;
  4362. padding:2px 2px 2px 2px;
  4363. box-sizing:border-box;
  4364. width:100%;
  4365. }
  4366. #u10755_img {
  4367. border-width:0px;
  4368. position:absolute;
  4369. left:0px;
  4370. top:0px;
  4371. width:14px;
  4372. height:14px;
  4373. }
  4374. #u10755_text {
  4375. border-width:0px;
  4376. word-wrap:break-word;
  4377. text-transform:none;
  4378. visibility:hidden;
  4379. }
  4380. #u10756 {
  4381. border-width:0px;
  4382. position:absolute;
  4383. left:0px;
  4384. top:0px;
  4385. width:0px;
  4386. height:0px;
  4387. }
  4388. #u10757_div {
  4389. border-width:0px;
  4390. position:absolute;
  4391. left:0px;
  4392. top:0px;
  4393. width:33px;
  4394. height:22px;
  4395. background:inherit;
  4396. background-color:rgba(255, 255, 255, 0);
  4397. border-radius:0px;
  4398. filter:drop-shadow(none);
  4399. transition:none;
  4400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4401. font-weight:400;
  4402. font-style:normal;
  4403. font-size:16px;
  4404. color:#FFFFFF;
  4405. }
  4406. #u10757 {
  4407. border-width:0px;
  4408. position:absolute;
  4409. left:39px;
  4410. top:465px;
  4411. width:33px;
  4412. height:22px;
  4413. display:flex;
  4414. transition:none;
  4415. transform-origin:50% 50%;
  4416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4417. font-weight:400;
  4418. font-style:normal;
  4419. font-size:16px;
  4420. color:#FFFFFF;
  4421. }
  4422. #u10757 .text {
  4423. position:absolute;
  4424. align-self:flex-start;
  4425. padding:0px 0px 0px 0px;
  4426. box-sizing:border-box;
  4427. width:100%;
  4428. }
  4429. #u10757_text {
  4430. border-width:0px;
  4431. white-space:nowrap;
  4432. text-transform:none;
  4433. }
  4434. #u10758 {
  4435. border-width:0px;
  4436. position:absolute;
  4437. left:20px;
  4438. top:469px;
  4439. width:14px;
  4440. height:14px;
  4441. display:flex;
  4442. transition:none;
  4443. }
  4444. #u10758 .text {
  4445. position:absolute;
  4446. align-self:center;
  4447. padding:2px 2px 2px 2px;
  4448. box-sizing:border-box;
  4449. width:100%;
  4450. }
  4451. #u10758_img {
  4452. border-width:0px;
  4453. position:absolute;
  4454. left:0px;
  4455. top:0px;
  4456. width:14px;
  4457. height:14px;
  4458. }
  4459. #u10758_text {
  4460. border-width:0px;
  4461. word-wrap:break-word;
  4462. text-transform:none;
  4463. visibility:hidden;
  4464. }
  4465. #u10759 {
  4466. border-width:0px;
  4467. position:absolute;
  4468. left:0px;
  4469. top:0px;
  4470. width:0px;
  4471. height:0px;
  4472. }
  4473. #u10760_div {
  4474. border-width:0px;
  4475. position:absolute;
  4476. left:0px;
  4477. top:0px;
  4478. width:29px;
  4479. height:20px;
  4480. background:inherit;
  4481. background-color:rgba(255, 255, 255, 0);
  4482. border-radius:25px;
  4483. filter:drop-shadow(none);
  4484. transition:none;
  4485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4486. font-weight:400;
  4487. font-style:normal;
  4488. color:#FFFFFF;
  4489. }
  4490. #u10760 {
  4491. border-width:0px;
  4492. position:absolute;
  4493. left:52px;
  4494. top:1145px;
  4495. width:29px;
  4496. height:20px;
  4497. display:flex;
  4498. transition:none;
  4499. transform-origin:50% 50%;
  4500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4501. font-weight:400;
  4502. font-style:normal;
  4503. color:#FFFFFF;
  4504. }
  4505. #u10760 .text {
  4506. position:absolute;
  4507. align-self:center;
  4508. padding:0px 0px 0px 0px;
  4509. box-sizing:border-box;
  4510. width:100%;
  4511. }
  4512. #u10760_text {
  4513. border-width:0px;
  4514. white-space:nowrap;
  4515. text-transform:none;
  4516. }
  4517. #u10761 {
  4518. border-width:0px;
  4519. position:absolute;
  4520. left:20px;
  4521. top:1144px;
  4522. width:22px;
  4523. height:22px;
  4524. display:flex;
  4525. transition:none;
  4526. }
  4527. #u10761 .text {
  4528. position:absolute;
  4529. align-self:center;
  4530. padding:2px 2px 2px 2px;
  4531. box-sizing:border-box;
  4532. width:100%;
  4533. }
  4534. #u10761_img {
  4535. border-width:0px;
  4536. position:absolute;
  4537. left:0px;
  4538. top:0px;
  4539. width:22px;
  4540. height:22px;
  4541. }
  4542. #u10761_text {
  4543. border-width:0px;
  4544. word-wrap:break-word;
  4545. text-transform:none;
  4546. visibility:hidden;
  4547. }
  4548. #u10762 {
  4549. border-width:0px;
  4550. position:absolute;
  4551. left:0px;
  4552. top:0px;
  4553. width:0px;
  4554. height:0px;
  4555. }
  4556. #u10763_div {
  4557. border-width:0px;
  4558. position:absolute;
  4559. left:0px;
  4560. top:0px;
  4561. width:29px;
  4562. height:20px;
  4563. background:inherit;
  4564. background-color:rgba(255, 255, 255, 0);
  4565. border-radius:25px;
  4566. filter:drop-shadow(none);
  4567. transition:none;
  4568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4569. font-weight:400;
  4570. font-style:normal;
  4571. color:#FFFFFF;
  4572. }
  4573. #u10763 {
  4574. border-width:0px;
  4575. position:absolute;
  4576. left:52px;
  4577. top:1187px;
  4578. width:29px;
  4579. height:20px;
  4580. display:flex;
  4581. transition:none;
  4582. transform-origin:50% 50%;
  4583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4584. font-weight:400;
  4585. font-style:normal;
  4586. color:#FFFFFF;
  4587. }
  4588. #u10763 .text {
  4589. position:absolute;
  4590. align-self:center;
  4591. padding:0px 0px 0px 0px;
  4592. box-sizing:border-box;
  4593. width:100%;
  4594. }
  4595. #u10763_text {
  4596. border-width:0px;
  4597. white-space:nowrap;
  4598. text-transform:none;
  4599. }
  4600. #u10764 {
  4601. border-width:0px;
  4602. position:absolute;
  4603. left:20px;
  4604. top:1186px;
  4605. width:22px;
  4606. height:22px;
  4607. display:flex;
  4608. transition:none;
  4609. }
  4610. #u10764 .text {
  4611. position:absolute;
  4612. align-self:center;
  4613. padding:2px 2px 2px 2px;
  4614. box-sizing:border-box;
  4615. width:100%;
  4616. }
  4617. #u10764_img {
  4618. border-width:0px;
  4619. position:absolute;
  4620. left:0px;
  4621. top:0px;
  4622. width:22px;
  4623. height:22px;
  4624. }
  4625. #u10764_text {
  4626. border-width:0px;
  4627. word-wrap:break-word;
  4628. text-transform:none;
  4629. visibility:hidden;
  4630. }
  4631. #u10765 {
  4632. border-width:0px;
  4633. position:absolute;
  4634. left:0px;
  4635. top:0px;
  4636. width:0px;
  4637. height:0px;
  4638. }
  4639. #u10766_div {
  4640. border-width:0px;
  4641. position:absolute;
  4642. left:0px;
  4643. top:0px;
  4644. width:33px;
  4645. height:22px;
  4646. background:inherit;
  4647. background-color:rgba(255, 255, 255, 0);
  4648. border-radius:0px;
  4649. filter:drop-shadow(none);
  4650. transition:none;
  4651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4652. font-weight:400;
  4653. font-style:normal;
  4654. font-size:16px;
  4655. color:#FFFFFF;
  4656. }
  4657. #u10766 {
  4658. border-width:0px;
  4659. position:absolute;
  4660. left:39px;
  4661. top:255px;
  4662. width:33px;
  4663. height:22px;
  4664. display:flex;
  4665. transition:none;
  4666. transform-origin:50% 50%;
  4667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4668. font-weight:400;
  4669. font-style:normal;
  4670. font-size:16px;
  4671. color:#FFFFFF;
  4672. }
  4673. #u10766 .text {
  4674. position:absolute;
  4675. align-self:flex-start;
  4676. padding:0px 0px 0px 0px;
  4677. box-sizing:border-box;
  4678. width:100%;
  4679. }
  4680. #u10766_text {
  4681. border-width:0px;
  4682. white-space:nowrap;
  4683. text-transform:none;
  4684. }
  4685. #u10767 {
  4686. border-width:0px;
  4687. position:absolute;
  4688. left:20px;
  4689. top:259px;
  4690. width:14px;
  4691. height:14px;
  4692. display:flex;
  4693. transition:none;
  4694. }
  4695. #u10767 .text {
  4696. position:absolute;
  4697. align-self:center;
  4698. padding:2px 2px 2px 2px;
  4699. box-sizing:border-box;
  4700. width:100%;
  4701. }
  4702. #u10767_img {
  4703. border-width:0px;
  4704. position:absolute;
  4705. left:0px;
  4706. top:0px;
  4707. width:14px;
  4708. height:14px;
  4709. }
  4710. #u10767_text {
  4711. border-width:0px;
  4712. word-wrap:break-word;
  4713. text-transform:none;
  4714. visibility:hidden;
  4715. }
  4716. #u10768 {
  4717. border-width:0px;
  4718. position:absolute;
  4719. left:0px;
  4720. top:0px;
  4721. width:0px;
  4722. height:0px;
  4723. }
  4724. #u10769_input {
  4725. position:absolute;
  4726. left:0px;
  4727. top:0px;
  4728. width:214px;
  4729. height:27px;
  4730. padding:2px 2px 2px 2px;
  4731. font-family:'ArialMT', 'Arial', sans-serif;
  4732. font-weight:400;
  4733. font-style:normal;
  4734. font-size:14px;
  4735. letter-spacing:normal;
  4736. color:#FFFFFF;
  4737. vertical-align:none;
  4738. text-align:left;
  4739. text-transform:none;
  4740. background-color:transparent;
  4741. border-color:transparent;
  4742. }
  4743. #u10769_input.disabled {
  4744. position:absolute;
  4745. left:0px;
  4746. top:0px;
  4747. width:214px;
  4748. height:27px;
  4749. padding:2px 2px 2px 2px;
  4750. font-family:'ArialMT', 'Arial', sans-serif;
  4751. font-weight:400;
  4752. font-style:normal;
  4753. font-size:14px;
  4754. letter-spacing:normal;
  4755. color:#FFFFFF;
  4756. vertical-align:none;
  4757. text-align:left;
  4758. text-transform:none;
  4759. background-color:transparent;
  4760. border-color:transparent;
  4761. }
  4762. #u10769_div {
  4763. border-width:0px;
  4764. position:absolute;
  4765. left:0px;
  4766. top:0px;
  4767. width:214px;
  4768. height:27px;
  4769. background:inherit;
  4770. background-color:rgba(255, 255, 255, 0);
  4771. border-radius:0px;
  4772. filter:drop-shadow(none);
  4773. transition:none;
  4774. font-size:14px;
  4775. color:#FFFFFF;
  4776. }
  4777. #u10769 {
  4778. border-width:0px;
  4779. position:absolute;
  4780. left:1221px;
  4781. top:11px;
  4782. width:214px;
  4783. height:27px;
  4784. display:flex;
  4785. transition:none;
  4786. transform-origin:50% 50%;
  4787. font-size:14px;
  4788. color:#FFFFFF;
  4789. }
  4790. #u10769 .text {
  4791. position:absolute;
  4792. align-self:flex-start;
  4793. padding:2px 2px 2px 2px;
  4794. box-sizing:border-box;
  4795. width:100%;
  4796. }
  4797. #u10769_div.disabled {
  4798. border-width:0px;
  4799. position:absolute;
  4800. left:0px;
  4801. top:0px;
  4802. width:214px;
  4803. height:27px;
  4804. background:inherit;
  4805. background-color:rgba(240, 240, 240, 1);
  4806. border-radius:0px;
  4807. filter:drop-shadow(none);
  4808. transition:none;
  4809. font-size:14px;
  4810. color:#FFFFFF;
  4811. }
  4812. #u10769.disabled {
  4813. }
  4814. .u10769_input_option {
  4815. font-size:14px;
  4816. }
  4817. #u10770 {
  4818. border-width:0px;
  4819. position:absolute;
  4820. left:1194px;
  4821. top:14px;
  4822. width:22px;
  4823. height:22px;
  4824. display:flex;
  4825. transition:none;
  4826. }
  4827. #u10770 .text {
  4828. position:absolute;
  4829. align-self:center;
  4830. padding:2px 2px 2px 2px;
  4831. box-sizing:border-box;
  4832. width:100%;
  4833. }
  4834. #u10770_img {
  4835. border-width:0px;
  4836. position:absolute;
  4837. left:0px;
  4838. top:0px;
  4839. width:22px;
  4840. height:22px;
  4841. }
  4842. #u10770_text {
  4843. border-width:0px;
  4844. word-wrap:break-word;
  4845. text-transform:none;
  4846. visibility:hidden;
  4847. }
  4848. #u10771_div {
  4849. border-width:0px;
  4850. position:absolute;
  4851. left:0px;
  4852. top:0px;
  4853. width:100px;
  4854. height:24px;
  4855. background:inherit;
  4856. background-color:rgba(242, 242, 242, 0.2);
  4857. border-radius:25px;
  4858. filter:drop-shadow(none);
  4859. transition:none;
  4860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4861. font-weight:400;
  4862. font-style:normal;
  4863. color:#FFFFFF;
  4864. text-align:center;
  4865. }
  4866. #u10771 {
  4867. border-width:0px;
  4868. position:absolute;
  4869. left:1480px;
  4870. top:13px;
  4871. width:100px;
  4872. height:24px;
  4873. display:flex;
  4874. transition:none;
  4875. transform-origin:50% 50%;
  4876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4877. font-weight:400;
  4878. font-style:normal;
  4879. color:#FFFFFF;
  4880. text-align:center;
  4881. }
  4882. #u10771 .text {
  4883. position:absolute;
  4884. align-self:center;
  4885. padding:0px 0px 0px 0px;
  4886. box-sizing:border-box;
  4887. width:100%;
  4888. }
  4889. #u10771_text {
  4890. border-width:0px;
  4891. word-wrap:break-word;
  4892. text-transform:none;
  4893. }
  4894. #u10772 {
  4895. border-width:0px;
  4896. position:absolute;
  4897. left:1452px;
  4898. top:19px;
  4899. width:1px;
  4900. height:11px;
  4901. display:flex;
  4902. transition:none;
  4903. }
  4904. #u10772 .text {
  4905. position:absolute;
  4906. align-self:center;
  4907. padding:2px 2px 2px 2px;
  4908. box-sizing:border-box;
  4909. width:100%;
  4910. }
  4911. #u10772_img {
  4912. border-width:0px;
  4913. position:absolute;
  4914. left:0px;
  4915. top:0px;
  4916. width:2px;
  4917. height:12px;
  4918. }
  4919. #u10772_text {
  4920. border-width:0px;
  4921. word-wrap:break-word;
  4922. text-transform:none;
  4923. visibility:hidden;
  4924. }
  4925. #u10773 {
  4926. border-width:0px;
  4927. position:absolute;
  4928. left:0px;
  4929. top:0px;
  4930. width:0px;
  4931. height:0px;
  4932. }
  4933. #u10774_div {
  4934. border-width:0px;
  4935. position:absolute;
  4936. left:0px;
  4937. top:0px;
  4938. width:29px;
  4939. height:20px;
  4940. background:inherit;
  4941. background-color:rgba(255, 255, 255, 0);
  4942. border-radius:25px;
  4943. filter:drop-shadow(none);
  4944. transition:none;
  4945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4946. font-weight:400;
  4947. font-style:normal;
  4948. color:#FFFFFF;
  4949. }
  4950. #u10774 {
  4951. border-width:0px;
  4952. position:absolute;
  4953. left:52px;
  4954. top:1082px;
  4955. width:29px;
  4956. height:20px;
  4957. display:flex;
  4958. transition:none;
  4959. transform-origin:50% 50%;
  4960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4961. font-weight:400;
  4962. font-style:normal;
  4963. color:#FFFFFF;
  4964. }
  4965. #u10774 .text {
  4966. position:absolute;
  4967. align-self:center;
  4968. padding:0px 0px 0px 0px;
  4969. box-sizing:border-box;
  4970. width:100%;
  4971. }
  4972. #u10774_text {
  4973. border-width:0px;
  4974. white-space:nowrap;
  4975. text-transform:none;
  4976. }
  4977. #u10775 {
  4978. border-width:0px;
  4979. position:absolute;
  4980. left:20px;
  4981. top:1081px;
  4982. width:22px;
  4983. height:22px;
  4984. display:flex;
  4985. transition:none;
  4986. }
  4987. #u10775 .text {
  4988. position:absolute;
  4989. align-self:center;
  4990. padding:2px 2px 2px 2px;
  4991. box-sizing:border-box;
  4992. width:100%;
  4993. }
  4994. #u10775_img {
  4995. border-width:0px;
  4996. position:absolute;
  4997. left:0px;
  4998. top:0px;
  4999. width:22px;
  5000. height:22px;
  5001. }
  5002. #u10775_text {
  5003. border-width:0px;
  5004. word-wrap:break-word;
  5005. text-transform:none;
  5006. visibility:hidden;
  5007. }
  5008. #u10776 {
  5009. border-width:0px;
  5010. position:absolute;
  5011. left:20px;
  5012. top:1123px;
  5013. width:68px;
  5014. height:1px;
  5015. display:flex;
  5016. transition:none;
  5017. }
  5018. #u10776 .text {
  5019. position:absolute;
  5020. align-self:center;
  5021. padding:2px 2px 2px 2px;
  5022. box-sizing:border-box;
  5023. width:100%;
  5024. }
  5025. #u10776_img {
  5026. border-width:0px;
  5027. position:absolute;
  5028. left:0px;
  5029. top:0px;
  5030. width:69px;
  5031. height:2px;
  5032. }
  5033. #u10776_text {
  5034. border-width:0px;
  5035. word-wrap:break-word;
  5036. text-transform:none;
  5037. visibility:hidden;
  5038. }
  5039. #u10777 {
  5040. border-width:0px;
  5041. position:absolute;
  5042. left:20px;
  5043. top:1061px;
  5044. width:68px;
  5045. height:1px;
  5046. display:flex;
  5047. transition:none;
  5048. }
  5049. #u10777 .text {
  5050. position:absolute;
  5051. align-self:center;
  5052. padding:2px 2px 2px 2px;
  5053. box-sizing:border-box;
  5054. width:100%;
  5055. }
  5056. #u10777_img {
  5057. border-width:0px;
  5058. position:absolute;
  5059. left:0px;
  5060. top:0px;
  5061. width:69px;
  5062. height:2px;
  5063. }
  5064. #u10777_text {
  5065. border-width:0px;
  5066. word-wrap:break-word;
  5067. text-transform:none;
  5068. visibility:hidden;
  5069. }
  5070. #u10778 {
  5071. border-width:0px;
  5072. position:absolute;
  5073. left:20px;
  5074. top:112px;
  5075. width:56px;
  5076. height:1px;
  5077. display:flex;
  5078. transition:none;
  5079. }
  5080. #u10778 .text {
  5081. position:absolute;
  5082. align-self:center;
  5083. padding:2px 2px 2px 2px;
  5084. box-sizing:border-box;
  5085. width:100%;
  5086. }
  5087. #u10778_img {
  5088. border-width:0px;
  5089. position:absolute;
  5090. left:0px;
  5091. top:0px;
  5092. width:57px;
  5093. height:2px;
  5094. }
  5095. #u10778_text {
  5096. border-width:0px;
  5097. word-wrap:break-word;
  5098. text-transform:none;
  5099. visibility:hidden;
  5100. }
  5101. #u10779 {
  5102. border-width:0px;
  5103. position:absolute;
  5104. left:0px;
  5105. top:0px;
  5106. width:0px;
  5107. height:0px;
  5108. }
  5109. #u10780_div {
  5110. border-width:0px;
  5111. position:absolute;
  5112. left:0px;
  5113. top:0px;
  5114. width:33px;
  5115. height:22px;
  5116. background:inherit;
  5117. background-color:rgba(255, 255, 255, 0);
  5118. border-radius:0px;
  5119. filter:drop-shadow(none);
  5120. transition:none;
  5121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5122. font-weight:400;
  5123. font-style:normal;
  5124. font-size:16px;
  5125. color:#FFFFFF;
  5126. }
  5127. #u10780 {
  5128. border-width:0px;
  5129. position:absolute;
  5130. left:43px;
  5131. top:71px;
  5132. width:33px;
  5133. height:22px;
  5134. display:flex;
  5135. transition:none;
  5136. transform-origin:50% 50%;
  5137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5138. font-weight:400;
  5139. font-style:normal;
  5140. font-size:16px;
  5141. color:#FFFFFF;
  5142. }
  5143. #u10780 .text {
  5144. position:absolute;
  5145. align-self:flex-start;
  5146. padding:0px 0px 0px 0px;
  5147. box-sizing:border-box;
  5148. width:100%;
  5149. }
  5150. #u10780_text {
  5151. border-width:0px;
  5152. white-space:nowrap;
  5153. text-transform:none;
  5154. }
  5155. #u10781 {
  5156. border-width:0px;
  5157. position:absolute;
  5158. left:20px;
  5159. top:75px;
  5160. width:18px;
  5161. height:14px;
  5162. display:flex;
  5163. transition:none;
  5164. }
  5165. #u10781 .text {
  5166. position:absolute;
  5167. align-self:center;
  5168. padding:2px 2px 2px 2px;
  5169. box-sizing:border-box;
  5170. width:100%;
  5171. }
  5172. #u10781_img {
  5173. border-width:0px;
  5174. position:absolute;
  5175. left:0px;
  5176. top:0px;
  5177. width:18px;
  5178. height:14px;
  5179. }
  5180. #u10781_text {
  5181. border-width:0px;
  5182. word-wrap:break-word;
  5183. text-transform:none;
  5184. visibility:hidden;
  5185. }
  5186. #u10782_div {
  5187. border-width:0px;
  5188. position:absolute;
  5189. left:0px;
  5190. top:0px;
  5191. width:1265px;
  5192. height:1180px;
  5193. background:inherit;
  5194. background-color:rgba(255, 255, 255, 1);
  5195. border-radius:0px;
  5196. filter:drop-shadow(0px 0px 1.5px rgba(127, 127, 127, 0.34901960784313724));
  5197. transition:none;
  5198. color:#1890FF;
  5199. }
  5200. #u10782 {
  5201. border-width:0px;
  5202. position:absolute;
  5203. left:1949px;
  5204. top:51px;
  5205. width:1265px;
  5206. height:1180px;
  5207. display:flex;
  5208. transition:none;
  5209. transform-origin:50% 50%;
  5210. color:#1890FF;
  5211. }
  5212. #u10782 .text {
  5213. position:absolute;
  5214. align-self:center;
  5215. padding:2px 2px 2px 2px;
  5216. box-sizing:border-box;
  5217. width:100%;
  5218. }
  5219. #u10782_text {
  5220. border-width:0px;
  5221. word-wrap:break-word;
  5222. text-transform:none;
  5223. visibility:hidden;
  5224. }
  5225. #u10783_div {
  5226. border-width:0px;
  5227. position:absolute;
  5228. left:0px;
  5229. top:0px;
  5230. width:73px;
  5231. height:25px;
  5232. background:inherit;
  5233. background-color:rgba(255, 255, 255, 0);
  5234. border-radius:0px;
  5235. filter:drop-shadow(none);
  5236. transition:none;
  5237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5238. font-weight:400;
  5239. font-style:normal;
  5240. font-size:18px;
  5241. }
  5242. #u10783 {
  5243. border-width:0px;
  5244. position:absolute;
  5245. left:1969px;
  5246. top:60px;
  5247. width:73px;
  5248. height:25px;
  5249. display:flex;
  5250. transition:none;
  5251. transform-origin:50% 50%;
  5252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5253. font-weight:400;
  5254. font-style:normal;
  5255. font-size:18px;
  5256. }
  5257. #u10783 .text {
  5258. position:absolute;
  5259. align-self:flex-start;
  5260. padding:0px 0px 0px 0px;
  5261. box-sizing:border-box;
  5262. width:100%;
  5263. }
  5264. #u10783_text {
  5265. border-width:0px;
  5266. white-space:nowrap;
  5267. text-transform:none;
  5268. }
  5269. #u10784 {
  5270. border-width:0px;
  5271. position:absolute;
  5272. left:1973px;
  5273. top:137px;
  5274. width:1227px;
  5275. height:637px;
  5276. display:flex;
  5277. transition:none;
  5278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5279. font-weight:400;
  5280. font-style:normal;
  5281. font-size:38px;
  5282. color:#FFFFFF;
  5283. }
  5284. #u10784 .text {
  5285. position:absolute;
  5286. align-self:center;
  5287. padding:2px 2px 2px 2px;
  5288. box-sizing:border-box;
  5289. width:100%;
  5290. }
  5291. #u10784_img {
  5292. border-width:0px;
  5293. position:absolute;
  5294. left:0px;
  5295. top:0px;
  5296. width:1227px;
  5297. height:637px;
  5298. }
  5299. #u10784_text {
  5300. border-width:0px;
  5301. word-wrap:break-word;
  5302. text-transform:none;
  5303. }
  5304. #u10785 {
  5305. border-width:0px;
  5306. position:absolute;
  5307. left:0px;
  5308. top:0px;
  5309. width:0px;
  5310. height:0px;
  5311. }
  5312. #u10786_div {
  5313. border-width:0px;
  5314. position:absolute;
  5315. left:0px;
  5316. top:0px;
  5317. width:40px;
  5318. height:136px;
  5319. background:inherit;
  5320. background-color:rgba(2, 167, 240, 1);
  5321. border-radius:5px;
  5322. filter:drop-shadow(none);
  5323. transition:none;
  5324. }
  5325. #u10786 {
  5326. border-width:0px;
  5327. position:absolute;
  5328. left:3143px;
  5329. top:625px;
  5330. width:40px;
  5331. height:136px;
  5332. display:flex;
  5333. transition:none;
  5334. transform-origin:50% 50%;
  5335. }
  5336. #u10786 .text {
  5337. position:absolute;
  5338. align-self:center;
  5339. padding:2px 2px 2px 2px;
  5340. box-sizing:border-box;
  5341. width:100%;
  5342. }
  5343. #u10786_text {
  5344. border-width:0px;
  5345. word-wrap:break-word;
  5346. text-transform:none;
  5347. visibility:hidden;
  5348. }
  5349. #u10787 {
  5350. border-width:0px;
  5351. position:absolute;
  5352. left:3151px;
  5353. top:636px;
  5354. width:24px;
  5355. height:24px;
  5356. display:flex;
  5357. transition:none;
  5358. }
  5359. #u10787 .text {
  5360. position:absolute;
  5361. align-self:center;
  5362. padding:2px 2px 2px 2px;
  5363. box-sizing:border-box;
  5364. width:100%;
  5365. }
  5366. #u10787_img {
  5367. border-width:0px;
  5368. position:absolute;
  5369. left:0px;
  5370. top:0px;
  5371. width:24px;
  5372. height:24px;
  5373. }
  5374. #u10787_text {
  5375. border-width:0px;
  5376. word-wrap:break-word;
  5377. text-transform:none;
  5378. visibility:hidden;
  5379. }
  5380. #u10788 {
  5381. border-width:0px;
  5382. position:absolute;
  5383. left:3154px;
  5384. top:691px;
  5385. width:18px;
  5386. height:18px;
  5387. display:flex;
  5388. transition:none;
  5389. }
  5390. #u10788 .text {
  5391. position:absolute;
  5392. align-self:center;
  5393. padding:2px 2px 2px 2px;
  5394. box-sizing:border-box;
  5395. width:100%;
  5396. }
  5397. #u10788_img {
  5398. border-width:0px;
  5399. position:absolute;
  5400. left:0px;
  5401. top:0px;
  5402. width:18px;
  5403. height:18px;
  5404. }
  5405. #u10788_text {
  5406. border-width:0px;
  5407. word-wrap:break-word;
  5408. text-transform:none;
  5409. visibility:hidden;
  5410. }
  5411. #u10789_div {
  5412. border-width:0px;
  5413. position:absolute;
  5414. left:0px;
  5415. top:0px;
  5416. width:18px;
  5417. height:4px;
  5418. background:inherit;
  5419. background-color:rgba(255, 255, 255, 1);
  5420. border-radius:0px;
  5421. filter:drop-shadow(none);
  5422. transition:none;
  5423. }
  5424. #u10789 {
  5425. border-width:0px;
  5426. position:absolute;
  5427. left:3154px;
  5428. top:740px;
  5429. width:18px;
  5430. height:4px;
  5431. display:flex;
  5432. transition:none;
  5433. transform-origin:50% 50%;
  5434. }
  5435. #u10789 .text {
  5436. position:absolute;
  5437. align-self:center;
  5438. padding:2px 2px 2px 2px;
  5439. box-sizing:border-box;
  5440. width:100%;
  5441. }
  5442. #u10789_text {
  5443. border-width:0px;
  5444. word-wrap:break-word;
  5445. text-transform:none;
  5446. visibility:hidden;
  5447. }
  5448. #u10790 {
  5449. border-width:0px;
  5450. position:absolute;
  5451. left:3152px;
  5452. top:675px;
  5453. width:22px;
  5454. height:1px;
  5455. display:flex;
  5456. transition:none;
  5457. }
  5458. #u10790 .text {
  5459. position:absolute;
  5460. align-self:center;
  5461. padding:2px 2px 2px 2px;
  5462. box-sizing:border-box;
  5463. width:100%;
  5464. }
  5465. #u10790_img {
  5466. border-width:0px;
  5467. position:absolute;
  5468. left:0px;
  5469. top:0px;
  5470. width:23px;
  5471. height:2px;
  5472. }
  5473. #u10790_text {
  5474. border-width:0px;
  5475. word-wrap:break-word;
  5476. text-transform:none;
  5477. visibility:hidden;
  5478. }
  5479. #u10791 {
  5480. border-width:0px;
  5481. position:absolute;
  5482. left:3152px;
  5483. top:724px;
  5484. width:22px;
  5485. height:1px;
  5486. display:flex;
  5487. transition:none;
  5488. }
  5489. #u10791 .text {
  5490. position:absolute;
  5491. align-self:center;
  5492. padding:2px 2px 2px 2px;
  5493. box-sizing:border-box;
  5494. width:100%;
  5495. }
  5496. #u10791_img {
  5497. border-width:0px;
  5498. position:absolute;
  5499. left:0px;
  5500. top:0px;
  5501. width:23px;
  5502. height:2px;
  5503. }
  5504. #u10791_text {
  5505. border-width:0px;
  5506. word-wrap:break-word;
  5507. text-transform:none;
  5508. visibility:hidden;
  5509. }
  5510. #u10792 {
  5511. border-width:0px;
  5512. position:absolute;
  5513. left:1741px;
  5514. top:50px;
  5515. width:200px;
  5516. height:1180px;
  5517. }
  5518. #u10793 {
  5519. border-width:0px;
  5520. position:absolute;
  5521. left:0px;
  5522. top:0px;
  5523. width:0px;
  5524. height:0px;
  5525. }
  5526. #u10794_div {
  5527. border-width:0px;
  5528. position:absolute;
  5529. left:0px;
  5530. top:0px;
  5531. width:200px;
  5532. height:1180px;
  5533. background:inherit;
  5534. background-color:rgba(255, 255, 255, 1);
  5535. border-radius:0px;
  5536. filter:drop-shadow(none);
  5537. transition:none;
  5538. }
  5539. #u10794 {
  5540. border-width:0px;
  5541. position:absolute;
  5542. left:0px;
  5543. top:0px;
  5544. width:200px;
  5545. height:1180px;
  5546. display:flex;
  5547. transition:none;
  5548. transform-origin:50% 50%;
  5549. }
  5550. #u10794 .text {
  5551. position:absolute;
  5552. align-self:center;
  5553. padding:2px 2px 2px 2px;
  5554. box-sizing:border-box;
  5555. width:100%;
  5556. }
  5557. #u10794_text {
  5558. border-width:0px;
  5559. word-wrap:break-word;
  5560. text-transform:none;
  5561. visibility:hidden;
  5562. }
  5563. #u10795_div {
  5564. border-width:0px;
  5565. position:absolute;
  5566. left:0px;
  5567. top:0px;
  5568. width:200px;
  5569. height:60px;
  5570. background:inherit;
  5571. background-color:rgba(224, 231, 247, 1);
  5572. border-radius:0px;
  5573. filter:drop-shadow(none);
  5574. transition:none;
  5575. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5576. font-weight:500;
  5577. font-style:normal;
  5578. font-size:18px;
  5579. }
  5580. #u10795 {
  5581. border-width:0px;
  5582. position:absolute;
  5583. left:0px;
  5584. top:0px;
  5585. width:200px;
  5586. height:60px;
  5587. display:flex;
  5588. transition:none;
  5589. transform-origin:50% 50%;
  5590. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5591. font-weight:500;
  5592. font-style:normal;
  5593. font-size:18px;
  5594. }
  5595. #u10795 .text {
  5596. position:absolute;
  5597. align-self:center;
  5598. padding:0px 0px 0px 20px;
  5599. box-sizing:border-box;
  5600. width:100%;
  5601. }
  5602. #u10795_text {
  5603. border-width:0px;
  5604. word-wrap:break-word;
  5605. text-transform:none;
  5606. }
  5607. #u10796_div {
  5608. border-width:0px;
  5609. position:absolute;
  5610. left:0px;
  5611. top:0px;
  5612. width:65px;
  5613. height:22px;
  5614. background:inherit;
  5615. background-color:rgba(255, 255, 255, 0);
  5616. border-radius:0px;
  5617. filter:drop-shadow(none);
  5618. transition:none;
  5619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5620. font-weight:400;
  5621. font-style:normal;
  5622. font-size:16px;
  5623. }
  5624. #u10796 {
  5625. border-width:0px;
  5626. position:absolute;
  5627. left:27px;
  5628. top:111px;
  5629. width:65px;
  5630. height:22px;
  5631. display:flex;
  5632. transition:none;
  5633. transform-origin:50% 50%;
  5634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5635. font-weight:400;
  5636. font-style:normal;
  5637. font-size:16px;
  5638. }
  5639. #u10796 .text {
  5640. position:absolute;
  5641. align-self:flex-start;
  5642. padding:0px 0px 0px 0px;
  5643. box-sizing:border-box;
  5644. width:100%;
  5645. }
  5646. #u10796_text {
  5647. border-width:0px;
  5648. white-space:nowrap;
  5649. text-transform:none;
  5650. }
  5651. #u10797_div {
  5652. border-width:0px;
  5653. position:absolute;
  5654. left:0px;
  5655. top:0px;
  5656. width:65px;
  5657. height:22px;
  5658. background:inherit;
  5659. background-color:rgba(255, 255, 255, 0);
  5660. border-radius:0px;
  5661. filter:drop-shadow(none);
  5662. transition:none;
  5663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5664. font-weight:400;
  5665. font-style:normal;
  5666. font-size:16px;
  5667. }
  5668. #u10797 {
  5669. border-width:0px;
  5670. position:absolute;
  5671. left:27px;
  5672. top:259px;
  5673. width:65px;
  5674. height:22px;
  5675. display:flex;
  5676. transition:none;
  5677. transform-origin:50% 50%;
  5678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5679. font-weight:400;
  5680. font-style:normal;
  5681. font-size:16px;
  5682. }
  5683. #u10797 .text {
  5684. position:absolute;
  5685. align-self:flex-start;
  5686. padding:0px 0px 0px 0px;
  5687. box-sizing:border-box;
  5688. width:100%;
  5689. }
  5690. #u10797_text {
  5691. border-width:0px;
  5692. white-space:nowrap;
  5693. text-transform:none;
  5694. }
  5695. #u10798_div {
  5696. border-width:0px;
  5697. position:absolute;
  5698. left:0px;
  5699. top:0px;
  5700. width:49px;
  5701. height:17px;
  5702. background:inherit;
  5703. background-color:rgba(255, 255, 255, 0);
  5704. border-radius:0px;
  5705. filter:drop-shadow(none);
  5706. transition:none;
  5707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5708. font-weight:400;
  5709. font-style:normal;
  5710. font-size:12px;
  5711. color:#AAAAAA;
  5712. }
  5713. #u10798 {
  5714. border-width:0px;
  5715. position:absolute;
  5716. left:27px;
  5717. top:222px;
  5718. width:49px;
  5719. height:17px;
  5720. display:flex;
  5721. transition:none;
  5722. transform-origin:50% 50%;
  5723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5724. font-weight:400;
  5725. font-style:normal;
  5726. font-size:12px;
  5727. color:#AAAAAA;
  5728. }
  5729. #u10798 .text {
  5730. position:absolute;
  5731. align-self:flex-start;
  5732. padding:0px 0px 0px 0px;
  5733. box-sizing:border-box;
  5734. width:100%;
  5735. }
  5736. #u10798_text {
  5737. border-width:0px;
  5738. white-space:nowrap;
  5739. text-transform:none;
  5740. }
  5741. #u10799 {
  5742. border-width:0px;
  5743. position:absolute;
  5744. left:0px;
  5745. top:200px;
  5746. width:200px;
  5747. height:1px;
  5748. display:flex;
  5749. transition:none;
  5750. }
  5751. #u10799 .text {
  5752. position:absolute;
  5753. align-self:center;
  5754. padding:2px 2px 2px 2px;
  5755. box-sizing:border-box;
  5756. width:100%;
  5757. }
  5758. #u10799_img {
  5759. border-width:0px;
  5760. position:absolute;
  5761. left:0px;
  5762. top:0px;
  5763. width:201px;
  5764. height:2px;
  5765. }
  5766. #u10799_text {
  5767. border-width:0px;
  5768. word-wrap:break-word;
  5769. text-transform:none;
  5770. visibility:hidden;
  5771. }
  5772. #u10800_div {
  5773. border-width:0px;
  5774. position:absolute;
  5775. left:0px;
  5776. top:0px;
  5777. width:65px;
  5778. height:22px;
  5779. background:inherit;
  5780. background-color:rgba(255, 255, 255, 0);
  5781. border-radius:0px;
  5782. filter:drop-shadow(none);
  5783. transition:none;
  5784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5785. font-weight:400;
  5786. font-style:normal;
  5787. font-size:16px;
  5788. }
  5789. #u10800 {
  5790. border-width:0px;
  5791. position:absolute;
  5792. left:27px;
  5793. top:301px;
  5794. width:65px;
  5795. height:22px;
  5796. display:flex;
  5797. transition:none;
  5798. transform-origin:50% 50%;
  5799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5800. font-weight:400;
  5801. font-style:normal;
  5802. font-size:16px;
  5803. }
  5804. #u10800 .text {
  5805. position:absolute;
  5806. align-self:flex-start;
  5807. padding:0px 0px 0px 0px;
  5808. box-sizing:border-box;
  5809. width:100%;
  5810. }
  5811. #u10800_text {
  5812. border-width:0px;
  5813. white-space:nowrap;
  5814. text-transform:none;
  5815. }
  5816. #u10801_div {
  5817. border-width:0px;
  5818. position:absolute;
  5819. left:0px;
  5820. top:0px;
  5821. width:49px;
  5822. height:17px;
  5823. background:inherit;
  5824. background-color:rgba(255, 255, 255, 0);
  5825. border-radius:0px;
  5826. filter:drop-shadow(none);
  5827. transition:none;
  5828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5829. font-weight:400;
  5830. font-style:normal;
  5831. font-size:12px;
  5832. color:#AAAAAA;
  5833. }
  5834. #u10801 {
  5835. border-width:0px;
  5836. position:absolute;
  5837. left:27px;
  5838. top:80px;
  5839. width:49px;
  5840. height:17px;
  5841. display:flex;
  5842. transition:none;
  5843. transform-origin:50% 50%;
  5844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5845. font-weight:400;
  5846. font-style:normal;
  5847. font-size:12px;
  5848. color:#AAAAAA;
  5849. }
  5850. #u10801 .text {
  5851. position:absolute;
  5852. align-self:flex-start;
  5853. padding:0px 0px 0px 0px;
  5854. box-sizing:border-box;
  5855. width:100%;
  5856. }
  5857. #u10801_text {
  5858. border-width:0px;
  5859. white-space:nowrap;
  5860. text-transform:none;
  5861. }
  5862. #u10802_div {
  5863. border-width:0px;
  5864. position:absolute;
  5865. left:0px;
  5866. top:0px;
  5867. width:65px;
  5868. height:22px;
  5869. background:inherit;
  5870. background-color:rgba(255, 255, 255, 0);
  5871. border-radius:0px;
  5872. filter:drop-shadow(none);
  5873. transition:none;
  5874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5875. font-weight:400;
  5876. font-style:normal;
  5877. font-size:16px;
  5878. }
  5879. #u10802 {
  5880. border-width:0px;
  5881. position:absolute;
  5882. left:27px;
  5883. top:343px;
  5884. width:65px;
  5885. height:22px;
  5886. display:flex;
  5887. transition:none;
  5888. transform-origin:50% 50%;
  5889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5890. font-weight:400;
  5891. font-style:normal;
  5892. font-size:16px;
  5893. }
  5894. #u10802 .text {
  5895. position:absolute;
  5896. align-self:flex-start;
  5897. padding:0px 0px 0px 0px;
  5898. box-sizing:border-box;
  5899. width:100%;
  5900. }
  5901. #u10802_text {
  5902. border-width:0px;
  5903. white-space:nowrap;
  5904. text-transform:none;
  5905. }
  5906. #u10803_div {
  5907. border-width:0px;
  5908. position:absolute;
  5909. left:0px;
  5910. top:0px;
  5911. width:65px;
  5912. height:22px;
  5913. background:inherit;
  5914. background-color:rgba(255, 255, 255, 0);
  5915. border-radius:0px;
  5916. filter:drop-shadow(none);
  5917. transition:none;
  5918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5919. font-weight:400;
  5920. font-style:normal;
  5921. font-size:16px;
  5922. }
  5923. #u10803 {
  5924. border-width:0px;
  5925. position:absolute;
  5926. left:27px;
  5927. top:153px;
  5928. width:65px;
  5929. height:22px;
  5930. display:flex;
  5931. transition:none;
  5932. transform-origin:50% 50%;
  5933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5934. font-weight:400;
  5935. font-style:normal;
  5936. font-size:16px;
  5937. }
  5938. #u10803 .text {
  5939. position:absolute;
  5940. align-self:flex-start;
  5941. padding:0px 0px 0px 0px;
  5942. box-sizing:border-box;
  5943. width:100%;
  5944. }
  5945. #u10803_text {
  5946. border-width:0px;
  5947. white-space:nowrap;
  5948. text-transform:none;
  5949. }
  5950. #u10804 {
  5951. border-width:0px;
  5952. position:absolute;
  5953. left:0px;
  5954. top:0px;
  5955. width:0px;
  5956. height:0px;
  5957. }
  5958. #u10805_div {
  5959. border-width:0px;
  5960. position:absolute;
  5961. left:0px;
  5962. top:0px;
  5963. width:140px;
  5964. height:30px;
  5965. background:inherit;
  5966. background-color:rgba(255, 255, 255, 1);
  5967. box-sizing:border-box;
  5968. border-width:1px;
  5969. border-style:solid;
  5970. border-color:rgba(215, 215, 215, 1);
  5971. border-radius:4px;
  5972. filter:drop-shadow(none);
  5973. transition:none;
  5974. font-size:12px;
  5975. }
  5976. #u10805 {
  5977. border-width:0px;
  5978. position:absolute;
  5979. left:3060px;
  5980. top:60px;
  5981. width:140px;
  5982. height:30px;
  5983. display:flex;
  5984. transition:none;
  5985. transform-origin:50% 50%;
  5986. font-size:12px;
  5987. }
  5988. #u10805 .text {
  5989. position:absolute;
  5990. align-self:center;
  5991. padding:2px 2px 2px 2px;
  5992. box-sizing:border-box;
  5993. width:100%;
  5994. }
  5995. #u10805_text {
  5996. border-width:0px;
  5997. word-wrap:break-word;
  5998. text-transform:none;
  5999. visibility:hidden;
  6000. }
  6001. #u10806_input {
  6002. position:absolute;
  6003. left:0px;
  6004. top:0px;
  6005. width:134px;
  6006. height:23px;
  6007. padding:2px 2px 2px 2px;
  6008. font-family:'ArialMT', 'Arial', sans-serif;
  6009. font-weight:400;
  6010. font-style:normal;
  6011. font-size:12px;
  6012. letter-spacing:normal;
  6013. color:#AAAAAA;
  6014. vertical-align:none;
  6015. text-align:left;
  6016. text-transform:none;
  6017. background-color:transparent;
  6018. border-color:transparent;
  6019. }
  6020. #u10806_input.disabled {
  6021. position:absolute;
  6022. left:0px;
  6023. top:0px;
  6024. width:134px;
  6025. height:23px;
  6026. padding:2px 2px 2px 2px;
  6027. font-family:'ArialMT', 'Arial', sans-serif;
  6028. font-weight:400;
  6029. font-style:normal;
  6030. font-size:12px;
  6031. letter-spacing:normal;
  6032. color:#AAAAAA;
  6033. vertical-align:none;
  6034. text-align:left;
  6035. text-transform:none;
  6036. background-color:transparent;
  6037. border-color:transparent;
  6038. }
  6039. #u10806_div {
  6040. border-width:0px;
  6041. position:absolute;
  6042. left:0px;
  6043. top:0px;
  6044. width:134px;
  6045. height:23px;
  6046. background:inherit;
  6047. background-color:rgba(255, 255, 255, 1);
  6048. border-radius:0px;
  6049. filter:drop-shadow(none);
  6050. transition:none;
  6051. font-size:12px;
  6052. color:#AAAAAA;
  6053. }
  6054. #u10806 {
  6055. border-width:0px;
  6056. position:absolute;
  6057. left:3064px;
  6058. top:62px;
  6059. width:134px;
  6060. height:23px;
  6061. display:flex;
  6062. transition:none;
  6063. transform-origin:50% 50%;
  6064. font-size:12px;
  6065. color:#AAAAAA;
  6066. }
  6067. #u10806 .text {
  6068. position:absolute;
  6069. align-self:flex-start;
  6070. padding:2px 2px 2px 2px;
  6071. box-sizing:border-box;
  6072. width:100%;
  6073. }
  6074. #u10806_div.disabled {
  6075. border-width:0px;
  6076. position:absolute;
  6077. left:0px;
  6078. top:0px;
  6079. width:134px;
  6080. height:23px;
  6081. background:inherit;
  6082. background-color:rgba(240, 240, 240, 1);
  6083. border-radius:0px;
  6084. filter:drop-shadow(none);
  6085. transition:none;
  6086. font-size:12px;
  6087. color:#AAAAAA;
  6088. }
  6089. #u10806.disabled {
  6090. }
  6091. .u10806_input_option {
  6092. font-size:12px;
  6093. }
  6094. #u10807_div {
  6095. border-width:0px;
  6096. position:absolute;
  6097. left:0px;
  6098. top:0px;
  6099. width:379px;
  6100. height:20px;
  6101. background:inherit;
  6102. background-color:rgba(255, 255, 255, 0);
  6103. border-left:0px;
  6104. border-top:0px;
  6105. border-right:0px;
  6106. border-radius:0px;
  6107. border-bottom-right-radius:0px;
  6108. border-bottom-left-radius:0px;
  6109. filter:drop-shadow(none);
  6110. transition:none;
  6111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6112. font-weight:400;
  6113. font-style:normal;
  6114. font-size:14px;
  6115. color:#7F7F7F;
  6116. }
  6117. #u10807 {
  6118. border-width:0px;
  6119. position:absolute;
  6120. left:1972px;
  6121. top:100px;
  6122. width:379px;
  6123. height:20px;
  6124. display:flex;
  6125. transition:none;
  6126. transform-origin:50% 50%;
  6127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6128. font-weight:400;
  6129. font-style:normal;
  6130. font-size:14px;
  6131. color:#7F7F7F;
  6132. }
  6133. #u10807 .text {
  6134. position:absolute;
  6135. align-self:center;
  6136. padding:0px 0px 0px 0px;
  6137. box-sizing:border-box;
  6138. width:100%;
  6139. }
  6140. #u10807_text {
  6141. border-width:0px;
  6142. white-space:nowrap;
  6143. text-transform:none;
  6144. }
  6145. #u10808 {
  6146. border-width:0px;
  6147. position:absolute;
  6148. left:2134px;
  6149. top:344px;
  6150. width:27px;
  6151. height:40px;
  6152. display:flex;
  6153. transition:none;
  6154. }
  6155. #u10808 .text {
  6156. position:absolute;
  6157. align-self:center;
  6158. padding:2px 2px 2px 2px;
  6159. box-sizing:border-box;
  6160. width:100%;
  6161. }
  6162. #u10808_img {
  6163. border-width:0px;
  6164. position:absolute;
  6165. left:0px;
  6166. top:0px;
  6167. width:27px;
  6168. height:40px;
  6169. }
  6170. #u10808_text {
  6171. border-width:0px;
  6172. word-wrap:break-word;
  6173. text-transform:none;
  6174. visibility:hidden;
  6175. }
  6176. #u10809 {
  6177. border-width:0px;
  6178. position:absolute;
  6179. left:0px;
  6180. top:0px;
  6181. width:0px;
  6182. height:0px;
  6183. }
  6184. #u10810_div {
  6185. border-width:0px;
  6186. position:absolute;
  6187. left:0px;
  6188. top:0px;
  6189. width:320px;
  6190. height:58px;
  6191. background:inherit;
  6192. background-color:rgba(255, 255, 255, 1);
  6193. border-radius:3px;
  6194. filter:drop-shadow(none);
  6195. transition:none;
  6196. }
  6197. #u10810 {
  6198. border-width:0px;
  6199. position:absolute;
  6200. left:2172px;
  6201. top:309px;
  6202. width:320px;
  6203. height:58px;
  6204. display:flex;
  6205. transition:none;
  6206. transform-origin:50% 50%;
  6207. }
  6208. #u10810 .text {
  6209. position:absolute;
  6210. align-self:center;
  6211. padding:2px 2px 2px 2px;
  6212. box-sizing:border-box;
  6213. width:100%;
  6214. }
  6215. #u10810_text {
  6216. border-width:0px;
  6217. word-wrap:break-word;
  6218. text-transform:none;
  6219. visibility:hidden;
  6220. }
  6221. #u10811_div {
  6222. border-width:0px;
  6223. position:absolute;
  6224. left:0px;
  6225. top:0px;
  6226. width:109px;
  6227. height:25px;
  6228. background:inherit;
  6229. background-color:rgba(255, 255, 255, 0);
  6230. border-radius:0px;
  6231. filter:drop-shadow(none);
  6232. transition:none;
  6233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6234. font-weight:400;
  6235. font-style:normal;
  6236. font-size:18px;
  6237. }
  6238. #u10811 {
  6239. border-width:0px;
  6240. position:absolute;
  6241. left:2200px;
  6242. top:326px;
  6243. width:109px;
  6244. height:25px;
  6245. display:flex;
  6246. transition:none;
  6247. transform-origin:50% 50%;
  6248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6249. font-weight:400;
  6250. font-style:normal;
  6251. font-size:18px;
  6252. }
  6253. #u10811 .text {
  6254. position:absolute;
  6255. align-self:flex-start;
  6256. padding:0px 0px 0px 0px;
  6257. box-sizing:border-box;
  6258. width:100%;
  6259. }
  6260. #u10811_text {
  6261. border-width:0px;
  6262. white-space:nowrap;
  6263. text-transform:none;
  6264. }
  6265. #u10812_div {
  6266. border-width:0px;
  6267. position:absolute;
  6268. left:0px;
  6269. top:0px;
  6270. width:58px;
  6271. height:30px;
  6272. background:inherit;
  6273. background-color:rgba(255, 255, 255, 0);
  6274. box-sizing:border-box;
  6275. border-width:1px;
  6276. border-style:solid;
  6277. border-color:rgba(217, 0, 27, 1);
  6278. border-radius:4px;
  6279. filter:drop-shadow(none);
  6280. transition:none;
  6281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6282. font-weight:400;
  6283. font-style:normal;
  6284. font-size:14px;
  6285. color:#D9001B;
  6286. }
  6287. #u10812 {
  6288. border-width:0px;
  6289. position:absolute;
  6290. left:2414px;
  6291. top:323px;
  6292. width:58px;
  6293. height:30px;
  6294. display:flex;
  6295. transition:none;
  6296. transform-origin:50% 50%;
  6297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6298. font-weight:400;
  6299. font-style:normal;
  6300. font-size:14px;
  6301. color:#D9001B;
  6302. }
  6303. #u10812 .text {
  6304. position:absolute;
  6305. align-self:center;
  6306. padding:5px 15px 5px 15px;
  6307. box-sizing:border-box;
  6308. width:100%;
  6309. }
  6310. #u10812_text {
  6311. border-width:0px;
  6312. word-wrap:break-word;
  6313. text-transform:none;
  6314. }
  6315. #u10813 {
  6316. border-width:0px;
  6317. position:absolute;
  6318. left:2643px;
  6319. top:290px;
  6320. width:27px;
  6321. height:40px;
  6322. display:flex;
  6323. transition:none;
  6324. }
  6325. #u10813 .text {
  6326. position:absolute;
  6327. align-self:center;
  6328. padding:2px 2px 2px 2px;
  6329. box-sizing:border-box;
  6330. width:100%;
  6331. }
  6332. #u10813_img {
  6333. border-width:0px;
  6334. position:absolute;
  6335. left:0px;
  6336. top:0px;
  6337. width:27px;
  6338. height:40px;
  6339. }
  6340. #u10813_text {
  6341. border-width:0px;
  6342. word-wrap:break-word;
  6343. text-transform:none;
  6344. visibility:hidden;
  6345. }
  6346. #u10814 {
  6347. border-width:0px;
  6348. position:absolute;
  6349. left:0px;
  6350. top:0px;
  6351. width:0px;
  6352. height:0px;
  6353. }
  6354. #u10815_div {
  6355. border-width:0px;
  6356. position:absolute;
  6357. left:0px;
  6358. top:0px;
  6359. width:320px;
  6360. height:58px;
  6361. background:inherit;
  6362. background-color:rgba(255, 255, 255, 1);
  6363. border-radius:3px;
  6364. filter:drop-shadow(none);
  6365. transition:none;
  6366. }
  6367. #u10815 {
  6368. border-width:0px;
  6369. position:absolute;
  6370. left:2681px;
  6371. top:255px;
  6372. width:320px;
  6373. height:58px;
  6374. display:flex;
  6375. transition:none;
  6376. transform-origin:50% 50%;
  6377. }
  6378. #u10815 .text {
  6379. position:absolute;
  6380. align-self:center;
  6381. padding:2px 2px 2px 2px;
  6382. box-sizing:border-box;
  6383. width:100%;
  6384. }
  6385. #u10815_text {
  6386. border-width:0px;
  6387. word-wrap:break-word;
  6388. text-transform:none;
  6389. visibility:hidden;
  6390. }
  6391. #u10816_div {
  6392. border-width:0px;
  6393. position:absolute;
  6394. left:0px;
  6395. top:0px;
  6396. width:109px;
  6397. height:25px;
  6398. background:inherit;
  6399. background-color:rgba(255, 255, 255, 0);
  6400. border-radius:0px;
  6401. filter:drop-shadow(none);
  6402. transition:none;
  6403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6404. font-weight:400;
  6405. font-style:normal;
  6406. font-size:18px;
  6407. }
  6408. #u10816 {
  6409. border-width:0px;
  6410. position:absolute;
  6411. left:2709px;
  6412. top:272px;
  6413. width:109px;
  6414. height:25px;
  6415. display:flex;
  6416. transition:none;
  6417. transform-origin:50% 50%;
  6418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6419. font-weight:400;
  6420. font-style:normal;
  6421. font-size:18px;
  6422. }
  6423. #u10816 .text {
  6424. position:absolute;
  6425. align-self:flex-start;
  6426. padding:0px 0px 0px 0px;
  6427. box-sizing:border-box;
  6428. width:100%;
  6429. }
  6430. #u10816_text {
  6431. border-width:0px;
  6432. white-space:nowrap;
  6433. text-transform:none;
  6434. }
  6435. #u10817_div {
  6436. border-width:0px;
  6437. position:absolute;
  6438. left:0px;
  6439. top:0px;
  6440. width:58px;
  6441. height:30px;
  6442. background:inherit;
  6443. background-color:rgba(255, 255, 255, 0);
  6444. box-sizing:border-box;
  6445. border-width:1px;
  6446. border-style:solid;
  6447. border-color:rgba(24, 144, 255, 1);
  6448. border-radius:4px;
  6449. filter:drop-shadow(none);
  6450. transition:none;
  6451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6452. font-weight:400;
  6453. font-style:normal;
  6454. font-size:14px;
  6455. color:#1890FF;
  6456. }
  6457. #u10817 {
  6458. border-width:0px;
  6459. position:absolute;
  6460. left:2923px;
  6461. top:269px;
  6462. width:58px;
  6463. height:30px;
  6464. display:flex;
  6465. transition:none;
  6466. transform-origin:50% 50%;
  6467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6468. font-weight:400;
  6469. font-style:normal;
  6470. font-size:14px;
  6471. color:#1890FF;
  6472. }
  6473. #u10817 .text {
  6474. position:absolute;
  6475. align-self:center;
  6476. padding:5px 15px 5px 15px;
  6477. box-sizing:border-box;
  6478. width:100%;
  6479. }
  6480. #u10817_text {
  6481. border-width:0px;
  6482. word-wrap:break-word;
  6483. text-transform:none;
  6484. }
  6485. #u10818 {
  6486. border-width:0px;
  6487. position:absolute;
  6488. left:2572px;
  6489. top:534px;
  6490. width:27px;
  6491. height:40px;
  6492. display:flex;
  6493. transition:none;
  6494. }
  6495. #u10818 .text {
  6496. position:absolute;
  6497. align-self:center;
  6498. padding:2px 2px 2px 2px;
  6499. box-sizing:border-box;
  6500. width:100%;
  6501. }
  6502. #u10818_img {
  6503. border-width:0px;
  6504. position:absolute;
  6505. left:0px;
  6506. top:0px;
  6507. width:27px;
  6508. height:40px;
  6509. }
  6510. #u10818_text {
  6511. border-width:0px;
  6512. word-wrap:break-word;
  6513. text-transform:none;
  6514. visibility:hidden;
  6515. }
  6516. #u10819 {
  6517. border-width:0px;
  6518. position:absolute;
  6519. left:0px;
  6520. top:0px;
  6521. width:0px;
  6522. height:0px;
  6523. }
  6524. #u10820_div {
  6525. border-width:0px;
  6526. position:absolute;
  6527. left:0px;
  6528. top:0px;
  6529. width:320px;
  6530. height:58px;
  6531. background:inherit;
  6532. background-color:rgba(255, 255, 255, 1);
  6533. border-radius:3px;
  6534. filter:drop-shadow(none);
  6535. transition:none;
  6536. }
  6537. #u10820 {
  6538. border-width:0px;
  6539. position:absolute;
  6540. left:2610px;
  6541. top:499px;
  6542. width:320px;
  6543. height:58px;
  6544. display:flex;
  6545. transition:none;
  6546. transform-origin:50% 50%;
  6547. }
  6548. #u10820 .text {
  6549. position:absolute;
  6550. align-self:center;
  6551. padding:2px 2px 2px 2px;
  6552. box-sizing:border-box;
  6553. width:100%;
  6554. }
  6555. #u10820_text {
  6556. border-width:0px;
  6557. word-wrap:break-word;
  6558. text-transform:none;
  6559. visibility:hidden;
  6560. }
  6561. #u10821_div {
  6562. border-width:0px;
  6563. position:absolute;
  6564. left:0px;
  6565. top:0px;
  6566. width:109px;
  6567. height:25px;
  6568. background:inherit;
  6569. background-color:rgba(255, 255, 255, 0);
  6570. border-radius:0px;
  6571. filter:drop-shadow(none);
  6572. transition:none;
  6573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6574. font-weight:400;
  6575. font-style:normal;
  6576. font-size:18px;
  6577. }
  6578. #u10821 {
  6579. border-width:0px;
  6580. position:absolute;
  6581. left:2638px;
  6582. top:516px;
  6583. width:109px;
  6584. height:25px;
  6585. display:flex;
  6586. transition:none;
  6587. transform-origin:50% 50%;
  6588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6589. font-weight:400;
  6590. font-style:normal;
  6591. font-size:18px;
  6592. }
  6593. #u10821 .text {
  6594. position:absolute;
  6595. align-self:flex-start;
  6596. padding:0px 0px 0px 0px;
  6597. box-sizing:border-box;
  6598. width:100%;
  6599. }
  6600. #u10821_text {
  6601. border-width:0px;
  6602. white-space:nowrap;
  6603. text-transform:none;
  6604. }
  6605. #u10822_div {
  6606. border-width:0px;
  6607. position:absolute;
  6608. left:0px;
  6609. top:0px;
  6610. width:61px;
  6611. height:30px;
  6612. background:inherit;
  6613. background-color:rgba(242, 242, 242, 1);
  6614. border-radius:29px;
  6615. filter:drop-shadow(none);
  6616. transition:none;
  6617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6618. font-weight:400;
  6619. font-style:normal;
  6620. font-size:14px;
  6621. color:#FFFFFF;
  6622. }
  6623. #u10822 {
  6624. border-width:0px;
  6625. position:absolute;
  6626. left:2788px;
  6627. top:513px;
  6628. width:61px;
  6629. height:30px;
  6630. display:flex;
  6631. transition:none;
  6632. transform-origin:50% 50%;
  6633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6634. font-weight:400;
  6635. font-style:normal;
  6636. font-size:14px;
  6637. color:#FFFFFF;
  6638. }
  6639. #u10822 .text {
  6640. position:absolute;
  6641. align-self:center;
  6642. padding:5px 15px 5px 15px;
  6643. box-sizing:border-box;
  6644. width:100%;
  6645. }
  6646. #u10822_text {
  6647. border-width:0px;
  6648. word-wrap:break-word;
  6649. text-transform:none;
  6650. visibility:hidden;
  6651. }
  6652. #u10823_div {
  6653. border-width:0px;
  6654. position:absolute;
  6655. left:0px;
  6656. top:0px;
  6657. width:28px;
  6658. height:20px;
  6659. background:inherit;
  6660. background-color:rgba(255, 255, 255, 0);
  6661. border-radius:0px;
  6662. filter:drop-shadow(none);
  6663. transition:none;
  6664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6665. font-weight:400;
  6666. font-style:normal;
  6667. }
  6668. #u10823 {
  6669. border-width:0px;
  6670. position:absolute;
  6671. left:2814px;
  6672. top:518px;
  6673. width:28px;
  6674. height:20px;
  6675. display:flex;
  6676. transition:none;
  6677. transform-origin:50% 50%;
  6678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6679. font-weight:400;
  6680. font-style:normal;
  6681. }
  6682. #u10823 .text {
  6683. position:absolute;
  6684. align-self:flex-start;
  6685. padding:0px 0px 0px 0px;
  6686. box-sizing:border-box;
  6687. width:100%;
  6688. }
  6689. #u10823_text {
  6690. border-width:0px;
  6691. white-space:nowrap;
  6692. text-transform:none;
  6693. }
  6694. #u10824 {
  6695. border-width:0px;
  6696. position:absolute;
  6697. left:2797px;
  6698. top:519px;
  6699. width:11px;
  6700. height:16px;
  6701. display:flex;
  6702. -webkit-transform:rotate(90deg);
  6703. -moz-transform:rotate(90deg);
  6704. -ms-transform:rotate(90deg);
  6705. transform:rotate(90deg);
  6706. transition:none;
  6707. }
  6708. #u10824 .text {
  6709. position:absolute;
  6710. align-self:center;
  6711. padding:2px 2px 2px 2px;
  6712. box-sizing:border-box;
  6713. width:100%;
  6714. }
  6715. #u10824_img {
  6716. border-width:0px;
  6717. position:absolute;
  6718. left:-1px;
  6719. top:-1px;
  6720. width:14px;
  6721. height:19px;
  6722. }
  6723. #u10824_text {
  6724. border-width:0px;
  6725. word-wrap:break-word;
  6726. text-transform:none;
  6727. visibility:hidden;
  6728. }
  6729. #u10825_div {
  6730. border-width:0px;
  6731. position:absolute;
  6732. left:0px;
  6733. top:0px;
  6734. width:58px;
  6735. height:30px;
  6736. background:inherit;
  6737. background-color:rgba(255, 255, 255, 0);
  6738. box-sizing:border-box;
  6739. border-width:1px;
  6740. border-style:solid;
  6741. border-color:rgba(245, 154, 35, 1);
  6742. border-radius:4px;
  6743. filter:drop-shadow(none);
  6744. transition:none;
  6745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6746. font-weight:400;
  6747. font-style:normal;
  6748. font-size:14px;
  6749. color:#F59A23;
  6750. }
  6751. #u10825 {
  6752. border-width:0px;
  6753. position:absolute;
  6754. left:2859px;
  6755. top:513px;
  6756. width:58px;
  6757. height:30px;
  6758. display:flex;
  6759. transition:none;
  6760. transform-origin:50% 50%;
  6761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6762. font-weight:400;
  6763. font-style:normal;
  6764. font-size:14px;
  6765. color:#F59A23;
  6766. }
  6767. #u10825 .text {
  6768. position:absolute;
  6769. align-self:center;
  6770. padding:5px 15px 5px 15px;
  6771. box-sizing:border-box;
  6772. width:100%;
  6773. }
  6774. #u10825_text {
  6775. border-width:0px;
  6776. word-wrap:break-word;
  6777. text-transform:none;
  6778. }
  6779. #u10826_div {
  6780. border-width:0px;
  6781. position:absolute;
  6782. left:0px;
  6783. top:0px;
  6784. width:73px;
  6785. height:25px;
  6786. background:inherit;
  6787. background-color:rgba(255, 255, 255, 0);
  6788. border-radius:0px;
  6789. filter:drop-shadow(none);
  6790. transition:none;
  6791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6792. font-weight:400;
  6793. font-style:normal;
  6794. font-size:18px;
  6795. color:#1890FF;
  6796. }
  6797. #u10826 {
  6798. border-width:0px;
  6799. position:absolute;
  6800. left:2072px;
  6801. top:60px;
  6802. width:73px;
  6803. height:25px;
  6804. display:flex;
  6805. transition:none;
  6806. transform-origin:50% 50%;
  6807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6808. font-weight:400;
  6809. font-style:normal;
  6810. font-size:18px;
  6811. color:#1890FF;
  6812. }
  6813. #u10826 .text {
  6814. position:absolute;
  6815. align-self:flex-start;
  6816. padding:0px 0px 0px 0px;
  6817. box-sizing:border-box;
  6818. width:100%;
  6819. }
  6820. #u10826_text {
  6821. border-width:0px;
  6822. white-space:nowrap;
  6823. text-transform:none;
  6824. }
  6825. #u10827_div {
  6826. border-width:0px;
  6827. position:absolute;
  6828. left:0px;
  6829. top:0px;
  6830. width:73px;
  6831. height:25px;
  6832. background:inherit;
  6833. background-color:rgba(255, 255, 255, 0);
  6834. border-radius:0px;
  6835. filter:drop-shadow(none);
  6836. transition:none;
  6837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6838. font-weight:400;
  6839. font-style:normal;
  6840. font-size:18px;
  6841. }
  6842. #u10827 {
  6843. border-width:0px;
  6844. position:absolute;
  6845. left:2175px;
  6846. top:60px;
  6847. width:73px;
  6848. height:25px;
  6849. display:flex;
  6850. transition:none;
  6851. transform-origin:50% 50%;
  6852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6853. font-weight:400;
  6854. font-style:normal;
  6855. font-size:18px;
  6856. }
  6857. #u10827 .text {
  6858. position:absolute;
  6859. align-self:flex-start;
  6860. padding:0px 0px 0px 0px;
  6861. box-sizing:border-box;
  6862. width:100%;
  6863. }
  6864. #u10827_text {
  6865. border-width:0px;
  6866. white-space:nowrap;
  6867. text-transform:none;
  6868. }
  6869. #u10828 {
  6870. border-width:0px;
  6871. position:absolute;
  6872. left:1614px;
  6873. top:1291px;
  6874. width:1600px;
  6875. height:1250px;
  6876. }
  6877. #u10829_div {
  6878. border-width:0px;
  6879. position:absolute;
  6880. left:0px;
  6881. top:0px;
  6882. width:1480px;
  6883. height:1200px;
  6884. background:inherit;
  6885. background-color:rgba(242, 242, 242, 1);
  6886. border-radius:0px;
  6887. filter:drop-shadow(none);
  6888. transition:none;
  6889. }
  6890. #u10829 {
  6891. border-width:0px;
  6892. position:absolute;
  6893. left:120px;
  6894. top:50px;
  6895. width:1480px;
  6896. height:1200px;
  6897. display:flex;
  6898. transition:none;
  6899. transform-origin:50% 50%;
  6900. }
  6901. #u10829 .text {
  6902. position:absolute;
  6903. align-self:center;
  6904. padding:2px 2px 2px 2px;
  6905. box-sizing:border-box;
  6906. width:100%;
  6907. }
  6908. #u10829_text {
  6909. border-width:0px;
  6910. word-wrap:break-word;
  6911. text-transform:none;
  6912. visibility:hidden;
  6913. }
  6914. #u10830_div {
  6915. border-width:0px;
  6916. position:absolute;
  6917. left:0px;
  6918. top:0px;
  6919. width:129px;
  6920. height:22px;
  6921. background:inherit;
  6922. background-color:rgba(255, 255, 255, 0);
  6923. border-radius:0px;
  6924. filter:drop-shadow(none);
  6925. transition:none;
  6926. font-size:16px;
  6927. color:#FFFFFF;
  6928. }
  6929. #u10830 {
  6930. border-width:0px;
  6931. position:absolute;
  6932. left:49px;
  6933. top:14px;
  6934. width:129px;
  6935. height:22px;
  6936. display:flex;
  6937. transition:none;
  6938. transform-origin:50% 50%;
  6939. font-size:16px;
  6940. color:#FFFFFF;
  6941. }
  6942. #u10830 .text {
  6943. position:absolute;
  6944. align-self:flex-start;
  6945. padding:0px 0px 0px 0px;
  6946. box-sizing:border-box;
  6947. width:100%;
  6948. }
  6949. #u10830_text {
  6950. border-width:0px;
  6951. white-space:nowrap;
  6952. text-transform:none;
  6953. }
  6954. #u10831_div {
  6955. border-width:0px;
  6956. position:absolute;
  6957. left:0px;
  6958. top:0px;
  6959. width:1600px;
  6960. height:50px;
  6961. background:inherit;
  6962. background-color:rgba(30, 42, 68, 1);
  6963. border-radius:0px;
  6964. filter:drop-shadow(none);
  6965. transition:none;
  6966. color:#AFB3B6;
  6967. }
  6968. #u10831 {
  6969. border-width:0px;
  6970. position:absolute;
  6971. left:0px;
  6972. top:0px;
  6973. width:1600px;
  6974. height:50px;
  6975. display:flex;
  6976. transition:none;
  6977. transform-origin:50% 50%;
  6978. color:#AFB3B6;
  6979. }
  6980. #u10831 .text {
  6981. position:absolute;
  6982. align-self:center;
  6983. padding:2px 2px 2px 2px;
  6984. box-sizing:border-box;
  6985. width:100%;
  6986. }
  6987. #u10831_text {
  6988. border-width:0px;
  6989. word-wrap:break-word;
  6990. text-transform:none;
  6991. visibility:hidden;
  6992. }
  6993. #u10832 {
  6994. border-width:0px;
  6995. position:absolute;
  6996. left:0px;
  6997. top:0px;
  6998. width:0px;
  6999. height:0px;
  7000. }
  7001. #u10833 {
  7002. border-width:0px;
  7003. position:absolute;
  7004. left:19px;
  7005. top:10px;
  7006. width:31px;
  7007. height:31px;
  7008. display:flex;
  7009. transition:none;
  7010. }
  7011. #u10833 .text {
  7012. position:absolute;
  7013. align-self:center;
  7014. padding:2px 2px 2px 2px;
  7015. box-sizing:border-box;
  7016. width:100%;
  7017. }
  7018. #u10833_img {
  7019. border-width:0px;
  7020. position:absolute;
  7021. left:0px;
  7022. top:0px;
  7023. width:31px;
  7024. height:31px;
  7025. }
  7026. #u10833_text {
  7027. border-width:0px;
  7028. word-wrap:break-word;
  7029. text-transform:none;
  7030. }
  7031. #u10834_div {
  7032. border-width:0px;
  7033. position:absolute;
  7034. left:0px;
  7035. top:0px;
  7036. width:161px;
  7037. height:22px;
  7038. background:inherit;
  7039. background-color:rgba(255, 255, 255, 0);
  7040. border-radius:0px;
  7041. filter:drop-shadow(none);
  7042. transition:none;
  7043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7044. font-weight:400;
  7045. font-style:normal;
  7046. font-size:16px;
  7047. color:#FFFFFF;
  7048. }
  7049. #u10834 {
  7050. border-width:0px;
  7051. position:absolute;
  7052. left:62px;
  7053. top:14px;
  7054. width:161px;
  7055. height:22px;
  7056. display:flex;
  7057. transition:none;
  7058. transform-origin:50% 50%;
  7059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7060. font-weight:400;
  7061. font-style:normal;
  7062. font-size:16px;
  7063. color:#FFFFFF;
  7064. }
  7065. #u10834 .text {
  7066. position:absolute;
  7067. align-self:flex-start;
  7068. padding:0px 0px 0px 0px;
  7069. box-sizing:border-box;
  7070. width:100%;
  7071. }
  7072. #u10834_text {
  7073. border-width:0px;
  7074. white-space:nowrap;
  7075. text-transform:none;
  7076. }
  7077. #u10835_div {
  7078. border-width:0px;
  7079. position:absolute;
  7080. left:0px;
  7081. top:0px;
  7082. width:120px;
  7083. height:1200px;
  7084. background:inherit;
  7085. background-color:rgba(30, 42, 68, 1);
  7086. border-radius:0px;
  7087. filter:drop-shadow(none);
  7088. transition:none;
  7089. color:#AFB3B6;
  7090. }
  7091. #u10835 {
  7092. border-width:0px;
  7093. position:absolute;
  7094. left:0px;
  7095. top:47px;
  7096. width:120px;
  7097. height:1200px;
  7098. display:flex;
  7099. transition:none;
  7100. transform-origin:50% 50%;
  7101. color:#AFB3B6;
  7102. }
  7103. #u10835 .text {
  7104. position:absolute;
  7105. align-self:center;
  7106. padding:2px 2px 2px 2px;
  7107. box-sizing:border-box;
  7108. width:100%;
  7109. }
  7110. #u10835_text {
  7111. border-width:0px;
  7112. word-wrap:break-word;
  7113. text-transform:none;
  7114. visibility:hidden;
  7115. }
  7116. #u10836 {
  7117. border-width:0px;
  7118. position:absolute;
  7119. left:0px;
  7120. top:0px;
  7121. width:0px;
  7122. height:0px;
  7123. }
  7124. #u10837_div {
  7125. border-width:0px;
  7126. position:absolute;
  7127. left:0px;
  7128. top:0px;
  7129. width:33px;
  7130. height:22px;
  7131. background:inherit;
  7132. background-color:rgba(255, 255, 255, 0);
  7133. border-radius:0px;
  7134. filter:drop-shadow(none);
  7135. transition:none;
  7136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7137. font-weight:400;
  7138. font-style:normal;
  7139. font-size:16px;
  7140. color:#FFFFFF;
  7141. }
  7142. #u10837 {
  7143. border-width:0px;
  7144. position:absolute;
  7145. left:39px;
  7146. top:171px;
  7147. width:33px;
  7148. height:22px;
  7149. display:flex;
  7150. transition:none;
  7151. transform-origin:50% 50%;
  7152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7153. font-weight:400;
  7154. font-style:normal;
  7155. font-size:16px;
  7156. color:#FFFFFF;
  7157. }
  7158. #u10837 .text {
  7159. position:absolute;
  7160. align-self:flex-start;
  7161. padding:0px 0px 0px 0px;
  7162. box-sizing:border-box;
  7163. width:100%;
  7164. }
  7165. #u10837_text {
  7166. border-width:0px;
  7167. white-space:nowrap;
  7168. text-transform:none;
  7169. }
  7170. #u10838 {
  7171. border-width:0px;
  7172. position:absolute;
  7173. left:20px;
  7174. top:175px;
  7175. width:14px;
  7176. height:14px;
  7177. display:flex;
  7178. transition:none;
  7179. }
  7180. #u10838 .text {
  7181. position:absolute;
  7182. align-self:center;
  7183. padding:2px 2px 2px 2px;
  7184. box-sizing:border-box;
  7185. width:100%;
  7186. }
  7187. #u10838_img {
  7188. border-width:0px;
  7189. position:absolute;
  7190. left:0px;
  7191. top:0px;
  7192. width:14px;
  7193. height:14px;
  7194. }
  7195. #u10838_text {
  7196. border-width:0px;
  7197. word-wrap:break-word;
  7198. text-transform:none;
  7199. visibility:hidden;
  7200. }
  7201. #u10839 {
  7202. border-width:0px;
  7203. position:absolute;
  7204. left:0px;
  7205. top:0px;
  7206. width:0px;
  7207. height:0px;
  7208. }
  7209. #u10840_div {
  7210. border-width:0px;
  7211. position:absolute;
  7212. left:0px;
  7213. top:0px;
  7214. width:33px;
  7215. height:22px;
  7216. background:inherit;
  7217. background-color:rgba(255, 255, 255, 0);
  7218. border-radius:0px;
  7219. filter:drop-shadow(none);
  7220. transition:none;
  7221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7222. font-weight:400;
  7223. font-style:normal;
  7224. font-size:16px;
  7225. color:#FFFFFF;
  7226. }
  7227. #u10840 {
  7228. border-width:0px;
  7229. position:absolute;
  7230. left:39px;
  7231. top:381px;
  7232. width:33px;
  7233. height:22px;
  7234. display:flex;
  7235. transition:none;
  7236. transform-origin:50% 50%;
  7237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7238. font-weight:400;
  7239. font-style:normal;
  7240. font-size:16px;
  7241. color:#FFFFFF;
  7242. }
  7243. #u10840 .text {
  7244. position:absolute;
  7245. align-self:flex-start;
  7246. padding:0px 0px 0px 0px;
  7247. box-sizing:border-box;
  7248. width:100%;
  7249. }
  7250. #u10840_text {
  7251. border-width:0px;
  7252. white-space:nowrap;
  7253. text-transform:none;
  7254. }
  7255. #u10841 {
  7256. border-width:0px;
  7257. position:absolute;
  7258. left:20px;
  7259. top:385px;
  7260. width:14px;
  7261. height:14px;
  7262. display:flex;
  7263. transition:none;
  7264. }
  7265. #u10841 .text {
  7266. position:absolute;
  7267. align-self:center;
  7268. padding:2px 2px 2px 2px;
  7269. box-sizing:border-box;
  7270. width:100%;
  7271. }
  7272. #u10841_img {
  7273. border-width:0px;
  7274. position:absolute;
  7275. left:0px;
  7276. top:0px;
  7277. width:14px;
  7278. height:14px;
  7279. }
  7280. #u10841_text {
  7281. border-width:0px;
  7282. word-wrap:break-word;
  7283. text-transform:none;
  7284. visibility:hidden;
  7285. }
  7286. #u10842 {
  7287. border-width:0px;
  7288. position:absolute;
  7289. left:0px;
  7290. top:0px;
  7291. width:0px;
  7292. height:0px;
  7293. }
  7294. #u10843_div {
  7295. border-width:0px;
  7296. position:absolute;
  7297. left:0px;
  7298. top:0px;
  7299. width:49px;
  7300. height:22px;
  7301. background:inherit;
  7302. background-color:rgba(255, 255, 255, 0);
  7303. border-radius:0px;
  7304. filter:drop-shadow(none);
  7305. transition:none;
  7306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7307. font-weight:400;
  7308. font-style:normal;
  7309. font-size:16px;
  7310. color:#FFFFFF;
  7311. }
  7312. #u10843 {
  7313. border-width:0px;
  7314. position:absolute;
  7315. left:39px;
  7316. top:133px;
  7317. width:49px;
  7318. height:22px;
  7319. display:flex;
  7320. transition:none;
  7321. transform-origin:50% 50%;
  7322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7323. font-weight:400;
  7324. font-style:normal;
  7325. font-size:16px;
  7326. color:#FFFFFF;
  7327. }
  7328. #u10843 .text {
  7329. position:absolute;
  7330. align-self:flex-start;
  7331. padding:0px 0px 0px 0px;
  7332. box-sizing:border-box;
  7333. width:100%;
  7334. }
  7335. #u10843_text {
  7336. border-width:0px;
  7337. white-space:nowrap;
  7338. text-transform:none;
  7339. }
  7340. #u10844 {
  7341. border-width:0px;
  7342. position:absolute;
  7343. left:20px;
  7344. top:137px;
  7345. width:14px;
  7346. height:14px;
  7347. display:flex;
  7348. transition:none;
  7349. }
  7350. #u10844 .text {
  7351. position:absolute;
  7352. align-self:center;
  7353. padding:2px 2px 2px 2px;
  7354. box-sizing:border-box;
  7355. width:100%;
  7356. }
  7357. #u10844_img {
  7358. border-width:0px;
  7359. position:absolute;
  7360. left:0px;
  7361. top:0px;
  7362. width:14px;
  7363. height:14px;
  7364. }
  7365. #u10844_text {
  7366. border-width:0px;
  7367. word-wrap:break-word;
  7368. text-transform:none;
  7369. visibility:hidden;
  7370. }
  7371. #u10845 {
  7372. border-width:0px;
  7373. position:absolute;
  7374. left:0px;
  7375. top:0px;
  7376. width:0px;
  7377. height:0px;
  7378. }
  7379. #u10846_div {
  7380. border-width:0px;
  7381. position:absolute;
  7382. left:0px;
  7383. top:0px;
  7384. width:33px;
  7385. height:22px;
  7386. background:inherit;
  7387. background-color:rgba(255, 255, 255, 0);
  7388. border-radius:0px;
  7389. filter:drop-shadow(none);
  7390. transition:none;
  7391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7392. font-weight:400;
  7393. font-style:normal;
  7394. font-size:16px;
  7395. color:#FFFFFF;
  7396. }
  7397. #u10846 {
  7398. border-width:0px;
  7399. position:absolute;
  7400. left:39px;
  7401. top:423px;
  7402. width:33px;
  7403. height:22px;
  7404. display:flex;
  7405. transition:none;
  7406. transform-origin:50% 50%;
  7407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7408. font-weight:400;
  7409. font-style:normal;
  7410. font-size:16px;
  7411. color:#FFFFFF;
  7412. }
  7413. #u10846 .text {
  7414. position:absolute;
  7415. align-self:flex-start;
  7416. padding:0px 0px 0px 0px;
  7417. box-sizing:border-box;
  7418. width:100%;
  7419. }
  7420. #u10846_text {
  7421. border-width:0px;
  7422. white-space:nowrap;
  7423. text-transform:none;
  7424. }
  7425. #u10847 {
  7426. border-width:0px;
  7427. position:absolute;
  7428. left:20px;
  7429. top:427px;
  7430. width:14px;
  7431. height:14px;
  7432. display:flex;
  7433. transition:none;
  7434. }
  7435. #u10847 .text {
  7436. position:absolute;
  7437. align-self:center;
  7438. padding:2px 2px 2px 2px;
  7439. box-sizing:border-box;
  7440. width:100%;
  7441. }
  7442. #u10847_img {
  7443. border-width:0px;
  7444. position:absolute;
  7445. left:0px;
  7446. top:0px;
  7447. width:14px;
  7448. height:14px;
  7449. }
  7450. #u10847_text {
  7451. border-width:0px;
  7452. word-wrap:break-word;
  7453. text-transform:none;
  7454. visibility:hidden;
  7455. }
  7456. #u10848 {
  7457. border-width:0px;
  7458. position:absolute;
  7459. left:0px;
  7460. top:0px;
  7461. width:0px;
  7462. height:0px;
  7463. }
  7464. #u10849_div {
  7465. border-width:0px;
  7466. position:absolute;
  7467. left:0px;
  7468. top:0px;
  7469. width:33px;
  7470. height:22px;
  7471. background:inherit;
  7472. background-color:rgba(255, 255, 255, 0);
  7473. border-radius:0px;
  7474. filter:drop-shadow(none);
  7475. transition:none;
  7476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7477. font-weight:400;
  7478. font-style:normal;
  7479. font-size:16px;
  7480. color:#FFFFFF;
  7481. }
  7482. #u10849 {
  7483. border-width:0px;
  7484. position:absolute;
  7485. left:39px;
  7486. top:297px;
  7487. width:33px;
  7488. height:22px;
  7489. display:flex;
  7490. transition:none;
  7491. transform-origin:50% 50%;
  7492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7493. font-weight:400;
  7494. font-style:normal;
  7495. font-size:16px;
  7496. color:#FFFFFF;
  7497. }
  7498. #u10849 .text {
  7499. position:absolute;
  7500. align-self:flex-start;
  7501. padding:0px 0px 0px 0px;
  7502. box-sizing:border-box;
  7503. width:100%;
  7504. }
  7505. #u10849_text {
  7506. border-width:0px;
  7507. white-space:nowrap;
  7508. text-transform:none;
  7509. }
  7510. #u10850 {
  7511. border-width:0px;
  7512. position:absolute;
  7513. left:20px;
  7514. top:301px;
  7515. width:14px;
  7516. height:14px;
  7517. display:flex;
  7518. transition:none;
  7519. }
  7520. #u10850 .text {
  7521. position:absolute;
  7522. align-self:center;
  7523. padding:2px 2px 2px 2px;
  7524. box-sizing:border-box;
  7525. width:100%;
  7526. }
  7527. #u10850_img {
  7528. border-width:0px;
  7529. position:absolute;
  7530. left:0px;
  7531. top:0px;
  7532. width:14px;
  7533. height:14px;
  7534. }
  7535. #u10850_text {
  7536. border-width:0px;
  7537. word-wrap:break-word;
  7538. text-transform:none;
  7539. visibility:hidden;
  7540. }
  7541. #u10851 {
  7542. border-width:0px;
  7543. position:absolute;
  7544. left:0px;
  7545. top:0px;
  7546. width:0px;
  7547. height:0px;
  7548. }
  7549. #u10852_div {
  7550. border-width:0px;
  7551. position:absolute;
  7552. left:0px;
  7553. top:0px;
  7554. width:33px;
  7555. height:22px;
  7556. background:inherit;
  7557. background-color:rgba(255, 255, 255, 0);
  7558. border-radius:0px;
  7559. filter:drop-shadow(none);
  7560. transition:none;
  7561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7562. font-weight:400;
  7563. font-style:normal;
  7564. font-size:16px;
  7565. color:#FFFFFF;
  7566. }
  7567. #u10852 {
  7568. border-width:0px;
  7569. position:absolute;
  7570. left:39px;
  7571. top:213px;
  7572. width:33px;
  7573. height:22px;
  7574. display:flex;
  7575. transition:none;
  7576. transform-origin:50% 50%;
  7577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7578. font-weight:400;
  7579. font-style:normal;
  7580. font-size:16px;
  7581. color:#FFFFFF;
  7582. }
  7583. #u10852 .text {
  7584. position:absolute;
  7585. align-self:flex-start;
  7586. padding:0px 0px 0px 0px;
  7587. box-sizing:border-box;
  7588. width:100%;
  7589. }
  7590. #u10852_text {
  7591. border-width:0px;
  7592. white-space:nowrap;
  7593. text-transform:none;
  7594. }
  7595. #u10853 {
  7596. border-width:0px;
  7597. position:absolute;
  7598. left:20px;
  7599. top:217px;
  7600. width:14px;
  7601. height:14px;
  7602. display:flex;
  7603. transition:none;
  7604. }
  7605. #u10853 .text {
  7606. position:absolute;
  7607. align-self:center;
  7608. padding:2px 2px 2px 2px;
  7609. box-sizing:border-box;
  7610. width:100%;
  7611. }
  7612. #u10853_img {
  7613. border-width:0px;
  7614. position:absolute;
  7615. left:0px;
  7616. top:0px;
  7617. width:14px;
  7618. height:14px;
  7619. }
  7620. #u10853_text {
  7621. border-width:0px;
  7622. word-wrap:break-word;
  7623. text-transform:none;
  7624. visibility:hidden;
  7625. }
  7626. #u10854 {
  7627. border-width:0px;
  7628. position:absolute;
  7629. left:0px;
  7630. top:0px;
  7631. width:0px;
  7632. height:0px;
  7633. }
  7634. #u10855_div {
  7635. border-width:0px;
  7636. position:absolute;
  7637. left:0px;
  7638. top:0px;
  7639. width:33px;
  7640. height:22px;
  7641. background:inherit;
  7642. background-color:rgba(255, 255, 255, 0);
  7643. border-radius:0px;
  7644. filter:drop-shadow(none);
  7645. transition:none;
  7646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7647. font-weight:400;
  7648. font-style:normal;
  7649. font-size:16px;
  7650. color:#FFFFFF;
  7651. }
  7652. #u10855 {
  7653. border-width:0px;
  7654. position:absolute;
  7655. left:39px;
  7656. top:339px;
  7657. width:33px;
  7658. height:22px;
  7659. display:flex;
  7660. transition:none;
  7661. transform-origin:50% 50%;
  7662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7663. font-weight:400;
  7664. font-style:normal;
  7665. font-size:16px;
  7666. color:#FFFFFF;
  7667. }
  7668. #u10855 .text {
  7669. position:absolute;
  7670. align-self:flex-start;
  7671. padding:0px 0px 0px 0px;
  7672. box-sizing:border-box;
  7673. width:100%;
  7674. }
  7675. #u10855_text {
  7676. border-width:0px;
  7677. white-space:nowrap;
  7678. text-transform:none;
  7679. }
  7680. #u10856 {
  7681. border-width:0px;
  7682. position:absolute;
  7683. left:20px;
  7684. top:343px;
  7685. width:14px;
  7686. height:14px;
  7687. display:flex;
  7688. transition:none;
  7689. }
  7690. #u10856 .text {
  7691. position:absolute;
  7692. align-self:center;
  7693. padding:2px 2px 2px 2px;
  7694. box-sizing:border-box;
  7695. width:100%;
  7696. }
  7697. #u10856_img {
  7698. border-width:0px;
  7699. position:absolute;
  7700. left:0px;
  7701. top:0px;
  7702. width:14px;
  7703. height:14px;
  7704. }
  7705. #u10856_text {
  7706. border-width:0px;
  7707. word-wrap:break-word;
  7708. text-transform:none;
  7709. visibility:hidden;
  7710. }
  7711. #u10857 {
  7712. border-width:0px;
  7713. position:absolute;
  7714. left:0px;
  7715. top:0px;
  7716. width:0px;
  7717. height:0px;
  7718. }
  7719. #u10858_div {
  7720. border-width:0px;
  7721. position:absolute;
  7722. left:0px;
  7723. top:0px;
  7724. width:33px;
  7725. height:22px;
  7726. background:inherit;
  7727. background-color:rgba(255, 255, 255, 0);
  7728. border-radius:0px;
  7729. filter:drop-shadow(none);
  7730. transition:none;
  7731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7732. font-weight:400;
  7733. font-style:normal;
  7734. font-size:16px;
  7735. color:#FFFFFF;
  7736. }
  7737. #u10858 {
  7738. border-width:0px;
  7739. position:absolute;
  7740. left:39px;
  7741. top:465px;
  7742. width:33px;
  7743. height:22px;
  7744. display:flex;
  7745. transition:none;
  7746. transform-origin:50% 50%;
  7747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7748. font-weight:400;
  7749. font-style:normal;
  7750. font-size:16px;
  7751. color:#FFFFFF;
  7752. }
  7753. #u10858 .text {
  7754. position:absolute;
  7755. align-self:flex-start;
  7756. padding:0px 0px 0px 0px;
  7757. box-sizing:border-box;
  7758. width:100%;
  7759. }
  7760. #u10858_text {
  7761. border-width:0px;
  7762. white-space:nowrap;
  7763. text-transform:none;
  7764. }
  7765. #u10859 {
  7766. border-width:0px;
  7767. position:absolute;
  7768. left:20px;
  7769. top:469px;
  7770. width:14px;
  7771. height:14px;
  7772. display:flex;
  7773. transition:none;
  7774. }
  7775. #u10859 .text {
  7776. position:absolute;
  7777. align-self:center;
  7778. padding:2px 2px 2px 2px;
  7779. box-sizing:border-box;
  7780. width:100%;
  7781. }
  7782. #u10859_img {
  7783. border-width:0px;
  7784. position:absolute;
  7785. left:0px;
  7786. top:0px;
  7787. width:14px;
  7788. height:14px;
  7789. }
  7790. #u10859_text {
  7791. border-width:0px;
  7792. word-wrap:break-word;
  7793. text-transform:none;
  7794. visibility:hidden;
  7795. }
  7796. #u10860 {
  7797. border-width:0px;
  7798. position:absolute;
  7799. left:0px;
  7800. top:0px;
  7801. width:0px;
  7802. height:0px;
  7803. }
  7804. #u10861_div {
  7805. border-width:0px;
  7806. position:absolute;
  7807. left:0px;
  7808. top:0px;
  7809. width:29px;
  7810. height:20px;
  7811. background:inherit;
  7812. background-color:rgba(255, 255, 255, 0);
  7813. border-radius:25px;
  7814. filter:drop-shadow(none);
  7815. transition:none;
  7816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7817. font-weight:400;
  7818. font-style:normal;
  7819. color:#FFFFFF;
  7820. }
  7821. #u10861 {
  7822. border-width:0px;
  7823. position:absolute;
  7824. left:52px;
  7825. top:1145px;
  7826. width:29px;
  7827. height:20px;
  7828. display:flex;
  7829. transition:none;
  7830. transform-origin:50% 50%;
  7831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7832. font-weight:400;
  7833. font-style:normal;
  7834. color:#FFFFFF;
  7835. }
  7836. #u10861 .text {
  7837. position:absolute;
  7838. align-self:center;
  7839. padding:0px 0px 0px 0px;
  7840. box-sizing:border-box;
  7841. width:100%;
  7842. }
  7843. #u10861_text {
  7844. border-width:0px;
  7845. white-space:nowrap;
  7846. text-transform:none;
  7847. }
  7848. #u10862 {
  7849. border-width:0px;
  7850. position:absolute;
  7851. left:20px;
  7852. top:1144px;
  7853. width:22px;
  7854. height:22px;
  7855. display:flex;
  7856. transition:none;
  7857. }
  7858. #u10862 .text {
  7859. position:absolute;
  7860. align-self:center;
  7861. padding:2px 2px 2px 2px;
  7862. box-sizing:border-box;
  7863. width:100%;
  7864. }
  7865. #u10862_img {
  7866. border-width:0px;
  7867. position:absolute;
  7868. left:0px;
  7869. top:0px;
  7870. width:22px;
  7871. height:22px;
  7872. }
  7873. #u10862_text {
  7874. border-width:0px;
  7875. word-wrap:break-word;
  7876. text-transform:none;
  7877. visibility:hidden;
  7878. }
  7879. #u10863 {
  7880. border-width:0px;
  7881. position:absolute;
  7882. left:0px;
  7883. top:0px;
  7884. width:0px;
  7885. height:0px;
  7886. }
  7887. #u10864_div {
  7888. border-width:0px;
  7889. position:absolute;
  7890. left:0px;
  7891. top:0px;
  7892. width:29px;
  7893. height:20px;
  7894. background:inherit;
  7895. background-color:rgba(255, 255, 255, 0);
  7896. border-radius:25px;
  7897. filter:drop-shadow(none);
  7898. transition:none;
  7899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7900. font-weight:400;
  7901. font-style:normal;
  7902. color:#FFFFFF;
  7903. }
  7904. #u10864 {
  7905. border-width:0px;
  7906. position:absolute;
  7907. left:52px;
  7908. top:1187px;
  7909. width:29px;
  7910. height:20px;
  7911. display:flex;
  7912. transition:none;
  7913. transform-origin:50% 50%;
  7914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7915. font-weight:400;
  7916. font-style:normal;
  7917. color:#FFFFFF;
  7918. }
  7919. #u10864 .text {
  7920. position:absolute;
  7921. align-self:center;
  7922. padding:0px 0px 0px 0px;
  7923. box-sizing:border-box;
  7924. width:100%;
  7925. }
  7926. #u10864_text {
  7927. border-width:0px;
  7928. white-space:nowrap;
  7929. text-transform:none;
  7930. }
  7931. #u10865 {
  7932. border-width:0px;
  7933. position:absolute;
  7934. left:20px;
  7935. top:1186px;
  7936. width:22px;
  7937. height:22px;
  7938. display:flex;
  7939. transition:none;
  7940. }
  7941. #u10865 .text {
  7942. position:absolute;
  7943. align-self:center;
  7944. padding:2px 2px 2px 2px;
  7945. box-sizing:border-box;
  7946. width:100%;
  7947. }
  7948. #u10865_img {
  7949. border-width:0px;
  7950. position:absolute;
  7951. left:0px;
  7952. top:0px;
  7953. width:22px;
  7954. height:22px;
  7955. }
  7956. #u10865_text {
  7957. border-width:0px;
  7958. word-wrap:break-word;
  7959. text-transform:none;
  7960. visibility:hidden;
  7961. }
  7962. #u10866 {
  7963. border-width:0px;
  7964. position:absolute;
  7965. left:0px;
  7966. top:0px;
  7967. width:0px;
  7968. height:0px;
  7969. }
  7970. #u10867_div {
  7971. border-width:0px;
  7972. position:absolute;
  7973. left:0px;
  7974. top:0px;
  7975. width:33px;
  7976. height:22px;
  7977. background:inherit;
  7978. background-color:rgba(255, 255, 255, 0);
  7979. border-radius:0px;
  7980. filter:drop-shadow(none);
  7981. transition:none;
  7982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7983. font-weight:400;
  7984. font-style:normal;
  7985. font-size:16px;
  7986. color:#FFFFFF;
  7987. }
  7988. #u10867 {
  7989. border-width:0px;
  7990. position:absolute;
  7991. left:39px;
  7992. top:255px;
  7993. width:33px;
  7994. height:22px;
  7995. display:flex;
  7996. transition:none;
  7997. transform-origin:50% 50%;
  7998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7999. font-weight:400;
  8000. font-style:normal;
  8001. font-size:16px;
  8002. color:#FFFFFF;
  8003. }
  8004. #u10867 .text {
  8005. position:absolute;
  8006. align-self:flex-start;
  8007. padding:0px 0px 0px 0px;
  8008. box-sizing:border-box;
  8009. width:100%;
  8010. }
  8011. #u10867_text {
  8012. border-width:0px;
  8013. white-space:nowrap;
  8014. text-transform:none;
  8015. }
  8016. #u10868 {
  8017. border-width:0px;
  8018. position:absolute;
  8019. left:20px;
  8020. top:259px;
  8021. width:14px;
  8022. height:14px;
  8023. display:flex;
  8024. transition:none;
  8025. }
  8026. #u10868 .text {
  8027. position:absolute;
  8028. align-self:center;
  8029. padding:2px 2px 2px 2px;
  8030. box-sizing:border-box;
  8031. width:100%;
  8032. }
  8033. #u10868_img {
  8034. border-width:0px;
  8035. position:absolute;
  8036. left:0px;
  8037. top:0px;
  8038. width:14px;
  8039. height:14px;
  8040. }
  8041. #u10868_text {
  8042. border-width:0px;
  8043. word-wrap:break-word;
  8044. text-transform:none;
  8045. visibility:hidden;
  8046. }
  8047. #u10869 {
  8048. border-width:0px;
  8049. position:absolute;
  8050. left:0px;
  8051. top:0px;
  8052. width:0px;
  8053. height:0px;
  8054. }
  8055. #u10870_input {
  8056. position:absolute;
  8057. left:0px;
  8058. top:0px;
  8059. width:214px;
  8060. height:27px;
  8061. padding:2px 2px 2px 2px;
  8062. font-family:'ArialMT', 'Arial', sans-serif;
  8063. font-weight:400;
  8064. font-style:normal;
  8065. font-size:14px;
  8066. letter-spacing:normal;
  8067. color:#FFFFFF;
  8068. vertical-align:none;
  8069. text-align:left;
  8070. text-transform:none;
  8071. background-color:transparent;
  8072. border-color:transparent;
  8073. }
  8074. #u10870_input.disabled {
  8075. position:absolute;
  8076. left:0px;
  8077. top:0px;
  8078. width:214px;
  8079. height:27px;
  8080. padding:2px 2px 2px 2px;
  8081. font-family:'ArialMT', 'Arial', sans-serif;
  8082. font-weight:400;
  8083. font-style:normal;
  8084. font-size:14px;
  8085. letter-spacing:normal;
  8086. color:#FFFFFF;
  8087. vertical-align:none;
  8088. text-align:left;
  8089. text-transform:none;
  8090. background-color:transparent;
  8091. border-color:transparent;
  8092. }
  8093. #u10870_div {
  8094. border-width:0px;
  8095. position:absolute;
  8096. left:0px;
  8097. top:0px;
  8098. width:214px;
  8099. height:27px;
  8100. background:inherit;
  8101. background-color:rgba(255, 255, 255, 0);
  8102. border-radius:0px;
  8103. filter:drop-shadow(none);
  8104. transition:none;
  8105. font-size:14px;
  8106. color:#FFFFFF;
  8107. }
  8108. #u10870 {
  8109. border-width:0px;
  8110. position:absolute;
  8111. left:1221px;
  8112. top:11px;
  8113. width:214px;
  8114. height:27px;
  8115. display:flex;
  8116. transition:none;
  8117. transform-origin:50% 50%;
  8118. font-size:14px;
  8119. color:#FFFFFF;
  8120. }
  8121. #u10870 .text {
  8122. position:absolute;
  8123. align-self:flex-start;
  8124. padding:2px 2px 2px 2px;
  8125. box-sizing:border-box;
  8126. width:100%;
  8127. }
  8128. #u10870_div.disabled {
  8129. border-width:0px;
  8130. position:absolute;
  8131. left:0px;
  8132. top:0px;
  8133. width:214px;
  8134. height:27px;
  8135. background:inherit;
  8136. background-color:rgba(240, 240, 240, 1);
  8137. border-radius:0px;
  8138. filter:drop-shadow(none);
  8139. transition:none;
  8140. font-size:14px;
  8141. color:#FFFFFF;
  8142. }
  8143. #u10870.disabled {
  8144. }
  8145. .u10870_input_option {
  8146. font-size:14px;
  8147. }
  8148. #u10871 {
  8149. border-width:0px;
  8150. position:absolute;
  8151. left:1194px;
  8152. top:14px;
  8153. width:22px;
  8154. height:22px;
  8155. display:flex;
  8156. transition:none;
  8157. }
  8158. #u10871 .text {
  8159. position:absolute;
  8160. align-self:center;
  8161. padding:2px 2px 2px 2px;
  8162. box-sizing:border-box;
  8163. width:100%;
  8164. }
  8165. #u10871_img {
  8166. border-width:0px;
  8167. position:absolute;
  8168. left:0px;
  8169. top:0px;
  8170. width:22px;
  8171. height:22px;
  8172. }
  8173. #u10871_text {
  8174. border-width:0px;
  8175. word-wrap:break-word;
  8176. text-transform:none;
  8177. visibility:hidden;
  8178. }
  8179. #u10872_div {
  8180. border-width:0px;
  8181. position:absolute;
  8182. left:0px;
  8183. top:0px;
  8184. width:100px;
  8185. height:24px;
  8186. background:inherit;
  8187. background-color:rgba(242, 242, 242, 0.2);
  8188. border-radius:25px;
  8189. filter:drop-shadow(none);
  8190. transition:none;
  8191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8192. font-weight:400;
  8193. font-style:normal;
  8194. color:#FFFFFF;
  8195. text-align:center;
  8196. }
  8197. #u10872 {
  8198. border-width:0px;
  8199. position:absolute;
  8200. left:1480px;
  8201. top:13px;
  8202. width:100px;
  8203. height:24px;
  8204. display:flex;
  8205. transition:none;
  8206. transform-origin:50% 50%;
  8207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8208. font-weight:400;
  8209. font-style:normal;
  8210. color:#FFFFFF;
  8211. text-align:center;
  8212. }
  8213. #u10872 .text {
  8214. position:absolute;
  8215. align-self:center;
  8216. padding:0px 0px 0px 0px;
  8217. box-sizing:border-box;
  8218. width:100%;
  8219. }
  8220. #u10872_text {
  8221. border-width:0px;
  8222. word-wrap:break-word;
  8223. text-transform:none;
  8224. }
  8225. #u10873 {
  8226. border-width:0px;
  8227. position:absolute;
  8228. left:1452px;
  8229. top:19px;
  8230. width:1px;
  8231. height:11px;
  8232. display:flex;
  8233. transition:none;
  8234. }
  8235. #u10873 .text {
  8236. position:absolute;
  8237. align-self:center;
  8238. padding:2px 2px 2px 2px;
  8239. box-sizing:border-box;
  8240. width:100%;
  8241. }
  8242. #u10873_img {
  8243. border-width:0px;
  8244. position:absolute;
  8245. left:0px;
  8246. top:0px;
  8247. width:2px;
  8248. height:12px;
  8249. }
  8250. #u10873_text {
  8251. border-width:0px;
  8252. word-wrap:break-word;
  8253. text-transform:none;
  8254. visibility:hidden;
  8255. }
  8256. #u10874 {
  8257. border-width:0px;
  8258. position:absolute;
  8259. left:0px;
  8260. top:0px;
  8261. width:0px;
  8262. height:0px;
  8263. }
  8264. #u10875_div {
  8265. border-width:0px;
  8266. position:absolute;
  8267. left:0px;
  8268. top:0px;
  8269. width:29px;
  8270. height:20px;
  8271. background:inherit;
  8272. background-color:rgba(255, 255, 255, 0);
  8273. border-radius:25px;
  8274. filter:drop-shadow(none);
  8275. transition:none;
  8276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8277. font-weight:400;
  8278. font-style:normal;
  8279. color:#FFFFFF;
  8280. }
  8281. #u10875 {
  8282. border-width:0px;
  8283. position:absolute;
  8284. left:52px;
  8285. top:1082px;
  8286. width:29px;
  8287. height:20px;
  8288. display:flex;
  8289. transition:none;
  8290. transform-origin:50% 50%;
  8291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8292. font-weight:400;
  8293. font-style:normal;
  8294. color:#FFFFFF;
  8295. }
  8296. #u10875 .text {
  8297. position:absolute;
  8298. align-self:center;
  8299. padding:0px 0px 0px 0px;
  8300. box-sizing:border-box;
  8301. width:100%;
  8302. }
  8303. #u10875_text {
  8304. border-width:0px;
  8305. white-space:nowrap;
  8306. text-transform:none;
  8307. }
  8308. #u10876 {
  8309. border-width:0px;
  8310. position:absolute;
  8311. left:20px;
  8312. top:1081px;
  8313. width:22px;
  8314. height:22px;
  8315. display:flex;
  8316. transition:none;
  8317. }
  8318. #u10876 .text {
  8319. position:absolute;
  8320. align-self:center;
  8321. padding:2px 2px 2px 2px;
  8322. box-sizing:border-box;
  8323. width:100%;
  8324. }
  8325. #u10876_img {
  8326. border-width:0px;
  8327. position:absolute;
  8328. left:0px;
  8329. top:0px;
  8330. width:22px;
  8331. height:22px;
  8332. }
  8333. #u10876_text {
  8334. border-width:0px;
  8335. word-wrap:break-word;
  8336. text-transform:none;
  8337. visibility:hidden;
  8338. }
  8339. #u10877 {
  8340. border-width:0px;
  8341. position:absolute;
  8342. left:20px;
  8343. top:1123px;
  8344. width:68px;
  8345. height:1px;
  8346. display:flex;
  8347. transition:none;
  8348. }
  8349. #u10877 .text {
  8350. position:absolute;
  8351. align-self:center;
  8352. padding:2px 2px 2px 2px;
  8353. box-sizing:border-box;
  8354. width:100%;
  8355. }
  8356. #u10877_img {
  8357. border-width:0px;
  8358. position:absolute;
  8359. left:0px;
  8360. top:0px;
  8361. width:69px;
  8362. height:2px;
  8363. }
  8364. #u10877_text {
  8365. border-width:0px;
  8366. word-wrap:break-word;
  8367. text-transform:none;
  8368. visibility:hidden;
  8369. }
  8370. #u10878 {
  8371. border-width:0px;
  8372. position:absolute;
  8373. left:20px;
  8374. top:1061px;
  8375. width:68px;
  8376. height:1px;
  8377. display:flex;
  8378. transition:none;
  8379. }
  8380. #u10878 .text {
  8381. position:absolute;
  8382. align-self:center;
  8383. padding:2px 2px 2px 2px;
  8384. box-sizing:border-box;
  8385. width:100%;
  8386. }
  8387. #u10878_img {
  8388. border-width:0px;
  8389. position:absolute;
  8390. left:0px;
  8391. top:0px;
  8392. width:69px;
  8393. height:2px;
  8394. }
  8395. #u10878_text {
  8396. border-width:0px;
  8397. word-wrap:break-word;
  8398. text-transform:none;
  8399. visibility:hidden;
  8400. }
  8401. #u10879 {
  8402. border-width:0px;
  8403. position:absolute;
  8404. left:20px;
  8405. top:112px;
  8406. width:56px;
  8407. height:1px;
  8408. display:flex;
  8409. transition:none;
  8410. }
  8411. #u10879 .text {
  8412. position:absolute;
  8413. align-self:center;
  8414. padding:2px 2px 2px 2px;
  8415. box-sizing:border-box;
  8416. width:100%;
  8417. }
  8418. #u10879_img {
  8419. border-width:0px;
  8420. position:absolute;
  8421. left:0px;
  8422. top:0px;
  8423. width:57px;
  8424. height:2px;
  8425. }
  8426. #u10879_text {
  8427. border-width:0px;
  8428. word-wrap:break-word;
  8429. text-transform:none;
  8430. visibility:hidden;
  8431. }
  8432. #u10880 {
  8433. border-width:0px;
  8434. position:absolute;
  8435. left:0px;
  8436. top:0px;
  8437. width:0px;
  8438. height:0px;
  8439. }
  8440. #u10881_div {
  8441. border-width:0px;
  8442. position:absolute;
  8443. left:0px;
  8444. top:0px;
  8445. width:33px;
  8446. height:22px;
  8447. background:inherit;
  8448. background-color:rgba(255, 255, 255, 0);
  8449. border-radius:0px;
  8450. filter:drop-shadow(none);
  8451. transition:none;
  8452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8453. font-weight:400;
  8454. font-style:normal;
  8455. font-size:16px;
  8456. color:#FFFFFF;
  8457. }
  8458. #u10881 {
  8459. border-width:0px;
  8460. position:absolute;
  8461. left:43px;
  8462. top:71px;
  8463. width:33px;
  8464. height:22px;
  8465. display:flex;
  8466. transition:none;
  8467. transform-origin:50% 50%;
  8468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8469. font-weight:400;
  8470. font-style:normal;
  8471. font-size:16px;
  8472. color:#FFFFFF;
  8473. }
  8474. #u10881 .text {
  8475. position:absolute;
  8476. align-self:flex-start;
  8477. padding:0px 0px 0px 0px;
  8478. box-sizing:border-box;
  8479. width:100%;
  8480. }
  8481. #u10881_text {
  8482. border-width:0px;
  8483. white-space:nowrap;
  8484. text-transform:none;
  8485. }
  8486. #u10882 {
  8487. border-width:0px;
  8488. position:absolute;
  8489. left:20px;
  8490. top:75px;
  8491. width:18px;
  8492. height:14px;
  8493. display:flex;
  8494. transition:none;
  8495. }
  8496. #u10882 .text {
  8497. position:absolute;
  8498. align-self:center;
  8499. padding:2px 2px 2px 2px;
  8500. box-sizing:border-box;
  8501. width:100%;
  8502. }
  8503. #u10882_img {
  8504. border-width:0px;
  8505. position:absolute;
  8506. left:0px;
  8507. top:0px;
  8508. width:18px;
  8509. height:14px;
  8510. }
  8511. #u10882_text {
  8512. border-width:0px;
  8513. word-wrap:break-word;
  8514. text-transform:none;
  8515. visibility:hidden;
  8516. }
  8517. #u10883_div {
  8518. border-width:0px;
  8519. position:absolute;
  8520. left:0px;
  8521. top:0px;
  8522. width:1265px;
  8523. height:1180px;
  8524. background:inherit;
  8525. background-color:rgba(255, 255, 255, 1);
  8526. border-radius:0px;
  8527. filter:drop-shadow(0px 0px 1.5px rgba(127, 127, 127, 0.34901960784313724));
  8528. transition:none;
  8529. color:#1890FF;
  8530. }
  8531. #u10883 {
  8532. border-width:0px;
  8533. position:absolute;
  8534. left:1943px;
  8535. top:1342px;
  8536. width:1265px;
  8537. height:1180px;
  8538. display:flex;
  8539. transition:none;
  8540. transform-origin:50% 50%;
  8541. color:#1890FF;
  8542. }
  8543. #u10883 .text {
  8544. position:absolute;
  8545. align-self:center;
  8546. padding:2px 2px 2px 2px;
  8547. box-sizing:border-box;
  8548. width:100%;
  8549. }
  8550. #u10883_text {
  8551. border-width:0px;
  8552. word-wrap:break-word;
  8553. text-transform:none;
  8554. visibility:hidden;
  8555. }
  8556. #u10884_div {
  8557. border-width:0px;
  8558. position:absolute;
  8559. left:0px;
  8560. top:0px;
  8561. width:73px;
  8562. height:25px;
  8563. background:inherit;
  8564. background-color:rgba(255, 255, 255, 0);
  8565. border-radius:0px;
  8566. filter:drop-shadow(none);
  8567. transition:none;
  8568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8569. font-weight:400;
  8570. font-style:normal;
  8571. font-size:18px;
  8572. }
  8573. #u10884 {
  8574. border-width:0px;
  8575. position:absolute;
  8576. left:1963px;
  8577. top:1351px;
  8578. width:73px;
  8579. height:25px;
  8580. display:flex;
  8581. transition:none;
  8582. transform-origin:50% 50%;
  8583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8584. font-weight:400;
  8585. font-style:normal;
  8586. font-size:18px;
  8587. }
  8588. #u10884 .text {
  8589. position:absolute;
  8590. align-self:flex-start;
  8591. padding:0px 0px 0px 0px;
  8592. box-sizing:border-box;
  8593. width:100%;
  8594. }
  8595. #u10884_text {
  8596. border-width:0px;
  8597. white-space:nowrap;
  8598. text-transform:none;
  8599. }
  8600. #u10885 {
  8601. border-width:0px;
  8602. position:absolute;
  8603. left:1967px;
  8604. top:1428px;
  8605. width:1227px;
  8606. height:637px;
  8607. display:flex;
  8608. transition:none;
  8609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8610. font-weight:400;
  8611. font-style:normal;
  8612. font-size:38px;
  8613. color:#FFFFFF;
  8614. }
  8615. #u10885 .text {
  8616. position:absolute;
  8617. align-self:center;
  8618. padding:2px 2px 2px 2px;
  8619. box-sizing:border-box;
  8620. width:100%;
  8621. }
  8622. #u10885_img {
  8623. border-width:0px;
  8624. position:absolute;
  8625. left:0px;
  8626. top:0px;
  8627. width:1227px;
  8628. height:637px;
  8629. }
  8630. #u10885_text {
  8631. border-width:0px;
  8632. word-wrap:break-word;
  8633. text-transform:none;
  8634. }
  8635. #u10886 {
  8636. border-width:0px;
  8637. position:absolute;
  8638. left:0px;
  8639. top:0px;
  8640. width:0px;
  8641. height:0px;
  8642. }
  8643. #u10887_div {
  8644. border-width:0px;
  8645. position:absolute;
  8646. left:0px;
  8647. top:0px;
  8648. width:40px;
  8649. height:136px;
  8650. background:inherit;
  8651. background-color:rgba(2, 167, 240, 1);
  8652. border-radius:5px;
  8653. filter:drop-shadow(none);
  8654. transition:none;
  8655. }
  8656. #u10887 {
  8657. border-width:0px;
  8658. position:absolute;
  8659. left:3137px;
  8660. top:1916px;
  8661. width:40px;
  8662. height:136px;
  8663. display:flex;
  8664. transition:none;
  8665. transform-origin:50% 50%;
  8666. }
  8667. #u10887 .text {
  8668. position:absolute;
  8669. align-self:center;
  8670. padding:2px 2px 2px 2px;
  8671. box-sizing:border-box;
  8672. width:100%;
  8673. }
  8674. #u10887_text {
  8675. border-width:0px;
  8676. word-wrap:break-word;
  8677. text-transform:none;
  8678. visibility:hidden;
  8679. }
  8680. #u10888 {
  8681. border-width:0px;
  8682. position:absolute;
  8683. left:3145px;
  8684. top:1927px;
  8685. width:24px;
  8686. height:24px;
  8687. display:flex;
  8688. transition:none;
  8689. }
  8690. #u10888 .text {
  8691. position:absolute;
  8692. align-self:center;
  8693. padding:2px 2px 2px 2px;
  8694. box-sizing:border-box;
  8695. width:100%;
  8696. }
  8697. #u10888_img {
  8698. border-width:0px;
  8699. position:absolute;
  8700. left:0px;
  8701. top:0px;
  8702. width:24px;
  8703. height:24px;
  8704. }
  8705. #u10888_text {
  8706. border-width:0px;
  8707. word-wrap:break-word;
  8708. text-transform:none;
  8709. visibility:hidden;
  8710. }
  8711. #u10889 {
  8712. border-width:0px;
  8713. position:absolute;
  8714. left:3148px;
  8715. top:1982px;
  8716. width:18px;
  8717. height:18px;
  8718. display:flex;
  8719. transition:none;
  8720. }
  8721. #u10889 .text {
  8722. position:absolute;
  8723. align-self:center;
  8724. padding:2px 2px 2px 2px;
  8725. box-sizing:border-box;
  8726. width:100%;
  8727. }
  8728. #u10889_img {
  8729. border-width:0px;
  8730. position:absolute;
  8731. left:0px;
  8732. top:0px;
  8733. width:18px;
  8734. height:18px;
  8735. }
  8736. #u10889_text {
  8737. border-width:0px;
  8738. word-wrap:break-word;
  8739. text-transform:none;
  8740. visibility:hidden;
  8741. }
  8742. #u10890_div {
  8743. border-width:0px;
  8744. position:absolute;
  8745. left:0px;
  8746. top:0px;
  8747. width:18px;
  8748. height:4px;
  8749. background:inherit;
  8750. background-color:rgba(255, 255, 255, 1);
  8751. border-radius:0px;
  8752. filter:drop-shadow(none);
  8753. transition:none;
  8754. }
  8755. #u10890 {
  8756. border-width:0px;
  8757. position:absolute;
  8758. left:3148px;
  8759. top:2031px;
  8760. width:18px;
  8761. height:4px;
  8762. display:flex;
  8763. transition:none;
  8764. transform-origin:50% 50%;
  8765. }
  8766. #u10890 .text {
  8767. position:absolute;
  8768. align-self:center;
  8769. padding:2px 2px 2px 2px;
  8770. box-sizing:border-box;
  8771. width:100%;
  8772. }
  8773. #u10890_text {
  8774. border-width:0px;
  8775. word-wrap:break-word;
  8776. text-transform:none;
  8777. visibility:hidden;
  8778. }
  8779. #u10891 {
  8780. border-width:0px;
  8781. position:absolute;
  8782. left:3146px;
  8783. top:1966px;
  8784. width:22px;
  8785. height:1px;
  8786. display:flex;
  8787. transition:none;
  8788. }
  8789. #u10891 .text {
  8790. position:absolute;
  8791. align-self:center;
  8792. padding:2px 2px 2px 2px;
  8793. box-sizing:border-box;
  8794. width:100%;
  8795. }
  8796. #u10891_img {
  8797. border-width:0px;
  8798. position:absolute;
  8799. left:0px;
  8800. top:0px;
  8801. width:23px;
  8802. height:2px;
  8803. }
  8804. #u10891_text {
  8805. border-width:0px;
  8806. word-wrap:break-word;
  8807. text-transform:none;
  8808. visibility:hidden;
  8809. }
  8810. #u10892 {
  8811. border-width:0px;
  8812. position:absolute;
  8813. left:3146px;
  8814. top:2015px;
  8815. width:22px;
  8816. height:1px;
  8817. display:flex;
  8818. transition:none;
  8819. }
  8820. #u10892 .text {
  8821. position:absolute;
  8822. align-self:center;
  8823. padding:2px 2px 2px 2px;
  8824. box-sizing:border-box;
  8825. width:100%;
  8826. }
  8827. #u10892_img {
  8828. border-width:0px;
  8829. position:absolute;
  8830. left:0px;
  8831. top:0px;
  8832. width:23px;
  8833. height:2px;
  8834. }
  8835. #u10892_text {
  8836. border-width:0px;
  8837. word-wrap:break-word;
  8838. text-transform:none;
  8839. visibility:hidden;
  8840. }
  8841. #u10893 {
  8842. border-width:0px;
  8843. position:absolute;
  8844. left:1735px;
  8845. top:1341px;
  8846. width:200px;
  8847. height:1180px;
  8848. }
  8849. #u10894 {
  8850. border-width:0px;
  8851. position:absolute;
  8852. left:0px;
  8853. top:0px;
  8854. width:0px;
  8855. height:0px;
  8856. }
  8857. #u10895_div {
  8858. border-width:0px;
  8859. position:absolute;
  8860. left:0px;
  8861. top:0px;
  8862. width:200px;
  8863. height:1180px;
  8864. background:inherit;
  8865. background-color:rgba(255, 255, 255, 1);
  8866. border-radius:0px;
  8867. filter:drop-shadow(none);
  8868. transition:none;
  8869. }
  8870. #u10895 {
  8871. border-width:0px;
  8872. position:absolute;
  8873. left:0px;
  8874. top:0px;
  8875. width:200px;
  8876. height:1180px;
  8877. display:flex;
  8878. transition:none;
  8879. transform-origin:50% 50%;
  8880. }
  8881. #u10895 .text {
  8882. position:absolute;
  8883. align-self:center;
  8884. padding:2px 2px 2px 2px;
  8885. box-sizing:border-box;
  8886. width:100%;
  8887. }
  8888. #u10895_text {
  8889. border-width:0px;
  8890. word-wrap:break-word;
  8891. text-transform:none;
  8892. visibility:hidden;
  8893. }
  8894. #u10896_div {
  8895. border-width:0px;
  8896. position:absolute;
  8897. left:0px;
  8898. top:0px;
  8899. width:200px;
  8900. height:60px;
  8901. background:inherit;
  8902. background-color:rgba(224, 231, 247, 1);
  8903. border-radius:0px;
  8904. filter:drop-shadow(none);
  8905. transition:none;
  8906. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8907. font-weight:500;
  8908. font-style:normal;
  8909. font-size:18px;
  8910. }
  8911. #u10896 {
  8912. border-width:0px;
  8913. position:absolute;
  8914. left:0px;
  8915. top:0px;
  8916. width:200px;
  8917. height:60px;
  8918. display:flex;
  8919. transition:none;
  8920. transform-origin:50% 50%;
  8921. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8922. font-weight:500;
  8923. font-style:normal;
  8924. font-size:18px;
  8925. }
  8926. #u10896 .text {
  8927. position:absolute;
  8928. align-self:center;
  8929. padding:0px 0px 0px 20px;
  8930. box-sizing:border-box;
  8931. width:100%;
  8932. }
  8933. #u10896_text {
  8934. border-width:0px;
  8935. word-wrap:break-word;
  8936. text-transform:none;
  8937. }
  8938. #u10897_div {
  8939. border-width:0px;
  8940. position:absolute;
  8941. left:0px;
  8942. top:0px;
  8943. width:65px;
  8944. height:22px;
  8945. background:inherit;
  8946. background-color:rgba(255, 255, 255, 0);
  8947. border-radius:0px;
  8948. filter:drop-shadow(none);
  8949. transition:none;
  8950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8951. font-weight:400;
  8952. font-style:normal;
  8953. font-size:16px;
  8954. }
  8955. #u10897 {
  8956. border-width:0px;
  8957. position:absolute;
  8958. left:27px;
  8959. top:111px;
  8960. width:65px;
  8961. height:22px;
  8962. display:flex;
  8963. transition:none;
  8964. transform-origin:50% 50%;
  8965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8966. font-weight:400;
  8967. font-style:normal;
  8968. font-size:16px;
  8969. }
  8970. #u10897 .text {
  8971. position:absolute;
  8972. align-self:flex-start;
  8973. padding:0px 0px 0px 0px;
  8974. box-sizing:border-box;
  8975. width:100%;
  8976. }
  8977. #u10897_text {
  8978. border-width:0px;
  8979. white-space:nowrap;
  8980. text-transform:none;
  8981. }
  8982. #u10898_div {
  8983. border-width:0px;
  8984. position:absolute;
  8985. left:0px;
  8986. top:0px;
  8987. width:65px;
  8988. height:22px;
  8989. background:inherit;
  8990. background-color:rgba(255, 255, 255, 0);
  8991. border-radius:0px;
  8992. filter:drop-shadow(none);
  8993. transition:none;
  8994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8995. font-weight:400;
  8996. font-style:normal;
  8997. font-size:16px;
  8998. }
  8999. #u10898 {
  9000. border-width:0px;
  9001. position:absolute;
  9002. left:27px;
  9003. top:259px;
  9004. width:65px;
  9005. height:22px;
  9006. display:flex;
  9007. transition:none;
  9008. transform-origin:50% 50%;
  9009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9010. font-weight:400;
  9011. font-style:normal;
  9012. font-size:16px;
  9013. }
  9014. #u10898 .text {
  9015. position:absolute;
  9016. align-self:flex-start;
  9017. padding:0px 0px 0px 0px;
  9018. box-sizing:border-box;
  9019. width:100%;
  9020. }
  9021. #u10898_text {
  9022. border-width:0px;
  9023. white-space:nowrap;
  9024. text-transform:none;
  9025. }
  9026. #u10899_div {
  9027. border-width:0px;
  9028. position:absolute;
  9029. left:0px;
  9030. top:0px;
  9031. width:49px;
  9032. height:17px;
  9033. background:inherit;
  9034. background-color:rgba(255, 255, 255, 0);
  9035. border-radius:0px;
  9036. filter:drop-shadow(none);
  9037. transition:none;
  9038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9039. font-weight:400;
  9040. font-style:normal;
  9041. font-size:12px;
  9042. color:#AAAAAA;
  9043. }
  9044. #u10899 {
  9045. border-width:0px;
  9046. position:absolute;
  9047. left:27px;
  9048. top:222px;
  9049. width:49px;
  9050. height:17px;
  9051. display:flex;
  9052. transition:none;
  9053. transform-origin:50% 50%;
  9054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9055. font-weight:400;
  9056. font-style:normal;
  9057. font-size:12px;
  9058. color:#AAAAAA;
  9059. }
  9060. #u10899 .text {
  9061. position:absolute;
  9062. align-self:flex-start;
  9063. padding:0px 0px 0px 0px;
  9064. box-sizing:border-box;
  9065. width:100%;
  9066. }
  9067. #u10899_text {
  9068. border-width:0px;
  9069. white-space:nowrap;
  9070. text-transform:none;
  9071. }
  9072. #u10900 {
  9073. border-width:0px;
  9074. position:absolute;
  9075. left:0px;
  9076. top:200px;
  9077. width:200px;
  9078. height:1px;
  9079. display:flex;
  9080. transition:none;
  9081. }
  9082. #u10900 .text {
  9083. position:absolute;
  9084. align-self:center;
  9085. padding:2px 2px 2px 2px;
  9086. box-sizing:border-box;
  9087. width:100%;
  9088. }
  9089. #u10900_img {
  9090. border-width:0px;
  9091. position:absolute;
  9092. left:0px;
  9093. top:0px;
  9094. width:201px;
  9095. height:2px;
  9096. }
  9097. #u10900_text {
  9098. border-width:0px;
  9099. word-wrap:break-word;
  9100. text-transform:none;
  9101. visibility:hidden;
  9102. }
  9103. #u10901_div {
  9104. border-width:0px;
  9105. position:absolute;
  9106. left:0px;
  9107. top:0px;
  9108. width:65px;
  9109. height:22px;
  9110. background:inherit;
  9111. background-color:rgba(255, 255, 255, 0);
  9112. border-radius:0px;
  9113. filter:drop-shadow(none);
  9114. transition:none;
  9115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9116. font-weight:400;
  9117. font-style:normal;
  9118. font-size:16px;
  9119. }
  9120. #u10901 {
  9121. border-width:0px;
  9122. position:absolute;
  9123. left:27px;
  9124. top:301px;
  9125. width:65px;
  9126. height:22px;
  9127. display:flex;
  9128. transition:none;
  9129. transform-origin:50% 50%;
  9130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9131. font-weight:400;
  9132. font-style:normal;
  9133. font-size:16px;
  9134. }
  9135. #u10901 .text {
  9136. position:absolute;
  9137. align-self:flex-start;
  9138. padding:0px 0px 0px 0px;
  9139. box-sizing:border-box;
  9140. width:100%;
  9141. }
  9142. #u10901_text {
  9143. border-width:0px;
  9144. white-space:nowrap;
  9145. text-transform:none;
  9146. }
  9147. #u10902_div {
  9148. border-width:0px;
  9149. position:absolute;
  9150. left:0px;
  9151. top:0px;
  9152. width:49px;
  9153. height:17px;
  9154. background:inherit;
  9155. background-color:rgba(255, 255, 255, 0);
  9156. border-radius:0px;
  9157. filter:drop-shadow(none);
  9158. transition:none;
  9159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9160. font-weight:400;
  9161. font-style:normal;
  9162. font-size:12px;
  9163. color:#AAAAAA;
  9164. }
  9165. #u10902 {
  9166. border-width:0px;
  9167. position:absolute;
  9168. left:27px;
  9169. top:80px;
  9170. width:49px;
  9171. height:17px;
  9172. display:flex;
  9173. transition:none;
  9174. transform-origin:50% 50%;
  9175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9176. font-weight:400;
  9177. font-style:normal;
  9178. font-size:12px;
  9179. color:#AAAAAA;
  9180. }
  9181. #u10902 .text {
  9182. position:absolute;
  9183. align-self:flex-start;
  9184. padding:0px 0px 0px 0px;
  9185. box-sizing:border-box;
  9186. width:100%;
  9187. }
  9188. #u10902_text {
  9189. border-width:0px;
  9190. white-space:nowrap;
  9191. text-transform:none;
  9192. }
  9193. #u10903_div {
  9194. border-width:0px;
  9195. position:absolute;
  9196. left:0px;
  9197. top:0px;
  9198. width:65px;
  9199. height:22px;
  9200. background:inherit;
  9201. background-color:rgba(255, 255, 255, 0);
  9202. border-radius:0px;
  9203. filter:drop-shadow(none);
  9204. transition:none;
  9205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9206. font-weight:400;
  9207. font-style:normal;
  9208. font-size:16px;
  9209. }
  9210. #u10903 {
  9211. border-width:0px;
  9212. position:absolute;
  9213. left:27px;
  9214. top:343px;
  9215. width:65px;
  9216. height:22px;
  9217. display:flex;
  9218. transition:none;
  9219. transform-origin:50% 50%;
  9220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9221. font-weight:400;
  9222. font-style:normal;
  9223. font-size:16px;
  9224. }
  9225. #u10903 .text {
  9226. position:absolute;
  9227. align-self:flex-start;
  9228. padding:0px 0px 0px 0px;
  9229. box-sizing:border-box;
  9230. width:100%;
  9231. }
  9232. #u10903_text {
  9233. border-width:0px;
  9234. white-space:nowrap;
  9235. text-transform:none;
  9236. }
  9237. #u10904_div {
  9238. border-width:0px;
  9239. position:absolute;
  9240. left:0px;
  9241. top:0px;
  9242. width:65px;
  9243. height:22px;
  9244. background:inherit;
  9245. background-color:rgba(255, 255, 255, 0);
  9246. border-radius:0px;
  9247. filter:drop-shadow(none);
  9248. transition:none;
  9249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9250. font-weight:400;
  9251. font-style:normal;
  9252. font-size:16px;
  9253. }
  9254. #u10904 {
  9255. border-width:0px;
  9256. position:absolute;
  9257. left:27px;
  9258. top:153px;
  9259. width:65px;
  9260. height:22px;
  9261. display:flex;
  9262. transition:none;
  9263. transform-origin:50% 50%;
  9264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9265. font-weight:400;
  9266. font-style:normal;
  9267. font-size:16px;
  9268. }
  9269. #u10904 .text {
  9270. position:absolute;
  9271. align-self:flex-start;
  9272. padding:0px 0px 0px 0px;
  9273. box-sizing:border-box;
  9274. width:100%;
  9275. }
  9276. #u10904_text {
  9277. border-width:0px;
  9278. white-space:nowrap;
  9279. text-transform:none;
  9280. }
  9281. #u10905 {
  9282. border-width:0px;
  9283. position:absolute;
  9284. left:0px;
  9285. top:0px;
  9286. width:0px;
  9287. height:0px;
  9288. }
  9289. #u10906_div {
  9290. border-width:0px;
  9291. position:absolute;
  9292. left:0px;
  9293. top:0px;
  9294. width:140px;
  9295. height:30px;
  9296. background:inherit;
  9297. background-color:rgba(255, 255, 255, 1);
  9298. box-sizing:border-box;
  9299. border-width:1px;
  9300. border-style:solid;
  9301. border-color:rgba(215, 215, 215, 1);
  9302. border-radius:4px;
  9303. filter:drop-shadow(none);
  9304. transition:none;
  9305. font-size:12px;
  9306. }
  9307. #u10906 {
  9308. border-width:0px;
  9309. position:absolute;
  9310. left:3054px;
  9311. top:1351px;
  9312. width:140px;
  9313. height:30px;
  9314. display:flex;
  9315. transition:none;
  9316. transform-origin:50% 50%;
  9317. font-size:12px;
  9318. }
  9319. #u10906 .text {
  9320. position:absolute;
  9321. align-self:center;
  9322. padding:2px 2px 2px 2px;
  9323. box-sizing:border-box;
  9324. width:100%;
  9325. }
  9326. #u10906_text {
  9327. border-width:0px;
  9328. word-wrap:break-word;
  9329. text-transform:none;
  9330. visibility:hidden;
  9331. }
  9332. #u10907_input {
  9333. position:absolute;
  9334. left:0px;
  9335. top:0px;
  9336. width:134px;
  9337. height:23px;
  9338. padding:2px 2px 2px 2px;
  9339. font-family:'ArialMT', 'Arial', sans-serif;
  9340. font-weight:400;
  9341. font-style:normal;
  9342. font-size:12px;
  9343. letter-spacing:normal;
  9344. color:#AAAAAA;
  9345. vertical-align:none;
  9346. text-align:left;
  9347. text-transform:none;
  9348. background-color:transparent;
  9349. border-color:transparent;
  9350. }
  9351. #u10907_input.disabled {
  9352. position:absolute;
  9353. left:0px;
  9354. top:0px;
  9355. width:134px;
  9356. height:23px;
  9357. padding:2px 2px 2px 2px;
  9358. font-family:'ArialMT', 'Arial', sans-serif;
  9359. font-weight:400;
  9360. font-style:normal;
  9361. font-size:12px;
  9362. letter-spacing:normal;
  9363. color:#AAAAAA;
  9364. vertical-align:none;
  9365. text-align:left;
  9366. text-transform:none;
  9367. background-color:transparent;
  9368. border-color:transparent;
  9369. }
  9370. #u10907_div {
  9371. border-width:0px;
  9372. position:absolute;
  9373. left:0px;
  9374. top:0px;
  9375. width:134px;
  9376. height:23px;
  9377. background:inherit;
  9378. background-color:rgba(255, 255, 255, 1);
  9379. border-radius:0px;
  9380. filter:drop-shadow(none);
  9381. transition:none;
  9382. font-size:12px;
  9383. color:#AAAAAA;
  9384. }
  9385. #u10907 {
  9386. border-width:0px;
  9387. position:absolute;
  9388. left:3058px;
  9389. top:1353px;
  9390. width:134px;
  9391. height:23px;
  9392. display:flex;
  9393. transition:none;
  9394. transform-origin:50% 50%;
  9395. font-size:12px;
  9396. color:#AAAAAA;
  9397. }
  9398. #u10907 .text {
  9399. position:absolute;
  9400. align-self:flex-start;
  9401. padding:2px 2px 2px 2px;
  9402. box-sizing:border-box;
  9403. width:100%;
  9404. }
  9405. #u10907_div.disabled {
  9406. border-width:0px;
  9407. position:absolute;
  9408. left:0px;
  9409. top:0px;
  9410. width:134px;
  9411. height:23px;
  9412. background:inherit;
  9413. background-color:rgba(240, 240, 240, 1);
  9414. border-radius:0px;
  9415. filter:drop-shadow(none);
  9416. transition:none;
  9417. font-size:12px;
  9418. color:#AAAAAA;
  9419. }
  9420. #u10907.disabled {
  9421. }
  9422. .u10907_input_option {
  9423. font-size:12px;
  9424. }
  9425. #u10908_div {
  9426. border-width:0px;
  9427. position:absolute;
  9428. left:0px;
  9429. top:0px;
  9430. width:554px;
  9431. height:20px;
  9432. background:inherit;
  9433. background-color:rgba(255, 255, 255, 0);
  9434. border-left:0px;
  9435. border-top:0px;
  9436. border-right:0px;
  9437. border-radius:0px;
  9438. border-bottom-right-radius:0px;
  9439. border-bottom-left-radius:0px;
  9440. filter:drop-shadow(none);
  9441. transition:none;
  9442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9443. font-weight:400;
  9444. font-style:normal;
  9445. font-size:14px;
  9446. color:#7F7F7F;
  9447. }
  9448. #u10908 {
  9449. border-width:0px;
  9450. position:absolute;
  9451. left:1966px;
  9452. top:1391px;
  9453. width:554px;
  9454. height:20px;
  9455. display:flex;
  9456. transition:none;
  9457. transform-origin:50% 50%;
  9458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9459. font-weight:400;
  9460. font-style:normal;
  9461. font-size:14px;
  9462. color:#7F7F7F;
  9463. }
  9464. #u10908 .text {
  9465. position:absolute;
  9466. align-self:center;
  9467. padding:0px 0px 0px 0px;
  9468. box-sizing:border-box;
  9469. width:100%;
  9470. }
  9471. #u10908_text {
  9472. border-width:0px;
  9473. white-space:nowrap;
  9474. text-transform:none;
  9475. }
  9476. #u10909 {
  9477. border-width:0px;
  9478. position:absolute;
  9479. left:2128px;
  9480. top:1596px;
  9481. width:53px;
  9482. height:79px;
  9483. display:flex;
  9484. transition:none;
  9485. }
  9486. #u10909 .text {
  9487. position:absolute;
  9488. align-self:center;
  9489. padding:2px 2px 2px 2px;
  9490. box-sizing:border-box;
  9491. width:100%;
  9492. }
  9493. #u10909_img {
  9494. border-width:0px;
  9495. position:absolute;
  9496. left:0px;
  9497. top:0px;
  9498. width:53px;
  9499. height:79px;
  9500. }
  9501. #u10909_text {
  9502. border-width:0px;
  9503. word-wrap:break-word;
  9504. text-transform:none;
  9505. visibility:hidden;
  9506. }
  9507. #u10910 {
  9508. border-width:0px;
  9509. position:absolute;
  9510. left:0px;
  9511. top:0px;
  9512. width:0px;
  9513. height:0px;
  9514. }
  9515. #u10911_div {
  9516. border-width:0px;
  9517. position:absolute;
  9518. left:0px;
  9519. top:0px;
  9520. width:440px;
  9521. height:58px;
  9522. background:inherit;
  9523. background-color:rgba(123, 77, 18, 1);
  9524. box-sizing:border-box;
  9525. border-width:2px;
  9526. border-style:solid;
  9527. border-color:rgba(245, 154, 35, 1);
  9528. border-radius:4px;
  9529. filter:drop-shadow(none);
  9530. transition:none;
  9531. color:#7B4D12;
  9532. }
  9533. #u10911 {
  9534. border-width:0px;
  9535. position:absolute;
  9536. left:2200px;
  9537. top:1596px;
  9538. width:440px;
  9539. height:58px;
  9540. display:flex;
  9541. transition:none;
  9542. transform-origin:50% 50%;
  9543. color:#7B4D12;
  9544. }
  9545. #u10911 .text {
  9546. position:absolute;
  9547. align-self:center;
  9548. padding:2px 2px 2px 2px;
  9549. box-sizing:border-box;
  9550. width:100%;
  9551. }
  9552. #u10911_text {
  9553. border-width:0px;
  9554. word-wrap:break-word;
  9555. text-transform:none;
  9556. visibility:hidden;
  9557. }
  9558. #u10912_div {
  9559. border-width:0px;
  9560. position:absolute;
  9561. left:0px;
  9562. top:0px;
  9563. width:91px;
  9564. height:25px;
  9565. background:inherit;
  9566. background-color:rgba(255, 255, 255, 0);
  9567. border-radius:0px;
  9568. filter:drop-shadow(none);
  9569. transition:none;
  9570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9571. font-weight:400;
  9572. font-style:normal;
  9573. font-size:18px;
  9574. color:#FFFFFF;
  9575. }
  9576. #u10912 {
  9577. border-width:0px;
  9578. position:absolute;
  9579. left:2228px;
  9580. top:1613px;
  9581. width:91px;
  9582. height:25px;
  9583. display:flex;
  9584. transition:none;
  9585. transform-origin:50% 50%;
  9586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9587. font-weight:400;
  9588. font-style:normal;
  9589. font-size:18px;
  9590. color:#FFFFFF;
  9591. }
  9592. #u10912 .text {
  9593. position:absolute;
  9594. align-self:flex-start;
  9595. padding:0px 0px 0px 0px;
  9596. box-sizing:border-box;
  9597. width:100%;
  9598. }
  9599. #u10912_text {
  9600. border-width:0px;
  9601. white-space:nowrap;
  9602. text-transform:none;
  9603. }
  9604. #u10913 {
  9605. border-width:0px;
  9606. position:absolute;
  9607. left:0px;
  9608. top:0px;
  9609. width:0px;
  9610. height:0px;
  9611. }
  9612. #u10914_div {
  9613. border-width:0px;
  9614. position:absolute;
  9615. left:0px;
  9616. top:0px;
  9617. width:440px;
  9618. height:216px;
  9619. background:inherit;
  9620. background-color:rgba(95, 72, 47, 1);
  9621. box-sizing:border-box;
  9622. border-width:2px;
  9623. border-style:solid;
  9624. border-color:rgba(245, 154, 35, 1);
  9625. border-radius:10px;
  9626. filter:drop-shadow(none);
  9627. transition:none;
  9628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9629. font-weight:400;
  9630. font-style:normal;
  9631. font-size:12px;
  9632. color:#FFFFFF;
  9633. text-align:left;
  9634. }
  9635. #u10914 {
  9636. border-width:0px;
  9637. position:absolute;
  9638. left:2200px;
  9639. top:1652px;
  9640. width:440px;
  9641. height:216px;
  9642. display:flex;
  9643. transition:none;
  9644. transform-origin:50% 50%;
  9645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9646. font-weight:400;
  9647. font-style:normal;
  9648. font-size:12px;
  9649. color:#FFFFFF;
  9650. text-align:left;
  9651. }
  9652. #u10914 .text {
  9653. position:absolute;
  9654. align-self:center;
  9655. padding:2px 2px 2px 10px;
  9656. box-sizing:border-box;
  9657. width:100%;
  9658. }
  9659. #u10914_text {
  9660. border-width:0px;
  9661. word-wrap:break-word;
  9662. text-transform:none;
  9663. visibility:hidden;
  9664. }
  9665. #u10915_div {
  9666. border-width:0px;
  9667. position:absolute;
  9668. left:0px;
  9669. top:0px;
  9670. width:77px;
  9671. height:34px;
  9672. background:inherit;
  9673. background-color:rgba(245, 154, 35, 0);
  9674. border-left:0px;
  9675. border-top:0px;
  9676. border-right:0px;
  9677. border-radius:0px;
  9678. border-bottom-right-radius:0px;
  9679. border-bottom-left-radius:0px;
  9680. filter:drop-shadow(none);
  9681. transition:none;
  9682. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9683. font-weight:500;
  9684. font-style:normal;
  9685. font-size:18px;
  9686. color:#FFFFFF;
  9687. text-align:left;
  9688. line-height:30px;
  9689. }
  9690. #u10915 {
  9691. border-width:0px;
  9692. position:absolute;
  9693. left:2218px;
  9694. top:1672px;
  9695. width:77px;
  9696. height:34px;
  9697. display:flex;
  9698. transition:none;
  9699. transform-origin:50% 50%;
  9700. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9701. font-weight:500;
  9702. font-style:normal;
  9703. font-size:18px;
  9704. color:#FFFFFF;
  9705. text-align:left;
  9706. line-height:30px;
  9707. }
  9708. #u10915 .text {
  9709. position:absolute;
  9710. align-self:flex-start;
  9711. padding:2px 2px 2px 2px;
  9712. box-sizing:border-box;
  9713. width:100%;
  9714. }
  9715. #u10915_text {
  9716. border-width:0px;
  9717. white-space:nowrap;
  9718. text-transform:none;
  9719. }
  9720. #u10916 {
  9721. border-width:0px;
  9722. position:absolute;
  9723. left:0px;
  9724. top:0px;
  9725. width:0px;
  9726. height:0px;
  9727. }
  9728. #u10917_div {
  9729. border-width:0px;
  9730. position:absolute;
  9731. left:0px;
  9732. top:0px;
  9733. width:397px;
  9734. height:60px;
  9735. background:inherit;
  9736. background-color:rgba(255, 255, 255, 0.09803921568627451);
  9737. border-radius:0px;
  9738. filter:drop-shadow(none);
  9739. transition:none;
  9740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9741. font-weight:400;
  9742. font-style:normal;
  9743. font-size:12px;
  9744. color:rgba(255, 255, 255, 0.6980392156862745);
  9745. }
  9746. #u10917 {
  9747. border-width:0px;
  9748. position:absolute;
  9749. left:2218px;
  9750. top:1720px;
  9751. width:397px;
  9752. height:60px;
  9753. display:flex;
  9754. transition:none;
  9755. transform-origin:50% 50%;
  9756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9757. font-weight:400;
  9758. font-style:normal;
  9759. font-size:12px;
  9760. color:rgba(255, 255, 255, 0.6980392156862745);
  9761. }
  9762. #u10917 .text {
  9763. position:absolute;
  9764. align-self:center;
  9765. padding:2px 2px 2px 2px;
  9766. box-sizing:border-box;
  9767. width:100%;
  9768. }
  9769. #u10917_text {
  9770. border-width:0px;
  9771. word-wrap:break-word;
  9772. text-transform:none;
  9773. visibility:hidden;
  9774. }
  9775. #u10918_div {
  9776. border-width:0px;
  9777. position:absolute;
  9778. left:0px;
  9779. top:0px;
  9780. width:53px;
  9781. height:44px;
  9782. background:inherit;
  9783. background-color:rgba(245, 154, 35, 0);
  9784. border-left:0px;
  9785. border-top:0px;
  9786. border-right:0px;
  9787. border-radius:0px;
  9788. border-bottom-right-radius:0px;
  9789. border-bottom-left-radius:0px;
  9790. filter:drop-shadow(none);
  9791. transition:none;
  9792. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9793. font-style:normal;
  9794. color:#FFFFFF;
  9795. text-align:left;
  9796. }
  9797. #u10918 {
  9798. border-width:0px;
  9799. position:absolute;
  9800. left:2236px;
  9801. top:1728px;
  9802. width:53px;
  9803. height:44px;
  9804. display:flex;
  9805. transition:none;
  9806. transform-origin:50% 50%;
  9807. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9808. font-style:normal;
  9809. color:#FFFFFF;
  9810. text-align:left;
  9811. }
  9812. #u10918 .text {
  9813. position:absolute;
  9814. align-self:flex-start;
  9815. padding:2px 2px 2px 2px;
  9816. box-sizing:border-box;
  9817. width:100%;
  9818. }
  9819. #u10918_text {
  9820. border-width:0px;
  9821. white-space:nowrap;
  9822. text-transform:none;
  9823. }
  9824. #u10919_div {
  9825. border-width:0px;
  9826. position:absolute;
  9827. left:0px;
  9828. top:0px;
  9829. width:235px;
  9830. height:24px;
  9831. background:inherit;
  9832. background-color:rgba(245, 154, 35, 0);
  9833. border-left:0px;
  9834. border-top:0px;
  9835. border-right:0px;
  9836. border-radius:0px;
  9837. border-bottom-right-radius:0px;
  9838. border-bottom-left-radius:0px;
  9839. filter:drop-shadow(none);
  9840. transition:none;
  9841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9842. font-weight:400;
  9843. font-style:normal;
  9844. color:#FFFFFF;
  9845. text-align:left;
  9846. }
  9847. #u10919 {
  9848. border-width:0px;
  9849. position:absolute;
  9850. left:2306px;
  9851. top:1738px;
  9852. width:235px;
  9853. height:24px;
  9854. display:flex;
  9855. transition:none;
  9856. transform-origin:50% 50%;
  9857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9858. font-weight:400;
  9859. font-style:normal;
  9860. color:#FFFFFF;
  9861. text-align:left;
  9862. }
  9863. #u10919 .text {
  9864. position:absolute;
  9865. align-self:flex-start;
  9866. padding:2px 2px 2px 2px;
  9867. box-sizing:border-box;
  9868. width:100%;
  9869. }
  9870. #u10919_text {
  9871. border-width:0px;
  9872. white-space:nowrap;
  9873. text-transform:none;
  9874. }
  9875. #u10920 {
  9876. border-width:0px;
  9877. position:absolute;
  9878. left:0px;
  9879. top:0px;
  9880. width:0px;
  9881. height:0px;
  9882. }
  9883. #u10921_div {
  9884. border-width:0px;
  9885. position:absolute;
  9886. left:0px;
  9887. top:0px;
  9888. width:397px;
  9889. height:60px;
  9890. background:inherit;
  9891. background-color:rgba(255, 255, 255, 0.09803921568627451);
  9892. border-radius:0px;
  9893. filter:drop-shadow(none);
  9894. transition:none;
  9895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9896. font-weight:400;
  9897. font-style:normal;
  9898. font-size:12px;
  9899. color:rgba(255, 255, 255, 0.6980392156862745);
  9900. }
  9901. #u10921 {
  9902. border-width:0px;
  9903. position:absolute;
  9904. left:2218px;
  9905. top:1781px;
  9906. width:397px;
  9907. height:60px;
  9908. display:flex;
  9909. transition:none;
  9910. transform-origin:50% 50%;
  9911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9912. font-weight:400;
  9913. font-style:normal;
  9914. font-size:12px;
  9915. color:rgba(255, 255, 255, 0.6980392156862745);
  9916. }
  9917. #u10921 .text {
  9918. position:absolute;
  9919. align-self:center;
  9920. padding:2px 2px 2px 2px;
  9921. box-sizing:border-box;
  9922. width:100%;
  9923. }
  9924. #u10921_text {
  9925. border-width:0px;
  9926. word-wrap:break-word;
  9927. text-transform:none;
  9928. visibility:hidden;
  9929. }
  9930. #u10922_div {
  9931. border-width:0px;
  9932. position:absolute;
  9933. left:0px;
  9934. top:0px;
  9935. width:77px;
  9936. height:24px;
  9937. background:inherit;
  9938. background-color:rgba(245, 154, 35, 0);
  9939. border-left:0px;
  9940. border-top:0px;
  9941. border-right:0px;
  9942. border-radius:0px;
  9943. border-bottom-right-radius:0px;
  9944. border-bottom-left-radius:0px;
  9945. filter:drop-shadow(none);
  9946. transition:none;
  9947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9948. font-weight:400;
  9949. font-style:normal;
  9950. font-size:14px;
  9951. color:#FFFFFF;
  9952. text-align:left;
  9953. }
  9954. #u10922 {
  9955. border-width:0px;
  9956. position:absolute;
  9957. left:2236px;
  9958. top:1799px;
  9959. width:77px;
  9960. height:24px;
  9961. display:flex;
  9962. transition:none;
  9963. transform-origin:50% 50%;
  9964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9965. font-weight:400;
  9966. font-style:normal;
  9967. font-size:14px;
  9968. color:#FFFFFF;
  9969. text-align:left;
  9970. }
  9971. #u10922 .text {
  9972. position:absolute;
  9973. align-self:flex-start;
  9974. padding:2px 2px 2px 2px;
  9975. box-sizing:border-box;
  9976. width:100%;
  9977. }
  9978. #u10922_text {
  9979. border-width:0px;
  9980. white-space:nowrap;
  9981. text-transform:none;
  9982. }
  9983. #u10923_div {
  9984. border-width:0px;
  9985. position:absolute;
  9986. left:0px;
  9987. top:0px;
  9988. width:69px;
  9989. height:24px;
  9990. background:inherit;
  9991. background-color:rgba(245, 154, 35, 0);
  9992. border-left:0px;
  9993. border-top:0px;
  9994. border-right:0px;
  9995. border-radius:0px;
  9996. border-bottom-right-radius:0px;
  9997. border-bottom-left-radius:0px;
  9998. filter:drop-shadow(none);
  9999. transition:none;
  10000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10001. font-weight:400;
  10002. font-style:normal;
  10003. font-size:14px;
  10004. color:#FFFFFF;
  10005. text-align:left;
  10006. }
  10007. #u10923 {
  10008. border-width:0px;
  10009. position:absolute;
  10010. left:2360px;
  10011. top:1799px;
  10012. width:69px;
  10013. height:24px;
  10014. display:flex;
  10015. transition:none;
  10016. transform-origin:50% 50%;
  10017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10018. font-weight:400;
  10019. font-style:normal;
  10020. font-size:14px;
  10021. color:#FFFFFF;
  10022. text-align:left;
  10023. }
  10024. #u10923 .text {
  10025. position:absolute;
  10026. align-self:flex-start;
  10027. padding:2px 2px 2px 2px;
  10028. box-sizing:border-box;
  10029. width:100%;
  10030. }
  10031. #u10923_text {
  10032. border-width:0px;
  10033. white-space:nowrap;
  10034. text-transform:none;
  10035. }
  10036. #u10924 {
  10037. border-width:0px;
  10038. position:absolute;
  10039. left:2621px;
  10040. top:1636px;
  10041. width:19px;
  10042. height:30px;
  10043. display:flex;
  10044. transition:none;
  10045. }
  10046. #u10924 .text {
  10047. position:absolute;
  10048. align-self:center;
  10049. padding:2px 2px 2px 2px;
  10050. box-sizing:border-box;
  10051. width:100%;
  10052. }
  10053. #u10924_img {
  10054. border-width:0px;
  10055. position:absolute;
  10056. left:0px;
  10057. top:0px;
  10058. width:19px;
  10059. height:30px;
  10060. }
  10061. #u10924_text {
  10062. border-width:0px;
  10063. word-wrap:break-word;
  10064. text-transform:none;
  10065. visibility:hidden;
  10066. }
  10067. #u10925_div {
  10068. border-width:0px;
  10069. position:absolute;
  10070. left:0px;
  10071. top:0px;
  10072. width:23px;
  10073. height:16px;
  10074. background:inherit;
  10075. background-color:rgba(255, 255, 255, 0);
  10076. border-radius:0px;
  10077. filter:drop-shadow(none);
  10078. transition:none;
  10079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10080. font-weight:400;
  10081. font-style:normal;
  10082. font-size:11px;
  10083. color:#F59A23;
  10084. }
  10085. #u10925 {
  10086. border-width:0px;
  10087. position:absolute;
  10088. left:2627px;
  10089. top:3609px;
  10090. width:23px;
  10091. height:16px;
  10092. display:flex;
  10093. transition:none;
  10094. transform-origin:50% 50%;
  10095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10096. font-weight:400;
  10097. font-style:normal;
  10098. font-size:11px;
  10099. color:#F59A23;
  10100. }
  10101. #u10925 .text {
  10102. position:absolute;
  10103. align-self:flex-start;
  10104. padding:0px 0px 0px 0px;
  10105. box-sizing:border-box;
  10106. width:100%;
  10107. }
  10108. #u10925_text {
  10109. border-width:0px;
  10110. white-space:nowrap;
  10111. text-transform:none;
  10112. }
  10113. #u10926 {
  10114. border-width:0px;
  10115. position:absolute;
  10116. left:1305px;
  10117. top:3422px;
  10118. width:1451px;
  10119. height:676px;
  10120. display:flex;
  10121. transition:none;
  10122. }
  10123. #u10926 .text {
  10124. position:absolute;
  10125. align-self:center;
  10126. padding:2px 2px 2px 2px;
  10127. box-sizing:border-box;
  10128. width:100%;
  10129. }
  10130. #u10926_img {
  10131. border-width:0px;
  10132. position:absolute;
  10133. left:0px;
  10134. top:0px;
  10135. width:1451px;
  10136. height:676px;
  10137. }
  10138. #u10926_text {
  10139. border-width:0px;
  10140. word-wrap:break-word;
  10141. text-transform:none;
  10142. visibility:hidden;
  10143. }
  10144. #u10927_div {
  10145. border-width:0px;
  10146. position:absolute;
  10147. left:0px;
  10148. top:0px;
  10149. width:23px;
  10150. height:16px;
  10151. background:inherit;
  10152. background-color:rgba(255, 255, 255, 0);
  10153. border-radius:0px;
  10154. filter:drop-shadow(none);
  10155. transition:none;
  10156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10157. font-weight:400;
  10158. font-style:normal;
  10159. font-size:11px;
  10160. color:#F59A23;
  10161. }
  10162. #u10927 {
  10163. border-width:0px;
  10164. position:absolute;
  10165. left:2634px;
  10166. top:3618px;
  10167. width:23px;
  10168. height:16px;
  10169. display:flex;
  10170. transition:none;
  10171. transform-origin:50% 50%;
  10172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10173. font-weight:400;
  10174. font-style:normal;
  10175. font-size:11px;
  10176. color:#F59A23;
  10177. }
  10178. #u10927 .text {
  10179. position:absolute;
  10180. align-self:flex-start;
  10181. padding:0px 0px 0px 0px;
  10182. box-sizing:border-box;
  10183. width:100%;
  10184. }
  10185. #u10927_text {
  10186. border-width:0px;
  10187. white-space:nowrap;
  10188. text-transform:none;
  10189. }
  10190. #u10928_div {
  10191. border-width:0px;
  10192. position:absolute;
  10193. left:0px;
  10194. top:0px;
  10195. width:23px;
  10196. height:16px;
  10197. background:inherit;
  10198. background-color:rgba(255, 255, 255, 0);
  10199. border-radius:0px;
  10200. filter:drop-shadow(none);
  10201. transition:none;
  10202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10203. font-weight:400;
  10204. font-style:normal;
  10205. font-size:11px;
  10206. color:#F59A23;
  10207. }
  10208. #u10928 {
  10209. border-width:0px;
  10210. position:absolute;
  10211. left:2634px;
  10212. top:3662px;
  10213. width:23px;
  10214. height:16px;
  10215. display:flex;
  10216. transition:none;
  10217. transform-origin:50% 50%;
  10218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10219. font-weight:400;
  10220. font-style:normal;
  10221. font-size:11px;
  10222. color:#F59A23;
  10223. }
  10224. #u10928 .text {
  10225. position:absolute;
  10226. align-self:flex-start;
  10227. padding:0px 0px 0px 0px;
  10228. box-sizing:border-box;
  10229. width:100%;
  10230. }
  10231. #u10928_text {
  10232. border-width:0px;
  10233. white-space:nowrap;
  10234. text-transform:none;
  10235. }
  10236. #u10929_div {
  10237. border-width:0px;
  10238. position:absolute;
  10239. left:0px;
  10240. top:0px;
  10241. width:23px;
  10242. height:16px;
  10243. background:inherit;
  10244. background-color:rgba(255, 255, 255, 0);
  10245. border-radius:0px;
  10246. filter:drop-shadow(none);
  10247. transition:none;
  10248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10249. font-weight:400;
  10250. font-style:normal;
  10251. font-size:11px;
  10252. color:#F59A23;
  10253. }
  10254. #u10929 {
  10255. border-width:0px;
  10256. position:absolute;
  10257. left:2634px;
  10258. top:3705px;
  10259. width:23px;
  10260. height:16px;
  10261. display:flex;
  10262. transition:none;
  10263. transform-origin:50% 50%;
  10264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10265. font-weight:400;
  10266. font-style:normal;
  10267. font-size:11px;
  10268. color:#F59A23;
  10269. }
  10270. #u10929 .text {
  10271. position:absolute;
  10272. align-self:flex-start;
  10273. padding:0px 0px 0px 0px;
  10274. box-sizing:border-box;
  10275. width:100%;
  10276. }
  10277. #u10929_text {
  10278. border-width:0px;
  10279. white-space:nowrap;
  10280. text-transform:none;
  10281. }
  10282. #u10930_div {
  10283. border-width:0px;
  10284. position:absolute;
  10285. left:0px;
  10286. top:0px;
  10287. width:23px;
  10288. height:16px;
  10289. background:inherit;
  10290. background-color:rgba(255, 255, 255, 1);
  10291. border-radius:0px;
  10292. filter:drop-shadow(none);
  10293. transition:none;
  10294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10295. font-weight:400;
  10296. font-style:normal;
  10297. font-size:11px;
  10298. color:#F59A23;
  10299. }
  10300. #u10930 {
  10301. border-width:0px;
  10302. position:absolute;
  10303. left:2601px;
  10304. top:3705px;
  10305. width:23px;
  10306. height:16px;
  10307. display:flex;
  10308. transition:none;
  10309. transform-origin:50% 50%;
  10310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10311. font-weight:400;
  10312. font-style:normal;
  10313. font-size:11px;
  10314. color:#F59A23;
  10315. }
  10316. #u10930 .text {
  10317. position:absolute;
  10318. align-self:flex-start;
  10319. padding:0px 0px 0px 0px;
  10320. box-sizing:border-box;
  10321. width:100%;
  10322. }
  10323. #u10930_text {
  10324. border-width:0px;
  10325. white-space:nowrap;
  10326. text-transform:none;
  10327. }
  10328. #u10931_div {
  10329. border-width:0px;
  10330. position:absolute;
  10331. left:0px;
  10332. top:0px;
  10333. width:23px;
  10334. height:16px;
  10335. background:inherit;
  10336. background-color:rgba(255, 255, 255, 1);
  10337. border-radius:0px;
  10338. filter:drop-shadow(none);
  10339. transition:none;
  10340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10341. font-weight:400;
  10342. font-style:normal;
  10343. font-size:11px;
  10344. color:#F59A23;
  10345. }
  10346. #u10931 {
  10347. border-width:0px;
  10348. position:absolute;
  10349. left:2601px;
  10350. top:3662px;
  10351. width:23px;
  10352. height:16px;
  10353. display:flex;
  10354. transition:none;
  10355. transform-origin:50% 50%;
  10356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10357. font-weight:400;
  10358. font-style:normal;
  10359. font-size:11px;
  10360. color:#F59A23;
  10361. }
  10362. #u10931 .text {
  10363. position:absolute;
  10364. align-self:flex-start;
  10365. padding:0px 0px 0px 0px;
  10366. box-sizing:border-box;
  10367. width:100%;
  10368. }
  10369. #u10931_text {
  10370. border-width:0px;
  10371. white-space:nowrap;
  10372. text-transform:none;
  10373. }
  10374. #u10932_div {
  10375. border-width:0px;
  10376. position:absolute;
  10377. left:0px;
  10378. top:0px;
  10379. width:23px;
  10380. height:16px;
  10381. background:inherit;
  10382. background-color:rgba(255, 255, 255, 1);
  10383. border-radius:0px;
  10384. filter:drop-shadow(none);
  10385. transition:none;
  10386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10387. font-weight:400;
  10388. font-style:normal;
  10389. font-size:11px;
  10390. color:#F59A23;
  10391. }
  10392. #u10932 {
  10393. border-width:0px;
  10394. position:absolute;
  10395. left:2601px;
  10396. top:3618px;
  10397. width:23px;
  10398. height:16px;
  10399. display:flex;
  10400. transition:none;
  10401. transform-origin:50% 50%;
  10402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10403. font-weight:400;
  10404. font-style:normal;
  10405. font-size:11px;
  10406. color:#F59A23;
  10407. }
  10408. #u10932 .text {
  10409. position:absolute;
  10410. align-self:flex-start;
  10411. padding:0px 0px 0px 0px;
  10412. box-sizing:border-box;
  10413. width:100%;
  10414. }
  10415. #u10932_text {
  10416. border-width:0px;
  10417. white-space:nowrap;
  10418. text-transform:none;
  10419. }
  10420. #u10933 {
  10421. border-width:0px;
  10422. position:absolute;
  10423. left:1288px;
  10424. top:4163px;
  10425. width:374px;
  10426. height:808px;
  10427. display:flex;
  10428. transition:none;
  10429. }
  10430. #u10933 .text {
  10431. position:absolute;
  10432. align-self:center;
  10433. padding:2px 2px 2px 2px;
  10434. box-sizing:border-box;
  10435. width:100%;
  10436. }
  10437. #u10933_img {
  10438. border-width:0px;
  10439. position:absolute;
  10440. left:0px;
  10441. top:0px;
  10442. width:374px;
  10443. height:808px;
  10444. }
  10445. #u10933_text {
  10446. border-width:0px;
  10447. word-wrap:break-word;
  10448. text-transform:none;
  10449. visibility:hidden;
  10450. }
  10451. #u10934 {
  10452. border-width:0px;
  10453. position:absolute;
  10454. left:1704px;
  10455. top:4173px;
  10456. width:365px;
  10457. height:798px;
  10458. display:flex;
  10459. transition:none;
  10460. }
  10461. #u10934 .text {
  10462. position:absolute;
  10463. align-self:center;
  10464. padding:2px 2px 2px 2px;
  10465. box-sizing:border-box;
  10466. width:100%;
  10467. }
  10468. #u10934_img {
  10469. border-width:0px;
  10470. position:absolute;
  10471. left:0px;
  10472. top:0px;
  10473. width:365px;
  10474. height:798px;
  10475. }
  10476. #u10934_text {
  10477. border-width:0px;
  10478. word-wrap:break-word;
  10479. text-transform:none;
  10480. visibility:hidden;
  10481. }
  10482. #u10935 {
  10483. border-width:0px;
  10484. position:absolute;
  10485. left:1841px;
  10486. top:3448px;
  10487. width:675px;
  10488. height:625px;
  10489. display:flex;
  10490. transition:none;
  10491. }
  10492. #u10935 .text {
  10493. position:absolute;
  10494. align-self:center;
  10495. padding:2px 2px 2px 2px;
  10496. box-sizing:border-box;
  10497. width:100%;
  10498. }
  10499. #u10935_img {
  10500. border-width:0px;
  10501. position:absolute;
  10502. left:0px;
  10503. top:0px;
  10504. width:675px;
  10505. height:625px;
  10506. }
  10507. #u10935_text {
  10508. border-width:0px;
  10509. word-wrap:break-word;
  10510. text-transform:none;
  10511. visibility:hidden;
  10512. }
  10513. #u10936 {
  10514. border-width:0px;
  10515. position:absolute;
  10516. left:1291px;
  10517. top:5053px;
  10518. width:368px;
  10519. height:756px;
  10520. display:flex;
  10521. transition:none;
  10522. }
  10523. #u10936 .text {
  10524. position:absolute;
  10525. align-self:center;
  10526. padding:2px 2px 2px 2px;
  10527. box-sizing:border-box;
  10528. width:100%;
  10529. }
  10530. #u10936_img {
  10531. border-width:0px;
  10532. position:absolute;
  10533. left:0px;
  10534. top:0px;
  10535. width:368px;
  10536. height:756px;
  10537. }
  10538. #u10936_text {
  10539. border-width:0px;
  10540. word-wrap:break-word;
  10541. text-transform:none;
  10542. visibility:hidden;
  10543. }
  10544. #u10937 {
  10545. border-width:0px;
  10546. position:absolute;
  10547. left:1679px;
  10548. top:5053px;
  10549. width:344px;
  10550. height:756px;
  10551. display:flex;
  10552. transition:none;
  10553. }
  10554. #u10937 .text {
  10555. position:absolute;
  10556. align-self:center;
  10557. padding:2px 2px 2px 2px;
  10558. box-sizing:border-box;
  10559. width:100%;
  10560. }
  10561. #u10937_img {
  10562. border-width:0px;
  10563. position:absolute;
  10564. left:0px;
  10565. top:0px;
  10566. width:344px;
  10567. height:756px;
  10568. }
  10569. #u10937_text {
  10570. border-width:0px;
  10571. word-wrap:break-word;
  10572. text-transform:none;
  10573. visibility:hidden;
  10574. }
  10575. #u10938 {
  10576. border-width:0px;
  10577. position:absolute;
  10578. left:2072px;
  10579. top:5053px;
  10580. width:1460px;
  10581. height:792px;
  10582. display:flex;
  10583. transition:none;
  10584. }
  10585. #u10938 .text {
  10586. position:absolute;
  10587. align-self:center;
  10588. padding:2px 2px 2px 2px;
  10589. box-sizing:border-box;
  10590. width:100%;
  10591. }
  10592. #u10938_img {
  10593. border-width:0px;
  10594. position:absolute;
  10595. left:0px;
  10596. top:0px;
  10597. width:1460px;
  10598. height:792px;
  10599. }
  10600. #u10938_text {
  10601. border-width:0px;
  10602. word-wrap:break-word;
  10603. text-transform:none;
  10604. visibility:hidden;
  10605. }
  10606. #u10939 {
  10607. border-width:0px;
  10608. position:absolute;
  10609. left:0px;
  10610. top:0px;
  10611. width:0px;
  10612. height:0px;
  10613. }
  10614. #u10940 {
  10615. border-width:0px;
  10616. position:absolute;
  10617. left:3585px;
  10618. top:5053px;
  10619. width:542px;
  10620. height:595px;
  10621. display:flex;
  10622. transition:none;
  10623. }
  10624. #u10940 .text {
  10625. position:absolute;
  10626. align-self:center;
  10627. padding:2px 2px 2px 2px;
  10628. box-sizing:border-box;
  10629. width:100%;
  10630. }
  10631. #u10940_img {
  10632. border-width:0px;
  10633. position:absolute;
  10634. left:0px;
  10635. top:0px;
  10636. width:542px;
  10637. height:595px;
  10638. }
  10639. #u10940_text {
  10640. border-width:0px;
  10641. word-wrap:break-word;
  10642. text-transform:none;
  10643. visibility:hidden;
  10644. }
  10645. #u10941 {
  10646. border-width:0px;
  10647. position:absolute;
  10648. left:3585px;
  10649. top:5374px;
  10650. width:542px;
  10651. height:471px;
  10652. display:flex;
  10653. transition:none;
  10654. }
  10655. #u10941 .text {
  10656. position:absolute;
  10657. align-self:center;
  10658. padding:2px 2px 2px 2px;
  10659. box-sizing:border-box;
  10660. width:100%;
  10661. }
  10662. #u10941_img {
  10663. border-width:0px;
  10664. position:absolute;
  10665. left:0px;
  10666. top:0px;
  10667. width:542px;
  10668. height:471px;
  10669. }
  10670. #u10941_text {
  10671. border-width:0px;
  10672. word-wrap:break-word;
  10673. text-transform:none;
  10674. visibility:hidden;
  10675. }