styles.css 158 KB

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