styles.css 152 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462
  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. #u60089_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. #u60089 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u60089 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u60089_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u60090_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. #u60090 {
  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. #u60090 .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. #u60090_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u60091_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. #u60091 {
  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. #u60091 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u60091_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u60092 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u60093_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u60093 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u60093 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u60093_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u60094_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. #u60094 {
  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. #u60094 .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. #u60094_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u60095_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. #u60095 {
  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. #u60095 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u60095_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u60096 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u60097_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. #u60097 {
  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. #u60097 .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. #u60097_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u60098_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u60098 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u60098 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u60098_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u60099 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u60100_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. #u60100 {
  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. #u60100 .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. #u60100_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u60101_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u60101 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u60101 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u60101_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u60102 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u60103_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. #u60103 {
  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. #u60103 .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. #u60103_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u60104_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u60104 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u60104 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u60104_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u60105 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u60106_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. #u60106 {
  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. #u60106 .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. #u60106_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u60107_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u60107 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u60107 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u60107_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u60108 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u60109_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. #u60109 {
  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. #u60109 .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. #u60109_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u60110_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u60110 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u60110 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u60110_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u60111 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u60112_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. #u60112 {
  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. #u60112 .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. #u60112_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u60113_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u60113 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u60113 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u60113_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u60114 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u60115_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. #u60115 {
  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. #u60115 .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. #u60115_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u60116_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u60116 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u60116 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u60116_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u60117 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u60118_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. #u60118 {
  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. #u60118 .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. #u60118_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u60119_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u60119 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u60119 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u60119_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u60120 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u60121_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. #u60121 {
  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. #u60121 .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. #u60121_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u60122_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u60122 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u60122 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u60122_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u60123_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. #u60123 {
  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. #u60123 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u60123_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u60124_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u60124 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u60124 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u60124_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u60125_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. #u60125 {
  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. #u60125 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u60125_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u60126_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u60126 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u60126 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u60126_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u60127 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u60128_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. #u60128 {
  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. #u60128 .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. #u60128_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u60129_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u60129 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u60129 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u60129_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u60130 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u60131_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. #u60131 {
  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. #u60131 .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. #u60131_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u60132_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u60132 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u60132 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u60132_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u60133 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u60134_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. #u60134_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. #u60134_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. #u60134 {
  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. #u60134 .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. #u60134_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. #u60134.disabled {
  1428. }
  1429. .u60134_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u60135_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u60135 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u60135 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u60135_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u60136_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. #u60136 {
  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. #u60136 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u60136_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u60137_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u60137 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u60137 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u60137_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u60138_div {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:1257px;
  1544. height:1180px;
  1545. background:inherit;
  1546. background-color:rgba(255, 255, 255, 1);
  1547. box-sizing:border-box;
  1548. border-width:1px;
  1549. border-style:solid;
  1550. border-color:rgba(242, 242, 242, 1);
  1551. border-radius:0px;
  1552. -moz-box-shadow:none;
  1553. -webkit-box-shadow:none;
  1554. box-shadow:none;
  1555. }
  1556. #u60138 {
  1557. border-width:0px;
  1558. position:absolute;
  1559. left:332px;
  1560. top:50px;
  1561. width:1257px;
  1562. height:1180px;
  1563. display:flex;
  1564. }
  1565. #u60138 .text {
  1566. position:absolute;
  1567. align-self:center;
  1568. padding:2px 2px 2px 2px;
  1569. box-sizing:border-box;
  1570. width:100%;
  1571. }
  1572. #u60138_text {
  1573. border-width:0px;
  1574. word-wrap:break-word;
  1575. text-transform:none;
  1576. visibility:hidden;
  1577. }
  1578. #u60139_img {
  1579. border-width:0px;
  1580. position:absolute;
  1581. left:0px;
  1582. top:0px;
  1583. width:598px;
  1584. height:413px;
  1585. }
  1586. #u60139 {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:970px;
  1590. top:727px;
  1591. width:598px;
  1592. height:413px;
  1593. display:flex;
  1594. }
  1595. #u60139 .text {
  1596. position:absolute;
  1597. align-self:center;
  1598. padding:0px 0px 0px 0px;
  1599. box-sizing:border-box;
  1600. width:100%;
  1601. }
  1602. #u60139_text {
  1603. border-width:0px;
  1604. word-wrap:break-word;
  1605. text-transform:none;
  1606. visibility:hidden;
  1607. }
  1608. #u60140_div {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:145px;
  1614. height:25px;
  1615. background:inherit;
  1616. background-color:rgba(255, 255, 255, 0);
  1617. border:none;
  1618. border-radius:0px;
  1619. -moz-box-shadow:none;
  1620. -webkit-box-shadow:none;
  1621. box-shadow:none;
  1622. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1623. font-weight:650;
  1624. font-style:normal;
  1625. }
  1626. #u60140 {
  1627. border-width:0px;
  1628. position:absolute;
  1629. left:996px;
  1630. top:750px;
  1631. width:145px;
  1632. height:25px;
  1633. display:flex;
  1634. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1635. font-weight:650;
  1636. font-style:normal;
  1637. }
  1638. #u60140 .text {
  1639. position:absolute;
  1640. align-self:flex-start;
  1641. padding:0px 0px 0px 0px;
  1642. box-sizing:border-box;
  1643. width:100%;
  1644. }
  1645. #u60140_text {
  1646. border-width:0px;
  1647. white-space:nowrap;
  1648. text-transform:none;
  1649. }
  1650. #u60141_div {
  1651. border-width:0px;
  1652. position:absolute;
  1653. left:0px;
  1654. top:0px;
  1655. width:53px;
  1656. height:18px;
  1657. background:inherit;
  1658. background-color:rgba(255, 255, 255, 0);
  1659. border:none;
  1660. border-radius:0px;
  1661. -moz-box-shadow:none;
  1662. -webkit-box-shadow:none;
  1663. box-shadow:none;
  1664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1665. font-weight:400;
  1666. font-style:normal;
  1667. font-size:12px;
  1668. color:#555555;
  1669. }
  1670. #u60141 {
  1671. border-width:0px;
  1672. position:absolute;
  1673. left:1376px;
  1674. top:880px;
  1675. width:53px;
  1676. height:18px;
  1677. display:flex;
  1678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1679. font-weight:400;
  1680. font-style:normal;
  1681. font-size:12px;
  1682. color:#555555;
  1683. }
  1684. #u60141 .text {
  1685. position:absolute;
  1686. align-self:flex-start;
  1687. padding:0px 0px 0px 0px;
  1688. box-sizing:border-box;
  1689. width:100%;
  1690. }
  1691. #u60141_text {
  1692. border-width:0px;
  1693. word-wrap:break-word;
  1694. text-transform:none;
  1695. }
  1696. #u60142_div {
  1697. border-width:0px;
  1698. position:absolute;
  1699. left:0px;
  1700. top:0px;
  1701. width:56px;
  1702. height:17px;
  1703. background:inherit;
  1704. background-color:rgba(255, 255, 255, 0);
  1705. border:none;
  1706. border-radius:0px;
  1707. -moz-box-shadow:none;
  1708. -webkit-box-shadow:none;
  1709. box-shadow:none;
  1710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1711. font-weight:400;
  1712. font-style:normal;
  1713. font-size:12px;
  1714. color:#555555;
  1715. }
  1716. #u60142 {
  1717. border-width:0px;
  1718. position:absolute;
  1719. left:1376px;
  1720. top:916px;
  1721. width:56px;
  1722. height:17px;
  1723. display:flex;
  1724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1725. font-weight:400;
  1726. font-style:normal;
  1727. font-size:12px;
  1728. color:#555555;
  1729. }
  1730. #u60142 .text {
  1731. position:absolute;
  1732. align-self:flex-start;
  1733. padding:0px 0px 0px 0px;
  1734. box-sizing:border-box;
  1735. width:100%;
  1736. }
  1737. #u60142_text {
  1738. border-width:0px;
  1739. white-space:nowrap;
  1740. text-transform:none;
  1741. }
  1742. #u60143_div {
  1743. border-width:0px;
  1744. position:absolute;
  1745. left:0px;
  1746. top:0px;
  1747. width:66px;
  1748. height:18px;
  1749. background:inherit;
  1750. background-color:rgba(255, 255, 255, 0);
  1751. border:none;
  1752. border-radius:0px;
  1753. -moz-box-shadow:none;
  1754. -webkit-box-shadow:none;
  1755. box-shadow:none;
  1756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1757. font-weight:400;
  1758. font-style:normal;
  1759. font-size:12px;
  1760. color:#555555;
  1761. }
  1762. #u60143 {
  1763. border-width:0px;
  1764. position:absolute;
  1765. left:1376px;
  1766. top:951px;
  1767. width:66px;
  1768. height:18px;
  1769. display:flex;
  1770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1771. font-weight:400;
  1772. font-style:normal;
  1773. font-size:12px;
  1774. color:#555555;
  1775. }
  1776. #u60143 .text {
  1777. position:absolute;
  1778. align-self:flex-start;
  1779. padding:0px 0px 0px 0px;
  1780. box-sizing:border-box;
  1781. width:100%;
  1782. }
  1783. #u60143_text {
  1784. border-width:0px;
  1785. word-wrap:break-word;
  1786. text-transform:none;
  1787. }
  1788. #u60144_img {
  1789. border-width:0px;
  1790. position:absolute;
  1791. left:0px;
  1792. top:0px;
  1793. width:9px;
  1794. height:9px;
  1795. }
  1796. #u60144 {
  1797. border-width:0px;
  1798. position:absolute;
  1799. left:1351px;
  1800. top:884px;
  1801. width:9px;
  1802. height:9px;
  1803. display:flex;
  1804. }
  1805. #u60144 .text {
  1806. position:absolute;
  1807. align-self:center;
  1808. padding:0px 0px 0px 0px;
  1809. box-sizing:border-box;
  1810. width:100%;
  1811. }
  1812. #u60144_text {
  1813. border-width:0px;
  1814. word-wrap:break-word;
  1815. text-transform:none;
  1816. visibility:hidden;
  1817. }
  1818. #u60145_img {
  1819. border-width:0px;
  1820. position:absolute;
  1821. left:0px;
  1822. top:0px;
  1823. width:9px;
  1824. height:9px;
  1825. }
  1826. #u60145 {
  1827. border-width:0px;
  1828. position:absolute;
  1829. left:1351px;
  1830. top:919px;
  1831. width:9px;
  1832. height:9px;
  1833. display:flex;
  1834. }
  1835. #u60145 .text {
  1836. position:absolute;
  1837. align-self:center;
  1838. padding:0px 0px 0px 0px;
  1839. box-sizing:border-box;
  1840. width:100%;
  1841. }
  1842. #u60145_text {
  1843. border-width:0px;
  1844. word-wrap:break-word;
  1845. text-transform:none;
  1846. visibility:hidden;
  1847. }
  1848. #u60146_img {
  1849. border-width:0px;
  1850. position:absolute;
  1851. left:0px;
  1852. top:0px;
  1853. width:9px;
  1854. height:9px;
  1855. }
  1856. #u60146 {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:1351px;
  1860. top:954px;
  1861. width:9px;
  1862. height:9px;
  1863. display:flex;
  1864. }
  1865. #u60146 .text {
  1866. position:absolute;
  1867. align-self:center;
  1868. padding:0px 0px 0px 0px;
  1869. box-sizing:border-box;
  1870. width:100%;
  1871. }
  1872. #u60146_text {
  1873. border-width:0px;
  1874. word-wrap:break-word;
  1875. text-transform:none;
  1876. visibility:hidden;
  1877. }
  1878. #u60147_div {
  1879. border-width:0px;
  1880. position:absolute;
  1881. left:0px;
  1882. top:0px;
  1883. width:73px;
  1884. height:30px;
  1885. background:inherit;
  1886. background-color:rgba(255, 255, 255, 0);
  1887. border:none;
  1888. border-radius:0px;
  1889. -moz-box-shadow:none;
  1890. -webkit-box-shadow:none;
  1891. box-shadow:none;
  1892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1893. font-weight:400;
  1894. font-style:normal;
  1895. font-size:18px;
  1896. color:#000000;
  1897. line-height:30px;
  1898. }
  1899. #u60147 {
  1900. border-width:0px;
  1901. position:absolute;
  1902. left:354px;
  1903. top:67px;
  1904. width:73px;
  1905. height:30px;
  1906. display:flex;
  1907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1908. font-weight:400;
  1909. font-style:normal;
  1910. font-size:18px;
  1911. color:#000000;
  1912. line-height:30px;
  1913. }
  1914. #u60147 .text {
  1915. position:absolute;
  1916. align-self:flex-start;
  1917. padding:0px 0px 0px 0px;
  1918. box-sizing:border-box;
  1919. width:100%;
  1920. }
  1921. #u60147_text {
  1922. border-width:0px;
  1923. white-space:nowrap;
  1924. text-transform:none;
  1925. }
  1926. #u60148 {
  1927. border-width:0px;
  1928. position:absolute;
  1929. left:0px;
  1930. top:0px;
  1931. width:0px;
  1932. height:0px;
  1933. }
  1934. #u60149_div {
  1935. border-width:0px;
  1936. position:absolute;
  1937. left:0px;
  1938. top:0px;
  1939. width:29px;
  1940. height:30px;
  1941. background:inherit;
  1942. background-color:rgba(255, 255, 255, 0);
  1943. border:none;
  1944. border-radius:0px;
  1945. -moz-box-shadow:none;
  1946. -webkit-box-shadow:none;
  1947. box-shadow:none;
  1948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1949. font-weight:400;
  1950. font-style:normal;
  1951. font-size:14px;
  1952. color:#1890FF;
  1953. line-height:30px;
  1954. }
  1955. #u60149 {
  1956. border-width:0px;
  1957. position:absolute;
  1958. left:459px;
  1959. top:67px;
  1960. width:29px;
  1961. height:30px;
  1962. display:flex;
  1963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1964. font-weight:400;
  1965. font-style:normal;
  1966. font-size:14px;
  1967. color:#1890FF;
  1968. line-height:30px;
  1969. }
  1970. #u60149 .text {
  1971. position:absolute;
  1972. align-self:flex-start;
  1973. padding:0px 0px 0px 0px;
  1974. box-sizing:border-box;
  1975. width:100%;
  1976. }
  1977. #u60149_text {
  1978. border-width:0px;
  1979. white-space:nowrap;
  1980. text-transform:none;
  1981. }
  1982. #u60150_img {
  1983. border-width:0px;
  1984. position:absolute;
  1985. left:0px;
  1986. top:0px;
  1987. width:14px;
  1988. height:14px;
  1989. }
  1990. #u60150 {
  1991. border-width:0px;
  1992. position:absolute;
  1993. left:440px;
  1994. top:75px;
  1995. width:14px;
  1996. height:14px;
  1997. display:flex;
  1998. }
  1999. #u60150 .text {
  2000. position:absolute;
  2001. align-self:center;
  2002. padding:2px 2px 2px 2px;
  2003. box-sizing:border-box;
  2004. width:100%;
  2005. }
  2006. #u60150_text {
  2007. border-width:0px;
  2008. word-wrap:break-word;
  2009. text-transform:none;
  2010. visibility:hidden;
  2011. }
  2012. #u60151 {
  2013. border-width:0px;
  2014. position:absolute;
  2015. left:0px;
  2016. top:0px;
  2017. width:0px;
  2018. height:0px;
  2019. }
  2020. #u60152_div {
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:0px;
  2024. top:0px;
  2025. width:200px;
  2026. height:30px;
  2027. background:inherit;
  2028. background-color:rgba(255, 255, 255, 1);
  2029. box-sizing:border-box;
  2030. border-width:1px;
  2031. border-style:solid;
  2032. border-color:rgba(215, 215, 215, 1);
  2033. border-radius:0px;
  2034. -moz-box-shadow:none;
  2035. -webkit-box-shadow:none;
  2036. box-shadow:none;
  2037. font-size:11px;
  2038. }
  2039. #u60152 {
  2040. border-width:0px;
  2041. position:absolute;
  2042. left:1368px;
  2043. top:67px;
  2044. width:200px;
  2045. height:30px;
  2046. display:flex;
  2047. font-size:11px;
  2048. }
  2049. #u60152 .text {
  2050. position:absolute;
  2051. align-self:center;
  2052. padding:2px 2px 2px 2px;
  2053. box-sizing:border-box;
  2054. width:100%;
  2055. }
  2056. #u60152_text {
  2057. border-width:0px;
  2058. word-wrap:break-word;
  2059. text-transform:none;
  2060. visibility:hidden;
  2061. }
  2062. #u60153_input {
  2063. position:absolute;
  2064. left:0px;
  2065. top:0px;
  2066. width:171px;
  2067. height:23px;
  2068. padding:2px 2px 2px 2px;
  2069. font-family:'ArialMT', 'Arial', sans-serif;
  2070. font-weight:400;
  2071. font-style:normal;
  2072. font-size:11px;
  2073. letter-spacing:normal;
  2074. color:#333333;
  2075. vertical-align:none;
  2076. text-align:left;
  2077. text-transform:none;
  2078. background-color:transparent;
  2079. border-color:transparent;
  2080. }
  2081. #u60153_input.disabled {
  2082. position:absolute;
  2083. left:0px;
  2084. top:0px;
  2085. width:171px;
  2086. height:23px;
  2087. padding:2px 2px 2px 2px;
  2088. font-family:'ArialMT', 'Arial', sans-serif;
  2089. font-weight:400;
  2090. font-style:normal;
  2091. font-size:11px;
  2092. letter-spacing:normal;
  2093. color:#333333;
  2094. vertical-align:none;
  2095. text-align:left;
  2096. text-transform:none;
  2097. background-color:transparent;
  2098. border-color:transparent;
  2099. }
  2100. #u60153_div {
  2101. border-width:0px;
  2102. position:absolute;
  2103. left:0px;
  2104. top:0px;
  2105. width:171px;
  2106. height:23px;
  2107. background:inherit;
  2108. background-color:rgba(255, 255, 255, 1);
  2109. border:none;
  2110. border-radius:0px;
  2111. -moz-box-shadow:none;
  2112. -webkit-box-shadow:none;
  2113. box-shadow:none;
  2114. font-size:11px;
  2115. color:#333333;
  2116. }
  2117. #u60153 {
  2118. border-width:0px;
  2119. position:absolute;
  2120. left:1378px;
  2121. top:69px;
  2122. width:171px;
  2123. height:23px;
  2124. display:flex;
  2125. font-size:11px;
  2126. color:#333333;
  2127. }
  2128. #u60153 .text {
  2129. position:absolute;
  2130. align-self:flex-start;
  2131. padding:2px 2px 2px 2px;
  2132. box-sizing:border-box;
  2133. width:100%;
  2134. }
  2135. #u60153_div.disabled {
  2136. border-width:0px;
  2137. position:absolute;
  2138. left:0px;
  2139. top:0px;
  2140. width:171px;
  2141. height:23px;
  2142. background:inherit;
  2143. background-color:rgba(240, 240, 240, 1);
  2144. border:none;
  2145. border-radius:0px;
  2146. -moz-box-shadow:none;
  2147. -webkit-box-shadow:none;
  2148. box-shadow:none;
  2149. font-size:11px;
  2150. color:#333333;
  2151. }
  2152. #u60153.disabled {
  2153. }
  2154. .u60153_input_option {
  2155. font-size:11px;
  2156. }
  2157. #u60154_img {
  2158. border-width:0px;
  2159. position:absolute;
  2160. left:0px;
  2161. top:0px;
  2162. width:214px;
  2163. height:214px;
  2164. }
  2165. #u60154 {
  2166. border-width:0px;
  2167. position:absolute;
  2168. left:1050px;
  2169. top:829px;
  2170. width:214px;
  2171. height:214px;
  2172. display:flex;
  2173. }
  2174. #u60154 .text {
  2175. position:absolute;
  2176. align-self:center;
  2177. padding:55.5px 15.0742521562354px 2px 2px;
  2178. box-sizing:border-box;
  2179. width:100%;
  2180. }
  2181. #u60154_text {
  2182. border-width:0px;
  2183. word-wrap:break-word;
  2184. text-transform:none;
  2185. visibility:hidden;
  2186. }
  2187. #u60155_img {
  2188. border-width:0px;
  2189. position:absolute;
  2190. left:0px;
  2191. top:0px;
  2192. width:214px;
  2193. height:214px;
  2194. }
  2195. #u60155 {
  2196. border-width:0px;
  2197. position:absolute;
  2198. left:1050px;
  2199. top:829px;
  2200. width:214px;
  2201. height:214px;
  2202. display:flex;
  2203. }
  2204. #u60155 .text {
  2205. position:absolute;
  2206. align-self:center;
  2207. padding:2px 11.1633340121802px 109px 16.1837336290937px;
  2208. box-sizing:border-box;
  2209. width:100%;
  2210. }
  2211. #u60155_text {
  2212. border-width:0px;
  2213. word-wrap:break-word;
  2214. text-transform:none;
  2215. visibility:hidden;
  2216. }
  2217. #u60156_img {
  2218. border-width:0px;
  2219. position:absolute;
  2220. left:0px;
  2221. top:0px;
  2222. width:214px;
  2223. height:214px;
  2224. }
  2225. #u60156 {
  2226. border-width:0px;
  2227. position:absolute;
  2228. left:1050px;
  2229. top:829px;
  2230. width:214px;
  2231. height:214px;
  2232. display:flex;
  2233. }
  2234. #u60156 .text {
  2235. position:absolute;
  2236. align-self:center;
  2237. padding:65.3267632681052px 2px 57.1893885853986px 109px;
  2238. box-sizing:border-box;
  2239. width:100%;
  2240. }
  2241. #u60156_text {
  2242. border-width:0px;
  2243. word-wrap:break-word;
  2244. text-transform:none;
  2245. visibility:hidden;
  2246. }
  2247. #u60157_img {
  2248. border-width:0px;
  2249. position:absolute;
  2250. left:0px;
  2251. top:0px;
  2252. width:137px;
  2253. height:137px;
  2254. }
  2255. #u60157 {
  2256. border-width:0px;
  2257. position:absolute;
  2258. left:1089px;
  2259. top:868px;
  2260. width:137px;
  2261. height:137px;
  2262. display:flex;
  2263. }
  2264. #u60157 .text {
  2265. position:absolute;
  2266. align-self:center;
  2267. padding:2px 2px 2px 2px;
  2268. box-sizing:border-box;
  2269. width:100%;
  2270. }
  2271. #u60157_text {
  2272. border-width:0px;
  2273. word-wrap:break-word;
  2274. text-transform:none;
  2275. }
  2276. #u60158 {
  2277. border-width:0px;
  2278. position:absolute;
  2279. left:0px;
  2280. top:0px;
  2281. width:0px;
  2282. height:0px;
  2283. }
  2284. #u60159_div {
  2285. border-width:0px;
  2286. position:absolute;
  2287. left:0px;
  2288. top:0px;
  2289. width:303px;
  2290. height:120px;
  2291. background:inherit;
  2292. background-color:rgba(255, 255, 255, 1);
  2293. border:none;
  2294. border-radius:0px;
  2295. -moz-box-shadow:none;
  2296. -webkit-box-shadow:none;
  2297. box-shadow:none;
  2298. font-family:'Microsoft YaHei', sans-serif;
  2299. font-weight:400;
  2300. font-style:normal;
  2301. }
  2302. #u60159 {
  2303. border-width:0px;
  2304. position:absolute;
  2305. left:354px;
  2306. top:107px;
  2307. width:303px;
  2308. height:120px;
  2309. display:flex;
  2310. font-family:'Microsoft YaHei', sans-serif;
  2311. font-weight:400;
  2312. font-style:normal;
  2313. }
  2314. #u60159 .text {
  2315. position:absolute;
  2316. align-self:center;
  2317. padding:2px 2px 2px 2px;
  2318. box-sizing:border-box;
  2319. width:100%;
  2320. }
  2321. #u60159_div.selected {
  2322. border-width:0px;
  2323. position:absolute;
  2324. left:0px;
  2325. top:0px;
  2326. width:303px;
  2327. height:120px;
  2328. background:inherit;
  2329. background-color:rgba(255, 255, 255, 1);
  2330. border:none;
  2331. border-radius:0px;
  2332. -moz-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  2333. -webkit-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  2334. box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  2335. font-family:'Microsoft YaHei', sans-serif;
  2336. font-weight:400;
  2337. font-style:normal;
  2338. }
  2339. #u60159.selected {
  2340. }
  2341. #u60159_text {
  2342. border-width:0px;
  2343. word-wrap:break-word;
  2344. text-transform:none;
  2345. visibility:hidden;
  2346. }
  2347. #u60160_div {
  2348. border-width:0px;
  2349. position:absolute;
  2350. left:0px;
  2351. top:0px;
  2352. width:112px;
  2353. height:17px;
  2354. background:inherit;
  2355. background-color:rgba(255, 255, 255, 0);
  2356. border:none;
  2357. border-radius:0px;
  2358. -moz-box-shadow:none;
  2359. -webkit-box-shadow:none;
  2360. box-shadow:none;
  2361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2362. font-weight:400;
  2363. font-style:normal;
  2364. font-size:12px;
  2365. color:rgba(51, 51, 51, 0.996078431372549);
  2366. }
  2367. #u60160 {
  2368. border-width:0px;
  2369. position:absolute;
  2370. left:380px;
  2371. top:117px;
  2372. width:112px;
  2373. height:17px;
  2374. display:flex;
  2375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2376. font-weight:400;
  2377. font-style:normal;
  2378. font-size:12px;
  2379. color:rgba(51, 51, 51, 0.996078431372549);
  2380. }
  2381. #u60160 .text {
  2382. position:absolute;
  2383. align-self:flex-start;
  2384. padding:0px 0px 0px 0px;
  2385. box-sizing:border-box;
  2386. width:100%;
  2387. }
  2388. #u60160_text {
  2389. border-width:0px;
  2390. word-wrap:break-word;
  2391. text-transform:none;
  2392. }
  2393. #u60161_div {
  2394. border-width:0px;
  2395. position:absolute;
  2396. left:0px;
  2397. top:0px;
  2398. width:24px;
  2399. height:34px;
  2400. background:inherit;
  2401. background-color:rgba(255, 255, 255, 0);
  2402. border:none;
  2403. border-radius:0px;
  2404. -moz-box-shadow:none;
  2405. -webkit-box-shadow:none;
  2406. box-shadow:none;
  2407. font-size:30px;
  2408. color:rgba(51, 51, 51, 0.996078431372549);
  2409. }
  2410. #u60161 {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:380px;
  2414. top:139px;
  2415. width:24px;
  2416. height:34px;
  2417. display:flex;
  2418. font-size:30px;
  2419. color:rgba(51, 51, 51, 0.996078431372549);
  2420. }
  2421. #u60161 .text {
  2422. position:absolute;
  2423. align-self:flex-start;
  2424. padding:0px 0px 0px 0px;
  2425. box-sizing:border-box;
  2426. width:100%;
  2427. }
  2428. #u60161_text {
  2429. border-width:0px;
  2430. word-wrap:break-word;
  2431. text-transform:none;
  2432. }
  2433. #u60162_img {
  2434. border-width:0px;
  2435. position:absolute;
  2436. left:0px;
  2437. top:0px;
  2438. width:14px;
  2439. height:10px;
  2440. }
  2441. #u60162 {
  2442. border-width:0px;
  2443. position:absolute;
  2444. left:628px;
  2445. top:121px;
  2446. width:14px;
  2447. height:10px;
  2448. display:flex;
  2449. }
  2450. #u60162 .text {
  2451. position:absolute;
  2452. align-self:center;
  2453. padding:2px 2px 2px 2px;
  2454. box-sizing:border-box;
  2455. width:100%;
  2456. }
  2457. #u60162_text {
  2458. border-width:0px;
  2459. word-wrap:break-word;
  2460. text-transform:none;
  2461. visibility:hidden;
  2462. }
  2463. #u60163 {
  2464. border-width:0px;
  2465. position:absolute;
  2466. left:0px;
  2467. top:0px;
  2468. width:0px;
  2469. height:0px;
  2470. }
  2471. #u60164_div {
  2472. border-width:0px;
  2473. position:absolute;
  2474. left:0px;
  2475. top:0px;
  2476. width:303px;
  2477. height:120px;
  2478. background:inherit;
  2479. background-color:rgba(255, 255, 255, 1);
  2480. border:none;
  2481. border-radius:0px;
  2482. -moz-box-shadow:none;
  2483. -webkit-box-shadow:none;
  2484. box-shadow:none;
  2485. font-family:'Microsoft YaHei', sans-serif;
  2486. font-weight:400;
  2487. font-style:normal;
  2488. }
  2489. #u60164 {
  2490. border-width:0px;
  2491. position:absolute;
  2492. left:657px;
  2493. top:107px;
  2494. width:303px;
  2495. height:120px;
  2496. display:flex;
  2497. font-family:'Microsoft YaHei', sans-serif;
  2498. font-weight:400;
  2499. font-style:normal;
  2500. }
  2501. #u60164 .text {
  2502. position:absolute;
  2503. align-self:center;
  2504. padding:2px 2px 2px 2px;
  2505. box-sizing:border-box;
  2506. width:100%;
  2507. }
  2508. #u60164_div.selected {
  2509. border-width:0px;
  2510. position:absolute;
  2511. left:0px;
  2512. top:0px;
  2513. width:303px;
  2514. height:120px;
  2515. background:inherit;
  2516. background-color:rgba(255, 255, 255, 1);
  2517. border:none;
  2518. border-radius:0px;
  2519. -moz-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  2520. -webkit-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  2521. box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  2522. font-family:'Microsoft YaHei', sans-serif;
  2523. font-weight:400;
  2524. font-style:normal;
  2525. }
  2526. #u60164.selected {
  2527. }
  2528. #u60164_text {
  2529. border-width:0px;
  2530. word-wrap:break-word;
  2531. text-transform:none;
  2532. visibility:hidden;
  2533. }
  2534. #u60165_div {
  2535. border-width:0px;
  2536. position:absolute;
  2537. left:0px;
  2538. top:0px;
  2539. width:112px;
  2540. height:17px;
  2541. background:inherit;
  2542. background-color:rgba(255, 255, 255, 0);
  2543. border:none;
  2544. border-radius:0px;
  2545. -moz-box-shadow:none;
  2546. -webkit-box-shadow:none;
  2547. box-shadow:none;
  2548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2549. font-weight:400;
  2550. font-style:normal;
  2551. font-size:12px;
  2552. color:rgba(51, 51, 51, 0.996078431372549);
  2553. }
  2554. #u60165 {
  2555. border-width:0px;
  2556. position:absolute;
  2557. left:683px;
  2558. top:117px;
  2559. width:112px;
  2560. height:17px;
  2561. display:flex;
  2562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2563. font-weight:400;
  2564. font-style:normal;
  2565. font-size:12px;
  2566. color:rgba(51, 51, 51, 0.996078431372549);
  2567. }
  2568. #u60165 .text {
  2569. position:absolute;
  2570. align-self:flex-start;
  2571. padding:0px 0px 0px 0px;
  2572. box-sizing:border-box;
  2573. width:100%;
  2574. }
  2575. #u60165_text {
  2576. border-width:0px;
  2577. word-wrap:break-word;
  2578. text-transform:none;
  2579. }
  2580. #u60166_div {
  2581. border-width:0px;
  2582. position:absolute;
  2583. left:0px;
  2584. top:0px;
  2585. width:58px;
  2586. height:34px;
  2587. background:inherit;
  2588. background-color:rgba(255, 255, 255, 0);
  2589. border:none;
  2590. border-radius:0px;
  2591. -moz-box-shadow:none;
  2592. -webkit-box-shadow:none;
  2593. box-shadow:none;
  2594. font-size:30px;
  2595. color:rgba(51, 51, 51, 0.996078431372549);
  2596. }
  2597. #u60166 {
  2598. border-width:0px;
  2599. position:absolute;
  2600. left:683px;
  2601. top:139px;
  2602. width:58px;
  2603. height:34px;
  2604. display:flex;
  2605. font-size:30px;
  2606. color:rgba(51, 51, 51, 0.996078431372549);
  2607. }
  2608. #u60166 .text {
  2609. position:absolute;
  2610. align-self:flex-start;
  2611. padding:0px 0px 0px 0px;
  2612. box-sizing:border-box;
  2613. width:100%;
  2614. }
  2615. #u60166_text {
  2616. border-width:0px;
  2617. word-wrap:break-word;
  2618. text-transform:none;
  2619. }
  2620. #u60167_img {
  2621. border-width:0px;
  2622. position:absolute;
  2623. left:0px;
  2624. top:0px;
  2625. width:14px;
  2626. height:10px;
  2627. }
  2628. #u60167 {
  2629. border-width:0px;
  2630. position:absolute;
  2631. left:932px;
  2632. top:121px;
  2633. width:14px;
  2634. height:10px;
  2635. display:flex;
  2636. }
  2637. #u60167 .text {
  2638. position:absolute;
  2639. align-self:center;
  2640. padding:2px 2px 2px 2px;
  2641. box-sizing:border-box;
  2642. width:100%;
  2643. }
  2644. #u60167_text {
  2645. border-width:0px;
  2646. word-wrap:break-word;
  2647. text-transform:none;
  2648. visibility:hidden;
  2649. }
  2650. #u60168_img {
  2651. border-width:0px;
  2652. position:absolute;
  2653. left:0px;
  2654. top:0px;
  2655. width:265px;
  2656. height:2px;
  2657. }
  2658. #u60168 {
  2659. border-width:0px;
  2660. position:absolute;
  2661. left:678px;
  2662. top:196px;
  2663. width:264px;
  2664. height:1px;
  2665. display:flex;
  2666. }
  2667. #u60168 .text {
  2668. position:absolute;
  2669. align-self:center;
  2670. padding:2px 2px 2px 2px;
  2671. box-sizing:border-box;
  2672. width:100%;
  2673. }
  2674. #u60168_text {
  2675. border-width:0px;
  2676. word-wrap:break-word;
  2677. text-transform:none;
  2678. visibility:hidden;
  2679. }
  2680. #u60169_div {
  2681. border-width:0px;
  2682. position:absolute;
  2683. left:0px;
  2684. top:0px;
  2685. width:73px;
  2686. height:17px;
  2687. background:inherit;
  2688. background-color:rgba(255, 255, 255, 0);
  2689. border:none;
  2690. border-radius:0px;
  2691. -moz-box-shadow:none;
  2692. -webkit-box-shadow:none;
  2693. box-shadow:none;
  2694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2695. font-weight:400;
  2696. font-style:normal;
  2697. font-size:12px;
  2698. color:rgba(127, 127, 127, 0.996078431372549);
  2699. }
  2700. #u60169 {
  2701. border-width:0px;
  2702. position:absolute;
  2703. left:690px;
  2704. top:204px;
  2705. width:73px;
  2706. height:17px;
  2707. display:flex;
  2708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2709. font-weight:400;
  2710. font-style:normal;
  2711. font-size:12px;
  2712. color:rgba(127, 127, 127, 0.996078431372549);
  2713. }
  2714. #u60169 .text {
  2715. position:absolute;
  2716. align-self:flex-start;
  2717. padding:0px 0px 0px 0px;
  2718. box-sizing:border-box;
  2719. width:100%;
  2720. }
  2721. #u60169_text {
  2722. border-width:0px;
  2723. word-wrap:break-word;
  2724. text-transform:none;
  2725. }
  2726. #u60170_div {
  2727. border-width:0px;
  2728. position:absolute;
  2729. left:0px;
  2730. top:0px;
  2731. width:73px;
  2732. height:17px;
  2733. background:inherit;
  2734. background-color:rgba(255, 255, 255, 0);
  2735. border:none;
  2736. border-radius:0px;
  2737. -moz-box-shadow:none;
  2738. -webkit-box-shadow:none;
  2739. box-shadow:none;
  2740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2741. font-weight:400;
  2742. font-style:normal;
  2743. font-size:12px;
  2744. color:rgba(127, 127, 127, 0.996078431372549);
  2745. }
  2746. #u60170 {
  2747. border-width:0px;
  2748. position:absolute;
  2749. left:845px;
  2750. top:204px;
  2751. width:73px;
  2752. height:17px;
  2753. display:flex;
  2754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2755. font-weight:400;
  2756. font-style:normal;
  2757. font-size:12px;
  2758. color:rgba(127, 127, 127, 0.996078431372549);
  2759. }
  2760. #u60170 .text {
  2761. position:absolute;
  2762. align-self:flex-start;
  2763. padding:0px 0px 0px 0px;
  2764. box-sizing:border-box;
  2765. width:100%;
  2766. }
  2767. #u60170_text {
  2768. border-width:0px;
  2769. word-wrap:break-word;
  2770. text-transform:none;
  2771. }
  2772. #u60171 {
  2773. border-width:0px;
  2774. position:absolute;
  2775. left:0px;
  2776. top:0px;
  2777. width:0px;
  2778. height:0px;
  2779. }
  2780. #u60172_div {
  2781. border-width:0px;
  2782. position:absolute;
  2783. left:0px;
  2784. top:0px;
  2785. width:303px;
  2786. height:120px;
  2787. background:inherit;
  2788. background-color:rgba(255, 255, 255, 1);
  2789. border:none;
  2790. border-radius:0px;
  2791. -moz-box-shadow:none;
  2792. -webkit-box-shadow:none;
  2793. box-shadow:none;
  2794. font-family:'Microsoft YaHei', sans-serif;
  2795. font-weight:400;
  2796. font-style:normal;
  2797. }
  2798. #u60172 {
  2799. border-width:0px;
  2800. position:absolute;
  2801. left:961px;
  2802. top:107px;
  2803. width:303px;
  2804. height:120px;
  2805. display:flex;
  2806. font-family:'Microsoft YaHei', sans-serif;
  2807. font-weight:400;
  2808. font-style:normal;
  2809. }
  2810. #u60172 .text {
  2811. position:absolute;
  2812. align-self:center;
  2813. padding:2px 2px 2px 2px;
  2814. box-sizing:border-box;
  2815. width:100%;
  2816. }
  2817. #u60172_div.selected {
  2818. border-width:0px;
  2819. position:absolute;
  2820. left:0px;
  2821. top:0px;
  2822. width:303px;
  2823. height:120px;
  2824. background:inherit;
  2825. background-color:rgba(255, 255, 255, 1);
  2826. border:none;
  2827. border-radius:0px;
  2828. -moz-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  2829. -webkit-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  2830. box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  2831. font-family:'Microsoft YaHei', sans-serif;
  2832. font-weight:400;
  2833. font-style:normal;
  2834. }
  2835. #u60172.selected {
  2836. }
  2837. #u60172_text {
  2838. border-width:0px;
  2839. word-wrap:break-word;
  2840. text-transform:none;
  2841. visibility:hidden;
  2842. }
  2843. #u60173_div {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:0px;
  2847. top:0px;
  2848. width:112px;
  2849. height:17px;
  2850. background:inherit;
  2851. background-color:rgba(255, 255, 255, 0);
  2852. border:none;
  2853. border-radius:0px;
  2854. -moz-box-shadow:none;
  2855. -webkit-box-shadow:none;
  2856. box-shadow:none;
  2857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2858. font-weight:400;
  2859. font-style:normal;
  2860. font-size:12px;
  2861. color:rgba(51, 51, 51, 0.996078431372549);
  2862. }
  2863. #u60173 {
  2864. border-width:0px;
  2865. position:absolute;
  2866. left:987px;
  2867. top:117px;
  2868. width:112px;
  2869. height:17px;
  2870. display:flex;
  2871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2872. font-weight:400;
  2873. font-style:normal;
  2874. font-size:12px;
  2875. color:rgba(51, 51, 51, 0.996078431372549);
  2876. }
  2877. #u60173 .text {
  2878. position:absolute;
  2879. align-self:flex-start;
  2880. padding:0px 0px 0px 0px;
  2881. box-sizing:border-box;
  2882. width:100%;
  2883. }
  2884. #u60173_text {
  2885. border-width:0px;
  2886. word-wrap:break-word;
  2887. text-transform:none;
  2888. }
  2889. #u60174_div {
  2890. border-width:0px;
  2891. position:absolute;
  2892. left:0px;
  2893. top:0px;
  2894. width:58px;
  2895. height:34px;
  2896. background:inherit;
  2897. background-color:rgba(255, 255, 255, 0);
  2898. border:none;
  2899. border-radius:0px;
  2900. -moz-box-shadow:none;
  2901. -webkit-box-shadow:none;
  2902. box-shadow:none;
  2903. font-size:30px;
  2904. color:rgba(51, 51, 51, 0.996078431372549);
  2905. }
  2906. #u60174 {
  2907. border-width:0px;
  2908. position:absolute;
  2909. left:987px;
  2910. top:139px;
  2911. width:58px;
  2912. height:34px;
  2913. display:flex;
  2914. font-size:30px;
  2915. color:rgba(51, 51, 51, 0.996078431372549);
  2916. }
  2917. #u60174 .text {
  2918. position:absolute;
  2919. align-self:flex-start;
  2920. padding:0px 0px 0px 0px;
  2921. box-sizing:border-box;
  2922. width:100%;
  2923. }
  2924. #u60174_text {
  2925. border-width:0px;
  2926. word-wrap:break-word;
  2927. text-transform:none;
  2928. }
  2929. #u60175_img {
  2930. border-width:0px;
  2931. position:absolute;
  2932. left:0px;
  2933. top:0px;
  2934. width:14px;
  2935. height:10px;
  2936. }
  2937. #u60175 {
  2938. border-width:0px;
  2939. position:absolute;
  2940. left:1235px;
  2941. top:121px;
  2942. width:14px;
  2943. height:10px;
  2944. display:flex;
  2945. }
  2946. #u60175 .text {
  2947. position:absolute;
  2948. align-self:center;
  2949. padding:2px 2px 2px 2px;
  2950. box-sizing:border-box;
  2951. width:100%;
  2952. }
  2953. #u60175_text {
  2954. border-width:0px;
  2955. word-wrap:break-word;
  2956. text-transform:none;
  2957. visibility:hidden;
  2958. }
  2959. #u60176_img {
  2960. border-width:0px;
  2961. position:absolute;
  2962. left:0px;
  2963. top:0px;
  2964. width:265px;
  2965. height:2px;
  2966. }
  2967. #u60176 {
  2968. border-width:0px;
  2969. position:absolute;
  2970. left:981px;
  2971. top:196px;
  2972. width:264px;
  2973. height:1px;
  2974. display:flex;
  2975. }
  2976. #u60176 .text {
  2977. position:absolute;
  2978. align-self:center;
  2979. padding:2px 2px 2px 2px;
  2980. box-sizing:border-box;
  2981. width:100%;
  2982. }
  2983. #u60176_text {
  2984. border-width:0px;
  2985. word-wrap:break-word;
  2986. text-transform:none;
  2987. visibility:hidden;
  2988. }
  2989. #u60177_div {
  2990. border-width:0px;
  2991. position:absolute;
  2992. left:0px;
  2993. top:0px;
  2994. width:90px;
  2995. height:17px;
  2996. background:inherit;
  2997. background-color:rgba(255, 255, 255, 0);
  2998. border:none;
  2999. border-radius:0px;
  3000. -moz-box-shadow:none;
  3001. -webkit-box-shadow:none;
  3002. box-shadow:none;
  3003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3004. font-weight:400;
  3005. font-style:normal;
  3006. font-size:12px;
  3007. color:rgba(127, 127, 127, 0.996078431372549);
  3008. }
  3009. #u60177 {
  3010. border-width:0px;
  3011. position:absolute;
  3012. left:993px;
  3013. top:204px;
  3014. width:90px;
  3015. height:17px;
  3016. display:flex;
  3017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3018. font-weight:400;
  3019. font-style:normal;
  3020. font-size:12px;
  3021. color:rgba(127, 127, 127, 0.996078431372549);
  3022. }
  3023. #u60177 .text {
  3024. position:absolute;
  3025. align-self:flex-start;
  3026. padding:0px 0px 0px 0px;
  3027. box-sizing:border-box;
  3028. width:100%;
  3029. }
  3030. #u60177_text {
  3031. border-width:0px;
  3032. word-wrap:break-word;
  3033. text-transform:none;
  3034. }
  3035. #u60178_div {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:0px;
  3039. top:0px;
  3040. width:90px;
  3041. height:17px;
  3042. background:inherit;
  3043. background-color:rgba(255, 255, 255, 0);
  3044. border:none;
  3045. border-radius:0px;
  3046. -moz-box-shadow:none;
  3047. -webkit-box-shadow:none;
  3048. box-shadow:none;
  3049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3050. font-weight:400;
  3051. font-style:normal;
  3052. font-size:12px;
  3053. }
  3054. #u60178 {
  3055. border-width:0px;
  3056. position:absolute;
  3057. left:1148px;
  3058. top:204px;
  3059. width:90px;
  3060. height:17px;
  3061. display:flex;
  3062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3063. font-weight:400;
  3064. font-style:normal;
  3065. font-size:12px;
  3066. }
  3067. #u60178 .text {
  3068. position:absolute;
  3069. align-self:flex-start;
  3070. padding:0px 0px 0px 0px;
  3071. box-sizing:border-box;
  3072. width:100%;
  3073. }
  3074. #u60178_text {
  3075. border-width:0px;
  3076. word-wrap:break-word;
  3077. text-transform:none;
  3078. }
  3079. #u60179 {
  3080. border-width:0px;
  3081. position:absolute;
  3082. left:0px;
  3083. top:0px;
  3084. width:0px;
  3085. height:0px;
  3086. }
  3087. #u60180_div {
  3088. border-width:0px;
  3089. position:absolute;
  3090. left:0px;
  3091. top:0px;
  3092. width:303px;
  3093. height:120px;
  3094. background:inherit;
  3095. background-color:rgba(255, 255, 255, 1);
  3096. border:none;
  3097. border-radius:0px;
  3098. -moz-box-shadow:none;
  3099. -webkit-box-shadow:none;
  3100. box-shadow:none;
  3101. font-family:'Microsoft YaHei', sans-serif;
  3102. font-weight:400;
  3103. font-style:normal;
  3104. }
  3105. #u60180 {
  3106. border-width:0px;
  3107. position:absolute;
  3108. left:1265px;
  3109. top:107px;
  3110. width:303px;
  3111. height:120px;
  3112. display:flex;
  3113. font-family:'Microsoft YaHei', sans-serif;
  3114. font-weight:400;
  3115. font-style:normal;
  3116. }
  3117. #u60180 .text {
  3118. position:absolute;
  3119. align-self:center;
  3120. padding:2px 2px 2px 2px;
  3121. box-sizing:border-box;
  3122. width:100%;
  3123. }
  3124. #u60180_div.selected {
  3125. border-width:0px;
  3126. position:absolute;
  3127. left:0px;
  3128. top:0px;
  3129. width:303px;
  3130. height:120px;
  3131. background:inherit;
  3132. background-color:rgba(255, 255, 255, 1);
  3133. border:none;
  3134. border-radius:0px;
  3135. -moz-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  3136. -webkit-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  3137. box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  3138. font-family:'Microsoft YaHei', sans-serif;
  3139. font-weight:400;
  3140. font-style:normal;
  3141. }
  3142. #u60180.selected {
  3143. }
  3144. #u60180_text {
  3145. border-width:0px;
  3146. word-wrap:break-word;
  3147. text-transform:none;
  3148. visibility:hidden;
  3149. }
  3150. #u60181_div {
  3151. border-width:0px;
  3152. position:absolute;
  3153. left:0px;
  3154. top:0px;
  3155. width:112px;
  3156. height:17px;
  3157. background:inherit;
  3158. background-color:rgba(255, 255, 255, 0);
  3159. border:none;
  3160. border-radius:0px;
  3161. -moz-box-shadow:none;
  3162. -webkit-box-shadow:none;
  3163. box-shadow:none;
  3164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3165. font-weight:400;
  3166. font-style:normal;
  3167. font-size:12px;
  3168. color:rgba(51, 51, 51, 0.996078431372549);
  3169. }
  3170. #u60181 {
  3171. border-width:0px;
  3172. position:absolute;
  3173. left:1292px;
  3174. top:117px;
  3175. width:112px;
  3176. height:17px;
  3177. display:flex;
  3178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3179. font-weight:400;
  3180. font-style:normal;
  3181. font-size:12px;
  3182. color:rgba(51, 51, 51, 0.996078431372549);
  3183. }
  3184. #u60181 .text {
  3185. position:absolute;
  3186. align-self:flex-start;
  3187. padding:0px 0px 0px 0px;
  3188. box-sizing:border-box;
  3189. width:100%;
  3190. }
  3191. #u60181_text {
  3192. border-width:0px;
  3193. word-wrap:break-word;
  3194. text-transform:none;
  3195. }
  3196. #u60182_div {
  3197. border-width:0px;
  3198. position:absolute;
  3199. left:0px;
  3200. top:0px;
  3201. width:58px;
  3202. height:34px;
  3203. background:inherit;
  3204. background-color:rgba(255, 255, 255, 0);
  3205. border:none;
  3206. border-radius:0px;
  3207. -moz-box-shadow:none;
  3208. -webkit-box-shadow:none;
  3209. box-shadow:none;
  3210. font-size:30px;
  3211. color:rgba(51, 51, 51, 0.996078431372549);
  3212. }
  3213. #u60182 {
  3214. border-width:0px;
  3215. position:absolute;
  3216. left:1292px;
  3217. top:139px;
  3218. width:58px;
  3219. height:34px;
  3220. display:flex;
  3221. font-size:30px;
  3222. color:rgba(51, 51, 51, 0.996078431372549);
  3223. }
  3224. #u60182 .text {
  3225. position:absolute;
  3226. align-self:flex-start;
  3227. padding:0px 0px 0px 0px;
  3228. box-sizing:border-box;
  3229. width:100%;
  3230. }
  3231. #u60182_text {
  3232. border-width:0px;
  3233. word-wrap:break-word;
  3234. text-transform:none;
  3235. }
  3236. #u60183_img {
  3237. border-width:0px;
  3238. position:absolute;
  3239. left:0px;
  3240. top:0px;
  3241. width:14px;
  3242. height:10px;
  3243. }
  3244. #u60183 {
  3245. border-width:0px;
  3246. position:absolute;
  3247. left:1539px;
  3248. top:121px;
  3249. width:14px;
  3250. height:10px;
  3251. display:flex;
  3252. }
  3253. #u60183 .text {
  3254. position:absolute;
  3255. align-self:center;
  3256. padding:2px 2px 2px 2px;
  3257. box-sizing:border-box;
  3258. width:100%;
  3259. }
  3260. #u60183_text {
  3261. border-width:0px;
  3262. word-wrap:break-word;
  3263. text-transform:none;
  3264. visibility:hidden;
  3265. }
  3266. #u60184_img {
  3267. border-width:0px;
  3268. position:absolute;
  3269. left:0px;
  3270. top:0px;
  3271. width:265px;
  3272. height:2px;
  3273. }
  3274. #u60184 {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:1285px;
  3278. top:196px;
  3279. width:264px;
  3280. height:1px;
  3281. display:flex;
  3282. }
  3283. #u60184 .text {
  3284. position:absolute;
  3285. align-self:center;
  3286. padding:2px 2px 2px 2px;
  3287. box-sizing:border-box;
  3288. width:100%;
  3289. }
  3290. #u60184_text {
  3291. border-width:0px;
  3292. word-wrap:break-word;
  3293. text-transform:none;
  3294. visibility:hidden;
  3295. }
  3296. #u60185_div {
  3297. border-width:0px;
  3298. position:absolute;
  3299. left:0px;
  3300. top:0px;
  3301. width:90px;
  3302. height:17px;
  3303. background:inherit;
  3304. background-color:rgba(255, 255, 255, 0);
  3305. border:none;
  3306. border-radius:0px;
  3307. -moz-box-shadow:none;
  3308. -webkit-box-shadow:none;
  3309. box-shadow:none;
  3310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3311. font-weight:400;
  3312. font-style:normal;
  3313. font-size:12px;
  3314. color:rgba(127, 127, 127, 0.996078431372549);
  3315. }
  3316. #u60185 {
  3317. border-width:0px;
  3318. position:absolute;
  3319. left:1298px;
  3320. top:204px;
  3321. width:90px;
  3322. height:17px;
  3323. display:flex;
  3324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3325. font-weight:400;
  3326. font-style:normal;
  3327. font-size:12px;
  3328. color:rgba(127, 127, 127, 0.996078431372549);
  3329. }
  3330. #u60185 .text {
  3331. position:absolute;
  3332. align-self:flex-start;
  3333. padding:0px 0px 0px 0px;
  3334. box-sizing:border-box;
  3335. width:100%;
  3336. }
  3337. #u60185_text {
  3338. border-width:0px;
  3339. word-wrap:break-word;
  3340. text-transform:none;
  3341. }
  3342. #u60186_div {
  3343. border-width:0px;
  3344. position:absolute;
  3345. left:0px;
  3346. top:0px;
  3347. width:90px;
  3348. height:17px;
  3349. background:inherit;
  3350. background-color:rgba(255, 255, 255, 0);
  3351. border:none;
  3352. border-radius:0px;
  3353. -moz-box-shadow:none;
  3354. -webkit-box-shadow:none;
  3355. box-shadow:none;
  3356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3357. font-weight:400;
  3358. font-style:normal;
  3359. font-size:12px;
  3360. }
  3361. #u60186 {
  3362. border-width:0px;
  3363. position:absolute;
  3364. left:1452px;
  3365. top:204px;
  3366. width:90px;
  3367. height:17px;
  3368. display:flex;
  3369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3370. font-weight:400;
  3371. font-style:normal;
  3372. font-size:12px;
  3373. }
  3374. #u60186 .text {
  3375. position:absolute;
  3376. align-self:flex-start;
  3377. padding:0px 0px 0px 0px;
  3378. box-sizing:border-box;
  3379. width:100%;
  3380. }
  3381. #u60186_text {
  3382. border-width:0px;
  3383. word-wrap:break-word;
  3384. text-transform:none;
  3385. }
  3386. #u60187_img {
  3387. border-width:0px;
  3388. position:absolute;
  3389. left:0px;
  3390. top:0px;
  3391. width:1214px;
  3392. height:460px;
  3393. }
  3394. #u60187 {
  3395. border-width:0px;
  3396. position:absolute;
  3397. left:354px;
  3398. top:247px;
  3399. width:1214px;
  3400. height:460px;
  3401. display:flex;
  3402. }
  3403. #u60187 .text {
  3404. position:absolute;
  3405. align-self:center;
  3406. padding:0px 0px 0px 0px;
  3407. box-sizing:border-box;
  3408. width:100%;
  3409. }
  3410. #u60187_text {
  3411. border-width:0px;
  3412. word-wrap:break-word;
  3413. text-transform:none;
  3414. visibility:hidden;
  3415. }
  3416. #u60188 {
  3417. border-width:0px;
  3418. position:absolute;
  3419. left:0px;
  3420. top:0px;
  3421. width:0px;
  3422. height:0px;
  3423. }
  3424. #u60189_img {
  3425. border-width:0px;
  3426. position:absolute;
  3427. left:0px;
  3428. top:0px;
  3429. width:280px;
  3430. height:6px;
  3431. }
  3432. #u60189p000 {
  3433. border-width:0px;
  3434. position:absolute;
  3435. left:-6px;
  3436. top:-1px;
  3437. width:12px;
  3438. height:6px;
  3439. -webkit-transform:rotate(90deg);
  3440. -moz-transform:rotate(90deg);
  3441. -ms-transform:rotate(90deg);
  3442. transform:rotate(90deg);
  3443. }
  3444. #u60189p000_img {
  3445. border-width:0px;
  3446. position:absolute;
  3447. left:0px;
  3448. top:0px;
  3449. width:12px;
  3450. height:6px;
  3451. }
  3452. #u60189p001 {
  3453. border-width:0px;
  3454. position:absolute;
  3455. left:50px;
  3456. top:-1px;
  3457. width:12px;
  3458. height:6px;
  3459. -webkit-transform:rotate(90deg);
  3460. -moz-transform:rotate(90deg);
  3461. -ms-transform:rotate(90deg);
  3462. transform:rotate(90deg);
  3463. }
  3464. #u60189p001_img {
  3465. border-width:0px;
  3466. position:absolute;
  3467. left:0px;
  3468. top:0px;
  3469. width:12px;
  3470. height:6px;
  3471. }
  3472. #u60189p002 {
  3473. border-width:0px;
  3474. position:absolute;
  3475. left:106px;
  3476. top:-1px;
  3477. width:12px;
  3478. height:6px;
  3479. -webkit-transform:rotate(90deg);
  3480. -moz-transform:rotate(90deg);
  3481. -ms-transform:rotate(90deg);
  3482. transform:rotate(90deg);
  3483. }
  3484. #u60189p002_img {
  3485. border-width:0px;
  3486. position:absolute;
  3487. left:0px;
  3488. top:0px;
  3489. width:12px;
  3490. height:6px;
  3491. }
  3492. #u60189p003 {
  3493. border-width:0px;
  3494. position:absolute;
  3495. left:162px;
  3496. top:-1px;
  3497. width:10px;
  3498. height:6px;
  3499. -webkit-transform:rotate(90deg);
  3500. -moz-transform:rotate(90deg);
  3501. -ms-transform:rotate(90deg);
  3502. transform:rotate(90deg);
  3503. }
  3504. #u60189p003_img {
  3505. border-width:0px;
  3506. position:absolute;
  3507. left:0px;
  3508. top:0px;
  3509. width:10px;
  3510. height:6px;
  3511. }
  3512. #u60189p004 {
  3513. border-width:0px;
  3514. position:absolute;
  3515. left:218px;
  3516. top:-1px;
  3517. width:10px;
  3518. height:6px;
  3519. -webkit-transform:rotate(90deg);
  3520. -moz-transform:rotate(90deg);
  3521. -ms-transform:rotate(90deg);
  3522. transform:rotate(90deg);
  3523. }
  3524. #u60189p004_img {
  3525. border-width:0px;
  3526. position:absolute;
  3527. left:0px;
  3528. top:0px;
  3529. width:10px;
  3530. height:6px;
  3531. }
  3532. #u60189p005 {
  3533. border-width:0px;
  3534. position:absolute;
  3535. left:274px;
  3536. top:-1px;
  3537. width:10px;
  3538. height:6px;
  3539. -webkit-transform:rotate(90deg);
  3540. -moz-transform:rotate(90deg);
  3541. -ms-transform:rotate(90deg);
  3542. transform:rotate(90deg);
  3543. }
  3544. #u60189p005_img {
  3545. border-width:0px;
  3546. position:absolute;
  3547. left:0px;
  3548. top:0px;
  3549. width:10px;
  3550. height:6px;
  3551. }
  3552. #u60189.compound {
  3553. width:0px;
  3554. height:0px;
  3555. }
  3556. #u60189 {
  3557. border-width:0px;
  3558. position:absolute;
  3559. left:442px;
  3560. top:639px;
  3561. width:279px;
  3562. height:5px;
  3563. display:flex;
  3564. opacity:0.619607843137255;
  3565. }
  3566. #u60189 .text {
  3567. position:absolute;
  3568. align-self:center;
  3569. padding:0px 0px 0px 0px;
  3570. box-sizing:border-box;
  3571. width:100%;
  3572. }
  3573. #u60189_text {
  3574. border-width:0px;
  3575. word-wrap:break-word;
  3576. text-transform:none;
  3577. visibility:hidden;
  3578. }
  3579. #u60190_div {
  3580. border-width:0px;
  3581. position:absolute;
  3582. left:0px;
  3583. top:0px;
  3584. width:26px;
  3585. height:16px;
  3586. background:inherit;
  3587. background-color:rgba(255, 255, 255, 0);
  3588. border:none;
  3589. border-radius:0px;
  3590. -moz-box-shadow:none;
  3591. -webkit-box-shadow:none;
  3592. box-shadow:none;
  3593. font-family:'Helvetica', sans-serif;
  3594. font-weight:400;
  3595. font-style:normal;
  3596. font-size:12px;
  3597. color:rgba(0, 0, 0, 0.996078431372549);
  3598. text-align:left;
  3599. }
  3600. #u60190 {
  3601. border-width:0px;
  3602. position:absolute;
  3603. left:437px;
  3604. top:650px;
  3605. width:26px;
  3606. height:16px;
  3607. display:flex;
  3608. font-family:'Helvetica', sans-serif;
  3609. font-weight:400;
  3610. font-style:normal;
  3611. font-size:12px;
  3612. color:rgba(0, 0, 0, 0.996078431372549);
  3613. text-align:left;
  3614. }
  3615. #u60190 .text {
  3616. position:absolute;
  3617. align-self:flex-start;
  3618. padding:0px 0px 0px 0px;
  3619. box-sizing:border-box;
  3620. width:100%;
  3621. }
  3622. #u60190_text {
  3623. border-width:0px;
  3624. word-wrap:break-word;
  3625. text-transform:none;
  3626. }
  3627. #u60191_div {
  3628. border-width:0px;
  3629. position:absolute;
  3630. left:0px;
  3631. top:0px;
  3632. width:26px;
  3633. height:16px;
  3634. background:inherit;
  3635. background-color:rgba(255, 255, 255, 0);
  3636. border:none;
  3637. border-radius:0px;
  3638. -moz-box-shadow:none;
  3639. -webkit-box-shadow:none;
  3640. box-shadow:none;
  3641. font-family:'Helvetica', sans-serif;
  3642. font-weight:400;
  3643. font-style:normal;
  3644. font-size:12px;
  3645. color:rgba(0, 0, 0, 0.996078431372549);
  3646. text-align:left;
  3647. }
  3648. #u60191 {
  3649. border-width:0px;
  3650. position:absolute;
  3651. left:493px;
  3652. top:650px;
  3653. width:26px;
  3654. height:16px;
  3655. display:flex;
  3656. font-family:'Helvetica', sans-serif;
  3657. font-weight:400;
  3658. font-style:normal;
  3659. font-size:12px;
  3660. color:rgba(0, 0, 0, 0.996078431372549);
  3661. text-align:left;
  3662. }
  3663. #u60191 .text {
  3664. position:absolute;
  3665. align-self:flex-start;
  3666. padding:0px 0px 0px 0px;
  3667. box-sizing:border-box;
  3668. width:100%;
  3669. }
  3670. #u60191_text {
  3671. border-width:0px;
  3672. word-wrap:break-word;
  3673. text-transform:none;
  3674. }
  3675. #u60192_div {
  3676. border-width:0px;
  3677. position:absolute;
  3678. left:0px;
  3679. top:0px;
  3680. width:26px;
  3681. height:16px;
  3682. background:inherit;
  3683. background-color:rgba(255, 255, 255, 0);
  3684. border:none;
  3685. border-radius:0px;
  3686. -moz-box-shadow:none;
  3687. -webkit-box-shadow:none;
  3688. box-shadow:none;
  3689. font-family:'Helvetica', sans-serif;
  3690. font-weight:400;
  3691. font-style:normal;
  3692. font-size:12px;
  3693. color:rgba(0, 0, 0, 0.996078431372549);
  3694. text-align:left;
  3695. }
  3696. #u60192 {
  3697. border-width:0px;
  3698. position:absolute;
  3699. left:550px;
  3700. top:650px;
  3701. width:26px;
  3702. height:16px;
  3703. display:flex;
  3704. font-family:'Helvetica', sans-serif;
  3705. font-weight:400;
  3706. font-style:normal;
  3707. font-size:12px;
  3708. color:rgba(0, 0, 0, 0.996078431372549);
  3709. text-align:left;
  3710. }
  3711. #u60192 .text {
  3712. position:absolute;
  3713. align-self:flex-start;
  3714. padding:0px 0px 0px 0px;
  3715. box-sizing:border-box;
  3716. width:100%;
  3717. }
  3718. #u60192_text {
  3719. border-width:0px;
  3720. word-wrap:break-word;
  3721. text-transform:none;
  3722. }
  3723. #u60193_div {
  3724. border-width:0px;
  3725. position:absolute;
  3726. left:0px;
  3727. top:0px;
  3728. width:26px;
  3729. height:16px;
  3730. background:inherit;
  3731. background-color:rgba(255, 255, 255, 0);
  3732. border:none;
  3733. border-radius:0px;
  3734. -moz-box-shadow:none;
  3735. -webkit-box-shadow:none;
  3736. box-shadow:none;
  3737. font-family:'Helvetica', sans-serif;
  3738. font-weight:400;
  3739. font-style:normal;
  3740. font-size:12px;
  3741. color:rgba(0, 0, 0, 0.996078431372549);
  3742. text-align:left;
  3743. }
  3744. #u60193 {
  3745. border-width:0px;
  3746. position:absolute;
  3747. left:608px;
  3748. top:650px;
  3749. width:26px;
  3750. height:16px;
  3751. display:flex;
  3752. font-family:'Helvetica', sans-serif;
  3753. font-weight:400;
  3754. font-style:normal;
  3755. font-size:12px;
  3756. color:rgba(0, 0, 0, 0.996078431372549);
  3757. text-align:left;
  3758. }
  3759. #u60193 .text {
  3760. position:absolute;
  3761. align-self:flex-start;
  3762. padding:0px 0px 0px 0px;
  3763. box-sizing:border-box;
  3764. width:100%;
  3765. }
  3766. #u60193_text {
  3767. border-width:0px;
  3768. word-wrap:break-word;
  3769. text-transform:none;
  3770. }
  3771. #u60194_div {
  3772. border-width:0px;
  3773. position:absolute;
  3774. left:0px;
  3775. top:0px;
  3776. width:26px;
  3777. height:16px;
  3778. background:inherit;
  3779. background-color:rgba(255, 255, 255, 0);
  3780. border:none;
  3781. border-radius:0px;
  3782. -moz-box-shadow:none;
  3783. -webkit-box-shadow:none;
  3784. box-shadow:none;
  3785. font-family:'Helvetica', sans-serif;
  3786. font-weight:400;
  3787. font-style:normal;
  3788. font-size:12px;
  3789. color:rgba(0, 0, 0, 0.996078431372549);
  3790. text-align:left;
  3791. }
  3792. #u60194 {
  3793. border-width:0px;
  3794. position:absolute;
  3795. left:661px;
  3796. top:650px;
  3797. width:26px;
  3798. height:16px;
  3799. display:flex;
  3800. font-family:'Helvetica', sans-serif;
  3801. font-weight:400;
  3802. font-style:normal;
  3803. font-size:12px;
  3804. color:rgba(0, 0, 0, 0.996078431372549);
  3805. text-align:left;
  3806. }
  3807. #u60194 .text {
  3808. position:absolute;
  3809. align-self:flex-start;
  3810. padding:0px 0px 0px 0px;
  3811. box-sizing:border-box;
  3812. width:100%;
  3813. }
  3814. #u60194_text {
  3815. border-width:0px;
  3816. word-wrap:break-word;
  3817. text-transform:none;
  3818. }
  3819. #u60195_div {
  3820. border-width:0px;
  3821. position:absolute;
  3822. left:0px;
  3823. top:0px;
  3824. width:26px;
  3825. height:16px;
  3826. background:inherit;
  3827. background-color:rgba(255, 255, 255, 0);
  3828. border:none;
  3829. border-radius:0px;
  3830. -moz-box-shadow:none;
  3831. -webkit-box-shadow:none;
  3832. box-shadow:none;
  3833. font-family:'Helvetica', sans-serif;
  3834. font-weight:400;
  3835. font-style:normal;
  3836. font-size:12px;
  3837. color:rgba(0, 0, 0, 0.996078431372549);
  3838. text-align:left;
  3839. }
  3840. #u60195 {
  3841. border-width:0px;
  3842. position:absolute;
  3843. left:717px;
  3844. top:650px;
  3845. width:26px;
  3846. height:16px;
  3847. display:flex;
  3848. font-family:'Helvetica', sans-serif;
  3849. font-weight:400;
  3850. font-style:normal;
  3851. font-size:12px;
  3852. color:rgba(0, 0, 0, 0.996078431372549);
  3853. text-align:left;
  3854. }
  3855. #u60195 .text {
  3856. position:absolute;
  3857. align-self:flex-start;
  3858. padding:0px 0px 0px 0px;
  3859. box-sizing:border-box;
  3860. width:100%;
  3861. }
  3862. #u60195_text {
  3863. border-width:0px;
  3864. word-wrap:break-word;
  3865. text-transform:none;
  3866. }
  3867. #u60196_img {
  3868. border-width:0px;
  3869. position:absolute;
  3870. left:0px;
  3871. top:0px;
  3872. width:719px;
  3873. height:2px;
  3874. }
  3875. #u60196 {
  3876. border-width:0px;
  3877. position:absolute;
  3878. left:419px;
  3879. top:638px;
  3880. width:718px;
  3881. height:1px;
  3882. display:flex;
  3883. }
  3884. #u60196 .text {
  3885. position:absolute;
  3886. align-self:center;
  3887. padding:0px 0px 0px 0px;
  3888. box-sizing:border-box;
  3889. width:100%;
  3890. }
  3891. #u60196_text {
  3892. border-width:0px;
  3893. word-wrap:break-word;
  3894. text-transform:none;
  3895. visibility:hidden;
  3896. }
  3897. #u60197_img {
  3898. border-width:0px;
  3899. position:absolute;
  3900. left:0px;
  3901. top:0px;
  3902. width:719px;
  3903. height:2px;
  3904. }
  3905. #u60197 {
  3906. border-width:0px;
  3907. position:absolute;
  3908. left:419px;
  3909. top:578px;
  3910. width:718px;
  3911. height:1px;
  3912. display:flex;
  3913. }
  3914. #u60197 .text {
  3915. position:absolute;
  3916. align-self:center;
  3917. padding:0px 0px 0px 0px;
  3918. box-sizing:border-box;
  3919. width:100%;
  3920. }
  3921. #u60197_text {
  3922. border-width:0px;
  3923. word-wrap:break-word;
  3924. text-transform:none;
  3925. visibility:hidden;
  3926. }
  3927. #u60198_img {
  3928. border-width:0px;
  3929. position:absolute;
  3930. left:0px;
  3931. top:0px;
  3932. width:719px;
  3933. height:2px;
  3934. }
  3935. #u60198 {
  3936. border-width:0px;
  3937. position:absolute;
  3938. left:419px;
  3939. top:516px;
  3940. width:718px;
  3941. height:1px;
  3942. display:flex;
  3943. }
  3944. #u60198 .text {
  3945. position:absolute;
  3946. align-self:center;
  3947. padding:0px 0px 0px 0px;
  3948. box-sizing:border-box;
  3949. width:100%;
  3950. }
  3951. #u60198_text {
  3952. border-width:0px;
  3953. word-wrap:break-word;
  3954. text-transform:none;
  3955. visibility:hidden;
  3956. }
  3957. #u60199_img {
  3958. border-width:0px;
  3959. position:absolute;
  3960. left:0px;
  3961. top:0px;
  3962. width:719px;
  3963. height:2px;
  3964. }
  3965. #u60199 {
  3966. border-width:0px;
  3967. position:absolute;
  3968. left:419px;
  3969. top:456px;
  3970. width:718px;
  3971. height:1px;
  3972. display:flex;
  3973. }
  3974. #u60199 .text {
  3975. position:absolute;
  3976. align-self:center;
  3977. padding:0px 0px 0px 0px;
  3978. box-sizing:border-box;
  3979. width:100%;
  3980. }
  3981. #u60199_text {
  3982. border-width:0px;
  3983. word-wrap:break-word;
  3984. text-transform:none;
  3985. visibility:hidden;
  3986. }
  3987. #u60200_img {
  3988. border-width:0px;
  3989. position:absolute;
  3990. left:0px;
  3991. top:0px;
  3992. width:719px;
  3993. height:2px;
  3994. }
  3995. #u60200 {
  3996. border-width:0px;
  3997. position:absolute;
  3998. left:419px;
  3999. top:396px;
  4000. width:718px;
  4001. height:1px;
  4002. display:flex;
  4003. }
  4004. #u60200 .text {
  4005. position:absolute;
  4006. align-self:center;
  4007. padding:0px 0px 0px 0px;
  4008. box-sizing:border-box;
  4009. width:100%;
  4010. }
  4011. #u60200_text {
  4012. border-width:0px;
  4013. word-wrap:break-word;
  4014. text-transform:none;
  4015. visibility:hidden;
  4016. }
  4017. #u60201_div {
  4018. border-width:0px;
  4019. position:absolute;
  4020. left:0px;
  4021. top:0px;
  4022. width:5px;
  4023. height:16px;
  4024. background:inherit;
  4025. background-color:rgba(255, 255, 255, 0);
  4026. border:none;
  4027. border-radius:0px;
  4028. -moz-box-shadow:none;
  4029. -webkit-box-shadow:none;
  4030. box-shadow:none;
  4031. font-family:'Helvetica', sans-serif;
  4032. font-weight:400;
  4033. font-style:normal;
  4034. font-size:12px;
  4035. color:rgba(0, 0, 0, 0.988235294117647);
  4036. text-align:left;
  4037. }
  4038. #u60201 {
  4039. border-width:0px;
  4040. position:absolute;
  4041. left:410px;
  4042. top:632px;
  4043. width:5px;
  4044. height:16px;
  4045. display:flex;
  4046. font-family:'Helvetica', sans-serif;
  4047. font-weight:400;
  4048. font-style:normal;
  4049. font-size:12px;
  4050. color:rgba(0, 0, 0, 0.988235294117647);
  4051. text-align:left;
  4052. }
  4053. #u60201 .text {
  4054. position:absolute;
  4055. align-self:flex-start;
  4056. padding:0px 0px 0px 0px;
  4057. box-sizing:border-box;
  4058. width:100%;
  4059. }
  4060. #u60201_text {
  4061. border-width:0px;
  4062. word-wrap:break-word;
  4063. text-transform:none;
  4064. }
  4065. #u60202_div {
  4066. border-width:0px;
  4067. position:absolute;
  4068. left:0px;
  4069. top:0px;
  4070. width:14px;
  4071. height:14px;
  4072. background:inherit;
  4073. background-color:rgba(255, 255, 255, 0);
  4074. border:none;
  4075. border-radius:0px;
  4076. -moz-box-shadow:none;
  4077. -webkit-box-shadow:none;
  4078. box-shadow:none;
  4079. font-family:'Helvetica', sans-serif;
  4080. font-weight:400;
  4081. font-style:normal;
  4082. font-size:12px;
  4083. color:rgba(0, 0, 0, 0.988235294117647);
  4084. text-align:left;
  4085. }
  4086. #u60202 {
  4087. border-width:0px;
  4088. position:absolute;
  4089. left:402px;
  4090. top:571px;
  4091. width:14px;
  4092. height:14px;
  4093. display:flex;
  4094. font-family:'Helvetica', sans-serif;
  4095. font-weight:400;
  4096. font-style:normal;
  4097. font-size:12px;
  4098. color:rgba(0, 0, 0, 0.988235294117647);
  4099. text-align:left;
  4100. }
  4101. #u60202 .text {
  4102. position:absolute;
  4103. align-self:flex-start;
  4104. padding:0px 0px 0px 0px;
  4105. box-sizing:border-box;
  4106. width:100%;
  4107. }
  4108. #u60202_text {
  4109. border-width:0px;
  4110. white-space:nowrap;
  4111. text-transform:none;
  4112. }
  4113. #u60203_div {
  4114. border-width:0px;
  4115. position:absolute;
  4116. left:0px;
  4117. top:0px;
  4118. width:21px;
  4119. height:14px;
  4120. background:inherit;
  4121. background-color:rgba(255, 255, 255, 0);
  4122. border:none;
  4123. border-radius:0px;
  4124. -moz-box-shadow:none;
  4125. -webkit-box-shadow:none;
  4126. box-shadow:none;
  4127. font-family:'Helvetica', sans-serif;
  4128. font-weight:400;
  4129. font-style:normal;
  4130. font-size:12px;
  4131. color:rgba(0, 0, 0, 0.988235294117647);
  4132. text-align:left;
  4133. }
  4134. #u60203 {
  4135. border-width:0px;
  4136. position:absolute;
  4137. left:402px;
  4138. top:511px;
  4139. width:21px;
  4140. height:14px;
  4141. display:flex;
  4142. font-family:'Helvetica', sans-serif;
  4143. font-weight:400;
  4144. font-style:normal;
  4145. font-size:12px;
  4146. color:rgba(0, 0, 0, 0.988235294117647);
  4147. text-align:left;
  4148. }
  4149. #u60203 .text {
  4150. position:absolute;
  4151. align-self:flex-start;
  4152. padding:0px 0px 0px 0px;
  4153. box-sizing:border-box;
  4154. width:100%;
  4155. }
  4156. #u60203_text {
  4157. border-width:0px;
  4158. white-space:nowrap;
  4159. text-transform:none;
  4160. }
  4161. #u60204_div {
  4162. border-width:0px;
  4163. position:absolute;
  4164. left:0px;
  4165. top:0px;
  4166. width:21px;
  4167. height:14px;
  4168. background:inherit;
  4169. background-color:rgba(255, 255, 255, 0);
  4170. border:none;
  4171. border-radius:0px;
  4172. -moz-box-shadow:none;
  4173. -webkit-box-shadow:none;
  4174. box-shadow:none;
  4175. font-family:'Helvetica', sans-serif;
  4176. font-weight:400;
  4177. font-style:normal;
  4178. font-size:12px;
  4179. color:rgba(0, 0, 0, 0.988235294117647);
  4180. text-align:left;
  4181. }
  4182. #u60204 {
  4183. border-width:0px;
  4184. position:absolute;
  4185. left:402px;
  4186. top:449px;
  4187. width:21px;
  4188. height:14px;
  4189. display:flex;
  4190. font-family:'Helvetica', sans-serif;
  4191. font-weight:400;
  4192. font-style:normal;
  4193. font-size:12px;
  4194. color:rgba(0, 0, 0, 0.988235294117647);
  4195. text-align:left;
  4196. }
  4197. #u60204 .text {
  4198. position:absolute;
  4199. align-self:flex-start;
  4200. padding:0px 0px 0px 0px;
  4201. box-sizing:border-box;
  4202. width:100%;
  4203. }
  4204. #u60204_text {
  4205. border-width:0px;
  4206. white-space:nowrap;
  4207. text-transform:none;
  4208. }
  4209. #u60205_div {
  4210. border-width:0px;
  4211. position:absolute;
  4212. left:0px;
  4213. top:0px;
  4214. width:21px;
  4215. height:14px;
  4216. background:inherit;
  4217. background-color:rgba(255, 255, 255, 0);
  4218. border:none;
  4219. border-radius:0px;
  4220. -moz-box-shadow:none;
  4221. -webkit-box-shadow:none;
  4222. box-shadow:none;
  4223. font-family:'Helvetica', sans-serif;
  4224. font-weight:400;
  4225. font-style:normal;
  4226. font-size:12px;
  4227. color:rgba(0, 0, 0, 0.988235294117647);
  4228. text-align:left;
  4229. }
  4230. #u60205 {
  4231. border-width:0px;
  4232. position:absolute;
  4233. left:399px;
  4234. top:389px;
  4235. width:21px;
  4236. height:14px;
  4237. display:flex;
  4238. font-family:'Helvetica', sans-serif;
  4239. font-weight:400;
  4240. font-style:normal;
  4241. font-size:12px;
  4242. color:rgba(0, 0, 0, 0.988235294117647);
  4243. text-align:left;
  4244. }
  4245. #u60205 .text {
  4246. position:absolute;
  4247. align-self:flex-start;
  4248. padding:0px 0px 0px 0px;
  4249. box-sizing:border-box;
  4250. width:100%;
  4251. }
  4252. #u60205_text {
  4253. border-width:0px;
  4254. white-space:nowrap;
  4255. text-transform:none;
  4256. }
  4257. #u60206_img {
  4258. border-width:0px;
  4259. position:absolute;
  4260. left:0px;
  4261. top:0px;
  4262. width:321px;
  4263. height:7px;
  4264. }
  4265. #u60206p000 {
  4266. border-width:0px;
  4267. position:absolute;
  4268. left:-6px;
  4269. top:0px;
  4270. width:12px;
  4271. height:6px;
  4272. -webkit-transform:rotate(90deg);
  4273. -moz-transform:rotate(90deg);
  4274. -ms-transform:rotate(90deg);
  4275. transform:rotate(90deg);
  4276. }
  4277. #u60206p000_img {
  4278. border-width:0px;
  4279. position:absolute;
  4280. left:0px;
  4281. top:0px;
  4282. width:12px;
  4283. height:6px;
  4284. }
  4285. #u60206p001 {
  4286. border-width:0px;
  4287. position:absolute;
  4288. left:58px;
  4289. top:0px;
  4290. width:12px;
  4291. height:6px;
  4292. -webkit-transform:rotate(90deg);
  4293. -moz-transform:rotate(90deg);
  4294. -ms-transform:rotate(90deg);
  4295. transform:rotate(90deg);
  4296. }
  4297. #u60206p001_img {
  4298. border-width:0px;
  4299. position:absolute;
  4300. left:0px;
  4301. top:0px;
  4302. width:12px;
  4303. height:6px;
  4304. }
  4305. #u60206p002 {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:122px;
  4309. top:0px;
  4310. width:12px;
  4311. height:6px;
  4312. -webkit-transform:rotate(90deg);
  4313. -moz-transform:rotate(90deg);
  4314. -ms-transform:rotate(90deg);
  4315. transform:rotate(90deg);
  4316. }
  4317. #u60206p002_img {
  4318. border-width:0px;
  4319. position:absolute;
  4320. left:0px;
  4321. top:0px;
  4322. width:12px;
  4323. height:6px;
  4324. }
  4325. #u60206p003 {
  4326. border-width:0px;
  4327. position:absolute;
  4328. left:186px;
  4329. top:0px;
  4330. width:12px;
  4331. height:6px;
  4332. -webkit-transform:rotate(90deg);
  4333. -moz-transform:rotate(90deg);
  4334. -ms-transform:rotate(90deg);
  4335. transform:rotate(90deg);
  4336. }
  4337. #u60206p003_img {
  4338. border-width:0px;
  4339. position:absolute;
  4340. left:0px;
  4341. top:0px;
  4342. width:12px;
  4343. height:6px;
  4344. }
  4345. #u60206p004 {
  4346. border-width:0px;
  4347. position:absolute;
  4348. left:250px;
  4349. top:0px;
  4350. width:12px;
  4351. height:6px;
  4352. -webkit-transform:rotate(90deg);
  4353. -moz-transform:rotate(90deg);
  4354. -ms-transform:rotate(90deg);
  4355. transform:rotate(90deg);
  4356. }
  4357. #u60206p004_img {
  4358. border-width:0px;
  4359. position:absolute;
  4360. left:0px;
  4361. top:0px;
  4362. width:12px;
  4363. height:6px;
  4364. }
  4365. #u60206p005 {
  4366. border-width:0px;
  4367. position:absolute;
  4368. left:314px;
  4369. top:0px;
  4370. width:12px;
  4371. height:6px;
  4372. -webkit-transform:rotate(90deg);
  4373. -moz-transform:rotate(90deg);
  4374. -ms-transform:rotate(90deg);
  4375. transform:rotate(90deg);
  4376. }
  4377. #u60206p005_img {
  4378. border-width:0px;
  4379. position:absolute;
  4380. left:0px;
  4381. top:0px;
  4382. width:12px;
  4383. height:6px;
  4384. }
  4385. #u60206.compound {
  4386. width:0px;
  4387. height:0px;
  4388. }
  4389. #u60206 {
  4390. border-width:0px;
  4391. position:absolute;
  4392. left:778px;
  4393. top:638px;
  4394. width:320px;
  4395. height:6px;
  4396. display:flex;
  4397. opacity:0.2;
  4398. }
  4399. #u60206 .text {
  4400. position:absolute;
  4401. align-self:center;
  4402. padding:0px 0px 0px 0px;
  4403. box-sizing:border-box;
  4404. width:100%;
  4405. }
  4406. #u60206_text {
  4407. border-width:0px;
  4408. word-wrap:break-word;
  4409. text-transform:none;
  4410. visibility:hidden;
  4411. }
  4412. #u60207_div {
  4413. border-width:0px;
  4414. position:absolute;
  4415. left:0px;
  4416. top:0px;
  4417. width:26px;
  4418. height:16px;
  4419. background:inherit;
  4420. background-color:rgba(255, 255, 255, 0);
  4421. border:none;
  4422. border-radius:0px;
  4423. -moz-box-shadow:none;
  4424. -webkit-box-shadow:none;
  4425. box-shadow:none;
  4426. font-family:'Helvetica', sans-serif;
  4427. font-weight:400;
  4428. font-style:normal;
  4429. font-size:12px;
  4430. color:rgba(0, 0, 0, 0.996078431372549);
  4431. text-align:left;
  4432. }
  4433. #u60207 {
  4434. border-width:0px;
  4435. position:absolute;
  4436. left:775px;
  4437. top:650px;
  4438. width:26px;
  4439. height:16px;
  4440. display:flex;
  4441. font-family:'Helvetica', sans-serif;
  4442. font-weight:400;
  4443. font-style:normal;
  4444. font-size:12px;
  4445. color:rgba(0, 0, 0, 0.996078431372549);
  4446. text-align:left;
  4447. }
  4448. #u60207 .text {
  4449. position:absolute;
  4450. align-self:flex-start;
  4451. padding:0px 0px 0px 0px;
  4452. box-sizing:border-box;
  4453. width:100%;
  4454. }
  4455. #u60207_text {
  4456. border-width:0px;
  4457. word-wrap:break-word;
  4458. text-transform:none;
  4459. }
  4460. #u60208_div {
  4461. border-width:0px;
  4462. position:absolute;
  4463. left:0px;
  4464. top:0px;
  4465. width:26px;
  4466. height:16px;
  4467. background:inherit;
  4468. background-color:rgba(255, 255, 255, 0);
  4469. border:none;
  4470. border-radius:0px;
  4471. -moz-box-shadow:none;
  4472. -webkit-box-shadow:none;
  4473. box-shadow:none;
  4474. font-family:'Helvetica', sans-serif;
  4475. font-weight:400;
  4476. font-style:normal;
  4477. font-size:12px;
  4478. color:rgba(0, 0, 0, 0.996078431372549);
  4479. text-align:left;
  4480. }
  4481. #u60208 {
  4482. border-width:0px;
  4483. position:absolute;
  4484. left:837px;
  4485. top:650px;
  4486. width:26px;
  4487. height:16px;
  4488. display:flex;
  4489. font-family:'Helvetica', sans-serif;
  4490. font-weight:400;
  4491. font-style:normal;
  4492. font-size:12px;
  4493. color:rgba(0, 0, 0, 0.996078431372549);
  4494. text-align:left;
  4495. }
  4496. #u60208 .text {
  4497. position:absolute;
  4498. align-self:flex-start;
  4499. padding:0px 0px 0px 0px;
  4500. box-sizing:border-box;
  4501. width:100%;
  4502. }
  4503. #u60208_text {
  4504. border-width:0px;
  4505. word-wrap:break-word;
  4506. text-transform:none;
  4507. }
  4508. #u60209_div {
  4509. border-width:0px;
  4510. position:absolute;
  4511. left:0px;
  4512. top:0px;
  4513. width:26px;
  4514. height:16px;
  4515. background:inherit;
  4516. background-color:rgba(255, 255, 255, 0);
  4517. border:none;
  4518. border-radius:0px;
  4519. -moz-box-shadow:none;
  4520. -webkit-box-shadow:none;
  4521. box-shadow:none;
  4522. font-family:'Helvetica', sans-serif;
  4523. font-weight:400;
  4524. font-style:normal;
  4525. font-size:12px;
  4526. color:rgba(0, 0, 0, 0.996078431372549);
  4527. text-align:left;
  4528. }
  4529. #u60209 {
  4530. border-width:0px;
  4531. position:absolute;
  4532. left:898px;
  4533. top:650px;
  4534. width:26px;
  4535. height:16px;
  4536. display:flex;
  4537. font-family:'Helvetica', sans-serif;
  4538. font-weight:400;
  4539. font-style:normal;
  4540. font-size:12px;
  4541. color:rgba(0, 0, 0, 0.996078431372549);
  4542. text-align:left;
  4543. }
  4544. #u60209 .text {
  4545. position:absolute;
  4546. align-self:flex-start;
  4547. padding:0px 0px 0px 0px;
  4548. box-sizing:border-box;
  4549. width:100%;
  4550. }
  4551. #u60209_text {
  4552. border-width:0px;
  4553. word-wrap:break-word;
  4554. text-transform:none;
  4555. }
  4556. #u60210_div {
  4557. border-width:0px;
  4558. position:absolute;
  4559. left:0px;
  4560. top:0px;
  4561. width:26px;
  4562. height:16px;
  4563. background:inherit;
  4564. background-color:rgba(255, 255, 255, 0);
  4565. border:none;
  4566. border-radius:0px;
  4567. -moz-box-shadow:none;
  4568. -webkit-box-shadow:none;
  4569. box-shadow:none;
  4570. font-family:'Helvetica', sans-serif;
  4571. font-weight:400;
  4572. font-style:normal;
  4573. font-size:12px;
  4574. color:rgba(0, 0, 0, 0.996078431372549);
  4575. text-align:left;
  4576. }
  4577. #u60210 {
  4578. border-width:0px;
  4579. position:absolute;
  4580. left:964px;
  4581. top:650px;
  4582. width:26px;
  4583. height:16px;
  4584. display:flex;
  4585. font-family:'Helvetica', sans-serif;
  4586. font-weight:400;
  4587. font-style:normal;
  4588. font-size:12px;
  4589. color:rgba(0, 0, 0, 0.996078431372549);
  4590. text-align:left;
  4591. }
  4592. #u60210 .text {
  4593. position:absolute;
  4594. align-self:flex-start;
  4595. padding:0px 0px 0px 0px;
  4596. box-sizing:border-box;
  4597. width:100%;
  4598. }
  4599. #u60210_text {
  4600. border-width:0px;
  4601. word-wrap:break-word;
  4602. text-transform:none;
  4603. }
  4604. #u60211_div {
  4605. border-width:0px;
  4606. position:absolute;
  4607. left:0px;
  4608. top:0px;
  4609. width:26px;
  4610. height:16px;
  4611. background:inherit;
  4612. background-color:rgba(255, 255, 255, 0);
  4613. border:none;
  4614. border-radius:0px;
  4615. -moz-box-shadow:none;
  4616. -webkit-box-shadow:none;
  4617. box-shadow:none;
  4618. font-family:'Helvetica', sans-serif;
  4619. font-weight:400;
  4620. font-style:normal;
  4621. font-size:12px;
  4622. color:rgba(0, 0, 0, 0.996078431372549);
  4623. text-align:left;
  4624. }
  4625. #u60211 {
  4626. border-width:0px;
  4627. position:absolute;
  4628. left:1026px;
  4629. top:650px;
  4630. width:26px;
  4631. height:16px;
  4632. display:flex;
  4633. font-family:'Helvetica', sans-serif;
  4634. font-weight:400;
  4635. font-style:normal;
  4636. font-size:12px;
  4637. color:rgba(0, 0, 0, 0.996078431372549);
  4638. text-align:left;
  4639. }
  4640. #u60211 .text {
  4641. position:absolute;
  4642. align-self:flex-start;
  4643. padding:0px 0px 0px 0px;
  4644. box-sizing:border-box;
  4645. width:100%;
  4646. }
  4647. #u60211_text {
  4648. border-width:0px;
  4649. word-wrap:break-word;
  4650. text-transform:none;
  4651. }
  4652. #u60212_div {
  4653. border-width:0px;
  4654. position:absolute;
  4655. left:0px;
  4656. top:0px;
  4657. width:26px;
  4658. height:16px;
  4659. background:inherit;
  4660. background-color:rgba(255, 255, 255, 0);
  4661. border:none;
  4662. border-radius:0px;
  4663. -moz-box-shadow:none;
  4664. -webkit-box-shadow:none;
  4665. box-shadow:none;
  4666. font-family:'Helvetica', sans-serif;
  4667. font-weight:400;
  4668. font-style:normal;
  4669. font-size:12px;
  4670. color:rgba(0, 0, 0, 0.996078431372549);
  4671. text-align:left;
  4672. }
  4673. #u60212 {
  4674. border-width:0px;
  4675. position:absolute;
  4676. left:1090px;
  4677. top:650px;
  4678. width:26px;
  4679. height:16px;
  4680. display:flex;
  4681. font-family:'Helvetica', sans-serif;
  4682. font-weight:400;
  4683. font-style:normal;
  4684. font-size:12px;
  4685. color:rgba(0, 0, 0, 0.996078431372549);
  4686. text-align:left;
  4687. }
  4688. #u60212 .text {
  4689. position:absolute;
  4690. align-self:flex-start;
  4691. padding:0px 0px 0px 0px;
  4692. box-sizing:border-box;
  4693. width:100%;
  4694. }
  4695. #u60212_text {
  4696. border-width:0px;
  4697. word-wrap:break-word;
  4698. text-transform:none;
  4699. }
  4700. #u60213 {
  4701. border-width:0px;
  4702. position:absolute;
  4703. left:0px;
  4704. top:0px;
  4705. width:0px;
  4706. height:0px;
  4707. }
  4708. #u60214_img {
  4709. border-width:0px;
  4710. position:absolute;
  4711. left:0px;
  4712. top:0px;
  4713. width:2px;
  4714. height:254px;
  4715. }
  4716. #u60214 {
  4717. border-width:0px;
  4718. position:absolute;
  4719. left:666px;
  4720. top:381px;
  4721. width:1px;
  4722. height:253px;
  4723. display:flex;
  4724. }
  4725. #u60214 .text {
  4726. position:absolute;
  4727. align-self:center;
  4728. padding:2px 2px 2px 2px;
  4729. box-sizing:border-box;
  4730. width:100%;
  4731. }
  4732. #u60214_text {
  4733. border-width:0px;
  4734. word-wrap:break-word;
  4735. text-transform:none;
  4736. visibility:hidden;
  4737. }
  4738. #u60215_div {
  4739. border-width:0px;
  4740. position:absolute;
  4741. left:0px;
  4742. top:0px;
  4743. width:73px;
  4744. height:17px;
  4745. background:inherit;
  4746. background-color:rgba(255, 255, 255, 0);
  4747. border:none;
  4748. border-radius:0px;
  4749. -moz-box-shadow:none;
  4750. -webkit-box-shadow:none;
  4751. box-shadow:none;
  4752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4753. font-weight:400;
  4754. font-style:normal;
  4755. font-size:12px;
  4756. color:#555555;
  4757. text-align:left;
  4758. }
  4759. #u60215 {
  4760. border-width:0px;
  4761. position:absolute;
  4762. left:394px;
  4763. top:335px;
  4764. width:73px;
  4765. height:17px;
  4766. display:flex;
  4767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4768. font-weight:400;
  4769. font-style:normal;
  4770. font-size:12px;
  4771. color:#555555;
  4772. text-align:left;
  4773. }
  4774. #u60215 .text {
  4775. position:absolute;
  4776. align-self:flex-start;
  4777. padding:0px 0px 0px 0px;
  4778. box-sizing:border-box;
  4779. width:100%;
  4780. }
  4781. #u60215_text {
  4782. border-width:0px;
  4783. white-space:nowrap;
  4784. text-transform:none;
  4785. }
  4786. #u60216 {
  4787. border-width:0px;
  4788. position:absolute;
  4789. left:0px;
  4790. top:0px;
  4791. width:0px;
  4792. height:0px;
  4793. }
  4794. #u60217_img {
  4795. border-width:0px;
  4796. position:absolute;
  4797. left:-2px;
  4798. top:-2px;
  4799. width:74px;
  4800. height:54px;
  4801. }
  4802. #u60217 {
  4803. border-width:0px;
  4804. position:absolute;
  4805. left:662px;
  4806. top:481px;
  4807. width:64px;
  4808. height:44px;
  4809. display:flex;
  4810. font-family:'微软雅黑', sans-serif;
  4811. font-weight:400;
  4812. font-style:normal;
  4813. font-size:12px;
  4814. color:#4B4D53;
  4815. }
  4816. #u60217 .text {
  4817. position:absolute;
  4818. align-self:center;
  4819. padding:2px 2px 2px 2px;
  4820. box-sizing:border-box;
  4821. width:100%;
  4822. }
  4823. #u60217_text {
  4824. border-width:0px;
  4825. word-wrap:break-word;
  4826. text-transform:none;
  4827. visibility:hidden;
  4828. }
  4829. #u60218_div {
  4830. border-width:0px;
  4831. position:absolute;
  4832. left:0px;
  4833. top:0px;
  4834. width:52px;
  4835. height:17px;
  4836. background:inherit;
  4837. background-color:rgba(255, 255, 255, 0);
  4838. border:none;
  4839. border-radius:0px;
  4840. -moz-box-shadow:none;
  4841. -webkit-box-shadow:none;
  4842. box-shadow:none;
  4843. font-size:12px;
  4844. color:#4B4D53;
  4845. }
  4846. #u60218 {
  4847. border-width:0px;
  4848. position:absolute;
  4849. left:670px;
  4850. top:492px;
  4851. width:52px;
  4852. height:17px;
  4853. display:flex;
  4854. font-size:12px;
  4855. color:#4B4D53;
  4856. }
  4857. #u60218 .text {
  4858. position:absolute;
  4859. align-self:flex-start;
  4860. padding:0px 0px 0px 0px;
  4861. box-sizing:border-box;
  4862. width:100%;
  4863. }
  4864. #u60218_text {
  4865. border-width:0px;
  4866. white-space:nowrap;
  4867. text-transform:none;
  4868. }
  4869. #u60219 {
  4870. border-width:0px;
  4871. position:absolute;
  4872. left:0px;
  4873. top:0px;
  4874. width:0px;
  4875. height:0px;
  4876. }
  4877. #u60220_img {
  4878. border-width:0px;
  4879. position:absolute;
  4880. left:0px;
  4881. top:0px;
  4882. width:9px;
  4883. height:10px;
  4884. }
  4885. #u60220 {
  4886. border-width:0px;
  4887. position:absolute;
  4888. left:839px;
  4889. top:356px;
  4890. width:9px;
  4891. height:10px;
  4892. display:flex;
  4893. }
  4894. #u60220 .text {
  4895. position:absolute;
  4896. align-self:center;
  4897. padding:2px 2px 2px 2px;
  4898. box-sizing:border-box;
  4899. width:100%;
  4900. }
  4901. #u60220_text {
  4902. border-width:0px;
  4903. word-wrap:break-word;
  4904. text-transform:none;
  4905. visibility:hidden;
  4906. }
  4907. #u60221_div {
  4908. border-width:0px;
  4909. position:absolute;
  4910. left:0px;
  4911. top:0px;
  4912. width:61px;
  4913. height:17px;
  4914. background:inherit;
  4915. background-color:rgba(255, 255, 255, 0);
  4916. border:none;
  4917. border-radius:0px;
  4918. -moz-box-shadow:none;
  4919. -webkit-box-shadow:none;
  4920. box-shadow:none;
  4921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4922. font-weight:400;
  4923. font-style:normal;
  4924. font-size:12px;
  4925. color:#4B4D53;
  4926. }
  4927. #u60221 {
  4928. border-width:0px;
  4929. position:absolute;
  4930. left:855px;
  4931. top:351px;
  4932. width:61px;
  4933. height:17px;
  4934. display:flex;
  4935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4936. font-weight:400;
  4937. font-style:normal;
  4938. font-size:12px;
  4939. color:#4B4D53;
  4940. }
  4941. #u60221 .text {
  4942. position:absolute;
  4943. align-self:flex-start;
  4944. padding:0px 0px 0px 0px;
  4945. box-sizing:border-box;
  4946. width:100%;
  4947. }
  4948. #u60221_text {
  4949. border-width:0px;
  4950. white-space:nowrap;
  4951. text-transform:none;
  4952. }
  4953. #u60222 {
  4954. border-width:0px;
  4955. position:absolute;
  4956. left:0px;
  4957. top:0px;
  4958. width:0px;
  4959. height:0px;
  4960. }
  4961. #u60223_img {
  4962. border-width:0px;
  4963. position:absolute;
  4964. left:0px;
  4965. top:0px;
  4966. width:9px;
  4967. height:10px;
  4968. }
  4969. #u60223 {
  4970. border-width:0px;
  4971. position:absolute;
  4972. left:929px;
  4973. top:356px;
  4974. width:9px;
  4975. height:10px;
  4976. display:flex;
  4977. }
  4978. #u60223 .text {
  4979. position:absolute;
  4980. align-self:center;
  4981. padding:2px 2px 2px 2px;
  4982. box-sizing:border-box;
  4983. width:100%;
  4984. }
  4985. #u60223_text {
  4986. border-width:0px;
  4987. word-wrap:break-word;
  4988. text-transform:none;
  4989. visibility:hidden;
  4990. }
  4991. #u60224_div {
  4992. border-width:0px;
  4993. position:absolute;
  4994. left:0px;
  4995. top:0px;
  4996. width:49px;
  4997. height:17px;
  4998. background:inherit;
  4999. background-color:rgba(255, 255, 255, 0);
  5000. border:none;
  5001. border-radius:0px;
  5002. -moz-box-shadow:none;
  5003. -webkit-box-shadow:none;
  5004. box-shadow:none;
  5005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5006. font-weight:400;
  5007. font-style:normal;
  5008. font-size:12px;
  5009. color:#4B4D53;
  5010. }
  5011. #u60224 {
  5012. border-width:0px;
  5013. position:absolute;
  5014. left:945px;
  5015. top:351px;
  5016. width:49px;
  5017. height:17px;
  5018. display:flex;
  5019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5020. font-weight:400;
  5021. font-style:normal;
  5022. font-size:12px;
  5023. color:#4B4D53;
  5024. }
  5025. #u60224 .text {
  5026. position:absolute;
  5027. align-self:flex-start;
  5028. padding:0px 0px 0px 0px;
  5029. box-sizing:border-box;
  5030. width:100%;
  5031. }
  5032. #u60224_text {
  5033. border-width:0px;
  5034. white-space:nowrap;
  5035. text-transform:none;
  5036. }
  5037. #u60225 {
  5038. border-width:0px;
  5039. position:absolute;
  5040. left:0px;
  5041. top:0px;
  5042. width:0px;
  5043. height:0px;
  5044. }
  5045. #u60226_img {
  5046. border-width:0px;
  5047. position:absolute;
  5048. left:0px;
  5049. top:0px;
  5050. width:9px;
  5051. height:10px;
  5052. }
  5053. #u60226 {
  5054. border-width:0px;
  5055. position:absolute;
  5056. left:1008px;
  5057. top:356px;
  5058. width:9px;
  5059. height:10px;
  5060. display:flex;
  5061. }
  5062. #u60226 .text {
  5063. position:absolute;
  5064. align-self:center;
  5065. padding:2px 2px 2px 2px;
  5066. box-sizing:border-box;
  5067. width:100%;
  5068. }
  5069. #u60226_text {
  5070. border-width:0px;
  5071. word-wrap:break-word;
  5072. text-transform:none;
  5073. visibility:hidden;
  5074. }
  5075. #u60227_div {
  5076. border-width:0px;
  5077. position:absolute;
  5078. left:0px;
  5079. top:0px;
  5080. width:49px;
  5081. height:17px;
  5082. background:inherit;
  5083. background-color:rgba(255, 255, 255, 0);
  5084. border:none;
  5085. border-radius:0px;
  5086. -moz-box-shadow:none;
  5087. -webkit-box-shadow:none;
  5088. box-shadow:none;
  5089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5090. font-weight:400;
  5091. font-style:normal;
  5092. font-size:12px;
  5093. color:#4B4D53;
  5094. }
  5095. #u60227 {
  5096. border-width:0px;
  5097. position:absolute;
  5098. left:1024px;
  5099. top:351px;
  5100. width:49px;
  5101. height:17px;
  5102. display:flex;
  5103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5104. font-weight:400;
  5105. font-style:normal;
  5106. font-size:12px;
  5107. color:#4B4D53;
  5108. }
  5109. #u60227 .text {
  5110. position:absolute;
  5111. align-self:flex-start;
  5112. padding:0px 0px 0px 0px;
  5113. box-sizing:border-box;
  5114. width:100%;
  5115. }
  5116. #u60227_text {
  5117. border-width:0px;
  5118. white-space:nowrap;
  5119. text-transform:none;
  5120. }
  5121. #u60228_div {
  5122. border-width:0px;
  5123. position:absolute;
  5124. left:0px;
  5125. top:0px;
  5126. width:7px;
  5127. height:139px;
  5128. background:inherit;
  5129. background-color:rgba(245, 197, 35, 1);
  5130. border:none;
  5131. border-radius:0px;
  5132. -moz-box-shadow:none;
  5133. -webkit-box-shadow:none;
  5134. box-shadow:none;
  5135. }
  5136. #u60228 {
  5137. border-width:0px;
  5138. position:absolute;
  5139. left:439px;
  5140. top:501px;
  5141. width:7px;
  5142. height:139px;
  5143. display:flex;
  5144. }
  5145. #u60228 .text {
  5146. position:absolute;
  5147. align-self:center;
  5148. padding:2px 2px 2px 2px;
  5149. box-sizing:border-box;
  5150. width:100%;
  5151. }
  5152. #u60228_text {
  5153. border-width:0px;
  5154. word-wrap:break-word;
  5155. text-transform:none;
  5156. visibility:hidden;
  5157. }
  5158. #u60229 {
  5159. border-width:0px;
  5160. position:absolute;
  5161. left:0px;
  5162. top:0px;
  5163. width:0px;
  5164. height:0px;
  5165. }
  5166. #u60230_img {
  5167. border-width:0px;
  5168. position:absolute;
  5169. left:0px;
  5170. top:0px;
  5171. width:9px;
  5172. height:10px;
  5173. }
  5174. #u60230 {
  5175. border-width:0px;
  5176. position:absolute;
  5177. left:1087px;
  5178. top:356px;
  5179. width:9px;
  5180. height:10px;
  5181. display:flex;
  5182. }
  5183. #u60230 .text {
  5184. position:absolute;
  5185. align-self:center;
  5186. padding:2px 2px 2px 2px;
  5187. box-sizing:border-box;
  5188. width:100%;
  5189. }
  5190. #u60230_text {
  5191. border-width:0px;
  5192. word-wrap:break-word;
  5193. text-transform:none;
  5194. visibility:hidden;
  5195. }
  5196. #u60231_div {
  5197. border-width:0px;
  5198. position:absolute;
  5199. left:0px;
  5200. top:0px;
  5201. width:37px;
  5202. height:17px;
  5203. background:inherit;
  5204. background-color:rgba(255, 255, 255, 0);
  5205. border:none;
  5206. border-radius:0px;
  5207. -moz-box-shadow:none;
  5208. -webkit-box-shadow:none;
  5209. box-shadow:none;
  5210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5211. font-weight:400;
  5212. font-style:normal;
  5213. font-size:12px;
  5214. color:#4B4D53;
  5215. }
  5216. #u60231 {
  5217. border-width:0px;
  5218. position:absolute;
  5219. left:1103px;
  5220. top:351px;
  5221. width:37px;
  5222. height:17px;
  5223. display:flex;
  5224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5225. font-weight:400;
  5226. font-style:normal;
  5227. font-size:12px;
  5228. color:#4B4D53;
  5229. }
  5230. #u60231 .text {
  5231. position:absolute;
  5232. align-self:flex-start;
  5233. padding:0px 0px 0px 0px;
  5234. box-sizing:border-box;
  5235. width:100%;
  5236. }
  5237. #u60231_text {
  5238. border-width:0px;
  5239. white-space:nowrap;
  5240. text-transform:none;
  5241. }
  5242. #u60232_div {
  5243. border-width:0px;
  5244. position:absolute;
  5245. left:0px;
  5246. top:0px;
  5247. width:60px;
  5248. height:30px;
  5249. background:inherit;
  5250. background-color:rgba(51, 51, 51, 1);
  5251. box-sizing:border-box;
  5252. border-width:1px;
  5253. border-style:solid;
  5254. border-color:rgba(215, 215, 215, 1);
  5255. border-radius:0px;
  5256. -moz-box-shadow:none;
  5257. -webkit-box-shadow:none;
  5258. box-shadow:none;
  5259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5260. font-weight:400;
  5261. font-style:normal;
  5262. font-size:14px;
  5263. color:#FFFFFF;
  5264. text-align:center;
  5265. line-height:30px;
  5266. }
  5267. #u60232 {
  5268. border-width:0px;
  5269. position:absolute;
  5270. left:1358px;
  5271. top:268px;
  5272. width:60px;
  5273. height:30px;
  5274. display:flex;
  5275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5276. font-weight:400;
  5277. font-style:normal;
  5278. font-size:14px;
  5279. color:#FFFFFF;
  5280. text-align:center;
  5281. line-height:30px;
  5282. }
  5283. #u60232 .text {
  5284. position:absolute;
  5285. align-self:flex-start;
  5286. padding:0px 0px 0px 0px;
  5287. box-sizing:border-box;
  5288. width:100%;
  5289. }
  5290. #u60232_text {
  5291. border-width:0px;
  5292. word-wrap:break-word;
  5293. text-transform:none;
  5294. }
  5295. #u60233_div {
  5296. border-width:0px;
  5297. position:absolute;
  5298. left:0px;
  5299. top:0px;
  5300. width:60px;
  5301. height:30px;
  5302. background:inherit;
  5303. background-color:rgba(255, 255, 255, 0);
  5304. box-sizing:border-box;
  5305. border-width:1px;
  5306. border-style:solid;
  5307. border-color:rgba(215, 215, 215, 1);
  5308. border-radius:0px;
  5309. -moz-box-shadow:none;
  5310. -webkit-box-shadow:none;
  5311. box-shadow:none;
  5312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5313. font-weight:400;
  5314. font-style:normal;
  5315. font-size:14px;
  5316. text-align:center;
  5317. line-height:30px;
  5318. }
  5319. #u60233 {
  5320. border-width:0px;
  5321. position:absolute;
  5322. left:1299px;
  5323. top:268px;
  5324. width:60px;
  5325. height:30px;
  5326. display:flex;
  5327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5328. font-weight:400;
  5329. font-style:normal;
  5330. font-size:14px;
  5331. text-align:center;
  5332. line-height:30px;
  5333. }
  5334. #u60233 .text {
  5335. position:absolute;
  5336. align-self:flex-start;
  5337. padding:0px 0px 0px 0px;
  5338. box-sizing:border-box;
  5339. width:100%;
  5340. }
  5341. #u60233_text {
  5342. border-width:0px;
  5343. word-wrap:break-word;
  5344. text-transform:none;
  5345. }
  5346. #u60234 {
  5347. border-width:0px;
  5348. position:absolute;
  5349. left:0px;
  5350. top:0px;
  5351. width:0px;
  5352. height:0px;
  5353. }
  5354. #u60235_div {
  5355. border-width:0px;
  5356. position:absolute;
  5357. left:0px;
  5358. top:0px;
  5359. width:140px;
  5360. height:30px;
  5361. background:inherit;
  5362. background-color:rgba(255, 255, 255, 1);
  5363. box-sizing:border-box;
  5364. border-width:1px;
  5365. border-style:solid;
  5366. border-color:rgba(201, 201, 201, 1);
  5367. border-radius:0px;
  5368. -moz-box-shadow:none;
  5369. -webkit-box-shadow:none;
  5370. box-shadow:none;
  5371. font-family:'Microsoft YaHei', sans-serif;
  5372. font-weight:400;
  5373. font-style:normal;
  5374. font-size:14px;
  5375. color:#CCCCCC;
  5376. text-align:left;
  5377. }
  5378. #u60235 {
  5379. border-width:0px;
  5380. position:absolute;
  5381. left:1428px;
  5382. top:268px;
  5383. width:140px;
  5384. height:30px;
  5385. display:flex;
  5386. font-family:'Microsoft YaHei', sans-serif;
  5387. font-weight:400;
  5388. font-style:normal;
  5389. font-size:14px;
  5390. color:#CCCCCC;
  5391. text-align:left;
  5392. }
  5393. #u60235 .text {
  5394. position:absolute;
  5395. align-self:center;
  5396. padding:2px 8px 2px 8px;
  5397. box-sizing:border-box;
  5398. width:100%;
  5399. }
  5400. #u60235_text {
  5401. border-width:0px;
  5402. word-wrap:break-word;
  5403. text-transform:none;
  5404. visibility:hidden;
  5405. }
  5406. #u60236_input {
  5407. position:absolute;
  5408. left:0px;
  5409. top:0px;
  5410. width:113px;
  5411. height:27px;
  5412. padding:2px 2px 2px 2px;
  5413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5414. font-weight:400;
  5415. font-style:normal;
  5416. font-size:12px;
  5417. letter-spacing:normal;
  5418. color:#000000;
  5419. vertical-align:none;
  5420. text-align:left;
  5421. text-transform:none;
  5422. background-color:transparent;
  5423. border-color:transparent;
  5424. }
  5425. #u60236_input.disabled {
  5426. position:absolute;
  5427. left:0px;
  5428. top:0px;
  5429. width:113px;
  5430. height:27px;
  5431. padding:2px 2px 2px 2px;
  5432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5433. font-weight:400;
  5434. font-style:normal;
  5435. font-size:12px;
  5436. letter-spacing:normal;
  5437. color:#000000;
  5438. vertical-align:none;
  5439. text-align:left;
  5440. text-transform:none;
  5441. background-color:transparent;
  5442. border-color:transparent;
  5443. }
  5444. #u60236_div {
  5445. border-width:0px;
  5446. position:absolute;
  5447. left:0px;
  5448. top:0px;
  5449. width:113px;
  5450. height:27px;
  5451. background:inherit;
  5452. background-color:rgba(255, 255, 255, 1);
  5453. border:none;
  5454. border-radius:0px;
  5455. -moz-box-shadow:none;
  5456. -webkit-box-shadow:none;
  5457. box-shadow:none;
  5458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5459. font-weight:400;
  5460. font-style:normal;
  5461. font-size:12px;
  5462. }
  5463. #u60236 {
  5464. border-width:0px;
  5465. position:absolute;
  5466. left:1433px;
  5467. top:269px;
  5468. width:113px;
  5469. height:27px;
  5470. display:flex;
  5471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5472. font-weight:400;
  5473. font-style:normal;
  5474. font-size:12px;
  5475. }
  5476. #u60236 .text {
  5477. position:absolute;
  5478. align-self:center;
  5479. padding:2px 2px 2px 2px;
  5480. box-sizing:border-box;
  5481. width:100%;
  5482. }
  5483. #u60236_div.disabled {
  5484. border-width:0px;
  5485. position:absolute;
  5486. left:0px;
  5487. top:0px;
  5488. width:113px;
  5489. height:27px;
  5490. background:inherit;
  5491. background-color:rgba(240, 240, 240, 1);
  5492. border:none;
  5493. border-radius:0px;
  5494. -moz-box-shadow:none;
  5495. -webkit-box-shadow:none;
  5496. box-shadow:none;
  5497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5498. font-weight:400;
  5499. font-style:normal;
  5500. font-size:12px;
  5501. }
  5502. #u60236.disabled {
  5503. }
  5504. #u60237_img {
  5505. border-width:0px;
  5506. position:absolute;
  5507. left:0px;
  5508. top:0px;
  5509. width:13px;
  5510. height:13px;
  5511. }
  5512. #u60237 {
  5513. border-width:0px;
  5514. position:absolute;
  5515. left:1549px;
  5516. top:277px;
  5517. width:13px;
  5518. height:13px;
  5519. display:flex;
  5520. }
  5521. #u60237 .text {
  5522. position:absolute;
  5523. align-self:center;
  5524. padding:2px 2px 2px 2px;
  5525. box-sizing:border-box;
  5526. width:100%;
  5527. }
  5528. #u60237_text {
  5529. border-width:0px;
  5530. word-wrap:break-word;
  5531. text-transform:none;
  5532. visibility:hidden;
  5533. }
  5534. #u60238_div {
  5535. border-width:0px;
  5536. position:absolute;
  5537. left:0px;
  5538. top:0px;
  5539. width:109px;
  5540. height:25px;
  5541. background:inherit;
  5542. background-color:rgba(255, 255, 255, 0);
  5543. border:none;
  5544. border-radius:0px;
  5545. -moz-box-shadow:none;
  5546. -webkit-box-shadow:none;
  5547. box-shadow:none;
  5548. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5549. font-weight:650;
  5550. font-style:normal;
  5551. }
  5552. #u60238 {
  5553. border-width:0px;
  5554. position:absolute;
  5555. left:380px;
  5556. top:268px;
  5557. width:109px;
  5558. height:25px;
  5559. display:flex;
  5560. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5561. font-weight:650;
  5562. font-style:normal;
  5563. }
  5564. #u60238 .text {
  5565. position:absolute;
  5566. align-self:flex-start;
  5567. padding:0px 0px 0px 0px;
  5568. box-sizing:border-box;
  5569. width:100%;
  5570. }
  5571. #u60238_text {
  5572. border-width:0px;
  5573. white-space:nowrap;
  5574. text-transform:none;
  5575. }
  5576. #u60239_img {
  5577. border-width:0px;
  5578. position:absolute;
  5579. left:0px;
  5580. top:0px;
  5581. width:1215px;
  5582. height:2px;
  5583. }
  5584. #u60239 {
  5585. border-width:0px;
  5586. position:absolute;
  5587. left:354px;
  5588. top:308px;
  5589. width:1214px;
  5590. height:1px;
  5591. display:flex;
  5592. }
  5593. #u60239 .text {
  5594. position:absolute;
  5595. align-self:center;
  5596. padding:2px 2px 2px 2px;
  5597. box-sizing:border-box;
  5598. width:100%;
  5599. }
  5600. #u60239_text {
  5601. border-width:0px;
  5602. word-wrap:break-word;
  5603. text-transform:none;
  5604. visibility:hidden;
  5605. }
  5606. #u60240_div {
  5607. border-width:0px;
  5608. position:absolute;
  5609. left:0px;
  5610. top:0px;
  5611. width:145px;
  5612. height:25px;
  5613. background:inherit;
  5614. background-color:rgba(255, 255, 255, 0);
  5615. border:none;
  5616. border-radius:0px;
  5617. -moz-box-shadow:none;
  5618. -webkit-box-shadow:none;
  5619. box-shadow:none;
  5620. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5621. font-weight:650;
  5622. font-style:normal;
  5623. }
  5624. #u60240 {
  5625. border-width:0px;
  5626. position:absolute;
  5627. left:1182px;
  5628. top:345px;
  5629. width:145px;
  5630. height:25px;
  5631. display:flex;
  5632. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5633. font-weight:650;
  5634. font-style:normal;
  5635. }
  5636. #u60240 .text {
  5637. position:absolute;
  5638. align-self:flex-start;
  5639. padding:0px 0px 0px 0px;
  5640. box-sizing:border-box;
  5641. width:100%;
  5642. }
  5643. #u60240_text {
  5644. border-width:0px;
  5645. white-space:nowrap;
  5646. text-transform:none;
  5647. }
  5648. #u60241 {
  5649. border-width:0px;
  5650. position:absolute;
  5651. left:0px;
  5652. top:0px;
  5653. width:0px;
  5654. height:0px;
  5655. }
  5656. #u60242_div {
  5657. border-width:0px;
  5658. position:absolute;
  5659. left:0px;
  5660. top:0px;
  5661. width:382px;
  5662. height:50px;
  5663. background:inherit;
  5664. background-color:rgba(255, 255, 255, 1);
  5665. box-sizing:border-box;
  5666. border-width:1px;
  5667. border-style:solid;
  5668. border-color:rgba(215, 215, 215, 1);
  5669. border-left:0px;
  5670. border-right:0px;
  5671. border-radius:0px;
  5672. border-top-left-radius:0px;
  5673. border-top-right-radius:0px;
  5674. border-bottom-right-radius:0px;
  5675. border-bottom-left-radius:0px;
  5676. -moz-box-shadow:none;
  5677. -webkit-box-shadow:none;
  5678. box-shadow:none;
  5679. font-family:'Microsoft YaHei', sans-serif;
  5680. font-weight:400;
  5681. font-style:normal;
  5682. }
  5683. #u60242 {
  5684. border-width:0px;
  5685. position:absolute;
  5686. left:1186px;
  5687. top:382px;
  5688. width:382px;
  5689. height:50px;
  5690. display:flex;
  5691. font-family:'Microsoft YaHei', sans-serif;
  5692. font-weight:400;
  5693. font-style:normal;
  5694. }
  5695. #u60242 .text {
  5696. position:absolute;
  5697. align-self:center;
  5698. padding:2px 2px 2px 2px;
  5699. box-sizing:border-box;
  5700. width:100%;
  5701. }
  5702. #u60242_div.selected {
  5703. border-width:0px;
  5704. position:absolute;
  5705. left:0px;
  5706. top:0px;
  5707. width:382px;
  5708. height:50px;
  5709. background:inherit;
  5710. background-color:rgba(255, 255, 255, 1);
  5711. box-sizing:border-box;
  5712. border-width:1px;
  5713. border-style:solid;
  5714. border-color:rgba(24, 144, 255, 1);
  5715. border-left:0px;
  5716. border-right:0px;
  5717. border-radius:0px;
  5718. border-top-left-radius:0px;
  5719. border-top-right-radius:0px;
  5720. border-bottom-right-radius:0px;
  5721. border-bottom-left-radius:0px;
  5722. -moz-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  5723. -webkit-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  5724. box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  5725. font-family:'Microsoft YaHei', sans-serif;
  5726. font-weight:400;
  5727. font-style:normal;
  5728. }
  5729. #u60242.selected {
  5730. }
  5731. #u60242_text {
  5732. border-width:0px;
  5733. word-wrap:break-word;
  5734. text-transform:none;
  5735. visibility:hidden;
  5736. }
  5737. #u60243_div {
  5738. border-width:0px;
  5739. position:absolute;
  5740. left:0px;
  5741. top:0px;
  5742. width:37px;
  5743. height:25px;
  5744. background:inherit;
  5745. background-color:rgba(255, 255, 255, 0);
  5746. border:none;
  5747. border-radius:0px;
  5748. -moz-box-shadow:none;
  5749. -webkit-box-shadow:none;
  5750. box-shadow:none;
  5751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5752. font-weight:400;
  5753. font-style:normal;
  5754. }
  5755. #u60243 {
  5756. border-width:0px;
  5757. position:absolute;
  5758. left:1244px;
  5759. top:394px;
  5760. width:37px;
  5761. height:25px;
  5762. display:flex;
  5763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5764. font-weight:400;
  5765. font-style:normal;
  5766. }
  5767. #u60243 .text {
  5768. position:absolute;
  5769. align-self:flex-start;
  5770. padding:0px 0px 0px 0px;
  5771. box-sizing:border-box;
  5772. width:100%;
  5773. }
  5774. #u60243_text {
  5775. border-width:0px;
  5776. white-space:nowrap;
  5777. text-transform:none;
  5778. }
  5779. #u60244_img {
  5780. border-width:0px;
  5781. position:absolute;
  5782. left:0px;
  5783. top:0px;
  5784. width:20px;
  5785. height:20px;
  5786. }
  5787. #u60244 {
  5788. border-width:0px;
  5789. position:absolute;
  5790. left:1203px;
  5791. top:397px;
  5792. width:20px;
  5793. height:20px;
  5794. display:flex;
  5795. font-size:12px;
  5796. color:#FFFFFF;
  5797. }
  5798. #u60244 .text {
  5799. position:absolute;
  5800. align-self:center;
  5801. padding:2px 2px 2px 2px;
  5802. box-sizing:border-box;
  5803. width:100%;
  5804. }
  5805. #u60244_text {
  5806. border-width:0px;
  5807. word-wrap:break-word;
  5808. text-transform:none;
  5809. }
  5810. #u60245_div {
  5811. border-width:0px;
  5812. position:absolute;
  5813. left:0px;
  5814. top:0px;
  5815. width:23px;
  5816. height:25px;
  5817. background:inherit;
  5818. background-color:rgba(255, 255, 255, 0);
  5819. border:none;
  5820. border-radius:0px;
  5821. -moz-box-shadow:none;
  5822. -webkit-box-shadow:none;
  5823. box-shadow:none;
  5824. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5825. font-weight:500;
  5826. font-style:normal;
  5827. }
  5828. #u60245 {
  5829. border-width:0px;
  5830. position:absolute;
  5831. left:1334px;
  5832. top:394px;
  5833. width:23px;
  5834. height:25px;
  5835. display:flex;
  5836. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5837. font-weight:500;
  5838. font-style:normal;
  5839. }
  5840. #u60245 .text {
  5841. position:absolute;
  5842. align-self:flex-start;
  5843. padding:0px 0px 0px 0px;
  5844. box-sizing:border-box;
  5845. width:100%;
  5846. }
  5847. #u60245_text {
  5848. border-width:0px;
  5849. white-space:nowrap;
  5850. text-transform:none;
  5851. }
  5852. #u60246 {
  5853. border-width:0px;
  5854. position:absolute;
  5855. left:0px;
  5856. top:0px;
  5857. width:0px;
  5858. height:0px;
  5859. }
  5860. #u60247_div {
  5861. border-width:0px;
  5862. position:absolute;
  5863. left:0px;
  5864. top:0px;
  5865. width:382px;
  5866. height:50px;
  5867. background:inherit;
  5868. background-color:rgba(255, 255, 255, 1);
  5869. box-sizing:border-box;
  5870. border-width:1px;
  5871. border-style:solid;
  5872. border-color:rgba(215, 215, 215, 1);
  5873. border-left:0px;
  5874. border-right:0px;
  5875. border-radius:0px;
  5876. border-top-left-radius:0px;
  5877. border-top-right-radius:0px;
  5878. border-bottom-right-radius:0px;
  5879. border-bottom-left-radius:0px;
  5880. -moz-box-shadow:none;
  5881. -webkit-box-shadow:none;
  5882. box-shadow:none;
  5883. font-family:'Microsoft YaHei', sans-serif;
  5884. font-weight:400;
  5885. font-style:normal;
  5886. }
  5887. #u60247 {
  5888. border-width:0px;
  5889. position:absolute;
  5890. left:1186px;
  5891. top:431px;
  5892. width:382px;
  5893. height:50px;
  5894. display:flex;
  5895. font-family:'Microsoft YaHei', sans-serif;
  5896. font-weight:400;
  5897. font-style:normal;
  5898. }
  5899. #u60247 .text {
  5900. position:absolute;
  5901. align-self:center;
  5902. padding:2px 2px 2px 2px;
  5903. box-sizing:border-box;
  5904. width:100%;
  5905. }
  5906. #u60247_div.selected {
  5907. border-width:0px;
  5908. position:absolute;
  5909. left:0px;
  5910. top:0px;
  5911. width:382px;
  5912. height:50px;
  5913. background:inherit;
  5914. background-color:rgba(255, 255, 255, 1);
  5915. box-sizing:border-box;
  5916. border-width:1px;
  5917. border-style:solid;
  5918. border-color:rgba(24, 144, 255, 1);
  5919. border-left:0px;
  5920. border-right:0px;
  5921. border-radius:0px;
  5922. border-top-left-radius:0px;
  5923. border-top-right-radius:0px;
  5924. border-bottom-right-radius:0px;
  5925. border-bottom-left-radius:0px;
  5926. -moz-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  5927. -webkit-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  5928. box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  5929. font-family:'Microsoft YaHei', sans-serif;
  5930. font-weight:400;
  5931. font-style:normal;
  5932. }
  5933. #u60247.selected {
  5934. }
  5935. #u60247_text {
  5936. border-width:0px;
  5937. word-wrap:break-word;
  5938. text-transform:none;
  5939. visibility:hidden;
  5940. }
  5941. #u60248_div {
  5942. border-width:0px;
  5943. position:absolute;
  5944. left:0px;
  5945. top:0px;
  5946. width:55px;
  5947. height:25px;
  5948. background:inherit;
  5949. background-color:rgba(255, 255, 255, 0);
  5950. border:none;
  5951. border-radius:0px;
  5952. -moz-box-shadow:none;
  5953. -webkit-box-shadow:none;
  5954. box-shadow:none;
  5955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5956. font-weight:400;
  5957. font-style:normal;
  5958. }
  5959. #u60248 {
  5960. border-width:0px;
  5961. position:absolute;
  5962. left:1244px;
  5963. top:443px;
  5964. width:55px;
  5965. height:25px;
  5966. display:flex;
  5967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5968. font-weight:400;
  5969. font-style:normal;
  5970. }
  5971. #u60248 .text {
  5972. position:absolute;
  5973. align-self:flex-start;
  5974. padding:0px 0px 0px 0px;
  5975. box-sizing:border-box;
  5976. width:100%;
  5977. }
  5978. #u60248_text {
  5979. border-width:0px;
  5980. white-space:nowrap;
  5981. text-transform:none;
  5982. }
  5983. #u60249_img {
  5984. border-width:0px;
  5985. position:absolute;
  5986. left:0px;
  5987. top:0px;
  5988. width:20px;
  5989. height:20px;
  5990. }
  5991. #u60249 {
  5992. border-width:0px;
  5993. position:absolute;
  5994. left:1203px;
  5995. top:446px;
  5996. width:20px;
  5997. height:20px;
  5998. display:flex;
  5999. font-size:12px;
  6000. color:#FFFFFF;
  6001. }
  6002. #u60249 .text {
  6003. position:absolute;
  6004. align-self:center;
  6005. padding:2px 2px 2px 2px;
  6006. box-sizing:border-box;
  6007. width:100%;
  6008. }
  6009. #u60249_text {
  6010. border-width:0px;
  6011. word-wrap:break-word;
  6012. text-transform:none;
  6013. }
  6014. #u60250_div {
  6015. border-width:0px;
  6016. position:absolute;
  6017. left:0px;
  6018. top:0px;
  6019. width:19px;
  6020. height:25px;
  6021. background:inherit;
  6022. background-color:rgba(255, 255, 255, 0);
  6023. border:none;
  6024. border-radius:0px;
  6025. -moz-box-shadow:none;
  6026. -webkit-box-shadow:none;
  6027. box-shadow:none;
  6028. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6029. font-weight:500;
  6030. font-style:normal;
  6031. }
  6032. #u60250 {
  6033. border-width:0px;
  6034. position:absolute;
  6035. left:1334px;
  6036. top:443px;
  6037. width:19px;
  6038. height:25px;
  6039. display:flex;
  6040. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6041. font-weight:500;
  6042. font-style:normal;
  6043. }
  6044. #u60250 .text {
  6045. position:absolute;
  6046. align-self:flex-start;
  6047. padding:0px 0px 0px 0px;
  6048. box-sizing:border-box;
  6049. width:100%;
  6050. }
  6051. #u60250_text {
  6052. border-width:0px;
  6053. white-space:nowrap;
  6054. text-transform:none;
  6055. }
  6056. #u60251 {
  6057. border-width:0px;
  6058. position:absolute;
  6059. left:0px;
  6060. top:0px;
  6061. width:0px;
  6062. height:0px;
  6063. }
  6064. #u60252_div {
  6065. border-width:0px;
  6066. position:absolute;
  6067. left:0px;
  6068. top:0px;
  6069. width:382px;
  6070. height:50px;
  6071. background:inherit;
  6072. background-color:rgba(255, 255, 255, 1);
  6073. box-sizing:border-box;
  6074. border-width:1px;
  6075. border-style:solid;
  6076. border-color:rgba(215, 215, 215, 1);
  6077. border-left:0px;
  6078. border-right:0px;
  6079. border-radius:0px;
  6080. border-top-left-radius:0px;
  6081. border-top-right-radius:0px;
  6082. border-bottom-right-radius:0px;
  6083. border-bottom-left-radius:0px;
  6084. -moz-box-shadow:none;
  6085. -webkit-box-shadow:none;
  6086. box-shadow:none;
  6087. font-family:'Microsoft YaHei', sans-serif;
  6088. font-weight:400;
  6089. font-style:normal;
  6090. }
  6091. #u60252 {
  6092. border-width:0px;
  6093. position:absolute;
  6094. left:1186px;
  6095. top:480px;
  6096. width:382px;
  6097. height:50px;
  6098. display:flex;
  6099. font-family:'Microsoft YaHei', sans-serif;
  6100. font-weight:400;
  6101. font-style:normal;
  6102. }
  6103. #u60252 .text {
  6104. position:absolute;
  6105. align-self:center;
  6106. padding:2px 2px 2px 2px;
  6107. box-sizing:border-box;
  6108. width:100%;
  6109. }
  6110. #u60252_div.selected {
  6111. border-width:0px;
  6112. position:absolute;
  6113. left:0px;
  6114. top:0px;
  6115. width:382px;
  6116. height:50px;
  6117. background:inherit;
  6118. background-color:rgba(255, 255, 255, 1);
  6119. box-sizing:border-box;
  6120. border-width:1px;
  6121. border-style:solid;
  6122. border-color:rgba(24, 144, 255, 1);
  6123. border-left:0px;
  6124. border-right:0px;
  6125. border-radius:0px;
  6126. border-top-left-radius:0px;
  6127. border-top-right-radius:0px;
  6128. border-bottom-right-radius:0px;
  6129. border-bottom-left-radius:0px;
  6130. -moz-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  6131. -webkit-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  6132. box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  6133. font-family:'Microsoft YaHei', sans-serif;
  6134. font-weight:400;
  6135. font-style:normal;
  6136. }
  6137. #u60252.selected {
  6138. }
  6139. #u60252_text {
  6140. border-width:0px;
  6141. word-wrap:break-word;
  6142. text-transform:none;
  6143. visibility:hidden;
  6144. }
  6145. #u60253_div {
  6146. border-width:0px;
  6147. position:absolute;
  6148. left:0px;
  6149. top:0px;
  6150. width:55px;
  6151. height:25px;
  6152. background:inherit;
  6153. background-color:rgba(255, 255, 255, 0);
  6154. border:none;
  6155. border-radius:0px;
  6156. -moz-box-shadow:none;
  6157. -webkit-box-shadow:none;
  6158. box-shadow:none;
  6159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6160. font-weight:400;
  6161. font-style:normal;
  6162. }
  6163. #u60253 {
  6164. border-width:0px;
  6165. position:absolute;
  6166. left:1244px;
  6167. top:492px;
  6168. width:55px;
  6169. height:25px;
  6170. display:flex;
  6171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6172. font-weight:400;
  6173. font-style:normal;
  6174. }
  6175. #u60253 .text {
  6176. position:absolute;
  6177. align-self:flex-start;
  6178. padding:0px 0px 0px 0px;
  6179. box-sizing:border-box;
  6180. width:100%;
  6181. }
  6182. #u60253_text {
  6183. border-width:0px;
  6184. white-space:nowrap;
  6185. text-transform:none;
  6186. }
  6187. #u60254_img {
  6188. border-width:0px;
  6189. position:absolute;
  6190. left:0px;
  6191. top:0px;
  6192. width:20px;
  6193. height:20px;
  6194. }
  6195. #u60254 {
  6196. border-width:0px;
  6197. position:absolute;
  6198. left:1203px;
  6199. top:495px;
  6200. width:20px;
  6201. height:20px;
  6202. display:flex;
  6203. font-size:12px;
  6204. color:#FFFFFF;
  6205. }
  6206. #u60254 .text {
  6207. position:absolute;
  6208. align-self:center;
  6209. padding:2px 2px 2px 2px;
  6210. box-sizing:border-box;
  6211. width:100%;
  6212. }
  6213. #u60254_text {
  6214. border-width:0px;
  6215. word-wrap:break-word;
  6216. text-transform:none;
  6217. }
  6218. #u60255_div {
  6219. border-width:0px;
  6220. position:absolute;
  6221. left:0px;
  6222. top:0px;
  6223. width:18px;
  6224. height:25px;
  6225. background:inherit;
  6226. background-color:rgba(255, 255, 255, 0);
  6227. border:none;
  6228. border-radius:0px;
  6229. -moz-box-shadow:none;
  6230. -webkit-box-shadow:none;
  6231. box-shadow:none;
  6232. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6233. font-weight:500;
  6234. font-style:normal;
  6235. }
  6236. #u60255 {
  6237. border-width:0px;
  6238. position:absolute;
  6239. left:1334px;
  6240. top:492px;
  6241. width:18px;
  6242. height:25px;
  6243. display:flex;
  6244. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6245. font-weight:500;
  6246. font-style:normal;
  6247. }
  6248. #u60255 .text {
  6249. position:absolute;
  6250. align-self:flex-start;
  6251. padding:0px 0px 0px 0px;
  6252. box-sizing:border-box;
  6253. width:100%;
  6254. }
  6255. #u60255_text {
  6256. border-width:0px;
  6257. white-space:nowrap;
  6258. text-transform:none;
  6259. }
  6260. #u60256 {
  6261. border-width:0px;
  6262. position:absolute;
  6263. left:0px;
  6264. top:0px;
  6265. width:0px;
  6266. height:0px;
  6267. }
  6268. #u60257_div {
  6269. border-width:0px;
  6270. position:absolute;
  6271. left:0px;
  6272. top:0px;
  6273. width:382px;
  6274. height:50px;
  6275. background:inherit;
  6276. background-color:rgba(255, 255, 255, 1);
  6277. box-sizing:border-box;
  6278. border-width:1px;
  6279. border-style:solid;
  6280. border-color:rgba(215, 215, 215, 1);
  6281. border-left:0px;
  6282. border-right:0px;
  6283. border-radius:0px;
  6284. border-top-left-radius:0px;
  6285. border-top-right-radius:0px;
  6286. border-bottom-right-radius:0px;
  6287. border-bottom-left-radius:0px;
  6288. -moz-box-shadow:none;
  6289. -webkit-box-shadow:none;
  6290. box-shadow:none;
  6291. font-family:'Microsoft YaHei', sans-serif;
  6292. font-weight:400;
  6293. font-style:normal;
  6294. }
  6295. #u60257 {
  6296. border-width:0px;
  6297. position:absolute;
  6298. left:1186px;
  6299. top:530px;
  6300. width:382px;
  6301. height:50px;
  6302. display:flex;
  6303. font-family:'Microsoft YaHei', sans-serif;
  6304. font-weight:400;
  6305. font-style:normal;
  6306. }
  6307. #u60257 .text {
  6308. position:absolute;
  6309. align-self:center;
  6310. padding:2px 2px 2px 2px;
  6311. box-sizing:border-box;
  6312. width:100%;
  6313. }
  6314. #u60257_div.selected {
  6315. border-width:0px;
  6316. position:absolute;
  6317. left:0px;
  6318. top:0px;
  6319. width:382px;
  6320. height:50px;
  6321. background:inherit;
  6322. background-color:rgba(255, 255, 255, 1);
  6323. box-sizing:border-box;
  6324. border-width:1px;
  6325. border-style:solid;
  6326. border-color:rgba(24, 144, 255, 1);
  6327. border-left:0px;
  6328. border-right:0px;
  6329. border-radius:0px;
  6330. border-top-left-radius:0px;
  6331. border-top-right-radius:0px;
  6332. border-bottom-right-radius:0px;
  6333. border-bottom-left-radius:0px;
  6334. -moz-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  6335. -webkit-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  6336. box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  6337. font-family:'Microsoft YaHei', sans-serif;
  6338. font-weight:400;
  6339. font-style:normal;
  6340. }
  6341. #u60257.selected {
  6342. }
  6343. #u60257_text {
  6344. border-width:0px;
  6345. word-wrap:break-word;
  6346. text-transform:none;
  6347. visibility:hidden;
  6348. }
  6349. #u60258_div {
  6350. border-width:0px;
  6351. position:absolute;
  6352. left:0px;
  6353. top:0px;
  6354. width:55px;
  6355. height:25px;
  6356. background:inherit;
  6357. background-color:rgba(255, 255, 255, 0);
  6358. border:none;
  6359. border-radius:0px;
  6360. -moz-box-shadow:none;
  6361. -webkit-box-shadow:none;
  6362. box-shadow:none;
  6363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6364. font-weight:400;
  6365. font-style:normal;
  6366. }
  6367. #u60258 {
  6368. border-width:0px;
  6369. position:absolute;
  6370. left:1244px;
  6371. top:542px;
  6372. width:55px;
  6373. height:25px;
  6374. display:flex;
  6375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6376. font-weight:400;
  6377. font-style:normal;
  6378. }
  6379. #u60258 .text {
  6380. position:absolute;
  6381. align-self:flex-start;
  6382. padding:0px 0px 0px 0px;
  6383. box-sizing:border-box;
  6384. width:100%;
  6385. }
  6386. #u60258_text {
  6387. border-width:0px;
  6388. white-space:nowrap;
  6389. text-transform:none;
  6390. }
  6391. #u60259_img {
  6392. border-width:0px;
  6393. position:absolute;
  6394. left:0px;
  6395. top:0px;
  6396. width:20px;
  6397. height:20px;
  6398. }
  6399. #u60259 {
  6400. border-width:0px;
  6401. position:absolute;
  6402. left:1203px;
  6403. top:545px;
  6404. width:20px;
  6405. height:20px;
  6406. display:flex;
  6407. font-size:12px;
  6408. color:#FFFFFF;
  6409. }
  6410. #u60259 .text {
  6411. position:absolute;
  6412. align-self:center;
  6413. padding:2px 2px 2px 2px;
  6414. box-sizing:border-box;
  6415. width:100%;
  6416. }
  6417. #u60259_text {
  6418. border-width:0px;
  6419. word-wrap:break-word;
  6420. text-transform:none;
  6421. }
  6422. #u60260_div {
  6423. border-width:0px;
  6424. position:absolute;
  6425. left:0px;
  6426. top:0px;
  6427. width:19px;
  6428. height:25px;
  6429. background:inherit;
  6430. background-color:rgba(255, 255, 255, 0);
  6431. border:none;
  6432. border-radius:0px;
  6433. -moz-box-shadow:none;
  6434. -webkit-box-shadow:none;
  6435. box-shadow:none;
  6436. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6437. font-weight:500;
  6438. font-style:normal;
  6439. }
  6440. #u60260 {
  6441. border-width:0px;
  6442. position:absolute;
  6443. left:1334px;
  6444. top:542px;
  6445. width:19px;
  6446. height:25px;
  6447. display:flex;
  6448. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6449. font-weight:500;
  6450. font-style:normal;
  6451. }
  6452. #u60260 .text {
  6453. position:absolute;
  6454. align-self:flex-start;
  6455. padding:0px 0px 0px 0px;
  6456. box-sizing:border-box;
  6457. width:100%;
  6458. }
  6459. #u60260_text {
  6460. border-width:0px;
  6461. white-space:nowrap;
  6462. text-transform:none;
  6463. }
  6464. #u60261 {
  6465. border-width:0px;
  6466. position:absolute;
  6467. left:0px;
  6468. top:0px;
  6469. width:0px;
  6470. height:0px;
  6471. }
  6472. #u60262_div {
  6473. border-width:0px;
  6474. position:absolute;
  6475. left:0px;
  6476. top:0px;
  6477. width:382px;
  6478. height:50px;
  6479. background:inherit;
  6480. background-color:rgba(255, 255, 255, 1);
  6481. box-sizing:border-box;
  6482. border-width:1px;
  6483. border-style:solid;
  6484. border-color:rgba(215, 215, 215, 1);
  6485. border-left:0px;
  6486. border-right:0px;
  6487. border-radius:0px;
  6488. border-top-left-radius:0px;
  6489. border-top-right-radius:0px;
  6490. border-bottom-right-radius:0px;
  6491. border-bottom-left-radius:0px;
  6492. -moz-box-shadow:none;
  6493. -webkit-box-shadow:none;
  6494. box-shadow:none;
  6495. font-family:'Microsoft YaHei', sans-serif;
  6496. font-weight:400;
  6497. font-style:normal;
  6498. }
  6499. #u60262 {
  6500. border-width:0px;
  6501. position:absolute;
  6502. left:1186px;
  6503. top:580px;
  6504. width:382px;
  6505. height:50px;
  6506. display:flex;
  6507. font-family:'Microsoft YaHei', sans-serif;
  6508. font-weight:400;
  6509. font-style:normal;
  6510. }
  6511. #u60262 .text {
  6512. position:absolute;
  6513. align-self:center;
  6514. padding:2px 2px 2px 2px;
  6515. box-sizing:border-box;
  6516. width:100%;
  6517. }
  6518. #u60262_div.selected {
  6519. border-width:0px;
  6520. position:absolute;
  6521. left:0px;
  6522. top:0px;
  6523. width:382px;
  6524. height:50px;
  6525. background:inherit;
  6526. background-color:rgba(255, 255, 255, 1);
  6527. box-sizing:border-box;
  6528. border-width:1px;
  6529. border-style:solid;
  6530. border-color:rgba(24, 144, 255, 1);
  6531. border-left:0px;
  6532. border-right:0px;
  6533. border-radius:0px;
  6534. border-top-left-radius:0px;
  6535. border-top-right-radius:0px;
  6536. border-bottom-right-radius:0px;
  6537. border-bottom-left-radius:0px;
  6538. -moz-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  6539. -webkit-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  6540. box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  6541. font-family:'Microsoft YaHei', sans-serif;
  6542. font-weight:400;
  6543. font-style:normal;
  6544. }
  6545. #u60262.selected {
  6546. }
  6547. #u60262_text {
  6548. border-width:0px;
  6549. word-wrap:break-word;
  6550. text-transform:none;
  6551. visibility:hidden;
  6552. }
  6553. #u60263_div {
  6554. border-width:0px;
  6555. position:absolute;
  6556. left:0px;
  6557. top:0px;
  6558. width:37px;
  6559. height:25px;
  6560. background:inherit;
  6561. background-color:rgba(255, 255, 255, 0);
  6562. border:none;
  6563. border-radius:0px;
  6564. -moz-box-shadow:none;
  6565. -webkit-box-shadow:none;
  6566. box-shadow:none;
  6567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6568. font-weight:400;
  6569. font-style:normal;
  6570. }
  6571. #u60263 {
  6572. border-width:0px;
  6573. position:absolute;
  6574. left:1244px;
  6575. top:592px;
  6576. width:37px;
  6577. height:25px;
  6578. display:flex;
  6579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6580. font-weight:400;
  6581. font-style:normal;
  6582. }
  6583. #u60263 .text {
  6584. position:absolute;
  6585. align-self:flex-start;
  6586. padding:0px 0px 0px 0px;
  6587. box-sizing:border-box;
  6588. width:100%;
  6589. }
  6590. #u60263_text {
  6591. border-width:0px;
  6592. white-space:nowrap;
  6593. text-transform:none;
  6594. }
  6595. #u60264_img {
  6596. border-width:0px;
  6597. position:absolute;
  6598. left:0px;
  6599. top:0px;
  6600. width:20px;
  6601. height:20px;
  6602. }
  6603. #u60264 {
  6604. border-width:0px;
  6605. position:absolute;
  6606. left:1203px;
  6607. top:595px;
  6608. width:20px;
  6609. height:20px;
  6610. display:flex;
  6611. font-size:12px;
  6612. color:#FFFFFF;
  6613. }
  6614. #u60264 .text {
  6615. position:absolute;
  6616. align-self:center;
  6617. padding:2px 2px 2px 2px;
  6618. box-sizing:border-box;
  6619. width:100%;
  6620. }
  6621. #u60264_text {
  6622. border-width:0px;
  6623. word-wrap:break-word;
  6624. text-transform:none;
  6625. }
  6626. #u60265_div {
  6627. border-width:0px;
  6628. position:absolute;
  6629. left:0px;
  6630. top:0px;
  6631. width:19px;
  6632. height:25px;
  6633. background:inherit;
  6634. background-color:rgba(255, 255, 255, 0);
  6635. border:none;
  6636. border-radius:0px;
  6637. -moz-box-shadow:none;
  6638. -webkit-box-shadow:none;
  6639. box-shadow:none;
  6640. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6641. font-weight:500;
  6642. font-style:normal;
  6643. }
  6644. #u60265 {
  6645. border-width:0px;
  6646. position:absolute;
  6647. left:1334px;
  6648. top:592px;
  6649. width:19px;
  6650. height:25px;
  6651. display:flex;
  6652. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6653. font-weight:500;
  6654. font-style:normal;
  6655. }
  6656. #u60265 .text {
  6657. position:absolute;
  6658. align-self:flex-start;
  6659. padding:0px 0px 0px 0px;
  6660. box-sizing:border-box;
  6661. width:100%;
  6662. }
  6663. #u60265_text {
  6664. border-width:0px;
  6665. white-space:nowrap;
  6666. text-transform:none;
  6667. }
  6668. #u60266 {
  6669. border-width:0px;
  6670. position:absolute;
  6671. left:0px;
  6672. top:0px;
  6673. width:0px;
  6674. height:0px;
  6675. }
  6676. #u60267 {
  6677. border-width:0px;
  6678. position:absolute;
  6679. left:0px;
  6680. top:0px;
  6681. width:0px;
  6682. height:0px;
  6683. }
  6684. #u60268_div {
  6685. border-width:0px;
  6686. position:absolute;
  6687. left:0px;
  6688. top:0px;
  6689. width:31px;
  6690. height:30px;
  6691. background:inherit;
  6692. background-color:rgba(255, 255, 255, 1);
  6693. box-sizing:border-box;
  6694. border-width:1px;
  6695. border-style:solid;
  6696. border-color:rgba(228, 228, 228, 1);
  6697. border-radius:4px;
  6698. -moz-box-shadow:none;
  6699. -webkit-box-shadow:none;
  6700. box-shadow:none;
  6701. font-family:'Microsoft YaHei', sans-serif;
  6702. font-weight:400;
  6703. font-style:normal;
  6704. font-size:12px;
  6705. }
  6706. #u60268 {
  6707. border-width:0px;
  6708. position:absolute;
  6709. left:1497px;
  6710. top:645px;
  6711. width:31px;
  6712. height:30px;
  6713. display:flex;
  6714. font-family:'Microsoft YaHei', sans-serif;
  6715. font-weight:400;
  6716. font-style:normal;
  6717. font-size:12px;
  6718. }
  6719. #u60268 .text {
  6720. position:absolute;
  6721. align-self:center;
  6722. padding:2px 2px 2px 2px;
  6723. box-sizing:border-box;
  6724. width:100%;
  6725. }
  6726. #u60268_text {
  6727. border-width:0px;
  6728. word-wrap:break-word;
  6729. text-transform:none;
  6730. visibility:hidden;
  6731. }
  6732. #u60269_img {
  6733. border-width:0px;
  6734. position:absolute;
  6735. left:0px;
  6736. top:0px;
  6737. width:8px;
  6738. height:14px;
  6739. }
  6740. #u60269 {
  6741. border-width:0px;
  6742. position:absolute;
  6743. left:1509px;
  6744. top:653px;
  6745. width:8px;
  6746. height:14px;
  6747. display:flex;
  6748. font-family:'Microsoft YaHei', sans-serif;
  6749. font-weight:400;
  6750. font-style:normal;
  6751. font-size:12px;
  6752. }
  6753. #u60269 .text {
  6754. position:absolute;
  6755. align-self:center;
  6756. padding:2px 2px 2px 2px;
  6757. box-sizing:border-box;
  6758. width:100%;
  6759. }
  6760. #u60269_text {
  6761. border-width:0px;
  6762. word-wrap:break-word;
  6763. text-transform:none;
  6764. visibility:hidden;
  6765. }
  6766. #u60270 {
  6767. border-width:0px;
  6768. position:absolute;
  6769. left:0px;
  6770. top:0px;
  6771. width:0px;
  6772. height:0px;
  6773. }
  6774. #u60271_div {
  6775. border-width:0px;
  6776. position:absolute;
  6777. left:0px;
  6778. top:0px;
  6779. width:31px;
  6780. height:30px;
  6781. background:inherit;
  6782. background-color:rgba(255, 255, 255, 1);
  6783. box-sizing:border-box;
  6784. border-width:1px;
  6785. border-style:solid;
  6786. border-color:rgba(228, 228, 228, 1);
  6787. border-radius:4px;
  6788. -moz-box-shadow:none;
  6789. -webkit-box-shadow:none;
  6790. box-shadow:none;
  6791. font-family:'Microsoft YaHei', sans-serif;
  6792. font-weight:400;
  6793. font-style:normal;
  6794. font-size:12px;
  6795. }
  6796. #u60271 {
  6797. border-width:0px;
  6798. position:absolute;
  6799. left:1537px;
  6800. top:645px;
  6801. width:31px;
  6802. height:30px;
  6803. display:flex;
  6804. font-family:'Microsoft YaHei', sans-serif;
  6805. font-weight:400;
  6806. font-style:normal;
  6807. font-size:12px;
  6808. }
  6809. #u60271 .text {
  6810. position:absolute;
  6811. align-self:center;
  6812. padding:2px 2px 2px 2px;
  6813. box-sizing:border-box;
  6814. width:100%;
  6815. }
  6816. #u60271_text {
  6817. border-width:0px;
  6818. word-wrap:break-word;
  6819. text-transform:none;
  6820. visibility:hidden;
  6821. }
  6822. #u60272_img {
  6823. border-width:0px;
  6824. position:absolute;
  6825. left:0px;
  6826. top:0px;
  6827. width:8px;
  6828. height:14px;
  6829. }
  6830. #u60272 {
  6831. border-width:0px;
  6832. position:absolute;
  6833. left:1550px;
  6834. top:653px;
  6835. width:8px;
  6836. height:14px;
  6837. display:flex;
  6838. font-family:'Microsoft YaHei', sans-serif;
  6839. font-weight:400;
  6840. font-style:normal;
  6841. font-size:12px;
  6842. }
  6843. #u60272 .text {
  6844. position:absolute;
  6845. align-self:center;
  6846. padding:2px 2px 2px 2px;
  6847. box-sizing:border-box;
  6848. width:100%;
  6849. }
  6850. #u60272_text {
  6851. border-width:0px;
  6852. word-wrap:break-word;
  6853. text-transform:none;
  6854. visibility:hidden;
  6855. }
  6856. #u60273_img {
  6857. border-width:0px;
  6858. position:absolute;
  6859. left:0px;
  6860. top:0px;
  6861. width:596px;
  6862. height:413px;
  6863. }
  6864. #u60273 {
  6865. border-width:0px;
  6866. position:absolute;
  6867. left:354px;
  6868. top:727px;
  6869. width:596px;
  6870. height:413px;
  6871. display:flex;
  6872. }
  6873. #u60273 .text {
  6874. position:absolute;
  6875. align-self:center;
  6876. padding:0px 0px 0px 0px;
  6877. box-sizing:border-box;
  6878. width:100%;
  6879. }
  6880. #u60273_text {
  6881. border-width:0px;
  6882. word-wrap:break-word;
  6883. text-transform:none;
  6884. visibility:hidden;
  6885. }
  6886. #u60274_div {
  6887. border-width:0px;
  6888. position:absolute;
  6889. left:0px;
  6890. top:0px;
  6891. width:163px;
  6892. height:25px;
  6893. background:inherit;
  6894. background-color:rgba(255, 255, 255, 0);
  6895. border:none;
  6896. border-radius:0px;
  6897. -moz-box-shadow:none;
  6898. -webkit-box-shadow:none;
  6899. box-shadow:none;
  6900. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6901. font-weight:650;
  6902. font-style:normal;
  6903. }
  6904. #u60274 {
  6905. border-width:0px;
  6906. position:absolute;
  6907. left:380px;
  6908. top:750px;
  6909. width:163px;
  6910. height:25px;
  6911. display:flex;
  6912. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6913. font-weight:650;
  6914. font-style:normal;
  6915. }
  6916. #u60274 .text {
  6917. position:absolute;
  6918. align-self:flex-start;
  6919. padding:0px 0px 0px 0px;
  6920. box-sizing:border-box;
  6921. width:100%;
  6922. }
  6923. #u60274_text {
  6924. border-width:0px;
  6925. white-space:nowrap;
  6926. text-transform:none;
  6927. }
  6928. #u60275 {
  6929. border-width:0px;
  6930. position:absolute;
  6931. left:380px;
  6932. top:795px;
  6933. width:544px;
  6934. height:300px;
  6935. }
  6936. #u60276_img {
  6937. border-width:0px;
  6938. position:absolute;
  6939. left:0px;
  6940. top:0px;
  6941. width:124px;
  6942. height:50px;
  6943. }
  6944. #u60276 {
  6945. border-width:0px;
  6946. position:absolute;
  6947. left:0px;
  6948. top:0px;
  6949. width:124px;
  6950. height:50px;
  6951. display:flex;
  6952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6953. font-weight:400;
  6954. font-style:normal;
  6955. font-size:18px;
  6956. color:#FFFFFF;
  6957. }
  6958. #u60276 .text {
  6959. position:absolute;
  6960. align-self:center;
  6961. padding:2px 2px 2px 2px;
  6962. box-sizing:border-box;
  6963. width:100%;
  6964. }
  6965. #u60276_text {
  6966. border-width:0px;
  6967. word-wrap:break-word;
  6968. text-transform:none;
  6969. }
  6970. #u60277_img {
  6971. border-width:0px;
  6972. position:absolute;
  6973. left:0px;
  6974. top:0px;
  6975. width:231px;
  6976. height:50px;
  6977. }
  6978. #u60277 {
  6979. border-width:0px;
  6980. position:absolute;
  6981. left:124px;
  6982. top:0px;
  6983. width:231px;
  6984. height:50px;
  6985. display:flex;
  6986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6987. font-weight:400;
  6988. font-style:normal;
  6989. font-size:18px;
  6990. color:#FFFFFF;
  6991. }
  6992. #u60277 .text {
  6993. position:absolute;
  6994. align-self:center;
  6995. padding:2px 2px 2px 2px;
  6996. box-sizing:border-box;
  6997. width:100%;
  6998. }
  6999. #u60277_text {
  7000. border-width:0px;
  7001. word-wrap:break-word;
  7002. text-transform:none;
  7003. }
  7004. #u60278_img {
  7005. border-width:0px;
  7006. position:absolute;
  7007. left:0px;
  7008. top:0px;
  7009. width:189px;
  7010. height:50px;
  7011. }
  7012. #u60278 {
  7013. border-width:0px;
  7014. position:absolute;
  7015. left:355px;
  7016. top:0px;
  7017. width:189px;
  7018. height:50px;
  7019. display:flex;
  7020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7021. font-weight:400;
  7022. font-style:normal;
  7023. font-size:18px;
  7024. color:#FFFFFF;
  7025. }
  7026. #u60278 .text {
  7027. position:absolute;
  7028. align-self:center;
  7029. padding:2px 2px 2px 2px;
  7030. box-sizing:border-box;
  7031. width:100%;
  7032. }
  7033. #u60278_text {
  7034. border-width:0px;
  7035. word-wrap:break-word;
  7036. text-transform:none;
  7037. }
  7038. #u60279_img {
  7039. border-width:0px;
  7040. position:absolute;
  7041. left:0px;
  7042. top:0px;
  7043. width:124px;
  7044. height:50px;
  7045. }
  7046. #u60279 {
  7047. border-width:0px;
  7048. position:absolute;
  7049. left:0px;
  7050. top:50px;
  7051. width:124px;
  7052. height:50px;
  7053. display:flex;
  7054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7055. font-weight:400;
  7056. font-style:normal;
  7057. font-size:18px;
  7058. }
  7059. #u60279 .text {
  7060. position:absolute;
  7061. align-self:center;
  7062. padding:2px 2px 2px 2px;
  7063. box-sizing:border-box;
  7064. width:100%;
  7065. }
  7066. #u60279_text {
  7067. border-width:0px;
  7068. word-wrap:break-word;
  7069. text-transform:none;
  7070. visibility:hidden;
  7071. }
  7072. #u60280_img {
  7073. border-width:0px;
  7074. position:absolute;
  7075. left:0px;
  7076. top:0px;
  7077. width:231px;
  7078. height:50px;
  7079. }
  7080. #u60280 {
  7081. border-width:0px;
  7082. position:absolute;
  7083. left:124px;
  7084. top:50px;
  7085. width:231px;
  7086. height:50px;
  7087. display:flex;
  7088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7089. font-weight:400;
  7090. font-style:normal;
  7091. font-size:18px;
  7092. }
  7093. #u60280 .text {
  7094. position:absolute;
  7095. align-self:center;
  7096. padding:2px 2px 2px 2px;
  7097. box-sizing:border-box;
  7098. width:100%;
  7099. }
  7100. #u60280_text {
  7101. border-width:0px;
  7102. word-wrap:break-word;
  7103. text-transform:none;
  7104. visibility:hidden;
  7105. }
  7106. #u60281_img {
  7107. border-width:0px;
  7108. position:absolute;
  7109. left:0px;
  7110. top:0px;
  7111. width:189px;
  7112. height:50px;
  7113. }
  7114. #u60281 {
  7115. border-width:0px;
  7116. position:absolute;
  7117. left:355px;
  7118. top:50px;
  7119. width:189px;
  7120. height:50px;
  7121. display:flex;
  7122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7123. font-weight:400;
  7124. font-style:normal;
  7125. font-size:18px;
  7126. }
  7127. #u60281 .text {
  7128. position:absolute;
  7129. align-self:center;
  7130. padding:2px 2px 2px 2px;
  7131. box-sizing:border-box;
  7132. width:100%;
  7133. }
  7134. #u60281_text {
  7135. border-width:0px;
  7136. word-wrap:break-word;
  7137. text-transform:none;
  7138. visibility:hidden;
  7139. }
  7140. #u60282_img {
  7141. border-width:0px;
  7142. position:absolute;
  7143. left:0px;
  7144. top:0px;
  7145. width:124px;
  7146. height:50px;
  7147. }
  7148. #u60282 {
  7149. border-width:0px;
  7150. position:absolute;
  7151. left:0px;
  7152. top:100px;
  7153. width:124px;
  7154. height:50px;
  7155. display:flex;
  7156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7157. font-weight:400;
  7158. font-style:normal;
  7159. font-size:18px;
  7160. }
  7161. #u60282 .text {
  7162. position:absolute;
  7163. align-self:center;
  7164. padding:2px 2px 2px 2px;
  7165. box-sizing:border-box;
  7166. width:100%;
  7167. }
  7168. #u60282_text {
  7169. border-width:0px;
  7170. word-wrap:break-word;
  7171. text-transform:none;
  7172. visibility:hidden;
  7173. }
  7174. #u60283_img {
  7175. border-width:0px;
  7176. position:absolute;
  7177. left:0px;
  7178. top:0px;
  7179. width:231px;
  7180. height:50px;
  7181. }
  7182. #u60283 {
  7183. border-width:0px;
  7184. position:absolute;
  7185. left:124px;
  7186. top:100px;
  7187. width:231px;
  7188. height:50px;
  7189. display:flex;
  7190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7191. font-weight:400;
  7192. font-style:normal;
  7193. font-size:18px;
  7194. }
  7195. #u60283 .text {
  7196. position:absolute;
  7197. align-self:center;
  7198. padding:2px 2px 2px 2px;
  7199. box-sizing:border-box;
  7200. width:100%;
  7201. }
  7202. #u60283_text {
  7203. border-width:0px;
  7204. word-wrap:break-word;
  7205. text-transform:none;
  7206. visibility:hidden;
  7207. }
  7208. #u60284_img {
  7209. border-width:0px;
  7210. position:absolute;
  7211. left:0px;
  7212. top:0px;
  7213. width:189px;
  7214. height:50px;
  7215. }
  7216. #u60284 {
  7217. border-width:0px;
  7218. position:absolute;
  7219. left:355px;
  7220. top:100px;
  7221. width:189px;
  7222. height:50px;
  7223. display:flex;
  7224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7225. font-weight:400;
  7226. font-style:normal;
  7227. font-size:18px;
  7228. }
  7229. #u60284 .text {
  7230. position:absolute;
  7231. align-self:center;
  7232. padding:2px 2px 2px 2px;
  7233. box-sizing:border-box;
  7234. width:100%;
  7235. }
  7236. #u60284_text {
  7237. border-width:0px;
  7238. word-wrap:break-word;
  7239. text-transform:none;
  7240. visibility:hidden;
  7241. }
  7242. #u60285_img {
  7243. border-width:0px;
  7244. position:absolute;
  7245. left:0px;
  7246. top:0px;
  7247. width:124px;
  7248. height:50px;
  7249. }
  7250. #u60285 {
  7251. border-width:0px;
  7252. position:absolute;
  7253. left:0px;
  7254. top:150px;
  7255. width:124px;
  7256. height:50px;
  7257. display:flex;
  7258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7259. font-weight:400;
  7260. font-style:normal;
  7261. font-size:18px;
  7262. }
  7263. #u60285 .text {
  7264. position:absolute;
  7265. align-self:center;
  7266. padding:2px 2px 2px 2px;
  7267. box-sizing:border-box;
  7268. width:100%;
  7269. }
  7270. #u60285_text {
  7271. border-width:0px;
  7272. word-wrap:break-word;
  7273. text-transform:none;
  7274. visibility:hidden;
  7275. }
  7276. #u60286_img {
  7277. border-width:0px;
  7278. position:absolute;
  7279. left:0px;
  7280. top:0px;
  7281. width:231px;
  7282. height:50px;
  7283. }
  7284. #u60286 {
  7285. border-width:0px;
  7286. position:absolute;
  7287. left:124px;
  7288. top:150px;
  7289. width:231px;
  7290. height:50px;
  7291. display:flex;
  7292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7293. font-weight:400;
  7294. font-style:normal;
  7295. font-size:18px;
  7296. }
  7297. #u60286 .text {
  7298. position:absolute;
  7299. align-self:center;
  7300. padding:2px 2px 2px 2px;
  7301. box-sizing:border-box;
  7302. width:100%;
  7303. }
  7304. #u60286_text {
  7305. border-width:0px;
  7306. word-wrap:break-word;
  7307. text-transform:none;
  7308. visibility:hidden;
  7309. }
  7310. #u60287_img {
  7311. border-width:0px;
  7312. position:absolute;
  7313. left:0px;
  7314. top:0px;
  7315. width:189px;
  7316. height:50px;
  7317. }
  7318. #u60287 {
  7319. border-width:0px;
  7320. position:absolute;
  7321. left:355px;
  7322. top:150px;
  7323. width:189px;
  7324. height:50px;
  7325. display:flex;
  7326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7327. font-weight:400;
  7328. font-style:normal;
  7329. font-size:18px;
  7330. }
  7331. #u60287 .text {
  7332. position:absolute;
  7333. align-self:center;
  7334. padding:2px 2px 2px 2px;
  7335. box-sizing:border-box;
  7336. width:100%;
  7337. }
  7338. #u60287_text {
  7339. border-width:0px;
  7340. word-wrap:break-word;
  7341. text-transform:none;
  7342. visibility:hidden;
  7343. }
  7344. #u60288_img {
  7345. border-width:0px;
  7346. position:absolute;
  7347. left:0px;
  7348. top:0px;
  7349. width:124px;
  7350. height:50px;
  7351. }
  7352. #u60288 {
  7353. border-width:0px;
  7354. position:absolute;
  7355. left:0px;
  7356. top:200px;
  7357. width:124px;
  7358. height:50px;
  7359. display:flex;
  7360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7361. font-weight:400;
  7362. font-style:normal;
  7363. font-size:18px;
  7364. }
  7365. #u60288 .text {
  7366. position:absolute;
  7367. align-self:center;
  7368. padding:2px 2px 2px 2px;
  7369. box-sizing:border-box;
  7370. width:100%;
  7371. }
  7372. #u60288_text {
  7373. border-width:0px;
  7374. word-wrap:break-word;
  7375. text-transform:none;
  7376. visibility:hidden;
  7377. }
  7378. #u60289_img {
  7379. border-width:0px;
  7380. position:absolute;
  7381. left:0px;
  7382. top:0px;
  7383. width:231px;
  7384. height:50px;
  7385. }
  7386. #u60289 {
  7387. border-width:0px;
  7388. position:absolute;
  7389. left:124px;
  7390. top:200px;
  7391. width:231px;
  7392. height:50px;
  7393. display:flex;
  7394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7395. font-weight:400;
  7396. font-style:normal;
  7397. font-size:18px;
  7398. }
  7399. #u60289 .text {
  7400. position:absolute;
  7401. align-self:center;
  7402. padding:2px 2px 2px 2px;
  7403. box-sizing:border-box;
  7404. width:100%;
  7405. }
  7406. #u60289_text {
  7407. border-width:0px;
  7408. word-wrap:break-word;
  7409. text-transform:none;
  7410. visibility:hidden;
  7411. }
  7412. #u60290_img {
  7413. border-width:0px;
  7414. position:absolute;
  7415. left:0px;
  7416. top:0px;
  7417. width:189px;
  7418. height:50px;
  7419. }
  7420. #u60290 {
  7421. border-width:0px;
  7422. position:absolute;
  7423. left:355px;
  7424. top:200px;
  7425. width:189px;
  7426. height:50px;
  7427. display:flex;
  7428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7429. font-weight:400;
  7430. font-style:normal;
  7431. font-size:18px;
  7432. }
  7433. #u60290 .text {
  7434. position:absolute;
  7435. align-self:center;
  7436. padding:2px 2px 2px 2px;
  7437. box-sizing:border-box;
  7438. width:100%;
  7439. }
  7440. #u60290_text {
  7441. border-width:0px;
  7442. word-wrap:break-word;
  7443. text-transform:none;
  7444. visibility:hidden;
  7445. }
  7446. #u60291_img {
  7447. border-width:0px;
  7448. position:absolute;
  7449. left:0px;
  7450. top:0px;
  7451. width:124px;
  7452. height:50px;
  7453. }
  7454. #u60291 {
  7455. border-width:0px;
  7456. position:absolute;
  7457. left:0px;
  7458. top:250px;
  7459. width:124px;
  7460. height:50px;
  7461. display:flex;
  7462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7463. font-weight:400;
  7464. font-style:normal;
  7465. font-size:18px;
  7466. }
  7467. #u60291 .text {
  7468. position:absolute;
  7469. align-self:center;
  7470. padding:2px 2px 2px 2px;
  7471. box-sizing:border-box;
  7472. width:100%;
  7473. }
  7474. #u60291_text {
  7475. border-width:0px;
  7476. word-wrap:break-word;
  7477. text-transform:none;
  7478. visibility:hidden;
  7479. }
  7480. #u60292_img {
  7481. border-width:0px;
  7482. position:absolute;
  7483. left:0px;
  7484. top:0px;
  7485. width:231px;
  7486. height:50px;
  7487. }
  7488. #u60292 {
  7489. border-width:0px;
  7490. position:absolute;
  7491. left:124px;
  7492. top:250px;
  7493. width:231px;
  7494. height:50px;
  7495. display:flex;
  7496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7497. font-weight:400;
  7498. font-style:normal;
  7499. font-size:18px;
  7500. }
  7501. #u60292 .text {
  7502. position:absolute;
  7503. align-self:center;
  7504. padding:2px 2px 2px 2px;
  7505. box-sizing:border-box;
  7506. width:100%;
  7507. }
  7508. #u60292_text {
  7509. border-width:0px;
  7510. word-wrap:break-word;
  7511. text-transform:none;
  7512. visibility:hidden;
  7513. }
  7514. #u60293_img {
  7515. border-width:0px;
  7516. position:absolute;
  7517. left:0px;
  7518. top:0px;
  7519. width:189px;
  7520. height:50px;
  7521. }
  7522. #u60293 {
  7523. border-width:0px;
  7524. position:absolute;
  7525. left:355px;
  7526. top:250px;
  7527. width:189px;
  7528. height:50px;
  7529. display:flex;
  7530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7531. font-weight:400;
  7532. font-style:normal;
  7533. font-size:18px;
  7534. }
  7535. #u60293 .text {
  7536. position:absolute;
  7537. align-self:center;
  7538. padding:2px 2px 2px 2px;
  7539. box-sizing:border-box;
  7540. width:100%;
  7541. }
  7542. #u60293_text {
  7543. border-width:0px;
  7544. word-wrap:break-word;
  7545. text-transform:none;
  7546. visibility:hidden;
  7547. }
  7548. #u60294 {
  7549. border-width:0px;
  7550. position:absolute;
  7551. left:0px;
  7552. top:0px;
  7553. width:0px;
  7554. height:0px;
  7555. }
  7556. #u60295_div {
  7557. border-width:0px;
  7558. position:absolute;
  7559. left:0px;
  7560. top:0px;
  7561. width:200px;
  7562. height:1188px;
  7563. background:inherit;
  7564. background-color:rgba(255, 255, 255, 1);
  7565. border:none;
  7566. border-radius:0px;
  7567. -moz-box-shadow:none;
  7568. -webkit-box-shadow:none;
  7569. box-shadow:none;
  7570. }
  7571. #u60295 {
  7572. border-width:0px;
  7573. position:absolute;
  7574. left:120px;
  7575. top:50px;
  7576. width:200px;
  7577. height:1188px;
  7578. display:flex;
  7579. }
  7580. #u60295 .text {
  7581. position:absolute;
  7582. align-self:center;
  7583. padding:2px 2px 2px 2px;
  7584. box-sizing:border-box;
  7585. width:100%;
  7586. }
  7587. #u60295_text {
  7588. border-width:0px;
  7589. word-wrap:break-word;
  7590. text-transform:none;
  7591. visibility:hidden;
  7592. }
  7593. #u60296_div {
  7594. border-width:0px;
  7595. position:absolute;
  7596. left:0px;
  7597. top:0px;
  7598. width:200px;
  7599. height:60px;
  7600. background:inherit;
  7601. background-color:rgba(224, 231, 247, 1);
  7602. border:none;
  7603. border-radius:0px;
  7604. -moz-box-shadow:none;
  7605. -webkit-box-shadow:none;
  7606. box-shadow:none;
  7607. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7608. font-weight:500;
  7609. font-style:normal;
  7610. font-size:18px;
  7611. }
  7612. #u60296 {
  7613. border-width:0px;
  7614. position:absolute;
  7615. left:120px;
  7616. top:50px;
  7617. width:200px;
  7618. height:60px;
  7619. display:flex;
  7620. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7621. font-weight:500;
  7622. font-style:normal;
  7623. font-size:18px;
  7624. }
  7625. #u60296 .text {
  7626. position:absolute;
  7627. align-self:center;
  7628. padding:0px 0px 0px 20px;
  7629. box-sizing:border-box;
  7630. width:100%;
  7631. }
  7632. #u60296_text {
  7633. border-width:0px;
  7634. word-wrap:break-word;
  7635. text-transform:none;
  7636. }
  7637. #u60297_div {
  7638. border-width:0px;
  7639. position:absolute;
  7640. left:0px;
  7641. top:0px;
  7642. width:65px;
  7643. height:22px;
  7644. background:inherit;
  7645. background-color:rgba(255, 255, 255, 0);
  7646. border:none;
  7647. border-radius:0px;
  7648. -moz-box-shadow:none;
  7649. -webkit-box-shadow:none;
  7650. box-shadow:none;
  7651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7652. font-weight:400;
  7653. font-style:normal;
  7654. font-size:16px;
  7655. }
  7656. #u60297 {
  7657. border-width:0px;
  7658. position:absolute;
  7659. left:147px;
  7660. top:346px;
  7661. width:65px;
  7662. height:22px;
  7663. display:flex;
  7664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7665. font-weight:400;
  7666. font-style:normal;
  7667. font-size:16px;
  7668. }
  7669. #u60297 .text {
  7670. position:absolute;
  7671. align-self:flex-start;
  7672. padding:0px 0px 0px 0px;
  7673. box-sizing:border-box;
  7674. width:100%;
  7675. }
  7676. #u60297_text {
  7677. border-width:0px;
  7678. white-space:nowrap;
  7679. text-transform:none;
  7680. }
  7681. #u60298_div {
  7682. border-width:0px;
  7683. position:absolute;
  7684. left:0px;
  7685. top:0px;
  7686. width:65px;
  7687. height:22px;
  7688. background:inherit;
  7689. background-color:rgba(255, 255, 255, 0);
  7690. border:none;
  7691. border-radius:0px;
  7692. -moz-box-shadow:none;
  7693. -webkit-box-shadow:none;
  7694. box-shadow:none;
  7695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7696. font-weight:400;
  7697. font-style:normal;
  7698. font-size:16px;
  7699. }
  7700. #u60298 {
  7701. border-width:0px;
  7702. position:absolute;
  7703. left:147px;
  7704. top:388px;
  7705. width:65px;
  7706. height:22px;
  7707. display:flex;
  7708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7709. font-weight:400;
  7710. font-style:normal;
  7711. font-size:16px;
  7712. }
  7713. #u60298 .text {
  7714. position:absolute;
  7715. align-self:flex-start;
  7716. padding:0px 0px 0px 0px;
  7717. box-sizing:border-box;
  7718. width:100%;
  7719. }
  7720. #u60298_text {
  7721. border-width:0px;
  7722. white-space:nowrap;
  7723. text-transform:none;
  7724. }
  7725. #u60299_div {
  7726. border-width:0px;
  7727. position:absolute;
  7728. left:0px;
  7729. top:0px;
  7730. width:81px;
  7731. height:22px;
  7732. background:inherit;
  7733. background-color:rgba(255, 255, 255, 0);
  7734. border:none;
  7735. border-radius:0px;
  7736. -moz-box-shadow:none;
  7737. -webkit-box-shadow:none;
  7738. box-shadow:none;
  7739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7740. font-weight:400;
  7741. font-style:normal;
  7742. font-size:16px;
  7743. }
  7744. #u60299 {
  7745. border-width:0px;
  7746. position:absolute;
  7747. left:147px;
  7748. top:430px;
  7749. width:81px;
  7750. height:22px;
  7751. display:flex;
  7752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7753. font-weight:400;
  7754. font-style:normal;
  7755. font-size:16px;
  7756. }
  7757. #u60299 .text {
  7758. position:absolute;
  7759. align-self:flex-start;
  7760. padding:0px 0px 0px 0px;
  7761. box-sizing:border-box;
  7762. width:100%;
  7763. }
  7764. #u60299_text {
  7765. border-width:0px;
  7766. white-space:nowrap;
  7767. text-transform:none;
  7768. }
  7769. #u60300_div {
  7770. border-width:0px;
  7771. position:absolute;
  7772. left:0px;
  7773. top:0px;
  7774. width:81px;
  7775. height:22px;
  7776. background:inherit;
  7777. background-color:rgba(255, 255, 255, 0);
  7778. border:none;
  7779. border-radius:0px;
  7780. -moz-box-shadow:none;
  7781. -webkit-box-shadow:none;
  7782. box-shadow:none;
  7783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7784. font-weight:400;
  7785. font-style:normal;
  7786. font-size:16px;
  7787. }
  7788. #u60300 {
  7789. border-width:0px;
  7790. position:absolute;
  7791. left:147px;
  7792. top:472px;
  7793. width:81px;
  7794. height:22px;
  7795. display:flex;
  7796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7797. font-weight:400;
  7798. font-style:normal;
  7799. font-size:16px;
  7800. }
  7801. #u60300 .text {
  7802. position:absolute;
  7803. align-self:flex-start;
  7804. padding:0px 0px 0px 0px;
  7805. box-sizing:border-box;
  7806. width:100%;
  7807. }
  7808. #u60300_text {
  7809. border-width:0px;
  7810. white-space:nowrap;
  7811. text-transform:none;
  7812. }
  7813. #u60301_div {
  7814. border-width:0px;
  7815. position:absolute;
  7816. left:0px;
  7817. top:0px;
  7818. width:49px;
  7819. height:17px;
  7820. background:inherit;
  7821. background-color:rgba(255, 255, 255, 0);
  7822. border:none;
  7823. border-radius:0px;
  7824. -moz-box-shadow:none;
  7825. -webkit-box-shadow:none;
  7826. box-shadow:none;
  7827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7828. font-weight:400;
  7829. font-style:normal;
  7830. font-size:12px;
  7831. color:#AAAAAA;
  7832. }
  7833. #u60301 {
  7834. border-width:0px;
  7835. position:absolute;
  7836. left:147px;
  7837. top:310px;
  7838. width:49px;
  7839. height:17px;
  7840. display:flex;
  7841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7842. font-weight:400;
  7843. font-style:normal;
  7844. font-size:12px;
  7845. color:#AAAAAA;
  7846. }
  7847. #u60301 .text {
  7848. position:absolute;
  7849. align-self:flex-start;
  7850. padding:0px 0px 0px 0px;
  7851. box-sizing:border-box;
  7852. width:100%;
  7853. }
  7854. #u60301_text {
  7855. border-width:0px;
  7856. white-space:nowrap;
  7857. text-transform:none;
  7858. }
  7859. #u60302_img {
  7860. border-width:0px;
  7861. position:absolute;
  7862. left:0px;
  7863. top:0px;
  7864. width:201px;
  7865. height:2px;
  7866. }
  7867. #u60302 {
  7868. border-width:0px;
  7869. position:absolute;
  7870. left:120px;
  7871. top:598px;
  7872. width:200px;
  7873. height:1px;
  7874. display:flex;
  7875. }
  7876. #u60302 .text {
  7877. position:absolute;
  7878. align-self:center;
  7879. padding:2px 2px 2px 2px;
  7880. box-sizing:border-box;
  7881. width:100%;
  7882. }
  7883. #u60302_text {
  7884. border-width:0px;
  7885. word-wrap:break-word;
  7886. text-transform:none;
  7887. visibility:hidden;
  7888. }
  7889. #u60303_div {
  7890. border-width:0px;
  7891. position:absolute;
  7892. left:0px;
  7893. top:0px;
  7894. width:65px;
  7895. height:22px;
  7896. background:inherit;
  7897. background-color:rgba(255, 255, 255, 0);
  7898. border:none;
  7899. border-radius:0px;
  7900. -moz-box-shadow:none;
  7901. -webkit-box-shadow:none;
  7902. box-shadow:none;
  7903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7904. font-weight:400;
  7905. font-style:normal;
  7906. font-size:16px;
  7907. }
  7908. #u60303 {
  7909. border-width:0px;
  7910. position:absolute;
  7911. left:147px;
  7912. top:514px;
  7913. width:65px;
  7914. height:22px;
  7915. display:flex;
  7916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7917. font-weight:400;
  7918. font-style:normal;
  7919. font-size:16px;
  7920. }
  7921. #u60303 .text {
  7922. position:absolute;
  7923. align-self:flex-start;
  7924. padding:0px 0px 0px 0px;
  7925. box-sizing:border-box;
  7926. width:100%;
  7927. }
  7928. #u60303_text {
  7929. border-width:0px;
  7930. white-space:nowrap;
  7931. text-transform:none;
  7932. }
  7933. #u60304_div {
  7934. border-width:0px;
  7935. position:absolute;
  7936. left:0px;
  7937. top:0px;
  7938. width:65px;
  7939. height:22px;
  7940. background:inherit;
  7941. background-color:rgba(255, 255, 255, 0);
  7942. border:none;
  7943. border-radius:0px;
  7944. -moz-box-shadow:none;
  7945. -webkit-box-shadow:none;
  7946. box-shadow:none;
  7947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7948. font-weight:400;
  7949. font-style:normal;
  7950. font-size:16px;
  7951. }
  7952. #u60304 {
  7953. border-width:0px;
  7954. position:absolute;
  7955. left:147px;
  7956. top:556px;
  7957. width:65px;
  7958. height:22px;
  7959. display:flex;
  7960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7961. font-weight:400;
  7962. font-style:normal;
  7963. font-size:16px;
  7964. }
  7965. #u60304 .text {
  7966. position:absolute;
  7967. align-self:flex-start;
  7968. padding:0px 0px 0px 0px;
  7969. box-sizing:border-box;
  7970. width:100%;
  7971. }
  7972. #u60304_text {
  7973. border-width:0px;
  7974. white-space:nowrap;
  7975. text-transform:none;
  7976. }
  7977. #u60305_div {
  7978. border-width:0px;
  7979. position:absolute;
  7980. left:0px;
  7981. top:0px;
  7982. width:65px;
  7983. height:22px;
  7984. background:inherit;
  7985. background-color:rgba(255, 255, 255, 0);
  7986. border:none;
  7987. border-radius:0px;
  7988. -moz-box-shadow:none;
  7989. -webkit-box-shadow:none;
  7990. box-shadow:none;
  7991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7992. font-weight:400;
  7993. font-style:normal;
  7994. font-size:16px;
  7995. }
  7996. #u60305 {
  7997. border-width:0px;
  7998. position:absolute;
  7999. left:147px;
  8000. top:656px;
  8001. width:65px;
  8002. height:22px;
  8003. display:flex;
  8004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8005. font-weight:400;
  8006. font-style:normal;
  8007. font-size:16px;
  8008. }
  8009. #u60305 .text {
  8010. position:absolute;
  8011. align-self:flex-start;
  8012. padding:0px 0px 0px 0px;
  8013. box-sizing:border-box;
  8014. width:100%;
  8015. }
  8016. #u60305_text {
  8017. border-width:0px;
  8018. white-space:nowrap;
  8019. text-transform:none;
  8020. }
  8021. #u60306_div {
  8022. border-width:0px;
  8023. position:absolute;
  8024. left:0px;
  8025. top:0px;
  8026. width:49px;
  8027. height:17px;
  8028. background:inherit;
  8029. background-color:rgba(255, 255, 255, 0);
  8030. border:none;
  8031. border-radius:0px;
  8032. -moz-box-shadow:none;
  8033. -webkit-box-shadow:none;
  8034. box-shadow:none;
  8035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8036. font-weight:400;
  8037. font-style:normal;
  8038. font-size:12px;
  8039. color:#AAAAAA;
  8040. }
  8041. #u60306 {
  8042. border-width:0px;
  8043. position:absolute;
  8044. left:147px;
  8045. top:620px;
  8046. width:49px;
  8047. height:17px;
  8048. display:flex;
  8049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8050. font-weight:400;
  8051. font-style:normal;
  8052. font-size:12px;
  8053. color:#AAAAAA;
  8054. }
  8055. #u60306 .text {
  8056. position:absolute;
  8057. align-self:flex-start;
  8058. padding:0px 0px 0px 0px;
  8059. box-sizing:border-box;
  8060. width:100%;
  8061. }
  8062. #u60306_text {
  8063. border-width:0px;
  8064. white-space:nowrap;
  8065. text-transform:none;
  8066. }
  8067. #u60307_div {
  8068. border-width:0px;
  8069. position:absolute;
  8070. left:0px;
  8071. top:0px;
  8072. width:65px;
  8073. height:22px;
  8074. background:inherit;
  8075. background-color:rgba(255, 255, 255, 0);
  8076. border:none;
  8077. border-radius:0px;
  8078. -moz-box-shadow:none;
  8079. -webkit-box-shadow:none;
  8080. box-shadow:none;
  8081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8082. font-weight:400;
  8083. font-style:normal;
  8084. font-size:16px;
  8085. }
  8086. #u60307 {
  8087. border-width:0px;
  8088. position:absolute;
  8089. left:147px;
  8090. top:166px;
  8091. width:65px;
  8092. height:22px;
  8093. display:flex;
  8094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8095. font-weight:400;
  8096. font-style:normal;
  8097. font-size:16px;
  8098. }
  8099. #u60307 .text {
  8100. position:absolute;
  8101. align-self:flex-start;
  8102. padding:0px 0px 0px 0px;
  8103. box-sizing:border-box;
  8104. width:100%;
  8105. }
  8106. #u60307_text {
  8107. border-width:0px;
  8108. white-space:nowrap;
  8109. text-transform:none;
  8110. }
  8111. #u60308_div {
  8112. border-width:0px;
  8113. position:absolute;
  8114. left:0px;
  8115. top:0px;
  8116. width:65px;
  8117. height:22px;
  8118. background:inherit;
  8119. background-color:rgba(255, 255, 255, 0);
  8120. border:none;
  8121. border-radius:0px;
  8122. -moz-box-shadow:none;
  8123. -webkit-box-shadow:none;
  8124. box-shadow:none;
  8125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8126. font-weight:400;
  8127. font-style:normal;
  8128. font-size:16px;
  8129. }
  8130. #u60308 {
  8131. border-width:0px;
  8132. position:absolute;
  8133. left:147px;
  8134. top:248px;
  8135. width:65px;
  8136. height:22px;
  8137. display:flex;
  8138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8139. font-weight:400;
  8140. font-style:normal;
  8141. font-size:16px;
  8142. }
  8143. #u60308 .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. #u60308_text {
  8151. border-width:0px;
  8152. white-space:nowrap;
  8153. text-transform:none;
  8154. }
  8155. #u60309_div {
  8156. border-width:0px;
  8157. position:absolute;
  8158. left:0px;
  8159. top:0px;
  8160. width:49px;
  8161. height:17px;
  8162. background:inherit;
  8163. background-color:rgba(255, 255, 255, 0);
  8164. border:none;
  8165. border-radius:0px;
  8166. -moz-box-shadow:none;
  8167. -webkit-box-shadow:none;
  8168. box-shadow:none;
  8169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8170. font-weight:400;
  8171. font-style:normal;
  8172. font-size:12px;
  8173. color:#AAAAAA;
  8174. }
  8175. #u60309 {
  8176. border-width:0px;
  8177. position:absolute;
  8178. left:147px;
  8179. top:130px;
  8180. width:49px;
  8181. height:17px;
  8182. display:flex;
  8183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8184. font-weight:400;
  8185. font-style:normal;
  8186. font-size:12px;
  8187. color:#AAAAAA;
  8188. }
  8189. #u60309 .text {
  8190. position:absolute;
  8191. align-self:flex-start;
  8192. padding:0px 0px 0px 0px;
  8193. box-sizing:border-box;
  8194. width:100%;
  8195. }
  8196. #u60309_text {
  8197. border-width:0px;
  8198. white-space:nowrap;
  8199. text-transform:none;
  8200. }
  8201. #u60310_img {
  8202. border-width:0px;
  8203. position:absolute;
  8204. left:0px;
  8205. top:0px;
  8206. width:201px;
  8207. height:2px;
  8208. }
  8209. #u60310 {
  8210. border-width:0px;
  8211. position:absolute;
  8212. left:120px;
  8213. top:289px;
  8214. width:200px;
  8215. height:1px;
  8216. display:flex;
  8217. }
  8218. #u60310 .text {
  8219. position:absolute;
  8220. align-self:center;
  8221. padding:2px 2px 2px 2px;
  8222. box-sizing:border-box;
  8223. width:100%;
  8224. }
  8225. #u60310_text {
  8226. border-width:0px;
  8227. word-wrap:break-word;
  8228. text-transform:none;
  8229. visibility:hidden;
  8230. }
  8231. #u60311_div {
  8232. border-width:0px;
  8233. position:absolute;
  8234. left:0px;
  8235. top:0px;
  8236. width:65px;
  8237. height:22px;
  8238. background:inherit;
  8239. background-color:rgba(255, 255, 255, 0);
  8240. border:none;
  8241. border-radius:0px;
  8242. -moz-box-shadow:none;
  8243. -webkit-box-shadow:none;
  8244. box-shadow:none;
  8245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8246. font-weight:400;
  8247. font-style:normal;
  8248. font-size:16px;
  8249. }
  8250. #u60311 {
  8251. border-width:0px;
  8252. position:absolute;
  8253. left:147px;
  8254. top:206px;
  8255. width:65px;
  8256. height:22px;
  8257. display:flex;
  8258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8259. font-weight:400;
  8260. font-style:normal;
  8261. font-size:16px;
  8262. }
  8263. #u60311 .text {
  8264. position:absolute;
  8265. align-self:flex-start;
  8266. padding:0px 0px 0px 0px;
  8267. box-sizing:border-box;
  8268. width:100%;
  8269. }
  8270. #u60311_text {
  8271. border-width:0px;
  8272. white-space:nowrap;
  8273. text-transform:none;
  8274. }
  8275. #u60312 {
  8276. border-width:0px;
  8277. position:absolute;
  8278. left:0px;
  8279. top:0px;
  8280. width:0px;
  8281. height:0px;
  8282. }
  8283. #u60313_div {
  8284. border-width:0px;
  8285. position:absolute;
  8286. left:0px;
  8287. top:0px;
  8288. width:140px;
  8289. height:30px;
  8290. background:inherit;
  8291. background-color:rgba(255, 255, 255, 1);
  8292. box-sizing:border-box;
  8293. border-width:1px;
  8294. border-style:solid;
  8295. border-color:rgba(201, 201, 201, 1);
  8296. border-radius:0px;
  8297. -moz-box-shadow:none;
  8298. -webkit-box-shadow:none;
  8299. box-shadow:none;
  8300. font-family:'Microsoft YaHei', sans-serif;
  8301. font-weight:400;
  8302. font-style:normal;
  8303. font-size:14px;
  8304. color:#CCCCCC;
  8305. text-align:left;
  8306. }
  8307. #u60313 {
  8308. border-width:0px;
  8309. position:absolute;
  8310. left:1407px;
  8311. top:750px;
  8312. width:140px;
  8313. height:30px;
  8314. display:flex;
  8315. font-family:'Microsoft YaHei', sans-serif;
  8316. font-weight:400;
  8317. font-style:normal;
  8318. font-size:14px;
  8319. color:#CCCCCC;
  8320. text-align:left;
  8321. }
  8322. #u60313 .text {
  8323. position:absolute;
  8324. align-self:center;
  8325. padding:2px 8px 2px 8px;
  8326. box-sizing:border-box;
  8327. width:100%;
  8328. }
  8329. #u60313_text {
  8330. border-width:0px;
  8331. word-wrap:break-word;
  8332. text-transform:none;
  8333. visibility:hidden;
  8334. }
  8335. #u60314_input {
  8336. position:absolute;
  8337. left:0px;
  8338. top:0px;
  8339. width:113px;
  8340. height:27px;
  8341. padding:2px 2px 2px 2px;
  8342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8343. font-weight:400;
  8344. font-style:normal;
  8345. font-size:12px;
  8346. letter-spacing:normal;
  8347. color:#000000;
  8348. vertical-align:none;
  8349. text-align:left;
  8350. text-transform:none;
  8351. background-color:transparent;
  8352. border-color:transparent;
  8353. }
  8354. #u60314_input.disabled {
  8355. position:absolute;
  8356. left:0px;
  8357. top:0px;
  8358. width:113px;
  8359. height:27px;
  8360. padding:2px 2px 2px 2px;
  8361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8362. font-weight:400;
  8363. font-style:normal;
  8364. font-size:12px;
  8365. letter-spacing:normal;
  8366. color:#000000;
  8367. vertical-align:none;
  8368. text-align:left;
  8369. text-transform:none;
  8370. background-color:transparent;
  8371. border-color:transparent;
  8372. }
  8373. #u60314_div {
  8374. border-width:0px;
  8375. position:absolute;
  8376. left:0px;
  8377. top:0px;
  8378. width:113px;
  8379. height:27px;
  8380. background:inherit;
  8381. background-color:rgba(255, 255, 255, 1);
  8382. border:none;
  8383. border-radius:0px;
  8384. -moz-box-shadow:none;
  8385. -webkit-box-shadow:none;
  8386. box-shadow:none;
  8387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8388. font-weight:400;
  8389. font-style:normal;
  8390. font-size:12px;
  8391. }
  8392. #u60314 {
  8393. border-width:0px;
  8394. position:absolute;
  8395. left:1412px;
  8396. top:751px;
  8397. width:113px;
  8398. height:27px;
  8399. display:flex;
  8400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8401. font-weight:400;
  8402. font-style:normal;
  8403. font-size:12px;
  8404. }
  8405. #u60314 .text {
  8406. position:absolute;
  8407. align-self:center;
  8408. padding:2px 2px 2px 2px;
  8409. box-sizing:border-box;
  8410. width:100%;
  8411. }
  8412. #u60314_div.disabled {
  8413. border-width:0px;
  8414. position:absolute;
  8415. left:0px;
  8416. top:0px;
  8417. width:113px;
  8418. height:27px;
  8419. background:inherit;
  8420. background-color:rgba(240, 240, 240, 1);
  8421. border:none;
  8422. border-radius:0px;
  8423. -moz-box-shadow:none;
  8424. -webkit-box-shadow:none;
  8425. box-shadow:none;
  8426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8427. font-weight:400;
  8428. font-style:normal;
  8429. font-size:12px;
  8430. }
  8431. #u60314.disabled {
  8432. }
  8433. #u60315_img {
  8434. border-width:0px;
  8435. position:absolute;
  8436. left:0px;
  8437. top:0px;
  8438. width:13px;
  8439. height:13px;
  8440. }
  8441. #u60315 {
  8442. border-width:0px;
  8443. position:absolute;
  8444. left:1528px;
  8445. top:759px;
  8446. width:13px;
  8447. height:13px;
  8448. display:flex;
  8449. }
  8450. #u60315 .text {
  8451. position:absolute;
  8452. align-self:center;
  8453. padding:2px 2px 2px 2px;
  8454. box-sizing:border-box;
  8455. width:100%;
  8456. }
  8457. #u60315_text {
  8458. border-width:0px;
  8459. word-wrap:break-word;
  8460. text-transform:none;
  8461. visibility:hidden;
  8462. }