styles.css 170 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2451px;
  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. #u75353_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. #u75353 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u75353 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u75353_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u75354_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. #u75354 {
  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. #u75354 .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. #u75354_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u75355_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. #u75355 {
  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. #u75355 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u75355_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u75356 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u75357_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u75357 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u75357 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u75357_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u75358_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. #u75358 {
  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. #u75358 .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. #u75358_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u75359_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. #u75359 {
  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. #u75359 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u75359_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u75360 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u75361_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u75361_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u75361_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u75361 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u75361 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u75361_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u75361.disabled {
  356. }
  357. .u75361_input_option {
  358. font-size:14px;
  359. }
  360. #u75362_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u75362 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u75362 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u75362_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u75363_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u75363 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u75363 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u75363_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u75364_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u75364 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u75364 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u75364_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u75365 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u75366_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u75366 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u75366 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u75366_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u75367_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u75367 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u75367 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u75367_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u75368 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u75369_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u75369 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u75369 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u75369_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u75370_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u75370 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u75370 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u75370_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u75371 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u75372_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u75372 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:399px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u75372 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u75372_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u75373_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u75373 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u75373 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u75373_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u75374 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u75375_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u75375 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u75375 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u75375_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u75376_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u75376 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u75376 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u75376_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u75377 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u75378_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u75378 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:441px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u75378 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u75378_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u75379_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u75379 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u75379 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u75379_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u75380 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u75381_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u75381 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:315px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u75381 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u75381_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u75382_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u75382 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u75382 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u75382_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u75383 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u75384_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u75384 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u75384 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u75384_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u75385_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u75385 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u75385 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u75385_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u75386 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u75387_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u75387 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:357px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u75387 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u75387_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u75388_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u75388 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u75388 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u75388_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u75389 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u75390_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u75390 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:483px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u75390 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u75390_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u75391_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u75391 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u75391 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u75391_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u75392 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u75393_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u75393 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:525px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u75393 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u75393_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u75394_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u75394 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u75394 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u75394_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u75395_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u75395 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u75395 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u75395_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u75396_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u75396 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u75396 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u75396_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u75397_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u75397 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u75397 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u75397_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u75398_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u75398 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u75398 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u75398_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u75399 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u75400_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u75400 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u75400 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u75400_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u75401_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u75401 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u75401 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u75401_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u75402 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u75403_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u75403 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:273px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u75403 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u75403_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u75404_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u75404 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u75404 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u75404_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u75405_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1262px;
  1644. height:1184px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1650. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1651. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1652. }
  1653. #u75405 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:330px;
  1657. top:50px;
  1658. width:1262px;
  1659. height:1184px;
  1660. display:flex;
  1661. }
  1662. #u75405 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u75405_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u75406 {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:668px;
  1679. top:252px;
  1680. width:905px;
  1681. height:465px;
  1682. }
  1683. #u75407_img {
  1684. border-width:0px;
  1685. position:absolute;
  1686. left:0px;
  1687. top:0px;
  1688. width:138px;
  1689. height:41px;
  1690. }
  1691. #u75407 {
  1692. border-width:0px;
  1693. position:absolute;
  1694. left:0px;
  1695. top:0px;
  1696. width:138px;
  1697. height:41px;
  1698. display:flex;
  1699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1700. font-weight:400;
  1701. font-style:normal;
  1702. font-size:12px;
  1703. color:#FFFFFF;
  1704. }
  1705. #u75407 .text {
  1706. position:absolute;
  1707. align-self:center;
  1708. padding:2px 2px 2px 0px;
  1709. box-sizing:border-box;
  1710. width:100%;
  1711. }
  1712. #u75407_text {
  1713. border-width:0px;
  1714. word-wrap:break-word;
  1715. text-transform:none;
  1716. }
  1717. #u75408_img {
  1718. border-width:0px;
  1719. position:absolute;
  1720. left:0px;
  1721. top:0px;
  1722. width:158px;
  1723. height:41px;
  1724. }
  1725. #u75408 {
  1726. border-width:0px;
  1727. position:absolute;
  1728. left:138px;
  1729. top:0px;
  1730. width:158px;
  1731. height:41px;
  1732. display:flex;
  1733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1734. font-weight:400;
  1735. font-style:normal;
  1736. font-size:12px;
  1737. color:#FFFFFF;
  1738. }
  1739. #u75408 .text {
  1740. position:absolute;
  1741. align-self:center;
  1742. padding:2px 2px 2px 0px;
  1743. box-sizing:border-box;
  1744. width:100%;
  1745. }
  1746. #u75408_text {
  1747. border-width:0px;
  1748. word-wrap:break-word;
  1749. text-transform:none;
  1750. }
  1751. #u75409_img {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:0px;
  1755. top:0px;
  1756. width:158px;
  1757. height:41px;
  1758. }
  1759. #u75409 {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:296px;
  1763. top:0px;
  1764. width:158px;
  1765. height:41px;
  1766. display:flex;
  1767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1768. font-weight:400;
  1769. font-style:normal;
  1770. font-size:12px;
  1771. color:#FFFFFF;
  1772. }
  1773. #u75409 .text {
  1774. position:absolute;
  1775. align-self:center;
  1776. padding:2px 2px 2px 0px;
  1777. box-sizing:border-box;
  1778. width:100%;
  1779. }
  1780. #u75409_text {
  1781. border-width:0px;
  1782. word-wrap:break-word;
  1783. text-transform:none;
  1784. }
  1785. #u75410_img {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:0px;
  1789. top:0px;
  1790. width:138px;
  1791. height:41px;
  1792. }
  1793. #u75410 {
  1794. border-width:0px;
  1795. position:absolute;
  1796. left:454px;
  1797. top:0px;
  1798. width:138px;
  1799. height:41px;
  1800. display:flex;
  1801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1802. font-weight:400;
  1803. font-style:normal;
  1804. font-size:12px;
  1805. color:#FFFFFF;
  1806. }
  1807. #u75410 .text {
  1808. position:absolute;
  1809. align-self:center;
  1810. padding:2px 2px 2px 0px;
  1811. box-sizing:border-box;
  1812. width:100%;
  1813. }
  1814. #u75410_text {
  1815. border-width:0px;
  1816. word-wrap:break-word;
  1817. text-transform:none;
  1818. }
  1819. #u75411_img {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:0px;
  1823. top:0px;
  1824. width:158px;
  1825. height:41px;
  1826. }
  1827. #u75411 {
  1828. border-width:0px;
  1829. position:absolute;
  1830. left:592px;
  1831. top:0px;
  1832. width:158px;
  1833. height:41px;
  1834. display:flex;
  1835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1836. font-weight:400;
  1837. font-style:normal;
  1838. font-size:12px;
  1839. color:#FFFFFF;
  1840. }
  1841. #u75411 .text {
  1842. position:absolute;
  1843. align-self:center;
  1844. padding:2px 2px 2px 0px;
  1845. box-sizing:border-box;
  1846. width:100%;
  1847. }
  1848. #u75411_text {
  1849. border-width:0px;
  1850. word-wrap:break-word;
  1851. text-transform:none;
  1852. }
  1853. #u75412_img {
  1854. border-width:0px;
  1855. position:absolute;
  1856. left:0px;
  1857. top:0px;
  1858. width:155px;
  1859. height:41px;
  1860. }
  1861. #u75412 {
  1862. border-width:0px;
  1863. position:absolute;
  1864. left:750px;
  1865. top:0px;
  1866. width:155px;
  1867. height:41px;
  1868. display:flex;
  1869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1870. font-weight:400;
  1871. font-style:normal;
  1872. font-size:12px;
  1873. color:#FFFFFF;
  1874. }
  1875. #u75412 .text {
  1876. position:absolute;
  1877. align-self:center;
  1878. padding:2px 2px 2px 0px;
  1879. box-sizing:border-box;
  1880. width:100%;
  1881. }
  1882. #u75412_text {
  1883. border-width:0px;
  1884. word-wrap:break-word;
  1885. text-transform:none;
  1886. }
  1887. #u75413_img {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:0px;
  1891. top:0px;
  1892. width:138px;
  1893. height:39px;
  1894. }
  1895. #u75413 {
  1896. border-width:0px;
  1897. position:absolute;
  1898. left:0px;
  1899. top:41px;
  1900. width:138px;
  1901. height:39px;
  1902. display:flex;
  1903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1904. font-weight:400;
  1905. font-style:normal;
  1906. font-size:12px;
  1907. }
  1908. #u75413 .text {
  1909. position:absolute;
  1910. align-self:center;
  1911. padding:2px 2px 2px 0px;
  1912. box-sizing:border-box;
  1913. width:100%;
  1914. }
  1915. #u75413_text {
  1916. border-width:0px;
  1917. word-wrap:break-word;
  1918. text-transform:none;
  1919. }
  1920. #u75414_img {
  1921. border-width:0px;
  1922. position:absolute;
  1923. left:0px;
  1924. top:0px;
  1925. width:158px;
  1926. height:39px;
  1927. }
  1928. #u75414 {
  1929. border-width:0px;
  1930. position:absolute;
  1931. left:138px;
  1932. top:41px;
  1933. width:158px;
  1934. height:39px;
  1935. display:flex;
  1936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1937. font-weight:400;
  1938. font-style:normal;
  1939. font-size:12px;
  1940. }
  1941. #u75414 .text {
  1942. position:absolute;
  1943. align-self:center;
  1944. padding:2px 2px 2px 0px;
  1945. box-sizing:border-box;
  1946. width:100%;
  1947. }
  1948. #u75414_text {
  1949. border-width:0px;
  1950. word-wrap:break-word;
  1951. text-transform:none;
  1952. }
  1953. #u75415_img {
  1954. border-width:0px;
  1955. position:absolute;
  1956. left:0px;
  1957. top:0px;
  1958. width:158px;
  1959. height:39px;
  1960. }
  1961. #u75415 {
  1962. border-width:0px;
  1963. position:absolute;
  1964. left:296px;
  1965. top:41px;
  1966. width:158px;
  1967. height:39px;
  1968. display:flex;
  1969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1970. font-weight:400;
  1971. font-style:normal;
  1972. font-size:12px;
  1973. }
  1974. #u75415 .text {
  1975. position:absolute;
  1976. align-self:center;
  1977. padding:2px 2px 2px 0px;
  1978. box-sizing:border-box;
  1979. width:100%;
  1980. }
  1981. #u75415_text {
  1982. border-width:0px;
  1983. word-wrap:break-word;
  1984. text-transform:none;
  1985. }
  1986. #u75416_img {
  1987. border-width:0px;
  1988. position:absolute;
  1989. left:0px;
  1990. top:0px;
  1991. width:138px;
  1992. height:39px;
  1993. }
  1994. #u75416 {
  1995. border-width:0px;
  1996. position:absolute;
  1997. left:454px;
  1998. top:41px;
  1999. width:138px;
  2000. height:39px;
  2001. display:flex;
  2002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2003. font-weight:400;
  2004. font-style:normal;
  2005. font-size:12px;
  2006. }
  2007. #u75416 .text {
  2008. position:absolute;
  2009. align-self:center;
  2010. padding:2px 2px 2px 0px;
  2011. box-sizing:border-box;
  2012. width:100%;
  2013. }
  2014. #u75416_text {
  2015. border-width:0px;
  2016. word-wrap:break-word;
  2017. text-transform:none;
  2018. }
  2019. #u75417_img {
  2020. border-width:0px;
  2021. position:absolute;
  2022. left:0px;
  2023. top:0px;
  2024. width:158px;
  2025. height:39px;
  2026. }
  2027. #u75417 {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:592px;
  2031. top:41px;
  2032. width:158px;
  2033. height:39px;
  2034. display:flex;
  2035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2036. font-weight:400;
  2037. font-style:normal;
  2038. font-size:12px;
  2039. }
  2040. #u75417 .text {
  2041. position:absolute;
  2042. align-self:center;
  2043. padding:2px 2px 2px 0px;
  2044. box-sizing:border-box;
  2045. width:100%;
  2046. }
  2047. #u75417_text {
  2048. border-width:0px;
  2049. word-wrap:break-word;
  2050. text-transform:none;
  2051. }
  2052. #u75418_img {
  2053. border-width:0px;
  2054. position:absolute;
  2055. left:0px;
  2056. top:0px;
  2057. width:155px;
  2058. height:39px;
  2059. }
  2060. #u75418 {
  2061. border-width:0px;
  2062. position:absolute;
  2063. left:750px;
  2064. top:41px;
  2065. width:155px;
  2066. height:39px;
  2067. display:flex;
  2068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2069. font-weight:400;
  2070. font-style:normal;
  2071. font-size:12px;
  2072. color:#1890FF;
  2073. }
  2074. #u75418 .text {
  2075. position:absolute;
  2076. align-self:center;
  2077. padding:2px 2px 2px 0px;
  2078. box-sizing:border-box;
  2079. width:100%;
  2080. }
  2081. #u75418_text {
  2082. border-width:0px;
  2083. word-wrap:break-word;
  2084. text-transform:none;
  2085. }
  2086. #u75419_img {
  2087. border-width:0px;
  2088. position:absolute;
  2089. left:0px;
  2090. top:0px;
  2091. width:138px;
  2092. height:35px;
  2093. }
  2094. #u75419 {
  2095. border-width:0px;
  2096. position:absolute;
  2097. left:0px;
  2098. top:80px;
  2099. width:138px;
  2100. height:35px;
  2101. display:flex;
  2102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2103. font-weight:400;
  2104. font-style:normal;
  2105. font-size:12px;
  2106. }
  2107. #u75419 .text {
  2108. position:absolute;
  2109. align-self:center;
  2110. padding:2px 2px 2px 0px;
  2111. box-sizing:border-box;
  2112. width:100%;
  2113. }
  2114. #u75419_text {
  2115. border-width:0px;
  2116. word-wrap:break-word;
  2117. text-transform:none;
  2118. }
  2119. #u75420_img {
  2120. border-width:0px;
  2121. position:absolute;
  2122. left:0px;
  2123. top:0px;
  2124. width:158px;
  2125. height:35px;
  2126. }
  2127. #u75420 {
  2128. border-width:0px;
  2129. position:absolute;
  2130. left:138px;
  2131. top:80px;
  2132. width:158px;
  2133. height:35px;
  2134. display:flex;
  2135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2136. font-weight:400;
  2137. font-style:normal;
  2138. font-size:12px;
  2139. }
  2140. #u75420 .text {
  2141. position:absolute;
  2142. align-self:center;
  2143. padding:2px 2px 2px 0px;
  2144. box-sizing:border-box;
  2145. width:100%;
  2146. }
  2147. #u75420_text {
  2148. border-width:0px;
  2149. word-wrap:break-word;
  2150. text-transform:none;
  2151. }
  2152. #u75421_img {
  2153. border-width:0px;
  2154. position:absolute;
  2155. left:0px;
  2156. top:0px;
  2157. width:158px;
  2158. height:35px;
  2159. }
  2160. #u75421 {
  2161. border-width:0px;
  2162. position:absolute;
  2163. left:296px;
  2164. top:80px;
  2165. width:158px;
  2166. height:35px;
  2167. display:flex;
  2168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2169. font-weight:400;
  2170. font-style:normal;
  2171. font-size:12px;
  2172. }
  2173. #u75421 .text {
  2174. position:absolute;
  2175. align-self:center;
  2176. padding:2px 2px 2px 0px;
  2177. box-sizing:border-box;
  2178. width:100%;
  2179. }
  2180. #u75421_text {
  2181. border-width:0px;
  2182. word-wrap:break-word;
  2183. text-transform:none;
  2184. }
  2185. #u75422_img {
  2186. border-width:0px;
  2187. position:absolute;
  2188. left:0px;
  2189. top:0px;
  2190. width:138px;
  2191. height:35px;
  2192. }
  2193. #u75422 {
  2194. border-width:0px;
  2195. position:absolute;
  2196. left:454px;
  2197. top:80px;
  2198. width:138px;
  2199. height:35px;
  2200. display:flex;
  2201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2202. font-weight:400;
  2203. font-style:normal;
  2204. font-size:12px;
  2205. }
  2206. #u75422 .text {
  2207. position:absolute;
  2208. align-self:center;
  2209. padding:2px 2px 2px 0px;
  2210. box-sizing:border-box;
  2211. width:100%;
  2212. }
  2213. #u75422_text {
  2214. border-width:0px;
  2215. word-wrap:break-word;
  2216. text-transform:none;
  2217. }
  2218. #u75423_img {
  2219. border-width:0px;
  2220. position:absolute;
  2221. left:0px;
  2222. top:0px;
  2223. width:158px;
  2224. height:35px;
  2225. }
  2226. #u75423 {
  2227. border-width:0px;
  2228. position:absolute;
  2229. left:592px;
  2230. top:80px;
  2231. width:158px;
  2232. height:35px;
  2233. display:flex;
  2234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2235. font-weight:400;
  2236. font-style:normal;
  2237. font-size:12px;
  2238. }
  2239. #u75423 .text {
  2240. position:absolute;
  2241. align-self:center;
  2242. padding:2px 2px 2px 0px;
  2243. box-sizing:border-box;
  2244. width:100%;
  2245. }
  2246. #u75423_text {
  2247. border-width:0px;
  2248. word-wrap:break-word;
  2249. text-transform:none;
  2250. }
  2251. #u75424_img {
  2252. border-width:0px;
  2253. position:absolute;
  2254. left:0px;
  2255. top:0px;
  2256. width:155px;
  2257. height:35px;
  2258. }
  2259. #u75424 {
  2260. border-width:0px;
  2261. position:absolute;
  2262. left:750px;
  2263. top:80px;
  2264. width:155px;
  2265. height:35px;
  2266. display:flex;
  2267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2268. font-weight:400;
  2269. font-style:normal;
  2270. font-size:12px;
  2271. color:#1890FF;
  2272. }
  2273. #u75424 .text {
  2274. position:absolute;
  2275. align-self:center;
  2276. padding:2px 2px 2px 0px;
  2277. box-sizing:border-box;
  2278. width:100%;
  2279. }
  2280. #u75424_text {
  2281. border-width:0px;
  2282. word-wrap:break-word;
  2283. text-transform:none;
  2284. }
  2285. #u75425_img {
  2286. border-width:0px;
  2287. position:absolute;
  2288. left:0px;
  2289. top:0px;
  2290. width:138px;
  2291. height:35px;
  2292. }
  2293. #u75425 {
  2294. border-width:0px;
  2295. position:absolute;
  2296. left:0px;
  2297. top:115px;
  2298. width:138px;
  2299. height:35px;
  2300. display:flex;
  2301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2302. font-weight:400;
  2303. font-style:normal;
  2304. font-size:12px;
  2305. }
  2306. #u75425 .text {
  2307. position:absolute;
  2308. align-self:center;
  2309. padding:2px 2px 2px 0px;
  2310. box-sizing:border-box;
  2311. width:100%;
  2312. }
  2313. #u75425_text {
  2314. border-width:0px;
  2315. word-wrap:break-word;
  2316. text-transform:none;
  2317. }
  2318. #u75426_img {
  2319. border-width:0px;
  2320. position:absolute;
  2321. left:0px;
  2322. top:0px;
  2323. width:158px;
  2324. height:35px;
  2325. }
  2326. #u75426 {
  2327. border-width:0px;
  2328. position:absolute;
  2329. left:138px;
  2330. top:115px;
  2331. width:158px;
  2332. height:35px;
  2333. display:flex;
  2334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2335. font-weight:400;
  2336. font-style:normal;
  2337. font-size:12px;
  2338. }
  2339. #u75426 .text {
  2340. position:absolute;
  2341. align-self:center;
  2342. padding:2px 2px 2px 0px;
  2343. box-sizing:border-box;
  2344. width:100%;
  2345. }
  2346. #u75426_text {
  2347. border-width:0px;
  2348. word-wrap:break-word;
  2349. text-transform:none;
  2350. }
  2351. #u75427_img {
  2352. border-width:0px;
  2353. position:absolute;
  2354. left:0px;
  2355. top:0px;
  2356. width:158px;
  2357. height:35px;
  2358. }
  2359. #u75427 {
  2360. border-width:0px;
  2361. position:absolute;
  2362. left:296px;
  2363. top:115px;
  2364. width:158px;
  2365. height:35px;
  2366. display:flex;
  2367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2368. font-weight:400;
  2369. font-style:normal;
  2370. font-size:12px;
  2371. }
  2372. #u75427 .text {
  2373. position:absolute;
  2374. align-self:center;
  2375. padding:2px 2px 2px 0px;
  2376. box-sizing:border-box;
  2377. width:100%;
  2378. }
  2379. #u75427_text {
  2380. border-width:0px;
  2381. word-wrap:break-word;
  2382. text-transform:none;
  2383. }
  2384. #u75428_img {
  2385. border-width:0px;
  2386. position:absolute;
  2387. left:0px;
  2388. top:0px;
  2389. width:138px;
  2390. height:35px;
  2391. }
  2392. #u75428 {
  2393. border-width:0px;
  2394. position:absolute;
  2395. left:454px;
  2396. top:115px;
  2397. width:138px;
  2398. height:35px;
  2399. display:flex;
  2400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2401. font-weight:400;
  2402. font-style:normal;
  2403. font-size:12px;
  2404. }
  2405. #u75428 .text {
  2406. position:absolute;
  2407. align-self:center;
  2408. padding:2px 2px 2px 0px;
  2409. box-sizing:border-box;
  2410. width:100%;
  2411. }
  2412. #u75428_text {
  2413. border-width:0px;
  2414. word-wrap:break-word;
  2415. text-transform:none;
  2416. }
  2417. #u75429_img {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:0px;
  2421. top:0px;
  2422. width:158px;
  2423. height:35px;
  2424. }
  2425. #u75429 {
  2426. border-width:0px;
  2427. position:absolute;
  2428. left:592px;
  2429. top:115px;
  2430. width:158px;
  2431. height:35px;
  2432. display:flex;
  2433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2434. font-weight:400;
  2435. font-style:normal;
  2436. font-size:12px;
  2437. }
  2438. #u75429 .text {
  2439. position:absolute;
  2440. align-self:center;
  2441. padding:2px 2px 2px 0px;
  2442. box-sizing:border-box;
  2443. width:100%;
  2444. }
  2445. #u75429_text {
  2446. border-width:0px;
  2447. word-wrap:break-word;
  2448. text-transform:none;
  2449. }
  2450. #u75430_img {
  2451. border-width:0px;
  2452. position:absolute;
  2453. left:0px;
  2454. top:0px;
  2455. width:155px;
  2456. height:35px;
  2457. }
  2458. #u75430 {
  2459. border-width:0px;
  2460. position:absolute;
  2461. left:750px;
  2462. top:115px;
  2463. width:155px;
  2464. height:35px;
  2465. display:flex;
  2466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2467. font-weight:400;
  2468. font-style:normal;
  2469. font-size:12px;
  2470. color:#1890FF;
  2471. }
  2472. #u75430 .text {
  2473. position:absolute;
  2474. align-self:center;
  2475. padding:2px 2px 2px 0px;
  2476. box-sizing:border-box;
  2477. width:100%;
  2478. }
  2479. #u75430_text {
  2480. border-width:0px;
  2481. word-wrap:break-word;
  2482. text-transform:none;
  2483. }
  2484. #u75431_img {
  2485. border-width:0px;
  2486. position:absolute;
  2487. left:0px;
  2488. top:0px;
  2489. width:138px;
  2490. height:34px;
  2491. }
  2492. #u75431 {
  2493. border-width:0px;
  2494. position:absolute;
  2495. left:0px;
  2496. top:150px;
  2497. width:138px;
  2498. height:34px;
  2499. display:flex;
  2500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2501. font-weight:400;
  2502. font-style:normal;
  2503. font-size:12px;
  2504. }
  2505. #u75431 .text {
  2506. position:absolute;
  2507. align-self:center;
  2508. padding:2px 2px 2px 0px;
  2509. box-sizing:border-box;
  2510. width:100%;
  2511. }
  2512. #u75431_text {
  2513. border-width:0px;
  2514. word-wrap:break-word;
  2515. text-transform:none;
  2516. }
  2517. #u75432_img {
  2518. border-width:0px;
  2519. position:absolute;
  2520. left:0px;
  2521. top:0px;
  2522. width:158px;
  2523. height:34px;
  2524. }
  2525. #u75432 {
  2526. border-width:0px;
  2527. position:absolute;
  2528. left:138px;
  2529. top:150px;
  2530. width:158px;
  2531. height:34px;
  2532. display:flex;
  2533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2534. font-weight:400;
  2535. font-style:normal;
  2536. font-size:12px;
  2537. }
  2538. #u75432 .text {
  2539. position:absolute;
  2540. align-self:center;
  2541. padding:2px 2px 2px 0px;
  2542. box-sizing:border-box;
  2543. width:100%;
  2544. }
  2545. #u75432_text {
  2546. border-width:0px;
  2547. word-wrap:break-word;
  2548. text-transform:none;
  2549. }
  2550. #u75433_img {
  2551. border-width:0px;
  2552. position:absolute;
  2553. left:0px;
  2554. top:0px;
  2555. width:158px;
  2556. height:34px;
  2557. }
  2558. #u75433 {
  2559. border-width:0px;
  2560. position:absolute;
  2561. left:296px;
  2562. top:150px;
  2563. width:158px;
  2564. height:34px;
  2565. display:flex;
  2566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2567. font-weight:400;
  2568. font-style:normal;
  2569. font-size:12px;
  2570. }
  2571. #u75433 .text {
  2572. position:absolute;
  2573. align-self:center;
  2574. padding:2px 2px 2px 0px;
  2575. box-sizing:border-box;
  2576. width:100%;
  2577. }
  2578. #u75433_text {
  2579. border-width:0px;
  2580. word-wrap:break-word;
  2581. text-transform:none;
  2582. }
  2583. #u75434_img {
  2584. border-width:0px;
  2585. position:absolute;
  2586. left:0px;
  2587. top:0px;
  2588. width:138px;
  2589. height:34px;
  2590. }
  2591. #u75434 {
  2592. border-width:0px;
  2593. position:absolute;
  2594. left:454px;
  2595. top:150px;
  2596. width:138px;
  2597. height:34px;
  2598. display:flex;
  2599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2600. font-weight:400;
  2601. font-style:normal;
  2602. font-size:12px;
  2603. }
  2604. #u75434 .text {
  2605. position:absolute;
  2606. align-self:center;
  2607. padding:2px 2px 2px 0px;
  2608. box-sizing:border-box;
  2609. width:100%;
  2610. }
  2611. #u75434_text {
  2612. border-width:0px;
  2613. word-wrap:break-word;
  2614. text-transform:none;
  2615. }
  2616. #u75435_img {
  2617. border-width:0px;
  2618. position:absolute;
  2619. left:0px;
  2620. top:0px;
  2621. width:158px;
  2622. height:34px;
  2623. }
  2624. #u75435 {
  2625. border-width:0px;
  2626. position:absolute;
  2627. left:592px;
  2628. top:150px;
  2629. width:158px;
  2630. height:34px;
  2631. display:flex;
  2632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2633. font-weight:400;
  2634. font-style:normal;
  2635. font-size:12px;
  2636. }
  2637. #u75435 .text {
  2638. position:absolute;
  2639. align-self:center;
  2640. padding:2px 2px 2px 0px;
  2641. box-sizing:border-box;
  2642. width:100%;
  2643. }
  2644. #u75435_text {
  2645. border-width:0px;
  2646. word-wrap:break-word;
  2647. text-transform:none;
  2648. }
  2649. #u75436_img {
  2650. border-width:0px;
  2651. position:absolute;
  2652. left:0px;
  2653. top:0px;
  2654. width:155px;
  2655. height:34px;
  2656. }
  2657. #u75436 {
  2658. border-width:0px;
  2659. position:absolute;
  2660. left:750px;
  2661. top:150px;
  2662. width:155px;
  2663. height:34px;
  2664. display:flex;
  2665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2666. font-weight:400;
  2667. font-style:normal;
  2668. font-size:12px;
  2669. color:#1890FF;
  2670. }
  2671. #u75436 .text {
  2672. position:absolute;
  2673. align-self:center;
  2674. padding:2px 2px 2px 0px;
  2675. box-sizing:border-box;
  2676. width:100%;
  2677. }
  2678. #u75436_text {
  2679. border-width:0px;
  2680. word-wrap:break-word;
  2681. text-transform:none;
  2682. }
  2683. #u75437_img {
  2684. border-width:0px;
  2685. position:absolute;
  2686. left:0px;
  2687. top:0px;
  2688. width:138px;
  2689. height:36px;
  2690. }
  2691. #u75437 {
  2692. border-width:0px;
  2693. position:absolute;
  2694. left:0px;
  2695. top:184px;
  2696. width:138px;
  2697. height:36px;
  2698. display:flex;
  2699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2700. font-weight:400;
  2701. font-style:normal;
  2702. font-size:12px;
  2703. }
  2704. #u75437 .text {
  2705. position:absolute;
  2706. align-self:center;
  2707. padding:2px 2px 2px 0px;
  2708. box-sizing:border-box;
  2709. width:100%;
  2710. }
  2711. #u75437_text {
  2712. border-width:0px;
  2713. word-wrap:break-word;
  2714. text-transform:none;
  2715. visibility:hidden;
  2716. }
  2717. #u75438_img {
  2718. border-width:0px;
  2719. position:absolute;
  2720. left:0px;
  2721. top:0px;
  2722. width:158px;
  2723. height:36px;
  2724. }
  2725. #u75438 {
  2726. border-width:0px;
  2727. position:absolute;
  2728. left:138px;
  2729. top:184px;
  2730. width:158px;
  2731. height:36px;
  2732. display:flex;
  2733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2734. font-weight:400;
  2735. font-style:normal;
  2736. font-size:12px;
  2737. }
  2738. #u75438 .text {
  2739. position:absolute;
  2740. align-self:center;
  2741. padding:2px 2px 2px 0px;
  2742. box-sizing:border-box;
  2743. width:100%;
  2744. }
  2745. #u75438_text {
  2746. border-width:0px;
  2747. word-wrap:break-word;
  2748. text-transform:none;
  2749. visibility:hidden;
  2750. }
  2751. #u75439_img {
  2752. border-width:0px;
  2753. position:absolute;
  2754. left:0px;
  2755. top:0px;
  2756. width:158px;
  2757. height:36px;
  2758. }
  2759. #u75439 {
  2760. border-width:0px;
  2761. position:absolute;
  2762. left:296px;
  2763. top:184px;
  2764. width:158px;
  2765. height:36px;
  2766. display:flex;
  2767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2768. font-weight:400;
  2769. font-style:normal;
  2770. font-size:12px;
  2771. }
  2772. #u75439 .text {
  2773. position:absolute;
  2774. align-self:center;
  2775. padding:2px 2px 2px 0px;
  2776. box-sizing:border-box;
  2777. width:100%;
  2778. }
  2779. #u75439_text {
  2780. border-width:0px;
  2781. word-wrap:break-word;
  2782. text-transform:none;
  2783. visibility:hidden;
  2784. }
  2785. #u75440_img {
  2786. border-width:0px;
  2787. position:absolute;
  2788. left:0px;
  2789. top:0px;
  2790. width:138px;
  2791. height:36px;
  2792. }
  2793. #u75440 {
  2794. border-width:0px;
  2795. position:absolute;
  2796. left:454px;
  2797. top:184px;
  2798. width:138px;
  2799. height:36px;
  2800. display:flex;
  2801. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2802. font-weight:400;
  2803. font-style:normal;
  2804. font-size:12px;
  2805. }
  2806. #u75440 .text {
  2807. position:absolute;
  2808. align-self:center;
  2809. padding:2px 2px 2px 0px;
  2810. box-sizing:border-box;
  2811. width:100%;
  2812. }
  2813. #u75440_text {
  2814. border-width:0px;
  2815. word-wrap:break-word;
  2816. text-transform:none;
  2817. visibility:hidden;
  2818. }
  2819. #u75441_img {
  2820. border-width:0px;
  2821. position:absolute;
  2822. left:0px;
  2823. top:0px;
  2824. width:158px;
  2825. height:36px;
  2826. }
  2827. #u75441 {
  2828. border-width:0px;
  2829. position:absolute;
  2830. left:592px;
  2831. top:184px;
  2832. width:158px;
  2833. height:36px;
  2834. display:flex;
  2835. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2836. font-weight:400;
  2837. font-style:normal;
  2838. font-size:12px;
  2839. }
  2840. #u75441 .text {
  2841. position:absolute;
  2842. align-self:center;
  2843. padding:2px 2px 2px 0px;
  2844. box-sizing:border-box;
  2845. width:100%;
  2846. }
  2847. #u75441_text {
  2848. border-width:0px;
  2849. word-wrap:break-word;
  2850. text-transform:none;
  2851. visibility:hidden;
  2852. }
  2853. #u75442_img {
  2854. border-width:0px;
  2855. position:absolute;
  2856. left:0px;
  2857. top:0px;
  2858. width:155px;
  2859. height:36px;
  2860. }
  2861. #u75442 {
  2862. border-width:0px;
  2863. position:absolute;
  2864. left:750px;
  2865. top:184px;
  2866. width:155px;
  2867. height:36px;
  2868. display:flex;
  2869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2870. font-weight:400;
  2871. font-style:normal;
  2872. font-size:12px;
  2873. color:#1890FF;
  2874. }
  2875. #u75442 .text {
  2876. position:absolute;
  2877. align-self:center;
  2878. padding:2px 2px 2px 0px;
  2879. box-sizing:border-box;
  2880. width:100%;
  2881. }
  2882. #u75442_text {
  2883. border-width:0px;
  2884. word-wrap:break-word;
  2885. text-transform:none;
  2886. visibility:hidden;
  2887. }
  2888. #u75443_img {
  2889. border-width:0px;
  2890. position:absolute;
  2891. left:0px;
  2892. top:0px;
  2893. width:138px;
  2894. height:35px;
  2895. }
  2896. #u75443 {
  2897. border-width:0px;
  2898. position:absolute;
  2899. left:0px;
  2900. top:220px;
  2901. width:138px;
  2902. height:35px;
  2903. display:flex;
  2904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2905. font-weight:400;
  2906. font-style:normal;
  2907. font-size:12px;
  2908. }
  2909. #u75443 .text {
  2910. position:absolute;
  2911. align-self:center;
  2912. padding:2px 2px 2px 0px;
  2913. box-sizing:border-box;
  2914. width:100%;
  2915. }
  2916. #u75443_text {
  2917. border-width:0px;
  2918. word-wrap:break-word;
  2919. text-transform:none;
  2920. visibility:hidden;
  2921. }
  2922. #u75444_img {
  2923. border-width:0px;
  2924. position:absolute;
  2925. left:0px;
  2926. top:0px;
  2927. width:158px;
  2928. height:35px;
  2929. }
  2930. #u75444 {
  2931. border-width:0px;
  2932. position:absolute;
  2933. left:138px;
  2934. top:220px;
  2935. width:158px;
  2936. height:35px;
  2937. display:flex;
  2938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2939. font-weight:400;
  2940. font-style:normal;
  2941. font-size:12px;
  2942. }
  2943. #u75444 .text {
  2944. position:absolute;
  2945. align-self:center;
  2946. padding:2px 2px 2px 0px;
  2947. box-sizing:border-box;
  2948. width:100%;
  2949. }
  2950. #u75444_text {
  2951. border-width:0px;
  2952. word-wrap:break-word;
  2953. text-transform:none;
  2954. visibility:hidden;
  2955. }
  2956. #u75445_img {
  2957. border-width:0px;
  2958. position:absolute;
  2959. left:0px;
  2960. top:0px;
  2961. width:158px;
  2962. height:35px;
  2963. }
  2964. #u75445 {
  2965. border-width:0px;
  2966. position:absolute;
  2967. left:296px;
  2968. top:220px;
  2969. width:158px;
  2970. height:35px;
  2971. display:flex;
  2972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2973. font-weight:400;
  2974. font-style:normal;
  2975. font-size:12px;
  2976. }
  2977. #u75445 .text {
  2978. position:absolute;
  2979. align-self:center;
  2980. padding:2px 2px 2px 0px;
  2981. box-sizing:border-box;
  2982. width:100%;
  2983. }
  2984. #u75445_text {
  2985. border-width:0px;
  2986. word-wrap:break-word;
  2987. text-transform:none;
  2988. visibility:hidden;
  2989. }
  2990. #u75446_img {
  2991. border-width:0px;
  2992. position:absolute;
  2993. left:0px;
  2994. top:0px;
  2995. width:138px;
  2996. height:35px;
  2997. }
  2998. #u75446 {
  2999. border-width:0px;
  3000. position:absolute;
  3001. left:454px;
  3002. top:220px;
  3003. width:138px;
  3004. height:35px;
  3005. display:flex;
  3006. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3007. font-weight:400;
  3008. font-style:normal;
  3009. font-size:12px;
  3010. }
  3011. #u75446 .text {
  3012. position:absolute;
  3013. align-self:center;
  3014. padding:2px 2px 2px 0px;
  3015. box-sizing:border-box;
  3016. width:100%;
  3017. }
  3018. #u75446_text {
  3019. border-width:0px;
  3020. word-wrap:break-word;
  3021. text-transform:none;
  3022. visibility:hidden;
  3023. }
  3024. #u75447_img {
  3025. border-width:0px;
  3026. position:absolute;
  3027. left:0px;
  3028. top:0px;
  3029. width:158px;
  3030. height:35px;
  3031. }
  3032. #u75447 {
  3033. border-width:0px;
  3034. position:absolute;
  3035. left:592px;
  3036. top:220px;
  3037. width:158px;
  3038. height:35px;
  3039. display:flex;
  3040. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3041. font-weight:400;
  3042. font-style:normal;
  3043. font-size:12px;
  3044. }
  3045. #u75447 .text {
  3046. position:absolute;
  3047. align-self:center;
  3048. padding:2px 2px 2px 0px;
  3049. box-sizing:border-box;
  3050. width:100%;
  3051. }
  3052. #u75447_text {
  3053. border-width:0px;
  3054. word-wrap:break-word;
  3055. text-transform:none;
  3056. visibility:hidden;
  3057. }
  3058. #u75448_img {
  3059. border-width:0px;
  3060. position:absolute;
  3061. left:0px;
  3062. top:0px;
  3063. width:155px;
  3064. height:35px;
  3065. }
  3066. #u75448 {
  3067. border-width:0px;
  3068. position:absolute;
  3069. left:750px;
  3070. top:220px;
  3071. width:155px;
  3072. height:35px;
  3073. display:flex;
  3074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3075. font-weight:400;
  3076. font-style:normal;
  3077. font-size:12px;
  3078. color:#1890FF;
  3079. }
  3080. #u75448 .text {
  3081. position:absolute;
  3082. align-self:center;
  3083. padding:2px 2px 2px 0px;
  3084. box-sizing:border-box;
  3085. width:100%;
  3086. }
  3087. #u75448_text {
  3088. border-width:0px;
  3089. word-wrap:break-word;
  3090. text-transform:none;
  3091. visibility:hidden;
  3092. }
  3093. #u75449_img {
  3094. border-width:0px;
  3095. position:absolute;
  3096. left:0px;
  3097. top:0px;
  3098. width:138px;
  3099. height:35px;
  3100. }
  3101. #u75449 {
  3102. border-width:0px;
  3103. position:absolute;
  3104. left:0px;
  3105. top:255px;
  3106. width:138px;
  3107. height:35px;
  3108. display:flex;
  3109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3110. font-weight:400;
  3111. font-style:normal;
  3112. font-size:12px;
  3113. }
  3114. #u75449 .text {
  3115. position:absolute;
  3116. align-self:center;
  3117. padding:2px 2px 2px 0px;
  3118. box-sizing:border-box;
  3119. width:100%;
  3120. }
  3121. #u75449_text {
  3122. border-width:0px;
  3123. word-wrap:break-word;
  3124. text-transform:none;
  3125. visibility:hidden;
  3126. }
  3127. #u75450_img {
  3128. border-width:0px;
  3129. position:absolute;
  3130. left:0px;
  3131. top:0px;
  3132. width:158px;
  3133. height:35px;
  3134. }
  3135. #u75450 {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:138px;
  3139. top:255px;
  3140. width:158px;
  3141. height:35px;
  3142. display:flex;
  3143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3144. font-weight:400;
  3145. font-style:normal;
  3146. font-size:12px;
  3147. }
  3148. #u75450 .text {
  3149. position:absolute;
  3150. align-self:center;
  3151. padding:2px 2px 2px 0px;
  3152. box-sizing:border-box;
  3153. width:100%;
  3154. }
  3155. #u75450_text {
  3156. border-width:0px;
  3157. word-wrap:break-word;
  3158. text-transform:none;
  3159. visibility:hidden;
  3160. }
  3161. #u75451_img {
  3162. border-width:0px;
  3163. position:absolute;
  3164. left:0px;
  3165. top:0px;
  3166. width:158px;
  3167. height:35px;
  3168. }
  3169. #u75451 {
  3170. border-width:0px;
  3171. position:absolute;
  3172. left:296px;
  3173. top:255px;
  3174. width:158px;
  3175. height:35px;
  3176. display:flex;
  3177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3178. font-weight:400;
  3179. font-style:normal;
  3180. font-size:12px;
  3181. }
  3182. #u75451 .text {
  3183. position:absolute;
  3184. align-self:center;
  3185. padding:2px 2px 2px 0px;
  3186. box-sizing:border-box;
  3187. width:100%;
  3188. }
  3189. #u75451_text {
  3190. border-width:0px;
  3191. word-wrap:break-word;
  3192. text-transform:none;
  3193. visibility:hidden;
  3194. }
  3195. #u75452_img {
  3196. border-width:0px;
  3197. position:absolute;
  3198. left:0px;
  3199. top:0px;
  3200. width:138px;
  3201. height:35px;
  3202. }
  3203. #u75452 {
  3204. border-width:0px;
  3205. position:absolute;
  3206. left:454px;
  3207. top:255px;
  3208. width:138px;
  3209. height:35px;
  3210. display:flex;
  3211. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3212. font-weight:400;
  3213. font-style:normal;
  3214. font-size:12px;
  3215. }
  3216. #u75452 .text {
  3217. position:absolute;
  3218. align-self:center;
  3219. padding:2px 2px 2px 0px;
  3220. box-sizing:border-box;
  3221. width:100%;
  3222. }
  3223. #u75452_text {
  3224. border-width:0px;
  3225. word-wrap:break-word;
  3226. text-transform:none;
  3227. visibility:hidden;
  3228. }
  3229. #u75453_img {
  3230. border-width:0px;
  3231. position:absolute;
  3232. left:0px;
  3233. top:0px;
  3234. width:158px;
  3235. height:35px;
  3236. }
  3237. #u75453 {
  3238. border-width:0px;
  3239. position:absolute;
  3240. left:592px;
  3241. top:255px;
  3242. width:158px;
  3243. height:35px;
  3244. display:flex;
  3245. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3246. font-weight:400;
  3247. font-style:normal;
  3248. font-size:12px;
  3249. }
  3250. #u75453 .text {
  3251. position:absolute;
  3252. align-self:center;
  3253. padding:2px 2px 2px 0px;
  3254. box-sizing:border-box;
  3255. width:100%;
  3256. }
  3257. #u75453_text {
  3258. border-width:0px;
  3259. word-wrap:break-word;
  3260. text-transform:none;
  3261. visibility:hidden;
  3262. }
  3263. #u75454_img {
  3264. border-width:0px;
  3265. position:absolute;
  3266. left:0px;
  3267. top:0px;
  3268. width:155px;
  3269. height:35px;
  3270. }
  3271. #u75454 {
  3272. border-width:0px;
  3273. position:absolute;
  3274. left:750px;
  3275. top:255px;
  3276. width:155px;
  3277. height:35px;
  3278. display:flex;
  3279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3280. font-weight:400;
  3281. font-style:normal;
  3282. font-size:12px;
  3283. color:#1890FF;
  3284. }
  3285. #u75454 .text {
  3286. position:absolute;
  3287. align-self:center;
  3288. padding:2px 2px 2px 0px;
  3289. box-sizing:border-box;
  3290. width:100%;
  3291. }
  3292. #u75454_text {
  3293. border-width:0px;
  3294. word-wrap:break-word;
  3295. text-transform:none;
  3296. visibility:hidden;
  3297. }
  3298. #u75455_img {
  3299. border-width:0px;
  3300. position:absolute;
  3301. left:0px;
  3302. top:0px;
  3303. width:138px;
  3304. height:35px;
  3305. }
  3306. #u75455 {
  3307. border-width:0px;
  3308. position:absolute;
  3309. left:0px;
  3310. top:290px;
  3311. width:138px;
  3312. height:35px;
  3313. display:flex;
  3314. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3315. font-weight:400;
  3316. font-style:normal;
  3317. font-size:12px;
  3318. color:#606266;
  3319. }
  3320. #u75455 .text {
  3321. position:absolute;
  3322. align-self:center;
  3323. padding:2px 2px 2px 0px;
  3324. box-sizing:border-box;
  3325. width:100%;
  3326. }
  3327. #u75455_text {
  3328. border-width:0px;
  3329. word-wrap:break-word;
  3330. text-transform:none;
  3331. visibility:hidden;
  3332. }
  3333. #u75456_img {
  3334. border-width:0px;
  3335. position:absolute;
  3336. left:0px;
  3337. top:0px;
  3338. width:158px;
  3339. height:35px;
  3340. }
  3341. #u75456 {
  3342. border-width:0px;
  3343. position:absolute;
  3344. left:138px;
  3345. top:290px;
  3346. width:158px;
  3347. height:35px;
  3348. display:flex;
  3349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3350. font-weight:400;
  3351. font-style:normal;
  3352. font-size:12px;
  3353. }
  3354. #u75456 .text {
  3355. position:absolute;
  3356. align-self:center;
  3357. padding:2px 2px 2px 0px;
  3358. box-sizing:border-box;
  3359. width:100%;
  3360. }
  3361. #u75456_text {
  3362. border-width:0px;
  3363. word-wrap:break-word;
  3364. text-transform:none;
  3365. visibility:hidden;
  3366. }
  3367. #u75457_img {
  3368. border-width:0px;
  3369. position:absolute;
  3370. left:0px;
  3371. top:0px;
  3372. width:158px;
  3373. height:35px;
  3374. }
  3375. #u75457 {
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:296px;
  3379. top:290px;
  3380. width:158px;
  3381. height:35px;
  3382. display:flex;
  3383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3384. font-weight:400;
  3385. font-style:normal;
  3386. font-size:12px;
  3387. }
  3388. #u75457 .text {
  3389. position:absolute;
  3390. align-self:center;
  3391. padding:2px 2px 2px 0px;
  3392. box-sizing:border-box;
  3393. width:100%;
  3394. }
  3395. #u75457_text {
  3396. border-width:0px;
  3397. word-wrap:break-word;
  3398. text-transform:none;
  3399. visibility:hidden;
  3400. }
  3401. #u75458_img {
  3402. border-width:0px;
  3403. position:absolute;
  3404. left:0px;
  3405. top:0px;
  3406. width:138px;
  3407. height:35px;
  3408. }
  3409. #u75458 {
  3410. border-width:0px;
  3411. position:absolute;
  3412. left:454px;
  3413. top:290px;
  3414. width:138px;
  3415. height:35px;
  3416. display:flex;
  3417. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3418. font-weight:400;
  3419. font-style:normal;
  3420. font-size:12px;
  3421. color:#606266;
  3422. }
  3423. #u75458 .text {
  3424. position:absolute;
  3425. align-self:center;
  3426. padding:2px 2px 2px 0px;
  3427. box-sizing:border-box;
  3428. width:100%;
  3429. }
  3430. #u75458_text {
  3431. border-width:0px;
  3432. word-wrap:break-word;
  3433. text-transform:none;
  3434. visibility:hidden;
  3435. }
  3436. #u75459_img {
  3437. border-width:0px;
  3438. position:absolute;
  3439. left:0px;
  3440. top:0px;
  3441. width:158px;
  3442. height:35px;
  3443. }
  3444. #u75459 {
  3445. border-width:0px;
  3446. position:absolute;
  3447. left:592px;
  3448. top:290px;
  3449. width:158px;
  3450. height:35px;
  3451. display:flex;
  3452. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3453. font-weight:400;
  3454. font-style:normal;
  3455. font-size:12px;
  3456. color:#606266;
  3457. }
  3458. #u75459 .text {
  3459. position:absolute;
  3460. align-self:center;
  3461. padding:2px 2px 2px 0px;
  3462. box-sizing:border-box;
  3463. width:100%;
  3464. }
  3465. #u75459_text {
  3466. border-width:0px;
  3467. word-wrap:break-word;
  3468. text-transform:none;
  3469. visibility:hidden;
  3470. }
  3471. #u75460_img {
  3472. border-width:0px;
  3473. position:absolute;
  3474. left:0px;
  3475. top:0px;
  3476. width:155px;
  3477. height:35px;
  3478. }
  3479. #u75460 {
  3480. border-width:0px;
  3481. position:absolute;
  3482. left:750px;
  3483. top:290px;
  3484. width:155px;
  3485. height:35px;
  3486. display:flex;
  3487. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3488. font-weight:400;
  3489. font-style:normal;
  3490. font-size:12px;
  3491. color:#606266;
  3492. }
  3493. #u75460 .text {
  3494. position:absolute;
  3495. align-self:center;
  3496. padding:2px 2px 2px 0px;
  3497. box-sizing:border-box;
  3498. width:100%;
  3499. }
  3500. #u75460_text {
  3501. border-width:0px;
  3502. word-wrap:break-word;
  3503. text-transform:none;
  3504. visibility:hidden;
  3505. }
  3506. #u75461_img {
  3507. border-width:0px;
  3508. position:absolute;
  3509. left:0px;
  3510. top:0px;
  3511. width:138px;
  3512. height:35px;
  3513. }
  3514. #u75461 {
  3515. border-width:0px;
  3516. position:absolute;
  3517. left:0px;
  3518. top:325px;
  3519. width:138px;
  3520. height:35px;
  3521. display:flex;
  3522. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3523. font-weight:400;
  3524. font-style:normal;
  3525. font-size:12px;
  3526. color:#606266;
  3527. }
  3528. #u75461 .text {
  3529. position:absolute;
  3530. align-self:center;
  3531. padding:2px 2px 2px 0px;
  3532. box-sizing:border-box;
  3533. width:100%;
  3534. }
  3535. #u75461_text {
  3536. border-width:0px;
  3537. word-wrap:break-word;
  3538. text-transform:none;
  3539. visibility:hidden;
  3540. }
  3541. #u75462_img {
  3542. border-width:0px;
  3543. position:absolute;
  3544. left:0px;
  3545. top:0px;
  3546. width:158px;
  3547. height:35px;
  3548. }
  3549. #u75462 {
  3550. border-width:0px;
  3551. position:absolute;
  3552. left:138px;
  3553. top:325px;
  3554. width:158px;
  3555. height:35px;
  3556. display:flex;
  3557. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3558. font-weight:400;
  3559. font-style:normal;
  3560. font-size:12px;
  3561. color:#606266;
  3562. }
  3563. #u75462 .text {
  3564. position:absolute;
  3565. align-self:center;
  3566. padding:2px 2px 2px 0px;
  3567. box-sizing:border-box;
  3568. width:100%;
  3569. }
  3570. #u75462_text {
  3571. border-width:0px;
  3572. word-wrap:break-word;
  3573. text-transform:none;
  3574. visibility:hidden;
  3575. }
  3576. #u75463_img {
  3577. border-width:0px;
  3578. position:absolute;
  3579. left:0px;
  3580. top:0px;
  3581. width:158px;
  3582. height:35px;
  3583. }
  3584. #u75463 {
  3585. border-width:0px;
  3586. position:absolute;
  3587. left:296px;
  3588. top:325px;
  3589. width:158px;
  3590. height:35px;
  3591. display:flex;
  3592. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3593. font-weight:400;
  3594. font-style:normal;
  3595. font-size:12px;
  3596. color:#606266;
  3597. }
  3598. #u75463 .text {
  3599. position:absolute;
  3600. align-self:center;
  3601. padding:2px 2px 2px 0px;
  3602. box-sizing:border-box;
  3603. width:100%;
  3604. }
  3605. #u75463_text {
  3606. border-width:0px;
  3607. word-wrap:break-word;
  3608. text-transform:none;
  3609. visibility:hidden;
  3610. }
  3611. #u75464_img {
  3612. border-width:0px;
  3613. position:absolute;
  3614. left:0px;
  3615. top:0px;
  3616. width:138px;
  3617. height:35px;
  3618. }
  3619. #u75464 {
  3620. border-width:0px;
  3621. position:absolute;
  3622. left:454px;
  3623. top:325px;
  3624. width:138px;
  3625. height:35px;
  3626. display:flex;
  3627. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3628. font-weight:400;
  3629. font-style:normal;
  3630. font-size:12px;
  3631. color:#606266;
  3632. }
  3633. #u75464 .text {
  3634. position:absolute;
  3635. align-self:center;
  3636. padding:2px 2px 2px 0px;
  3637. box-sizing:border-box;
  3638. width:100%;
  3639. }
  3640. #u75464_text {
  3641. border-width:0px;
  3642. word-wrap:break-word;
  3643. text-transform:none;
  3644. visibility:hidden;
  3645. }
  3646. #u75465_img {
  3647. border-width:0px;
  3648. position:absolute;
  3649. left:0px;
  3650. top:0px;
  3651. width:158px;
  3652. height:35px;
  3653. }
  3654. #u75465 {
  3655. border-width:0px;
  3656. position:absolute;
  3657. left:592px;
  3658. top:325px;
  3659. width:158px;
  3660. height:35px;
  3661. display:flex;
  3662. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3663. font-weight:400;
  3664. font-style:normal;
  3665. font-size:12px;
  3666. color:#606266;
  3667. }
  3668. #u75465 .text {
  3669. position:absolute;
  3670. align-self:center;
  3671. padding:2px 2px 2px 0px;
  3672. box-sizing:border-box;
  3673. width:100%;
  3674. }
  3675. #u75465_text {
  3676. border-width:0px;
  3677. word-wrap:break-word;
  3678. text-transform:none;
  3679. visibility:hidden;
  3680. }
  3681. #u75466_img {
  3682. border-width:0px;
  3683. position:absolute;
  3684. left:0px;
  3685. top:0px;
  3686. width:155px;
  3687. height:35px;
  3688. }
  3689. #u75466 {
  3690. border-width:0px;
  3691. position:absolute;
  3692. left:750px;
  3693. top:325px;
  3694. width:155px;
  3695. height:35px;
  3696. display:flex;
  3697. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3698. font-weight:400;
  3699. font-style:normal;
  3700. font-size:12px;
  3701. color:#606266;
  3702. }
  3703. #u75466 .text {
  3704. position:absolute;
  3705. align-self:center;
  3706. padding:2px 2px 2px 0px;
  3707. box-sizing:border-box;
  3708. width:100%;
  3709. }
  3710. #u75466_text {
  3711. border-width:0px;
  3712. word-wrap:break-word;
  3713. text-transform:none;
  3714. visibility:hidden;
  3715. }
  3716. #u75467_img {
  3717. border-width:0px;
  3718. position:absolute;
  3719. left:0px;
  3720. top:0px;
  3721. width:138px;
  3722. height:35px;
  3723. }
  3724. #u75467 {
  3725. border-width:0px;
  3726. position:absolute;
  3727. left:0px;
  3728. top:360px;
  3729. width:138px;
  3730. height:35px;
  3731. display:flex;
  3732. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3733. font-weight:400;
  3734. font-style:normal;
  3735. font-size:12px;
  3736. color:#606266;
  3737. }
  3738. #u75467 .text {
  3739. position:absolute;
  3740. align-self:center;
  3741. padding:2px 2px 2px 0px;
  3742. box-sizing:border-box;
  3743. width:100%;
  3744. }
  3745. #u75467_text {
  3746. border-width:0px;
  3747. word-wrap:break-word;
  3748. text-transform:none;
  3749. visibility:hidden;
  3750. }
  3751. #u75468_img {
  3752. border-width:0px;
  3753. position:absolute;
  3754. left:0px;
  3755. top:0px;
  3756. width:158px;
  3757. height:35px;
  3758. }
  3759. #u75468 {
  3760. border-width:0px;
  3761. position:absolute;
  3762. left:138px;
  3763. top:360px;
  3764. width:158px;
  3765. height:35px;
  3766. display:flex;
  3767. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3768. font-weight:400;
  3769. font-style:normal;
  3770. font-size:12px;
  3771. color:#606266;
  3772. }
  3773. #u75468 .text {
  3774. position:absolute;
  3775. align-self:center;
  3776. padding:2px 2px 2px 0px;
  3777. box-sizing:border-box;
  3778. width:100%;
  3779. }
  3780. #u75468_text {
  3781. border-width:0px;
  3782. word-wrap:break-word;
  3783. text-transform:none;
  3784. visibility:hidden;
  3785. }
  3786. #u75469_img {
  3787. border-width:0px;
  3788. position:absolute;
  3789. left:0px;
  3790. top:0px;
  3791. width:158px;
  3792. height:35px;
  3793. }
  3794. #u75469 {
  3795. border-width:0px;
  3796. position:absolute;
  3797. left:296px;
  3798. top:360px;
  3799. width:158px;
  3800. height:35px;
  3801. display:flex;
  3802. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3803. font-weight:400;
  3804. font-style:normal;
  3805. font-size:12px;
  3806. color:#606266;
  3807. }
  3808. #u75469 .text {
  3809. position:absolute;
  3810. align-self:center;
  3811. padding:2px 2px 2px 0px;
  3812. box-sizing:border-box;
  3813. width:100%;
  3814. }
  3815. #u75469_text {
  3816. border-width:0px;
  3817. word-wrap:break-word;
  3818. text-transform:none;
  3819. visibility:hidden;
  3820. }
  3821. #u75470_img {
  3822. border-width:0px;
  3823. position:absolute;
  3824. left:0px;
  3825. top:0px;
  3826. width:138px;
  3827. height:35px;
  3828. }
  3829. #u75470 {
  3830. border-width:0px;
  3831. position:absolute;
  3832. left:454px;
  3833. top:360px;
  3834. width:138px;
  3835. height:35px;
  3836. display:flex;
  3837. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3838. font-weight:400;
  3839. font-style:normal;
  3840. font-size:12px;
  3841. color:#606266;
  3842. }
  3843. #u75470 .text {
  3844. position:absolute;
  3845. align-self:center;
  3846. padding:2px 2px 2px 0px;
  3847. box-sizing:border-box;
  3848. width:100%;
  3849. }
  3850. #u75470_text {
  3851. border-width:0px;
  3852. word-wrap:break-word;
  3853. text-transform:none;
  3854. visibility:hidden;
  3855. }
  3856. #u75471_img {
  3857. border-width:0px;
  3858. position:absolute;
  3859. left:0px;
  3860. top:0px;
  3861. width:158px;
  3862. height:35px;
  3863. }
  3864. #u75471 {
  3865. border-width:0px;
  3866. position:absolute;
  3867. left:592px;
  3868. top:360px;
  3869. width:158px;
  3870. height:35px;
  3871. display:flex;
  3872. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3873. font-weight:400;
  3874. font-style:normal;
  3875. font-size:12px;
  3876. color:#606266;
  3877. }
  3878. #u75471 .text {
  3879. position:absolute;
  3880. align-self:center;
  3881. padding:2px 2px 2px 0px;
  3882. box-sizing:border-box;
  3883. width:100%;
  3884. }
  3885. #u75471_text {
  3886. border-width:0px;
  3887. word-wrap:break-word;
  3888. text-transform:none;
  3889. visibility:hidden;
  3890. }
  3891. #u75472_img {
  3892. border-width:0px;
  3893. position:absolute;
  3894. left:0px;
  3895. top:0px;
  3896. width:155px;
  3897. height:35px;
  3898. }
  3899. #u75472 {
  3900. border-width:0px;
  3901. position:absolute;
  3902. left:750px;
  3903. top:360px;
  3904. width:155px;
  3905. height:35px;
  3906. display:flex;
  3907. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3908. font-weight:400;
  3909. font-style:normal;
  3910. font-size:12px;
  3911. color:#606266;
  3912. }
  3913. #u75472 .text {
  3914. position:absolute;
  3915. align-self:center;
  3916. padding:2px 2px 2px 0px;
  3917. box-sizing:border-box;
  3918. width:100%;
  3919. }
  3920. #u75472_text {
  3921. border-width:0px;
  3922. word-wrap:break-word;
  3923. text-transform:none;
  3924. visibility:hidden;
  3925. }
  3926. #u75473_img {
  3927. border-width:0px;
  3928. position:absolute;
  3929. left:0px;
  3930. top:0px;
  3931. width:138px;
  3932. height:35px;
  3933. }
  3934. #u75473 {
  3935. border-width:0px;
  3936. position:absolute;
  3937. left:0px;
  3938. top:395px;
  3939. width:138px;
  3940. height:35px;
  3941. display:flex;
  3942. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3943. font-weight:400;
  3944. font-style:normal;
  3945. font-size:12px;
  3946. color:#606266;
  3947. }
  3948. #u75473 .text {
  3949. position:absolute;
  3950. align-self:center;
  3951. padding:2px 2px 2px 0px;
  3952. box-sizing:border-box;
  3953. width:100%;
  3954. }
  3955. #u75473_text {
  3956. border-width:0px;
  3957. word-wrap:break-word;
  3958. text-transform:none;
  3959. visibility:hidden;
  3960. }
  3961. #u75474_img {
  3962. border-width:0px;
  3963. position:absolute;
  3964. left:0px;
  3965. top:0px;
  3966. width:158px;
  3967. height:35px;
  3968. }
  3969. #u75474 {
  3970. border-width:0px;
  3971. position:absolute;
  3972. left:138px;
  3973. top:395px;
  3974. width:158px;
  3975. height:35px;
  3976. display:flex;
  3977. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3978. font-weight:400;
  3979. font-style:normal;
  3980. font-size:12px;
  3981. color:#606266;
  3982. }
  3983. #u75474 .text {
  3984. position:absolute;
  3985. align-self:center;
  3986. padding:2px 2px 2px 0px;
  3987. box-sizing:border-box;
  3988. width:100%;
  3989. }
  3990. #u75474_text {
  3991. border-width:0px;
  3992. word-wrap:break-word;
  3993. text-transform:none;
  3994. visibility:hidden;
  3995. }
  3996. #u75475_img {
  3997. border-width:0px;
  3998. position:absolute;
  3999. left:0px;
  4000. top:0px;
  4001. width:158px;
  4002. height:35px;
  4003. }
  4004. #u75475 {
  4005. border-width:0px;
  4006. position:absolute;
  4007. left:296px;
  4008. top:395px;
  4009. width:158px;
  4010. height:35px;
  4011. display:flex;
  4012. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4013. font-weight:400;
  4014. font-style:normal;
  4015. font-size:12px;
  4016. color:#606266;
  4017. }
  4018. #u75475 .text {
  4019. position:absolute;
  4020. align-self:center;
  4021. padding:2px 2px 2px 0px;
  4022. box-sizing:border-box;
  4023. width:100%;
  4024. }
  4025. #u75475_text {
  4026. border-width:0px;
  4027. word-wrap:break-word;
  4028. text-transform:none;
  4029. visibility:hidden;
  4030. }
  4031. #u75476_img {
  4032. border-width:0px;
  4033. position:absolute;
  4034. left:0px;
  4035. top:0px;
  4036. width:138px;
  4037. height:35px;
  4038. }
  4039. #u75476 {
  4040. border-width:0px;
  4041. position:absolute;
  4042. left:454px;
  4043. top:395px;
  4044. width:138px;
  4045. height:35px;
  4046. display:flex;
  4047. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4048. font-weight:400;
  4049. font-style:normal;
  4050. font-size:12px;
  4051. color:#606266;
  4052. }
  4053. #u75476 .text {
  4054. position:absolute;
  4055. align-self:center;
  4056. padding:2px 2px 2px 0px;
  4057. box-sizing:border-box;
  4058. width:100%;
  4059. }
  4060. #u75476_text {
  4061. border-width:0px;
  4062. word-wrap:break-word;
  4063. text-transform:none;
  4064. visibility:hidden;
  4065. }
  4066. #u75477_img {
  4067. border-width:0px;
  4068. position:absolute;
  4069. left:0px;
  4070. top:0px;
  4071. width:158px;
  4072. height:35px;
  4073. }
  4074. #u75477 {
  4075. border-width:0px;
  4076. position:absolute;
  4077. left:592px;
  4078. top:395px;
  4079. width:158px;
  4080. height:35px;
  4081. display:flex;
  4082. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4083. font-weight:400;
  4084. font-style:normal;
  4085. font-size:12px;
  4086. color:#606266;
  4087. }
  4088. #u75477 .text {
  4089. position:absolute;
  4090. align-self:center;
  4091. padding:2px 2px 2px 0px;
  4092. box-sizing:border-box;
  4093. width:100%;
  4094. }
  4095. #u75477_text {
  4096. border-width:0px;
  4097. word-wrap:break-word;
  4098. text-transform:none;
  4099. visibility:hidden;
  4100. }
  4101. #u75478_img {
  4102. border-width:0px;
  4103. position:absolute;
  4104. left:0px;
  4105. top:0px;
  4106. width:155px;
  4107. height:35px;
  4108. }
  4109. #u75478 {
  4110. border-width:0px;
  4111. position:absolute;
  4112. left:750px;
  4113. top:395px;
  4114. width:155px;
  4115. height:35px;
  4116. display:flex;
  4117. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4118. font-weight:400;
  4119. font-style:normal;
  4120. font-size:12px;
  4121. color:#606266;
  4122. }
  4123. #u75478 .text {
  4124. position:absolute;
  4125. align-self:center;
  4126. padding:2px 2px 2px 0px;
  4127. box-sizing:border-box;
  4128. width:100%;
  4129. }
  4130. #u75478_text {
  4131. border-width:0px;
  4132. word-wrap:break-word;
  4133. text-transform:none;
  4134. visibility:hidden;
  4135. }
  4136. #u75479_img {
  4137. border-width:0px;
  4138. position:absolute;
  4139. left:0px;
  4140. top:0px;
  4141. width:138px;
  4142. height:35px;
  4143. }
  4144. #u75479 {
  4145. border-width:0px;
  4146. position:absolute;
  4147. left:0px;
  4148. top:430px;
  4149. width:138px;
  4150. height:35px;
  4151. display:flex;
  4152. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4153. font-weight:400;
  4154. font-style:normal;
  4155. font-size:12px;
  4156. color:#606266;
  4157. }
  4158. #u75479 .text {
  4159. position:absolute;
  4160. align-self:center;
  4161. padding:2px 2px 2px 0px;
  4162. box-sizing:border-box;
  4163. width:100%;
  4164. }
  4165. #u75479_text {
  4166. border-width:0px;
  4167. word-wrap:break-word;
  4168. text-transform:none;
  4169. visibility:hidden;
  4170. }
  4171. #u75480_img {
  4172. border-width:0px;
  4173. position:absolute;
  4174. left:0px;
  4175. top:0px;
  4176. width:158px;
  4177. height:35px;
  4178. }
  4179. #u75480 {
  4180. border-width:0px;
  4181. position:absolute;
  4182. left:138px;
  4183. top:430px;
  4184. width:158px;
  4185. height:35px;
  4186. display:flex;
  4187. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4188. font-weight:400;
  4189. font-style:normal;
  4190. font-size:12px;
  4191. color:#606266;
  4192. }
  4193. #u75480 .text {
  4194. position:absolute;
  4195. align-self:center;
  4196. padding:2px 2px 2px 0px;
  4197. box-sizing:border-box;
  4198. width:100%;
  4199. }
  4200. #u75480_text {
  4201. border-width:0px;
  4202. word-wrap:break-word;
  4203. text-transform:none;
  4204. visibility:hidden;
  4205. }
  4206. #u75481_img {
  4207. border-width:0px;
  4208. position:absolute;
  4209. left:0px;
  4210. top:0px;
  4211. width:158px;
  4212. height:35px;
  4213. }
  4214. #u75481 {
  4215. border-width:0px;
  4216. position:absolute;
  4217. left:296px;
  4218. top:430px;
  4219. width:158px;
  4220. height:35px;
  4221. display:flex;
  4222. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4223. font-weight:400;
  4224. font-style:normal;
  4225. font-size:12px;
  4226. color:#606266;
  4227. }
  4228. #u75481 .text {
  4229. position:absolute;
  4230. align-self:center;
  4231. padding:2px 2px 2px 0px;
  4232. box-sizing:border-box;
  4233. width:100%;
  4234. }
  4235. #u75481_text {
  4236. border-width:0px;
  4237. word-wrap:break-word;
  4238. text-transform:none;
  4239. visibility:hidden;
  4240. }
  4241. #u75482_img {
  4242. border-width:0px;
  4243. position:absolute;
  4244. left:0px;
  4245. top:0px;
  4246. width:138px;
  4247. height:35px;
  4248. }
  4249. #u75482 {
  4250. border-width:0px;
  4251. position:absolute;
  4252. left:454px;
  4253. top:430px;
  4254. width:138px;
  4255. height:35px;
  4256. display:flex;
  4257. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4258. font-weight:400;
  4259. font-style:normal;
  4260. font-size:12px;
  4261. color:#606266;
  4262. }
  4263. #u75482 .text {
  4264. position:absolute;
  4265. align-self:center;
  4266. padding:2px 2px 2px 0px;
  4267. box-sizing:border-box;
  4268. width:100%;
  4269. }
  4270. #u75482_text {
  4271. border-width:0px;
  4272. word-wrap:break-word;
  4273. text-transform:none;
  4274. visibility:hidden;
  4275. }
  4276. #u75483_img {
  4277. border-width:0px;
  4278. position:absolute;
  4279. left:0px;
  4280. top:0px;
  4281. width:158px;
  4282. height:35px;
  4283. }
  4284. #u75483 {
  4285. border-width:0px;
  4286. position:absolute;
  4287. left:592px;
  4288. top:430px;
  4289. width:158px;
  4290. height:35px;
  4291. display:flex;
  4292. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4293. font-weight:400;
  4294. font-style:normal;
  4295. font-size:12px;
  4296. color:#606266;
  4297. }
  4298. #u75483 .text {
  4299. position:absolute;
  4300. align-self:center;
  4301. padding:2px 2px 2px 0px;
  4302. box-sizing:border-box;
  4303. width:100%;
  4304. }
  4305. #u75483_text {
  4306. border-width:0px;
  4307. word-wrap:break-word;
  4308. text-transform:none;
  4309. visibility:hidden;
  4310. }
  4311. #u75484_img {
  4312. border-width:0px;
  4313. position:absolute;
  4314. left:0px;
  4315. top:0px;
  4316. width:155px;
  4317. height:35px;
  4318. }
  4319. #u75484 {
  4320. border-width:0px;
  4321. position:absolute;
  4322. left:750px;
  4323. top:430px;
  4324. width:155px;
  4325. height:35px;
  4326. display:flex;
  4327. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4328. font-weight:400;
  4329. font-style:normal;
  4330. font-size:12px;
  4331. color:#606266;
  4332. }
  4333. #u75484 .text {
  4334. position:absolute;
  4335. align-self:center;
  4336. padding:2px 2px 2px 0px;
  4337. box-sizing:border-box;
  4338. width:100%;
  4339. }
  4340. #u75484_text {
  4341. border-width:0px;
  4342. word-wrap:break-word;
  4343. text-transform:none;
  4344. visibility:hidden;
  4345. }
  4346. #u75485_div {
  4347. border-width:0px;
  4348. position:absolute;
  4349. left:0px;
  4350. top:0px;
  4351. width:59px;
  4352. height:30px;
  4353. background:inherit;
  4354. background-color:rgba(41, 143, 255, 1);
  4355. border:none;
  4356. border-radius:4px;
  4357. -moz-box-shadow:none;
  4358. -webkit-box-shadow:none;
  4359. box-shadow:none;
  4360. font-family:'Microsoft YaHei', sans-serif;
  4361. font-weight:400;
  4362. font-style:normal;
  4363. font-size:14px;
  4364. color:#FFFFFF;
  4365. }
  4366. #u75485 {
  4367. border-width:0px;
  4368. position:absolute;
  4369. left:1128px;
  4370. top:162px;
  4371. width:59px;
  4372. height:30px;
  4373. display:flex;
  4374. font-family:'Microsoft YaHei', sans-serif;
  4375. font-weight:400;
  4376. font-style:normal;
  4377. font-size:14px;
  4378. color:#FFFFFF;
  4379. }
  4380. #u75485 .text {
  4381. position:absolute;
  4382. align-self:center;
  4383. padding:5px 15px 5px 15px;
  4384. box-sizing:border-box;
  4385. width:100%;
  4386. }
  4387. #u75485_text {
  4388. border-width:0px;
  4389. white-space:nowrap;
  4390. text-transform:none;
  4391. }
  4392. #u75486_div {
  4393. border-width:0px;
  4394. position:absolute;
  4395. left:0px;
  4396. top:0px;
  4397. width:55px;
  4398. height:30px;
  4399. background:inherit;
  4400. background-color:rgba(255, 255, 255, 1);
  4401. box-sizing:border-box;
  4402. border-width:1px;
  4403. border-style:solid;
  4404. border-color:rgba(170, 170, 170, 1);
  4405. border-radius:4px;
  4406. -moz-box-shadow:none;
  4407. -webkit-box-shadow:none;
  4408. box-shadow:none;
  4409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4410. font-weight:400;
  4411. font-style:normal;
  4412. font-size:12px;
  4413. color:#555555;
  4414. }
  4415. #u75486 {
  4416. border-width:0px;
  4417. position:absolute;
  4418. left:1197px;
  4419. top:162px;
  4420. width:55px;
  4421. height:30px;
  4422. display:flex;
  4423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4424. font-weight:400;
  4425. font-style:normal;
  4426. font-size:12px;
  4427. color:#555555;
  4428. }
  4429. #u75486 .text {
  4430. position:absolute;
  4431. align-self:center;
  4432. padding:5px 15px 5px 15px;
  4433. box-sizing:border-box;
  4434. width:100%;
  4435. }
  4436. #u75486_text {
  4437. border-width:0px;
  4438. white-space:nowrap;
  4439. text-transform:none;
  4440. }
  4441. #u75487_div {
  4442. border-width:0px;
  4443. position:absolute;
  4444. left:0px;
  4445. top:0px;
  4446. width:80px;
  4447. height:30px;
  4448. background:inherit;
  4449. background-color:rgba(24, 144, 255, 1);
  4450. border:none;
  4451. border-radius:4px;
  4452. -moz-box-shadow:none;
  4453. -webkit-box-shadow:none;
  4454. box-shadow:none;
  4455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4456. font-weight:400;
  4457. font-style:normal;
  4458. font-size:12px;
  4459. color:#FFFFFF;
  4460. }
  4461. #u75487 {
  4462. border-width:0px;
  4463. position:absolute;
  4464. left:538px;
  4465. top:150px;
  4466. width:80px;
  4467. height:30px;
  4468. display:flex;
  4469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4470. font-weight:400;
  4471. font-style:normal;
  4472. font-size:12px;
  4473. color:#FFFFFF;
  4474. }
  4475. #u75487 .text {
  4476. position:absolute;
  4477. align-self:center;
  4478. padding:5px 15px 5px 15px;
  4479. box-sizing:border-box;
  4480. width:100%;
  4481. }
  4482. #u75487_text {
  4483. border-width:0px;
  4484. word-wrap:break-word;
  4485. text-transform:none;
  4486. }
  4487. #u75488 {
  4488. border-width:0px;
  4489. position:absolute;
  4490. left:0px;
  4491. top:0px;
  4492. width:0px;
  4493. height:0px;
  4494. }
  4495. #u75489_div {
  4496. border-width:0px;
  4497. position:absolute;
  4498. left:0px;
  4499. top:0px;
  4500. width:140px;
  4501. height:30px;
  4502. background:inherit;
  4503. background-color:rgba(255, 255, 255, 1);
  4504. box-sizing:border-box;
  4505. border-width:1px;
  4506. border-style:solid;
  4507. border-color:rgba(215, 215, 215, 1);
  4508. border-radius:4px;
  4509. -moz-box-shadow:none;
  4510. -webkit-box-shadow:none;
  4511. box-shadow:none;
  4512. font-size:11px;
  4513. }
  4514. #u75489 {
  4515. border-width:0px;
  4516. position:absolute;
  4517. left:968px;
  4518. top:162px;
  4519. width:140px;
  4520. height:30px;
  4521. display:flex;
  4522. font-size:11px;
  4523. }
  4524. #u75489 .text {
  4525. position:absolute;
  4526. align-self:center;
  4527. padding:2px 2px 2px 2px;
  4528. box-sizing:border-box;
  4529. width:100%;
  4530. }
  4531. #u75489_text {
  4532. border-width:0px;
  4533. word-wrap:break-word;
  4534. text-transform:none;
  4535. visibility:hidden;
  4536. }
  4537. #u75490_input {
  4538. position:absolute;
  4539. left:0px;
  4540. top:0px;
  4541. width:120px;
  4542. height:23px;
  4543. padding:2px 2px 2px 2px;
  4544. font-family:'ArialMT', 'Arial', sans-serif;
  4545. font-weight:400;
  4546. font-style:normal;
  4547. font-size:11px;
  4548. letter-spacing:normal;
  4549. color:#AAAAAA;
  4550. vertical-align:none;
  4551. text-align:left;
  4552. text-transform:none;
  4553. background-color:transparent;
  4554. border-color:transparent;
  4555. }
  4556. #u75490_input.disabled {
  4557. position:absolute;
  4558. left:0px;
  4559. top:0px;
  4560. width:120px;
  4561. height:23px;
  4562. padding:2px 2px 2px 2px;
  4563. font-family:'ArialMT', 'Arial', sans-serif;
  4564. font-weight:400;
  4565. font-style:normal;
  4566. font-size:11px;
  4567. letter-spacing:normal;
  4568. color:#AAAAAA;
  4569. vertical-align:none;
  4570. text-align:left;
  4571. text-transform:none;
  4572. background-color:transparent;
  4573. border-color:transparent;
  4574. }
  4575. #u75490_div {
  4576. border-width:0px;
  4577. position:absolute;
  4578. left:0px;
  4579. top:0px;
  4580. width:120px;
  4581. height:23px;
  4582. background:inherit;
  4583. background-color:rgba(255, 255, 255, 1);
  4584. border:none;
  4585. border-radius:0px;
  4586. -moz-box-shadow:none;
  4587. -webkit-box-shadow:none;
  4588. box-shadow:none;
  4589. font-size:11px;
  4590. color:#AAAAAA;
  4591. }
  4592. #u75490 {
  4593. border-width:0px;
  4594. position:absolute;
  4595. left:975px;
  4596. top:164px;
  4597. width:120px;
  4598. height:23px;
  4599. display:flex;
  4600. font-size:11px;
  4601. color:#AAAAAA;
  4602. }
  4603. #u75490 .text {
  4604. position:absolute;
  4605. align-self:flex-start;
  4606. padding:2px 2px 2px 2px;
  4607. box-sizing:border-box;
  4608. width:100%;
  4609. }
  4610. #u75490_div.disabled {
  4611. border-width:0px;
  4612. position:absolute;
  4613. left:0px;
  4614. top:0px;
  4615. width:120px;
  4616. height:23px;
  4617. background:inherit;
  4618. background-color:rgba(240, 240, 240, 1);
  4619. border:none;
  4620. border-radius:0px;
  4621. -moz-box-shadow:none;
  4622. -webkit-box-shadow:none;
  4623. box-shadow:none;
  4624. font-size:11px;
  4625. color:#AAAAAA;
  4626. }
  4627. #u75490.disabled {
  4628. }
  4629. .u75490_input_option {
  4630. font-size:11px;
  4631. }
  4632. #u75491_div {
  4633. border-width:0px;
  4634. position:absolute;
  4635. left:0px;
  4636. top:0px;
  4637. width:109px;
  4638. height:50px;
  4639. background:inherit;
  4640. background-color:rgba(255, 255, 255, 0);
  4641. border:none;
  4642. border-left:0px;
  4643. border-top:0px;
  4644. border-right:0px;
  4645. border-radius:0px;
  4646. border-bottom-right-radius:0px;
  4647. border-bottom-left-radius:0px;
  4648. -moz-box-shadow:none;
  4649. -webkit-box-shadow:none;
  4650. box-shadow:none;
  4651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4652. font-weight:400;
  4653. font-style:normal;
  4654. font-size:18px;
  4655. }
  4656. #u75491 {
  4657. border-width:0px;
  4658. position:absolute;
  4659. left:349px;
  4660. top:50px;
  4661. width:109px;
  4662. height:50px;
  4663. display:flex;
  4664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4665. font-weight:400;
  4666. font-style:normal;
  4667. font-size:18px;
  4668. }
  4669. #u75491 .text {
  4670. position:absolute;
  4671. align-self:center;
  4672. padding:0px 0px 0px 0px;
  4673. box-sizing:border-box;
  4674. width:100%;
  4675. }
  4676. #u75491_text {
  4677. border-width:0px;
  4678. white-space:nowrap;
  4679. text-transform:none;
  4680. }
  4681. #u75492 {
  4682. border-width:0px;
  4683. position:absolute;
  4684. left:0px;
  4685. top:0px;
  4686. width:0px;
  4687. height:0px;
  4688. }
  4689. #u75493_div {
  4690. border-width:0px;
  4691. position:absolute;
  4692. left:0px;
  4693. top:0px;
  4694. width:140px;
  4695. height:30px;
  4696. background:inherit;
  4697. background-color:rgba(255, 255, 255, 1);
  4698. box-sizing:border-box;
  4699. border-width:1px;
  4700. border-style:solid;
  4701. border-color:rgba(201, 201, 201, 1);
  4702. border-radius:4px;
  4703. -moz-box-shadow:none;
  4704. -webkit-box-shadow:none;
  4705. box-shadow:none;
  4706. font-family:'Microsoft YaHei', sans-serif;
  4707. font-weight:400;
  4708. font-style:normal;
  4709. font-size:14px;
  4710. color:#CCCCCC;
  4711. text-align:left;
  4712. }
  4713. #u75493 {
  4714. border-width:0px;
  4715. position:absolute;
  4716. left:668px;
  4717. top:162px;
  4718. width:140px;
  4719. height:30px;
  4720. display:flex;
  4721. font-family:'Microsoft YaHei', sans-serif;
  4722. font-weight:400;
  4723. font-style:normal;
  4724. font-size:14px;
  4725. color:#CCCCCC;
  4726. text-align:left;
  4727. }
  4728. #u75493 .text {
  4729. position:absolute;
  4730. align-self:center;
  4731. padding:2px 8px 2px 8px;
  4732. box-sizing:border-box;
  4733. width:100%;
  4734. }
  4735. #u75493_text {
  4736. border-width:0px;
  4737. word-wrap:break-word;
  4738. text-transform:none;
  4739. visibility:hidden;
  4740. }
  4741. #u75494_input {
  4742. position:absolute;
  4743. left:0px;
  4744. top:0px;
  4745. width:127px;
  4746. height:25px;
  4747. padding:2px 2px 2px 2px;
  4748. font-family:'Microsoft YaHei', sans-serif;
  4749. font-weight:400;
  4750. font-style:normal;
  4751. font-size:10px;
  4752. letter-spacing:normal;
  4753. color:#000000;
  4754. vertical-align:none;
  4755. text-align:left;
  4756. text-transform:none;
  4757. background-color:transparent;
  4758. border-color:transparent;
  4759. }
  4760. #u75494_input.disabled {
  4761. position:absolute;
  4762. left:0px;
  4763. top:0px;
  4764. width:127px;
  4765. height:25px;
  4766. padding:2px 2px 2px 2px;
  4767. font-family:'Microsoft YaHei', sans-serif;
  4768. font-weight:400;
  4769. font-style:normal;
  4770. font-size:10px;
  4771. letter-spacing:normal;
  4772. color:#000000;
  4773. vertical-align:none;
  4774. text-align:left;
  4775. text-transform:none;
  4776. background-color:transparent;
  4777. border-color:transparent;
  4778. }
  4779. #u75494_div {
  4780. border-width:0px;
  4781. position:absolute;
  4782. left:0px;
  4783. top:0px;
  4784. width:127px;
  4785. height:25px;
  4786. background:inherit;
  4787. background-color:rgba(255, 255, 255, 1);
  4788. border:none;
  4789. border-radius:0px;
  4790. -moz-box-shadow:none;
  4791. -webkit-box-shadow:none;
  4792. box-shadow:none;
  4793. font-family:'Microsoft YaHei', sans-serif;
  4794. font-weight:400;
  4795. font-style:normal;
  4796. font-size:10px;
  4797. }
  4798. #u75494 {
  4799. border-width:0px;
  4800. position:absolute;
  4801. left:676px;
  4802. top:163px;
  4803. width:127px;
  4804. height:25px;
  4805. display:flex;
  4806. font-family:'Microsoft YaHei', sans-serif;
  4807. font-weight:400;
  4808. font-style:normal;
  4809. font-size:10px;
  4810. }
  4811. #u75494 .text {
  4812. position:absolute;
  4813. align-self:center;
  4814. padding:2px 2px 2px 2px;
  4815. box-sizing:border-box;
  4816. width:100%;
  4817. }
  4818. #u75494_div.disabled {
  4819. border-width:0px;
  4820. position:absolute;
  4821. left:0px;
  4822. top:0px;
  4823. width:127px;
  4824. height:25px;
  4825. background:inherit;
  4826. background-color:rgba(240, 240, 240, 1);
  4827. border:none;
  4828. border-radius:0px;
  4829. -moz-box-shadow:none;
  4830. -webkit-box-shadow:none;
  4831. box-shadow:none;
  4832. font-family:'Microsoft YaHei', sans-serif;
  4833. font-weight:400;
  4834. font-style:normal;
  4835. font-size:10px;
  4836. }
  4837. #u75494.disabled {
  4838. }
  4839. #u75495 {
  4840. border-width:0px;
  4841. position:absolute;
  4842. left:0px;
  4843. top:0px;
  4844. width:0px;
  4845. height:0px;
  4846. }
  4847. #u75496_div {
  4848. border-width:0px;
  4849. position:absolute;
  4850. left:0px;
  4851. top:0px;
  4852. width:100px;
  4853. height:100px;
  4854. background:inherit;
  4855. background-color:rgba(255, 255, 255, 1);
  4856. border:none;
  4857. border-radius:4px;
  4858. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  4859. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  4860. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  4861. }
  4862. #u75496 {
  4863. border-width:0px;
  4864. position:absolute;
  4865. left:1403px;
  4866. top:427px;
  4867. width:100px;
  4868. height:100px;
  4869. display:flex;
  4870. }
  4871. #u75496 .text {
  4872. position:absolute;
  4873. align-self:center;
  4874. padding:2px 2px 2px 2px;
  4875. box-sizing:border-box;
  4876. width:100%;
  4877. }
  4878. #u75496_text {
  4879. border-width:0px;
  4880. word-wrap:break-word;
  4881. text-transform:none;
  4882. visibility:hidden;
  4883. }
  4884. #u75497_div {
  4885. border-width:0px;
  4886. position:absolute;
  4887. left:0px;
  4888. top:0px;
  4889. width:83px;
  4890. height:40px;
  4891. background:inherit;
  4892. background-color:rgba(255, 255, 255, 1);
  4893. box-sizing:border-box;
  4894. border-width:1px;
  4895. border-style:solid;
  4896. border-color:rgba(242, 242, 242, 1);
  4897. border-left:0px;
  4898. border-top:0px;
  4899. border-right:0px;
  4900. border-radius:4px;
  4901. border-bottom-right-radius:0px;
  4902. border-bottom-left-radius:0px;
  4903. -moz-box-shadow:none;
  4904. -webkit-box-shadow:none;
  4905. box-shadow:none;
  4906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4907. font-weight:400;
  4908. font-style:normal;
  4909. font-size:14px;
  4910. }
  4911. #u75497 {
  4912. border-width:0px;
  4913. position:absolute;
  4914. left:1411px;
  4915. top:438px;
  4916. width:83px;
  4917. height:40px;
  4918. display:flex;
  4919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4920. font-weight:400;
  4921. font-style:normal;
  4922. font-size:14px;
  4923. }
  4924. #u75497 .text {
  4925. position:absolute;
  4926. align-self:center;
  4927. padding:5px 0px 5px 0px;
  4928. box-sizing:border-box;
  4929. width:100%;
  4930. }
  4931. #u75497_text {
  4932. border-width:0px;
  4933. word-wrap:break-word;
  4934. text-transform:none;
  4935. }
  4936. #u75498_div {
  4937. border-width:0px;
  4938. position:absolute;
  4939. left:0px;
  4940. top:0px;
  4941. width:83px;
  4942. height:40px;
  4943. background:inherit;
  4944. background-color:rgba(255, 255, 255, 1);
  4945. border:none;
  4946. border-left:0px;
  4947. border-top:0px;
  4948. border-right:0px;
  4949. border-radius:4px;
  4950. border-bottom-right-radius:0px;
  4951. border-bottom-left-radius:0px;
  4952. -moz-box-shadow:none;
  4953. -webkit-box-shadow:none;
  4954. box-shadow:none;
  4955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4956. font-weight:400;
  4957. font-style:normal;
  4958. font-size:14px;
  4959. }
  4960. #u75498 {
  4961. border-width:0px;
  4962. position:absolute;
  4963. left:1411px;
  4964. top:478px;
  4965. width:83px;
  4966. height:40px;
  4967. display:flex;
  4968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4969. font-weight:400;
  4970. font-style:normal;
  4971. font-size:14px;
  4972. }
  4973. #u75498 .text {
  4974. position:absolute;
  4975. align-self:center;
  4976. padding:5px 0px 5px 0px;
  4977. box-sizing:border-box;
  4978. width:100%;
  4979. }
  4980. #u75498_text {
  4981. border-width:0px;
  4982. word-wrap:break-word;
  4983. text-transform:none;
  4984. }
  4985. #u75499_img {
  4986. border-width:0px;
  4987. position:absolute;
  4988. left:0px;
  4989. top:0px;
  4990. width:11px;
  4991. height:11px;
  4992. }
  4993. #u75499 {
  4994. border-width:0px;
  4995. position:absolute;
  4996. left:1077px;
  4997. top:204px;
  4998. width:11px;
  4999. height:11px;
  5000. display:flex;
  5001. color:#FFFFFF;
  5002. }
  5003. #u75499 .text {
  5004. position:absolute;
  5005. align-self:center;
  5006. padding:2px 2px 2px 2px;
  5007. box-sizing:border-box;
  5008. width:100%;
  5009. }
  5010. #u75499_text {
  5011. border-width:0px;
  5012. word-wrap:break-word;
  5013. text-transform:none;
  5014. visibility:hidden;
  5015. }
  5016. #u75500_div {
  5017. border-width:0px;
  5018. position:absolute;
  5019. left:0px;
  5020. top:0px;
  5021. width:79px;
  5022. height:30px;
  5023. background:inherit;
  5024. background-color:rgba(25, 140, 251, 1);
  5025. border:none;
  5026. border-radius:4px;
  5027. -moz-box-shadow:none;
  5028. -webkit-box-shadow:none;
  5029. box-shadow:none;
  5030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5031. font-weight:400;
  5032. font-style:normal;
  5033. font-size:12px;
  5034. color:#FFFFFF;
  5035. }
  5036. #u75500 {
  5037. border-width:0px;
  5038. position:absolute;
  5039. left:668px;
  5040. top:212px;
  5041. width:79px;
  5042. height:30px;
  5043. display:flex;
  5044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5045. font-weight:400;
  5046. font-style:normal;
  5047. font-size:12px;
  5048. color:#FFFFFF;
  5049. }
  5050. #u75500 .text {
  5051. position:absolute;
  5052. align-self:center;
  5053. padding:5px 15px 5px 15px;
  5054. box-sizing:border-box;
  5055. width:100%;
  5056. }
  5057. #u75500_text {
  5058. border-width:0px;
  5059. white-space:nowrap;
  5060. text-transform:none;
  5061. }
  5062. #u75501_div {
  5063. border-width:0px;
  5064. position:absolute;
  5065. left:0px;
  5066. top:0px;
  5067. width:300px;
  5068. height:1080px;
  5069. background:inherit;
  5070. background-color:rgba(242, 242, 242, 1);
  5071. border:none;
  5072. border-radius:4px;
  5073. -moz-box-shadow:none;
  5074. -webkit-box-shadow:none;
  5075. box-shadow:none;
  5076. }
  5077. #u75501 {
  5078. border-width:0px;
  5079. position:absolute;
  5080. left:348px;
  5081. top:102px;
  5082. width:300px;
  5083. height:1080px;
  5084. display:flex;
  5085. }
  5086. #u75501 .text {
  5087. position:absolute;
  5088. align-self:center;
  5089. padding:2px 2px 2px 2px;
  5090. box-sizing:border-box;
  5091. width:100%;
  5092. }
  5093. #u75501_text {
  5094. border-width:0px;
  5095. word-wrap:break-word;
  5096. text-transform:none;
  5097. visibility:hidden;
  5098. }
  5099. #u75502_div {
  5100. border-width:0px;
  5101. position:absolute;
  5102. left:0px;
  5103. top:0px;
  5104. width:120px;
  5105. height:50px;
  5106. background:inherit;
  5107. background-color:rgba(255, 255, 255, 0);
  5108. border:none;
  5109. border-left:0px;
  5110. border-top:0px;
  5111. border-right:0px;
  5112. border-radius:0px;
  5113. border-bottom-right-radius:0px;
  5114. border-bottom-left-radius:0px;
  5115. -moz-box-shadow:none;
  5116. -webkit-box-shadow:none;
  5117. box-shadow:none;
  5118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5119. font-weight:400;
  5120. font-style:normal;
  5121. font-size:18px;
  5122. color:#000000;
  5123. line-height:40px;
  5124. }
  5125. #u75502 {
  5126. border-width:0px;
  5127. position:absolute;
  5128. left:668px;
  5129. top:102px;
  5130. width:120px;
  5131. height:50px;
  5132. display:flex;
  5133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5134. font-weight:400;
  5135. font-style:normal;
  5136. font-size:18px;
  5137. color:#000000;
  5138. line-height:40px;
  5139. }
  5140. #u75502 .text {
  5141. position:absolute;
  5142. align-self:center;
  5143. padding:0px 0px 0px 0px;
  5144. box-sizing:border-box;
  5145. width:100%;
  5146. }
  5147. #u75502_text {
  5148. border-width:0px;
  5149. white-space:nowrap;
  5150. text-transform:none;
  5151. }
  5152. #u75503 {
  5153. border-width:0px;
  5154. position:absolute;
  5155. left:372px;
  5156. top:127px;
  5157. width:168px;
  5158. height:280px;
  5159. }
  5160. #u75503_children {
  5161. border-width:0px;
  5162. position:absolute;
  5163. left:0px;
  5164. top:0px;
  5165. width:0px;
  5166. height:0px;
  5167. }
  5168. #u75504 {
  5169. border-width:0px;
  5170. position:absolute;
  5171. left:0px;
  5172. top:0px;
  5173. width:93px;
  5174. height:20px;
  5175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5176. font-weight:400;
  5177. font-style:normal;
  5178. }
  5179. #u75505_div {
  5180. border-width:0px;
  5181. position:absolute;
  5182. left:0px;
  5183. top:0px;
  5184. width:71px;
  5185. height:20px;
  5186. background:inherit;
  5187. background-color:rgba(255, 255, 255, 0);
  5188. border:none;
  5189. border-radius:0px;
  5190. -moz-box-shadow:none;
  5191. -webkit-box-shadow:none;
  5192. box-shadow:none;
  5193. }
  5194. #u75505 {
  5195. border-width:0px;
  5196. position:absolute;
  5197. left:22px;
  5198. top:0px;
  5199. width:71px;
  5200. height:20px;
  5201. display:flex;
  5202. }
  5203. #u75505 .text {
  5204. position:absolute;
  5205. align-self:center;
  5206. padding:2px 2px 2px 3px;
  5207. box-sizing:border-box;
  5208. width:100%;
  5209. }
  5210. #u75505_text {
  5211. border-width:0px;
  5212. white-space:nowrap;
  5213. text-transform:none;
  5214. }
  5215. #u75506 {
  5216. border-width:0px;
  5217. position:absolute;
  5218. left:0px;
  5219. top:20px;
  5220. width:113px;
  5221. height:20px;
  5222. color:#298FFF;
  5223. }
  5224. #u75507_img {
  5225. border-width:0px;
  5226. position:absolute;
  5227. left:0px;
  5228. top:0px;
  5229. width:9px;
  5230. height:9px;
  5231. }
  5232. #u75507 {
  5233. border-width:0px;
  5234. position:absolute;
  5235. left:6px;
  5236. top:6px;
  5237. width:9px;
  5238. height:9px;
  5239. display:flex;
  5240. }
  5241. #u75507 .text {
  5242. position:absolute;
  5243. align-self:center;
  5244. padding:2px 2px 2px 2px;
  5245. box-sizing:border-box;
  5246. width:100%;
  5247. }
  5248. #u75507_img.selected {
  5249. }
  5250. #u75507.selected {
  5251. }
  5252. #u75507_text {
  5253. border-width:0px;
  5254. word-wrap:break-word;
  5255. text-transform:none;
  5256. visibility:hidden;
  5257. }
  5258. #u75508_div {
  5259. border-width:0px;
  5260. position:absolute;
  5261. left:0px;
  5262. top:0px;
  5263. width:91px;
  5264. height:20px;
  5265. background:inherit;
  5266. background-color:rgba(255, 255, 255, 0);
  5267. border:none;
  5268. border-radius:0px;
  5269. -moz-box-shadow:none;
  5270. -webkit-box-shadow:none;
  5271. box-shadow:none;
  5272. }
  5273. #u75508 {
  5274. border-width:0px;
  5275. position:absolute;
  5276. left:22px;
  5277. top:0px;
  5278. width:91px;
  5279. height:20px;
  5280. display:flex;
  5281. }
  5282. #u75508 .text {
  5283. position:absolute;
  5284. align-self:center;
  5285. padding:2px 2px 2px 3px;
  5286. box-sizing:border-box;
  5287. width:100%;
  5288. }
  5289. #u75508_text {
  5290. border-width:0px;
  5291. white-space:nowrap;
  5292. text-transform:none;
  5293. }
  5294. #u75506_children {
  5295. border-width:0px;
  5296. position:absolute;
  5297. left:0px;
  5298. top:0px;
  5299. width:0px;
  5300. height:0px;
  5301. }
  5302. #u75509 {
  5303. border-width:0px;
  5304. position:absolute;
  5305. left:20px;
  5306. top:20px;
  5307. width:148px;
  5308. height:20px;
  5309. }
  5310. #u75510_div {
  5311. border-width:0px;
  5312. position:absolute;
  5313. left:0px;
  5314. top:0px;
  5315. width:126px;
  5316. height:20px;
  5317. background:inherit;
  5318. background-color:rgba(255, 255, 255, 0);
  5319. border:none;
  5320. border-radius:0px;
  5321. -moz-box-shadow:none;
  5322. -webkit-box-shadow:none;
  5323. box-shadow:none;
  5324. }
  5325. #u75510 {
  5326. border-width:0px;
  5327. position:absolute;
  5328. left:22px;
  5329. top:0px;
  5330. width:126px;
  5331. height:20px;
  5332. display:flex;
  5333. }
  5334. #u75510 .text {
  5335. position:absolute;
  5336. align-self:center;
  5337. padding:2px 2px 2px 3px;
  5338. box-sizing:border-box;
  5339. width:100%;
  5340. }
  5341. #u75510_text {
  5342. border-width:0px;
  5343. white-space:nowrap;
  5344. text-transform:none;
  5345. }
  5346. #u75511 {
  5347. border-width:0px;
  5348. position:absolute;
  5349. left:20px;
  5350. top:40px;
  5351. width:122px;
  5352. height:20px;
  5353. }
  5354. #u75512_div {
  5355. border-width:0px;
  5356. position:absolute;
  5357. left:0px;
  5358. top:0px;
  5359. width:100px;
  5360. height:20px;
  5361. background:inherit;
  5362. background-color:rgba(255, 255, 255, 0);
  5363. border:none;
  5364. border-radius:0px;
  5365. -moz-box-shadow:none;
  5366. -webkit-box-shadow:none;
  5367. box-shadow:none;
  5368. }
  5369. #u75512 {
  5370. border-width:0px;
  5371. position:absolute;
  5372. left:22px;
  5373. top:0px;
  5374. width:100px;
  5375. height:20px;
  5376. display:flex;
  5377. }
  5378. #u75512 .text {
  5379. position:absolute;
  5380. align-self:center;
  5381. padding:2px 2px 2px 3px;
  5382. box-sizing:border-box;
  5383. width:100%;
  5384. }
  5385. #u75512_text {
  5386. border-width:0px;
  5387. white-space:nowrap;
  5388. text-transform:none;
  5389. }
  5390. #u75513 {
  5391. border-width:0px;
  5392. position:absolute;
  5393. left:20px;
  5394. top:60px;
  5395. width:122px;
  5396. height:20px;
  5397. }
  5398. #u75514_div {
  5399. border-width:0px;
  5400. position:absolute;
  5401. left:0px;
  5402. top:0px;
  5403. width:100px;
  5404. height:20px;
  5405. background:inherit;
  5406. background-color:rgba(255, 255, 255, 0);
  5407. border:none;
  5408. border-radius:0px;
  5409. -moz-box-shadow:none;
  5410. -webkit-box-shadow:none;
  5411. box-shadow:none;
  5412. }
  5413. #u75514 {
  5414. border-width:0px;
  5415. position:absolute;
  5416. left:22px;
  5417. top:0px;
  5418. width:100px;
  5419. height:20px;
  5420. display:flex;
  5421. }
  5422. #u75514 .text {
  5423. position:absolute;
  5424. align-self:center;
  5425. padding:2px 2px 2px 3px;
  5426. box-sizing:border-box;
  5427. width:100%;
  5428. }
  5429. #u75514_text {
  5430. border-width:0px;
  5431. white-space:nowrap;
  5432. text-transform:none;
  5433. }
  5434. #u75515 {
  5435. border-width:0px;
  5436. position:absolute;
  5437. left:0px;
  5438. top:100px;
  5439. width:113px;
  5440. height:20px;
  5441. }
  5442. #u75516_img {
  5443. border-width:0px;
  5444. position:absolute;
  5445. left:0px;
  5446. top:0px;
  5447. width:9px;
  5448. height:9px;
  5449. }
  5450. #u75516 {
  5451. border-width:0px;
  5452. position:absolute;
  5453. left:6px;
  5454. top:6px;
  5455. width:9px;
  5456. height:9px;
  5457. display:flex;
  5458. }
  5459. #u75516 .text {
  5460. position:absolute;
  5461. align-self:center;
  5462. padding:2px 2px 2px 2px;
  5463. box-sizing:border-box;
  5464. width:100%;
  5465. }
  5466. #u75516_img.selected {
  5467. }
  5468. #u75516.selected {
  5469. }
  5470. #u75516_text {
  5471. border-width:0px;
  5472. word-wrap:break-word;
  5473. text-transform:none;
  5474. visibility:hidden;
  5475. }
  5476. #u75517_div {
  5477. border-width:0px;
  5478. position:absolute;
  5479. left:0px;
  5480. top:0px;
  5481. width:91px;
  5482. height:20px;
  5483. background:inherit;
  5484. background-color:rgba(255, 255, 255, 0);
  5485. border:none;
  5486. border-radius:0px;
  5487. -moz-box-shadow:none;
  5488. -webkit-box-shadow:none;
  5489. box-shadow:none;
  5490. }
  5491. #u75517 {
  5492. border-width:0px;
  5493. position:absolute;
  5494. left:22px;
  5495. top:0px;
  5496. width:91px;
  5497. height:20px;
  5498. display:flex;
  5499. }
  5500. #u75517 .text {
  5501. position:absolute;
  5502. align-self:center;
  5503. padding:2px 2px 2px 3px;
  5504. box-sizing:border-box;
  5505. width:100%;
  5506. }
  5507. #u75517_text {
  5508. border-width:0px;
  5509. white-space:nowrap;
  5510. text-transform:none;
  5511. }
  5512. #u75515_children {
  5513. border-width:0px;
  5514. position:absolute;
  5515. left:0px;
  5516. top:0px;
  5517. width:0px;
  5518. height:0px;
  5519. }
  5520. #u75518 {
  5521. border-width:0px;
  5522. position:absolute;
  5523. left:20px;
  5524. top:20px;
  5525. width:93px;
  5526. height:20px;
  5527. }
  5528. #u75519_div {
  5529. border-width:0px;
  5530. position:absolute;
  5531. left:0px;
  5532. top:0px;
  5533. width:71px;
  5534. height:20px;
  5535. background:inherit;
  5536. background-color:rgba(255, 255, 255, 0);
  5537. border:none;
  5538. border-radius:0px;
  5539. -moz-box-shadow:none;
  5540. -webkit-box-shadow:none;
  5541. box-shadow:none;
  5542. }
  5543. #u75519 {
  5544. border-width:0px;
  5545. position:absolute;
  5546. left:22px;
  5547. top:0px;
  5548. width:71px;
  5549. height:20px;
  5550. display:flex;
  5551. }
  5552. #u75519 .text {
  5553. position:absolute;
  5554. align-self:center;
  5555. padding:2px 2px 2px 3px;
  5556. box-sizing:border-box;
  5557. width:100%;
  5558. }
  5559. #u75519_text {
  5560. border-width:0px;
  5561. white-space:nowrap;
  5562. text-transform:none;
  5563. }
  5564. #u75520 {
  5565. border-width:0px;
  5566. position:absolute;
  5567. left:20px;
  5568. top:40px;
  5569. width:93px;
  5570. height:20px;
  5571. }
  5572. #u75521_div {
  5573. border-width:0px;
  5574. position:absolute;
  5575. left:0px;
  5576. top:0px;
  5577. width:71px;
  5578. height:20px;
  5579. background:inherit;
  5580. background-color:rgba(255, 255, 255, 0);
  5581. border:none;
  5582. border-radius:0px;
  5583. -moz-box-shadow:none;
  5584. -webkit-box-shadow:none;
  5585. box-shadow:none;
  5586. }
  5587. #u75521 {
  5588. border-width:0px;
  5589. position:absolute;
  5590. left:22px;
  5591. top:0px;
  5592. width:71px;
  5593. height:20px;
  5594. display:flex;
  5595. }
  5596. #u75521 .text {
  5597. position:absolute;
  5598. align-self:center;
  5599. padding:2px 2px 2px 3px;
  5600. box-sizing:border-box;
  5601. width:100%;
  5602. }
  5603. #u75521_text {
  5604. border-width:0px;
  5605. white-space:nowrap;
  5606. text-transform:none;
  5607. }
  5608. #u75522 {
  5609. border-width:0px;
  5610. position:absolute;
  5611. left:0px;
  5612. top:160px;
  5613. width:80px;
  5614. height:20px;
  5615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5616. font-weight:400;
  5617. font-style:normal;
  5618. }
  5619. #u75523_img {
  5620. border-width:0px;
  5621. position:absolute;
  5622. left:0px;
  5623. top:0px;
  5624. width:9px;
  5625. height:9px;
  5626. }
  5627. #u75523 {
  5628. border-width:0px;
  5629. position:absolute;
  5630. left:6px;
  5631. top:6px;
  5632. width:9px;
  5633. height:9px;
  5634. display:flex;
  5635. }
  5636. #u75523 .text {
  5637. position:absolute;
  5638. align-self:center;
  5639. padding:2px 2px 2px 2px;
  5640. box-sizing:border-box;
  5641. width:100%;
  5642. }
  5643. #u75523_img.selected {
  5644. }
  5645. #u75523.selected {
  5646. }
  5647. #u75523_text {
  5648. border-width:0px;
  5649. word-wrap:break-word;
  5650. text-transform:none;
  5651. visibility:hidden;
  5652. }
  5653. #u75524_div {
  5654. border-width:0px;
  5655. position:absolute;
  5656. left:0px;
  5657. top:0px;
  5658. width:58px;
  5659. height:20px;
  5660. background:inherit;
  5661. background-color:rgba(255, 255, 255, 0);
  5662. border:none;
  5663. border-radius:0px;
  5664. -moz-box-shadow:none;
  5665. -webkit-box-shadow:none;
  5666. box-shadow:none;
  5667. }
  5668. #u75524 {
  5669. border-width:0px;
  5670. position:absolute;
  5671. left:22px;
  5672. top:0px;
  5673. width:58px;
  5674. height:20px;
  5675. display:flex;
  5676. }
  5677. #u75524 .text {
  5678. position:absolute;
  5679. align-self:center;
  5680. padding:2px 2px 2px 3px;
  5681. box-sizing:border-box;
  5682. width:100%;
  5683. }
  5684. #u75524_text {
  5685. border-width:0px;
  5686. white-space:nowrap;
  5687. text-transform:none;
  5688. }
  5689. #u75522_children {
  5690. border-width:0px;
  5691. position:absolute;
  5692. left:0px;
  5693. top:0px;
  5694. width:0px;
  5695. height:0px;
  5696. }
  5697. #u75525 {
  5698. border-width:0px;
  5699. position:absolute;
  5700. left:20px;
  5701. top:20px;
  5702. width:97px;
  5703. height:20px;
  5704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5705. font-weight:400;
  5706. font-style:normal;
  5707. }
  5708. #u75526_div {
  5709. border-width:0px;
  5710. position:absolute;
  5711. left:0px;
  5712. top:0px;
  5713. width:75px;
  5714. height:20px;
  5715. background:inherit;
  5716. background-color:rgba(255, 255, 255, 0);
  5717. border:none;
  5718. border-radius:0px;
  5719. -moz-box-shadow:none;
  5720. -webkit-box-shadow:none;
  5721. box-shadow:none;
  5722. }
  5723. #u75526 {
  5724. border-width:0px;
  5725. position:absolute;
  5726. left:22px;
  5727. top:0px;
  5728. width:75px;
  5729. height:20px;
  5730. display:flex;
  5731. }
  5732. #u75526 .text {
  5733. position:absolute;
  5734. align-self:center;
  5735. padding:2px 2px 2px 3px;
  5736. box-sizing:border-box;
  5737. width:100%;
  5738. }
  5739. #u75526_text {
  5740. border-width:0px;
  5741. white-space:nowrap;
  5742. text-transform:none;
  5743. }
  5744. #u75527 {
  5745. border-width:0px;
  5746. position:absolute;
  5747. left:20px;
  5748. top:40px;
  5749. width:97px;
  5750. height:20px;
  5751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5752. font-weight:400;
  5753. font-style:normal;
  5754. }
  5755. #u75528_div {
  5756. border-width:0px;
  5757. position:absolute;
  5758. left:0px;
  5759. top:0px;
  5760. width:75px;
  5761. height:20px;
  5762. background:inherit;
  5763. background-color:rgba(255, 255, 255, 0);
  5764. border:none;
  5765. border-radius:0px;
  5766. -moz-box-shadow:none;
  5767. -webkit-box-shadow:none;
  5768. box-shadow:none;
  5769. }
  5770. #u75528 {
  5771. border-width:0px;
  5772. position:absolute;
  5773. left:22px;
  5774. top:0px;
  5775. width:75px;
  5776. height:20px;
  5777. display:flex;
  5778. }
  5779. #u75528 .text {
  5780. position:absolute;
  5781. align-self:center;
  5782. padding:2px 2px 2px 3px;
  5783. box-sizing:border-box;
  5784. width:100%;
  5785. }
  5786. #u75528_text {
  5787. border-width:0px;
  5788. white-space:nowrap;
  5789. text-transform:none;
  5790. }
  5791. #u75529 {
  5792. border-width:0px;
  5793. position:absolute;
  5794. left:0px;
  5795. top:220px;
  5796. width:80px;
  5797. height:20px;
  5798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5799. font-weight:400;
  5800. font-style:normal;
  5801. }
  5802. #u75530_img {
  5803. border-width:0px;
  5804. position:absolute;
  5805. left:0px;
  5806. top:0px;
  5807. width:9px;
  5808. height:9px;
  5809. }
  5810. #u75530 {
  5811. border-width:0px;
  5812. position:absolute;
  5813. left:6px;
  5814. top:6px;
  5815. width:9px;
  5816. height:9px;
  5817. display:flex;
  5818. }
  5819. #u75530 .text {
  5820. position:absolute;
  5821. align-self:center;
  5822. padding:2px 2px 2px 2px;
  5823. box-sizing:border-box;
  5824. width:100%;
  5825. }
  5826. #u75530_img.selected {
  5827. }
  5828. #u75530.selected {
  5829. }
  5830. #u75530_text {
  5831. border-width:0px;
  5832. word-wrap:break-word;
  5833. text-transform:none;
  5834. visibility:hidden;
  5835. }
  5836. #u75531_div {
  5837. border-width:0px;
  5838. position:absolute;
  5839. left:0px;
  5840. top:0px;
  5841. width:58px;
  5842. height:20px;
  5843. background:inherit;
  5844. background-color:rgba(255, 255, 255, 0);
  5845. border:none;
  5846. border-radius:0px;
  5847. -moz-box-shadow:none;
  5848. -webkit-box-shadow:none;
  5849. box-shadow:none;
  5850. }
  5851. #u75531 {
  5852. border-width:0px;
  5853. position:absolute;
  5854. left:22px;
  5855. top:0px;
  5856. width:58px;
  5857. height:20px;
  5858. display:flex;
  5859. }
  5860. #u75531 .text {
  5861. position:absolute;
  5862. align-self:center;
  5863. padding:2px 2px 2px 3px;
  5864. box-sizing:border-box;
  5865. width:100%;
  5866. }
  5867. #u75531_text {
  5868. border-width:0px;
  5869. white-space:nowrap;
  5870. text-transform:none;
  5871. }
  5872. #u75529_children {
  5873. border-width:0px;
  5874. position:absolute;
  5875. left:0px;
  5876. top:0px;
  5877. width:0px;
  5878. height:0px;
  5879. }
  5880. #u75532 {
  5881. border-width:0px;
  5882. position:absolute;
  5883. left:20px;
  5884. top:20px;
  5885. width:97px;
  5886. height:20px;
  5887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5888. font-weight:400;
  5889. font-style:normal;
  5890. }
  5891. #u75533_div {
  5892. border-width:0px;
  5893. position:absolute;
  5894. left:0px;
  5895. top:0px;
  5896. width:75px;
  5897. height:20px;
  5898. background:inherit;
  5899. background-color:rgba(255, 255, 255, 0);
  5900. border:none;
  5901. border-radius:0px;
  5902. -moz-box-shadow:none;
  5903. -webkit-box-shadow:none;
  5904. box-shadow:none;
  5905. }
  5906. #u75533 {
  5907. border-width:0px;
  5908. position:absolute;
  5909. left:22px;
  5910. top:0px;
  5911. width:75px;
  5912. height:20px;
  5913. display:flex;
  5914. }
  5915. #u75533 .text {
  5916. position:absolute;
  5917. align-self:center;
  5918. padding:2px 2px 2px 3px;
  5919. box-sizing:border-box;
  5920. width:100%;
  5921. }
  5922. #u75533_text {
  5923. border-width:0px;
  5924. white-space:nowrap;
  5925. text-transform:none;
  5926. }
  5927. #u75534 {
  5928. border-width:0px;
  5929. position:absolute;
  5930. left:20px;
  5931. top:40px;
  5932. width:97px;
  5933. height:20px;
  5934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5935. font-weight:400;
  5936. font-style:normal;
  5937. }
  5938. #u75535_div {
  5939. border-width:0px;
  5940. position:absolute;
  5941. left:0px;
  5942. top:0px;
  5943. width:75px;
  5944. height:20px;
  5945. background:inherit;
  5946. background-color:rgba(255, 255, 255, 0);
  5947. border:none;
  5948. border-radius:0px;
  5949. -moz-box-shadow:none;
  5950. -webkit-box-shadow:none;
  5951. box-shadow:none;
  5952. }
  5953. #u75535 {
  5954. border-width:0px;
  5955. position:absolute;
  5956. left:22px;
  5957. top:0px;
  5958. width:75px;
  5959. height:20px;
  5960. display:flex;
  5961. }
  5962. #u75535 .text {
  5963. position:absolute;
  5964. align-self:center;
  5965. padding:2px 2px 2px 3px;
  5966. box-sizing:border-box;
  5967. width:100%;
  5968. }
  5969. #u75535_text {
  5970. border-width:0px;
  5971. white-space:nowrap;
  5972. text-transform:none;
  5973. }
  5974. #u75536 {
  5975. border-width:0px;
  5976. position:absolute;
  5977. left:0px;
  5978. top:0px;
  5979. width:0px;
  5980. height:0px;
  5981. }
  5982. #u75537_div {
  5983. border-width:0px;
  5984. position:absolute;
  5985. left:0px;
  5986. top:0px;
  5987. width:140px;
  5988. height:30px;
  5989. background:inherit;
  5990. background-color:rgba(255, 255, 255, 1);
  5991. box-sizing:border-box;
  5992. border-width:1px;
  5993. border-style:solid;
  5994. border-color:rgba(201, 201, 201, 1);
  5995. border-radius:4px;
  5996. -moz-box-shadow:none;
  5997. -webkit-box-shadow:none;
  5998. box-shadow:none;
  5999. font-family:'Microsoft YaHei', sans-serif;
  6000. font-weight:400;
  6001. font-style:normal;
  6002. font-size:14px;
  6003. color:#CCCCCC;
  6004. text-align:left;
  6005. }
  6006. #u75537 {
  6007. border-width:0px;
  6008. position:absolute;
  6009. left:818px;
  6010. top:162px;
  6011. width:140px;
  6012. height:30px;
  6013. display:flex;
  6014. font-family:'Microsoft YaHei', sans-serif;
  6015. font-weight:400;
  6016. font-style:normal;
  6017. font-size:14px;
  6018. color:#CCCCCC;
  6019. text-align:left;
  6020. }
  6021. #u75537 .text {
  6022. position:absolute;
  6023. align-self:center;
  6024. padding:2px 8px 2px 8px;
  6025. box-sizing:border-box;
  6026. width:100%;
  6027. }
  6028. #u75537_text {
  6029. border-width:0px;
  6030. word-wrap:break-word;
  6031. text-transform:none;
  6032. visibility:hidden;
  6033. }
  6034. #u75538_input {
  6035. position:absolute;
  6036. left:0px;
  6037. top:0px;
  6038. width:127px;
  6039. height:25px;
  6040. padding:2px 2px 2px 2px;
  6041. font-family:'Microsoft YaHei', sans-serif;
  6042. font-weight:400;
  6043. font-style:normal;
  6044. font-size:10px;
  6045. letter-spacing:normal;
  6046. color:#000000;
  6047. vertical-align:none;
  6048. text-align:left;
  6049. text-transform:none;
  6050. background-color:transparent;
  6051. border-color:transparent;
  6052. }
  6053. #u75538_input.disabled {
  6054. position:absolute;
  6055. left:0px;
  6056. top:0px;
  6057. width:127px;
  6058. height:25px;
  6059. padding:2px 2px 2px 2px;
  6060. font-family:'Microsoft YaHei', sans-serif;
  6061. font-weight:400;
  6062. font-style:normal;
  6063. font-size:10px;
  6064. letter-spacing:normal;
  6065. color:#000000;
  6066. vertical-align:none;
  6067. text-align:left;
  6068. text-transform:none;
  6069. background-color:transparent;
  6070. border-color:transparent;
  6071. }
  6072. #u75538_div {
  6073. border-width:0px;
  6074. position:absolute;
  6075. left:0px;
  6076. top:0px;
  6077. width:127px;
  6078. height:25px;
  6079. background:inherit;
  6080. background-color:rgba(255, 255, 255, 1);
  6081. border:none;
  6082. border-radius:0px;
  6083. -moz-box-shadow:none;
  6084. -webkit-box-shadow:none;
  6085. box-shadow:none;
  6086. font-family:'Microsoft YaHei', sans-serif;
  6087. font-weight:400;
  6088. font-style:normal;
  6089. font-size:10px;
  6090. }
  6091. #u75538 {
  6092. border-width:0px;
  6093. position:absolute;
  6094. left:826px;
  6095. top:163px;
  6096. width:127px;
  6097. height:25px;
  6098. display:flex;
  6099. font-family:'Microsoft YaHei', sans-serif;
  6100. font-weight:400;
  6101. font-style:normal;
  6102. font-size:10px;
  6103. }
  6104. #u75538 .text {
  6105. position:absolute;
  6106. align-self:center;
  6107. padding:2px 2px 2px 2px;
  6108. box-sizing:border-box;
  6109. width:100%;
  6110. }
  6111. #u75538_div.disabled {
  6112. border-width:0px;
  6113. position:absolute;
  6114. left:0px;
  6115. top:0px;
  6116. width:127px;
  6117. height:25px;
  6118. background:inherit;
  6119. background-color:rgba(240, 240, 240, 1);
  6120. border:none;
  6121. border-radius:0px;
  6122. -moz-box-shadow:none;
  6123. -webkit-box-shadow:none;
  6124. box-shadow:none;
  6125. font-family:'Microsoft YaHei', sans-serif;
  6126. font-weight:400;
  6127. font-style:normal;
  6128. font-size:10px;
  6129. }
  6130. #u75538.disabled {
  6131. }
  6132. #u75539_div {
  6133. border-width:0px;
  6134. position:absolute;
  6135. left:0px;
  6136. top:0px;
  6137. width:79px;
  6138. height:30px;
  6139. background:inherit;
  6140. background-color:rgba(255, 255, 255, 1);
  6141. box-sizing:border-box;
  6142. border-width:1px;
  6143. border-style:solid;
  6144. border-color:rgba(170, 170, 170, 1);
  6145. border-radius:4px;
  6146. -moz-box-shadow:none;
  6147. -webkit-box-shadow:none;
  6148. box-shadow:none;
  6149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6150. font-weight:400;
  6151. font-style:normal;
  6152. font-size:12px;
  6153. color:#555555;
  6154. }
  6155. #u75539 {
  6156. border-width:0px;
  6157. position:absolute;
  6158. left:757px;
  6159. top:212px;
  6160. width:79px;
  6161. height:30px;
  6162. display:flex;
  6163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6164. font-weight:400;
  6165. font-style:normal;
  6166. font-size:12px;
  6167. color:#555555;
  6168. }
  6169. #u75539 .text {
  6170. position:absolute;
  6171. align-self:center;
  6172. padding:5px 15px 5px 15px;
  6173. box-sizing:border-box;
  6174. width:100%;
  6175. }
  6176. #u75539_text {
  6177. border-width:0px;
  6178. white-space:nowrap;
  6179. text-transform:none;
  6180. }
  6181. #u75540_div {
  6182. border-width:0px;
  6183. position:absolute;
  6184. left:0px;
  6185. top:0px;
  6186. width:79px;
  6187. height:30px;
  6188. background:inherit;
  6189. background-color:rgba(255, 255, 255, 1);
  6190. box-sizing:border-box;
  6191. border-width:1px;
  6192. border-style:solid;
  6193. border-color:rgba(170, 170, 170, 1);
  6194. border-radius:4px;
  6195. -moz-box-shadow:none;
  6196. -webkit-box-shadow:none;
  6197. box-shadow:none;
  6198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6199. font-weight:400;
  6200. font-style:normal;
  6201. font-size:12px;
  6202. color:#555555;
  6203. }
  6204. #u75540 {
  6205. border-width:0px;
  6206. position:absolute;
  6207. left:846px;
  6208. top:212px;
  6209. width:79px;
  6210. height:30px;
  6211. display:flex;
  6212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6213. font-weight:400;
  6214. font-style:normal;
  6215. font-size:12px;
  6216. color:#555555;
  6217. }
  6218. #u75540 .text {
  6219. position:absolute;
  6220. align-self:center;
  6221. padding:5px 15px 5px 15px;
  6222. box-sizing:border-box;
  6223. width:100%;
  6224. }
  6225. #u75540_text {
  6226. border-width:0px;
  6227. white-space:nowrap;
  6228. text-transform:none;
  6229. }
  6230. #u75541 {
  6231. border-width:0px;
  6232. position:absolute;
  6233. left:0px;
  6234. top:0px;
  6235. width:0px;
  6236. height:0px;
  6237. }
  6238. #u75542_div {
  6239. border-width:0px;
  6240. position:absolute;
  6241. left:0px;
  6242. top:0px;
  6243. width:500px;
  6244. height:514px;
  6245. background:inherit;
  6246. background-color:rgba(255, 255, 255, 1);
  6247. box-sizing:border-box;
  6248. border-width:1px;
  6249. border-style:solid;
  6250. border-color:rgba(215, 215, 215, 1);
  6251. border-radius:0px;
  6252. -moz-box-shadow:none;
  6253. -webkit-box-shadow:none;
  6254. box-shadow:none;
  6255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6256. font-weight:400;
  6257. font-style:normal;
  6258. font-size:14px;
  6259. color:#AAAAAA;
  6260. text-align:center;
  6261. line-height:30px;
  6262. }
  6263. #u75542 {
  6264. border-width:0px;
  6265. position:absolute;
  6266. left:861px;
  6267. top:519px;
  6268. width:500px;
  6269. height:514px;
  6270. display:flex;
  6271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6272. font-weight:400;
  6273. font-style:normal;
  6274. font-size:14px;
  6275. color:#AAAAAA;
  6276. text-align:center;
  6277. line-height:30px;
  6278. }
  6279. #u75542 .text {
  6280. position:absolute;
  6281. align-self:center;
  6282. padding:5px 10px 5px 10px;
  6283. box-sizing:border-box;
  6284. width:100%;
  6285. }
  6286. #u75542_text {
  6287. border-width:0px;
  6288. word-wrap:break-word;
  6289. text-transform:none;
  6290. visibility:hidden;
  6291. }
  6292. #u75543_div {
  6293. border-width:0px;
  6294. position:absolute;
  6295. left:0px;
  6296. top:0px;
  6297. width:83px;
  6298. height:35px;
  6299. background:inherit;
  6300. background-color:rgba(255, 255, 255, 0);
  6301. border:none;
  6302. border-top:0px;
  6303. border-right:0px;
  6304. border-bottom:0px;
  6305. border-radius:0px;
  6306. border-top-left-radius:0px;
  6307. border-bottom-left-radius:0px;
  6308. -moz-box-shadow:none;
  6309. -webkit-box-shadow:none;
  6310. box-shadow:none;
  6311. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6312. font-weight:500;
  6313. font-style:normal;
  6314. font-size:18px;
  6315. }
  6316. #u75543 {
  6317. border-width:0px;
  6318. position:absolute;
  6319. left:881px;
  6320. top:537px;
  6321. width:83px;
  6322. height:35px;
  6323. display:flex;
  6324. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6325. font-weight:500;
  6326. font-style:normal;
  6327. font-size:18px;
  6328. }
  6329. #u75543 .text {
  6330. position:absolute;
  6331. align-self:center;
  6332. padding:5px 10px 5px 0px;
  6333. box-sizing:border-box;
  6334. width:100%;
  6335. }
  6336. #u75543_text {
  6337. border-width:0px;
  6338. white-space:nowrap;
  6339. text-transform:none;
  6340. }
  6341. #u75544 {
  6342. border-width:0px;
  6343. position:absolute;
  6344. left:0px;
  6345. top:0px;
  6346. width:0px;
  6347. height:0px;
  6348. }
  6349. #u75545_div {
  6350. border-width:0px;
  6351. position:absolute;
  6352. left:0px;
  6353. top:0px;
  6354. width:500px;
  6355. height:60px;
  6356. background:inherit;
  6357. background-color:rgba(255, 255, 255, 1);
  6358. box-sizing:border-box;
  6359. border-width:1px;
  6360. border-style:solid;
  6361. border-color:rgba(215, 215, 215, 1);
  6362. border-radius:0px;
  6363. -moz-box-shadow:none;
  6364. -webkit-box-shadow:none;
  6365. box-shadow:none;
  6366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6367. font-weight:400;
  6368. font-style:normal;
  6369. font-size:14px;
  6370. color:#AAAAAA;
  6371. text-align:center;
  6372. line-height:30px;
  6373. }
  6374. #u75545 {
  6375. border-width:0px;
  6376. position:absolute;
  6377. left:861px;
  6378. top:973px;
  6379. width:500px;
  6380. height:60px;
  6381. display:flex;
  6382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6383. font-weight:400;
  6384. font-style:normal;
  6385. font-size:14px;
  6386. color:#AAAAAA;
  6387. text-align:center;
  6388. line-height:30px;
  6389. }
  6390. #u75545 .text {
  6391. position:absolute;
  6392. align-self:center;
  6393. padding:5px 10px 5px 10px;
  6394. box-sizing:border-box;
  6395. width:100%;
  6396. }
  6397. #u75545_text {
  6398. border-width:0px;
  6399. word-wrap:break-word;
  6400. text-transform:none;
  6401. visibility:hidden;
  6402. }
  6403. #u75546_div {
  6404. border-width:0px;
  6405. position:absolute;
  6406. left:0px;
  6407. top:0px;
  6408. width:60px;
  6409. height:30px;
  6410. background:inherit;
  6411. background-color:rgba(24, 144, 255, 1);
  6412. border:none;
  6413. border-radius:4px;
  6414. -moz-box-shadow:none;
  6415. -webkit-box-shadow:none;
  6416. box-shadow:none;
  6417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6418. font-weight:400;
  6419. font-style:normal;
  6420. font-size:14px;
  6421. color:#FFFFFF;
  6422. }
  6423. #u75546 {
  6424. border-width:0px;
  6425. position:absolute;
  6426. left:1281px;
  6427. top:988px;
  6428. width:60px;
  6429. height:30px;
  6430. display:flex;
  6431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6432. font-weight:400;
  6433. font-style:normal;
  6434. font-size:14px;
  6435. color:#FFFFFF;
  6436. }
  6437. #u75546 .text {
  6438. position:absolute;
  6439. align-self:center;
  6440. padding:2px 2px 2px 2px;
  6441. box-sizing:border-box;
  6442. width:100%;
  6443. }
  6444. #u75546_text {
  6445. border-width:0px;
  6446. word-wrap:break-word;
  6447. text-transform:none;
  6448. }
  6449. #u75547_div {
  6450. border-width:0px;
  6451. position:absolute;
  6452. left:0px;
  6453. top:0px;
  6454. width:60px;
  6455. height:30px;
  6456. background:inherit;
  6457. background-color:rgba(255, 255, 255, 1);
  6458. box-sizing:border-box;
  6459. border-width:1px;
  6460. border-style:solid;
  6461. border-color:rgba(170, 170, 170, 1);
  6462. border-radius:4px;
  6463. -moz-box-shadow:none;
  6464. -webkit-box-shadow:none;
  6465. box-shadow:none;
  6466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6467. font-weight:400;
  6468. font-style:normal;
  6469. font-size:14px;
  6470. }
  6471. #u75547 {
  6472. border-width:0px;
  6473. position:absolute;
  6474. left:1211px;
  6475. top:988px;
  6476. width:60px;
  6477. height:30px;
  6478. display:flex;
  6479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6480. font-weight:400;
  6481. font-style:normal;
  6482. font-size:14px;
  6483. }
  6484. #u75547 .text {
  6485. position:absolute;
  6486. align-self:center;
  6487. padding:2px 2px 2px 2px;
  6488. box-sizing:border-box;
  6489. width:100%;
  6490. }
  6491. #u75547_text {
  6492. border-width:0px;
  6493. word-wrap:break-word;
  6494. text-transform:none;
  6495. }
  6496. #u75548_div {
  6497. border-width:0px;
  6498. position:absolute;
  6499. left:0px;
  6500. top:0px;
  6501. width:440px;
  6502. height:40px;
  6503. background:inherit;
  6504. background-color:rgba(255, 255, 128, 0.2);
  6505. border:none;
  6506. border-top:0px;
  6507. border-right:0px;
  6508. border-bottom:0px;
  6509. border-radius:0px;
  6510. border-top-left-radius:0px;
  6511. border-bottom-left-radius:0px;
  6512. -moz-box-shadow:none;
  6513. -webkit-box-shadow:none;
  6514. box-shadow:none;
  6515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6516. font-weight:400;
  6517. font-style:normal;
  6518. font-size:14px;
  6519. color:#F59A23;
  6520. }
  6521. #u75548 {
  6522. border-width:0px;
  6523. position:absolute;
  6524. left:907px;
  6525. top:595px;
  6526. width:440px;
  6527. height:40px;
  6528. display:flex;
  6529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6530. font-weight:400;
  6531. font-style:normal;
  6532. font-size:14px;
  6533. color:#F59A23;
  6534. }
  6535. #u75548 .text {
  6536. position:absolute;
  6537. align-self:center;
  6538. padding:5px 10px 5px 20px;
  6539. box-sizing:border-box;
  6540. width:100%;
  6541. }
  6542. #u75548_text {
  6543. border-width:0px;
  6544. word-wrap:break-word;
  6545. text-transform:none;
  6546. }
  6547. #u75549 {
  6548. border-width:0px;
  6549. position:absolute;
  6550. left:923px;
  6551. top:665px;
  6552. width:168px;
  6553. height:260px;
  6554. }
  6555. #u75549_children {
  6556. border-width:0px;
  6557. position:absolute;
  6558. left:0px;
  6559. top:0px;
  6560. width:0px;
  6561. height:0px;
  6562. }
  6563. #u75550 {
  6564. border-width:0px;
  6565. position:absolute;
  6566. left:0px;
  6567. top:0px;
  6568. width:113px;
  6569. height:20px;
  6570. color:#298FFF;
  6571. }
  6572. #u75551_img {
  6573. border-width:0px;
  6574. position:absolute;
  6575. left:0px;
  6576. top:0px;
  6577. width:9px;
  6578. height:9px;
  6579. }
  6580. #u75551 {
  6581. border-width:0px;
  6582. position:absolute;
  6583. left:6px;
  6584. top:6px;
  6585. width:9px;
  6586. height:9px;
  6587. display:flex;
  6588. }
  6589. #u75551 .text {
  6590. position:absolute;
  6591. align-self:center;
  6592. padding:2px 2px 2px 2px;
  6593. box-sizing:border-box;
  6594. width:100%;
  6595. }
  6596. #u75551_img.selected {
  6597. }
  6598. #u75551.selected {
  6599. }
  6600. #u75551_text {
  6601. border-width:0px;
  6602. word-wrap:break-word;
  6603. text-transform:none;
  6604. visibility:hidden;
  6605. }
  6606. #u75552_div {
  6607. border-width:0px;
  6608. position:absolute;
  6609. left:0px;
  6610. top:0px;
  6611. width:91px;
  6612. height:20px;
  6613. background:inherit;
  6614. background-color:rgba(255, 255, 255, 0);
  6615. border:none;
  6616. border-radius:0px;
  6617. -moz-box-shadow:none;
  6618. -webkit-box-shadow:none;
  6619. box-shadow:none;
  6620. }
  6621. #u75552 {
  6622. border-width:0px;
  6623. position:absolute;
  6624. left:22px;
  6625. top:0px;
  6626. width:91px;
  6627. height:20px;
  6628. display:flex;
  6629. }
  6630. #u75552 .text {
  6631. position:absolute;
  6632. align-self:center;
  6633. padding:2px 2px 2px 3px;
  6634. box-sizing:border-box;
  6635. width:100%;
  6636. }
  6637. #u75552_text {
  6638. border-width:0px;
  6639. white-space:nowrap;
  6640. text-transform:none;
  6641. }
  6642. #u75550_children {
  6643. border-width:0px;
  6644. position:absolute;
  6645. left:0px;
  6646. top:0px;
  6647. width:0px;
  6648. height:0px;
  6649. }
  6650. #u75553 {
  6651. border-width:0px;
  6652. position:absolute;
  6653. left:20px;
  6654. top:20px;
  6655. width:148px;
  6656. height:20px;
  6657. }
  6658. #u75554_div {
  6659. border-width:0px;
  6660. position:absolute;
  6661. left:0px;
  6662. top:0px;
  6663. width:126px;
  6664. height:20px;
  6665. background:inherit;
  6666. background-color:rgba(255, 255, 255, 0);
  6667. border:none;
  6668. border-radius:0px;
  6669. -moz-box-shadow:none;
  6670. -webkit-box-shadow:none;
  6671. box-shadow:none;
  6672. }
  6673. #u75554 {
  6674. border-width:0px;
  6675. position:absolute;
  6676. left:22px;
  6677. top:0px;
  6678. width:126px;
  6679. height:20px;
  6680. display:flex;
  6681. }
  6682. #u75554 .text {
  6683. position:absolute;
  6684. align-self:center;
  6685. padding:2px 2px 2px 3px;
  6686. box-sizing:border-box;
  6687. width:100%;
  6688. }
  6689. #u75554_text {
  6690. border-width:0px;
  6691. white-space:nowrap;
  6692. text-transform:none;
  6693. }
  6694. #u75555 {
  6695. border-width:0px;
  6696. position:absolute;
  6697. left:20px;
  6698. top:40px;
  6699. width:122px;
  6700. height:20px;
  6701. }
  6702. #u75556_div {
  6703. border-width:0px;
  6704. position:absolute;
  6705. left:0px;
  6706. top:0px;
  6707. width:100px;
  6708. height:20px;
  6709. background:inherit;
  6710. background-color:rgba(255, 255, 255, 0);
  6711. border:none;
  6712. border-radius:0px;
  6713. -moz-box-shadow:none;
  6714. -webkit-box-shadow:none;
  6715. box-shadow:none;
  6716. }
  6717. #u75556 {
  6718. border-width:0px;
  6719. position:absolute;
  6720. left:22px;
  6721. top:0px;
  6722. width:100px;
  6723. height:20px;
  6724. display:flex;
  6725. }
  6726. #u75556 .text {
  6727. position:absolute;
  6728. align-self:center;
  6729. padding:2px 2px 2px 3px;
  6730. box-sizing:border-box;
  6731. width:100%;
  6732. }
  6733. #u75556_text {
  6734. border-width:0px;
  6735. white-space:nowrap;
  6736. text-transform:none;
  6737. }
  6738. #u75557 {
  6739. border-width:0px;
  6740. position:absolute;
  6741. left:20px;
  6742. top:60px;
  6743. width:122px;
  6744. height:20px;
  6745. }
  6746. #u75558_div {
  6747. border-width:0px;
  6748. position:absolute;
  6749. left:0px;
  6750. top:0px;
  6751. width:100px;
  6752. height:20px;
  6753. background:inherit;
  6754. background-color:rgba(255, 255, 255, 0);
  6755. border:none;
  6756. border-radius:0px;
  6757. -moz-box-shadow:none;
  6758. -webkit-box-shadow:none;
  6759. box-shadow:none;
  6760. }
  6761. #u75558 {
  6762. border-width:0px;
  6763. position:absolute;
  6764. left:22px;
  6765. top:0px;
  6766. width:100px;
  6767. height:20px;
  6768. display:flex;
  6769. }
  6770. #u75558 .text {
  6771. position:absolute;
  6772. align-self:center;
  6773. padding:2px 2px 2px 3px;
  6774. box-sizing:border-box;
  6775. width:100%;
  6776. }
  6777. #u75558_text {
  6778. border-width:0px;
  6779. white-space:nowrap;
  6780. text-transform:none;
  6781. }
  6782. #u75559 {
  6783. border-width:0px;
  6784. position:absolute;
  6785. left:0px;
  6786. top:80px;
  6787. width:113px;
  6788. height:20px;
  6789. }
  6790. #u75560_img {
  6791. border-width:0px;
  6792. position:absolute;
  6793. left:0px;
  6794. top:0px;
  6795. width:9px;
  6796. height:9px;
  6797. }
  6798. #u75560 {
  6799. border-width:0px;
  6800. position:absolute;
  6801. left:6px;
  6802. top:6px;
  6803. width:9px;
  6804. height:9px;
  6805. display:flex;
  6806. }
  6807. #u75560 .text {
  6808. position:absolute;
  6809. align-self:center;
  6810. padding:2px 2px 2px 2px;
  6811. box-sizing:border-box;
  6812. width:100%;
  6813. }
  6814. #u75560_img.selected {
  6815. }
  6816. #u75560.selected {
  6817. }
  6818. #u75560_text {
  6819. border-width:0px;
  6820. word-wrap:break-word;
  6821. text-transform:none;
  6822. visibility:hidden;
  6823. }
  6824. #u75561_div {
  6825. border-width:0px;
  6826. position:absolute;
  6827. left:0px;
  6828. top:0px;
  6829. width:91px;
  6830. height:20px;
  6831. background:inherit;
  6832. background-color:rgba(255, 255, 255, 0);
  6833. border:none;
  6834. border-radius:0px;
  6835. -moz-box-shadow:none;
  6836. -webkit-box-shadow:none;
  6837. box-shadow:none;
  6838. }
  6839. #u75561 {
  6840. border-width:0px;
  6841. position:absolute;
  6842. left:22px;
  6843. top:0px;
  6844. width:91px;
  6845. height:20px;
  6846. display:flex;
  6847. }
  6848. #u75561 .text {
  6849. position:absolute;
  6850. align-self:center;
  6851. padding:2px 2px 2px 3px;
  6852. box-sizing:border-box;
  6853. width:100%;
  6854. }
  6855. #u75561_text {
  6856. border-width:0px;
  6857. white-space:nowrap;
  6858. text-transform:none;
  6859. }
  6860. #u75559_children {
  6861. border-width:0px;
  6862. position:absolute;
  6863. left:0px;
  6864. top:0px;
  6865. width:0px;
  6866. height:0px;
  6867. }
  6868. #u75562 {
  6869. border-width:0px;
  6870. position:absolute;
  6871. left:20px;
  6872. top:20px;
  6873. width:93px;
  6874. height:20px;
  6875. }
  6876. #u75563_div {
  6877. border-width:0px;
  6878. position:absolute;
  6879. left:0px;
  6880. top:0px;
  6881. width:71px;
  6882. height:20px;
  6883. background:inherit;
  6884. background-color:rgba(255, 255, 255, 0);
  6885. border:none;
  6886. border-radius:0px;
  6887. -moz-box-shadow:none;
  6888. -webkit-box-shadow:none;
  6889. box-shadow:none;
  6890. }
  6891. #u75563 {
  6892. border-width:0px;
  6893. position:absolute;
  6894. left:22px;
  6895. top:0px;
  6896. width:71px;
  6897. height:20px;
  6898. display:flex;
  6899. }
  6900. #u75563 .text {
  6901. position:absolute;
  6902. align-self:center;
  6903. padding:2px 2px 2px 3px;
  6904. box-sizing:border-box;
  6905. width:100%;
  6906. }
  6907. #u75563_text {
  6908. border-width:0px;
  6909. white-space:nowrap;
  6910. text-transform:none;
  6911. }
  6912. #u75564 {
  6913. border-width:0px;
  6914. position:absolute;
  6915. left:20px;
  6916. top:40px;
  6917. width:93px;
  6918. height:20px;
  6919. }
  6920. #u75565_div {
  6921. border-width:0px;
  6922. position:absolute;
  6923. left:0px;
  6924. top:0px;
  6925. width:71px;
  6926. height:20px;
  6927. background:inherit;
  6928. background-color:rgba(255, 255, 255, 0);
  6929. border:none;
  6930. border-radius:0px;
  6931. -moz-box-shadow:none;
  6932. -webkit-box-shadow:none;
  6933. box-shadow:none;
  6934. }
  6935. #u75565 {
  6936. border-width:0px;
  6937. position:absolute;
  6938. left:22px;
  6939. top:0px;
  6940. width:71px;
  6941. height:20px;
  6942. display:flex;
  6943. }
  6944. #u75565 .text {
  6945. position:absolute;
  6946. align-self:center;
  6947. padding:2px 2px 2px 3px;
  6948. box-sizing:border-box;
  6949. width:100%;
  6950. }
  6951. #u75565_text {
  6952. border-width:0px;
  6953. white-space:nowrap;
  6954. text-transform:none;
  6955. }
  6956. #u75566 {
  6957. border-width:0px;
  6958. position:absolute;
  6959. left:0px;
  6960. top:140px;
  6961. width:80px;
  6962. height:20px;
  6963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6964. font-weight:400;
  6965. font-style:normal;
  6966. }
  6967. #u75567_img {
  6968. border-width:0px;
  6969. position:absolute;
  6970. left:0px;
  6971. top:0px;
  6972. width:9px;
  6973. height:9px;
  6974. }
  6975. #u75567 {
  6976. border-width:0px;
  6977. position:absolute;
  6978. left:6px;
  6979. top:6px;
  6980. width:9px;
  6981. height:9px;
  6982. display:flex;
  6983. }
  6984. #u75567 .text {
  6985. position:absolute;
  6986. align-self:center;
  6987. padding:2px 2px 2px 2px;
  6988. box-sizing:border-box;
  6989. width:100%;
  6990. }
  6991. #u75567_img.selected {
  6992. }
  6993. #u75567.selected {
  6994. }
  6995. #u75567_text {
  6996. border-width:0px;
  6997. word-wrap:break-word;
  6998. text-transform:none;
  6999. visibility:hidden;
  7000. }
  7001. #u75568_div {
  7002. border-width:0px;
  7003. position:absolute;
  7004. left:0px;
  7005. top:0px;
  7006. width:58px;
  7007. height:20px;
  7008. background:inherit;
  7009. background-color:rgba(255, 255, 255, 0);
  7010. border:none;
  7011. border-radius:0px;
  7012. -moz-box-shadow:none;
  7013. -webkit-box-shadow:none;
  7014. box-shadow:none;
  7015. }
  7016. #u75568 {
  7017. border-width:0px;
  7018. position:absolute;
  7019. left:22px;
  7020. top:0px;
  7021. width:58px;
  7022. height:20px;
  7023. display:flex;
  7024. }
  7025. #u75568 .text {
  7026. position:absolute;
  7027. align-self:center;
  7028. padding:2px 2px 2px 3px;
  7029. box-sizing:border-box;
  7030. width:100%;
  7031. }
  7032. #u75568_text {
  7033. border-width:0px;
  7034. white-space:nowrap;
  7035. text-transform:none;
  7036. }
  7037. #u75566_children {
  7038. border-width:0px;
  7039. position:absolute;
  7040. left:0px;
  7041. top:0px;
  7042. width:0px;
  7043. height:0px;
  7044. }
  7045. #u75569 {
  7046. border-width:0px;
  7047. position:absolute;
  7048. left:20px;
  7049. top:20px;
  7050. width:97px;
  7051. height:20px;
  7052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7053. font-weight:400;
  7054. font-style:normal;
  7055. }
  7056. #u75570_div {
  7057. border-width:0px;
  7058. position:absolute;
  7059. left:0px;
  7060. top:0px;
  7061. width:75px;
  7062. height:20px;
  7063. background:inherit;
  7064. background-color:rgba(255, 255, 255, 0);
  7065. border:none;
  7066. border-radius:0px;
  7067. -moz-box-shadow:none;
  7068. -webkit-box-shadow:none;
  7069. box-shadow:none;
  7070. }
  7071. #u75570 {
  7072. border-width:0px;
  7073. position:absolute;
  7074. left:22px;
  7075. top:0px;
  7076. width:75px;
  7077. height:20px;
  7078. display:flex;
  7079. }
  7080. #u75570 .text {
  7081. position:absolute;
  7082. align-self:center;
  7083. padding:2px 2px 2px 3px;
  7084. box-sizing:border-box;
  7085. width:100%;
  7086. }
  7087. #u75570_text {
  7088. border-width:0px;
  7089. white-space:nowrap;
  7090. text-transform:none;
  7091. }
  7092. #u75571 {
  7093. border-width:0px;
  7094. position:absolute;
  7095. left:20px;
  7096. top:40px;
  7097. width:97px;
  7098. height:20px;
  7099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7100. font-weight:400;
  7101. font-style:normal;
  7102. }
  7103. #u75572_div {
  7104. border-width:0px;
  7105. position:absolute;
  7106. left:0px;
  7107. top:0px;
  7108. width:75px;
  7109. height:20px;
  7110. background:inherit;
  7111. background-color:rgba(255, 255, 255, 0);
  7112. border:none;
  7113. border-radius:0px;
  7114. -moz-box-shadow:none;
  7115. -webkit-box-shadow:none;
  7116. box-shadow:none;
  7117. }
  7118. #u75572 {
  7119. border-width:0px;
  7120. position:absolute;
  7121. left:22px;
  7122. top:0px;
  7123. width:75px;
  7124. height:20px;
  7125. display:flex;
  7126. }
  7127. #u75572 .text {
  7128. position:absolute;
  7129. align-self:center;
  7130. padding:2px 2px 2px 3px;
  7131. box-sizing:border-box;
  7132. width:100%;
  7133. }
  7134. #u75572_text {
  7135. border-width:0px;
  7136. white-space:nowrap;
  7137. text-transform:none;
  7138. }
  7139. #u75573 {
  7140. border-width:0px;
  7141. position:absolute;
  7142. left:0px;
  7143. top:200px;
  7144. width:80px;
  7145. height:20px;
  7146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7147. font-weight:400;
  7148. font-style:normal;
  7149. }
  7150. #u75574_img {
  7151. border-width:0px;
  7152. position:absolute;
  7153. left:0px;
  7154. top:0px;
  7155. width:9px;
  7156. height:9px;
  7157. }
  7158. #u75574 {
  7159. border-width:0px;
  7160. position:absolute;
  7161. left:6px;
  7162. top:6px;
  7163. width:9px;
  7164. height:9px;
  7165. display:flex;
  7166. }
  7167. #u75574 .text {
  7168. position:absolute;
  7169. align-self:center;
  7170. padding:2px 2px 2px 2px;
  7171. box-sizing:border-box;
  7172. width:100%;
  7173. }
  7174. #u75574_img.selected {
  7175. }
  7176. #u75574.selected {
  7177. }
  7178. #u75574_text {
  7179. border-width:0px;
  7180. word-wrap:break-word;
  7181. text-transform:none;
  7182. visibility:hidden;
  7183. }
  7184. #u75575_div {
  7185. border-width:0px;
  7186. position:absolute;
  7187. left:0px;
  7188. top:0px;
  7189. width:58px;
  7190. height:20px;
  7191. background:inherit;
  7192. background-color:rgba(255, 255, 255, 0);
  7193. border:none;
  7194. border-radius:0px;
  7195. -moz-box-shadow:none;
  7196. -webkit-box-shadow:none;
  7197. box-shadow:none;
  7198. }
  7199. #u75575 {
  7200. border-width:0px;
  7201. position:absolute;
  7202. left:22px;
  7203. top:0px;
  7204. width:58px;
  7205. height:20px;
  7206. display:flex;
  7207. }
  7208. #u75575 .text {
  7209. position:absolute;
  7210. align-self:center;
  7211. padding:2px 2px 2px 3px;
  7212. box-sizing:border-box;
  7213. width:100%;
  7214. }
  7215. #u75575_text {
  7216. border-width:0px;
  7217. white-space:nowrap;
  7218. text-transform:none;
  7219. }
  7220. #u75573_children {
  7221. border-width:0px;
  7222. position:absolute;
  7223. left:0px;
  7224. top:0px;
  7225. width:0px;
  7226. height:0px;
  7227. }
  7228. #u75576 {
  7229. border-width:0px;
  7230. position:absolute;
  7231. left:20px;
  7232. top:20px;
  7233. width:97px;
  7234. height:20px;
  7235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7236. font-weight:400;
  7237. font-style:normal;
  7238. }
  7239. #u75577_div {
  7240. border-width:0px;
  7241. position:absolute;
  7242. left:0px;
  7243. top:0px;
  7244. width:75px;
  7245. height:20px;
  7246. background:inherit;
  7247. background-color:rgba(255, 255, 255, 0);
  7248. border:none;
  7249. border-radius:0px;
  7250. -moz-box-shadow:none;
  7251. -webkit-box-shadow:none;
  7252. box-shadow:none;
  7253. }
  7254. #u75577 {
  7255. border-width:0px;
  7256. position:absolute;
  7257. left:22px;
  7258. top:0px;
  7259. width:75px;
  7260. height:20px;
  7261. display:flex;
  7262. }
  7263. #u75577 .text {
  7264. position:absolute;
  7265. align-self:center;
  7266. padding:2px 2px 2px 3px;
  7267. box-sizing:border-box;
  7268. width:100%;
  7269. }
  7270. #u75577_text {
  7271. border-width:0px;
  7272. white-space:nowrap;
  7273. text-transform:none;
  7274. }
  7275. #u75578 {
  7276. border-width:0px;
  7277. position:absolute;
  7278. left:20px;
  7279. top:40px;
  7280. width:97px;
  7281. height:20px;
  7282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7283. font-weight:400;
  7284. font-style:normal;
  7285. }
  7286. #u75579_div {
  7287. border-width:0px;
  7288. position:absolute;
  7289. left:0px;
  7290. top:0px;
  7291. width:75px;
  7292. height:20px;
  7293. background:inherit;
  7294. background-color:rgba(255, 255, 255, 0);
  7295. border:none;
  7296. border-radius:0px;
  7297. -moz-box-shadow:none;
  7298. -webkit-box-shadow:none;
  7299. box-shadow:none;
  7300. }
  7301. #u75579 {
  7302. border-width:0px;
  7303. position:absolute;
  7304. left:22px;
  7305. top:0px;
  7306. width:75px;
  7307. height:20px;
  7308. display:flex;
  7309. }
  7310. #u75579 .text {
  7311. position:absolute;
  7312. align-self:center;
  7313. padding:2px 2px 2px 3px;
  7314. box-sizing:border-box;
  7315. width:100%;
  7316. }
  7317. #u75579_text {
  7318. border-width:0px;
  7319. white-space:nowrap;
  7320. text-transform:none;
  7321. }
  7322. #u75580_img {
  7323. border-width:0px;
  7324. position:absolute;
  7325. left:0px;
  7326. top:0px;
  7327. width:10px;
  7328. height:8px;
  7329. }
  7330. #u75580 {
  7331. border-width:0px;
  7332. position:absolute;
  7333. left:1312px;
  7334. top:670px;
  7335. width:10px;
  7336. height:8px;
  7337. display:flex;
  7338. }
  7339. #u75580 .text {
  7340. position:absolute;
  7341. align-self:center;
  7342. padding:2px 2px 2px 2px;
  7343. box-sizing:border-box;
  7344. width:100%;
  7345. }
  7346. #u75580_text {
  7347. border-width:0px;
  7348. word-wrap:break-word;
  7349. text-transform:none;
  7350. visibility:hidden;
  7351. }
  7352. #u75581_img {
  7353. border-width:0px;
  7354. position:absolute;
  7355. left:0px;
  7356. top:0px;
  7357. width:10px;
  7358. height:8px;
  7359. }
  7360. #u75581 {
  7361. border-width:0px;
  7362. position:absolute;
  7363. left:1312px;
  7364. top:690px;
  7365. width:10px;
  7366. height:8px;
  7367. display:flex;
  7368. }
  7369. #u75581 .text {
  7370. position:absolute;
  7371. align-self:center;
  7372. padding:2px 2px 2px 2px;
  7373. box-sizing:border-box;
  7374. width:100%;
  7375. }
  7376. #u75581_text {
  7377. border-width:0px;
  7378. word-wrap:break-word;
  7379. text-transform:none;
  7380. visibility:hidden;
  7381. }
  7382. #u75582_img {
  7383. border-width:0px;
  7384. position:absolute;
  7385. left:0px;
  7386. top:0px;
  7387. width:10px;
  7388. height:8px;
  7389. }
  7390. #u75582 {
  7391. border-width:0px;
  7392. position:absolute;
  7393. left:1312px;
  7394. top:710px;
  7395. width:10px;
  7396. height:8px;
  7397. display:flex;
  7398. }
  7399. #u75582 .text {
  7400. position:absolute;
  7401. align-self:center;
  7402. padding:2px 2px 2px 2px;
  7403. box-sizing:border-box;
  7404. width:100%;
  7405. }
  7406. #u75582_text {
  7407. border-width:0px;
  7408. word-wrap:break-word;
  7409. text-transform:none;
  7410. visibility:hidden;
  7411. }
  7412. #u75583_img {
  7413. border-width:0px;
  7414. position:absolute;
  7415. left:0px;
  7416. top:0px;
  7417. width:10px;
  7418. height:8px;
  7419. }
  7420. #u75583 {
  7421. border-width:0px;
  7422. position:absolute;
  7423. left:1312px;
  7424. top:730px;
  7425. width:10px;
  7426. height:8px;
  7427. display:flex;
  7428. }
  7429. #u75583 .text {
  7430. position:absolute;
  7431. align-self:center;
  7432. padding:2px 2px 2px 2px;
  7433. box-sizing:border-box;
  7434. width:100%;
  7435. }
  7436. #u75583_text {
  7437. border-width:0px;
  7438. word-wrap:break-word;
  7439. text-transform:none;
  7440. visibility:hidden;
  7441. }
  7442. #u75584_img {
  7443. border-width:0px;
  7444. position:absolute;
  7445. left:0px;
  7446. top:0px;
  7447. width:10px;
  7448. height:8px;
  7449. }
  7450. #u75584 {
  7451. border-width:0px;
  7452. position:absolute;
  7453. left:1312px;
  7454. top:751px;
  7455. width:10px;
  7456. height:8px;
  7457. display:flex;
  7458. }
  7459. #u75584 .text {
  7460. position:absolute;
  7461. align-self:center;
  7462. padding:2px 2px 2px 2px;
  7463. box-sizing:border-box;
  7464. width:100%;
  7465. }
  7466. #u75584_text {
  7467. border-width:0px;
  7468. word-wrap:break-word;
  7469. text-transform:none;
  7470. visibility:hidden;
  7471. }
  7472. #u75585_img {
  7473. border-width:0px;
  7474. position:absolute;
  7475. left:0px;
  7476. top:0px;
  7477. width:10px;
  7478. height:8px;
  7479. }
  7480. #u75585 {
  7481. border-width:0px;
  7482. position:absolute;
  7483. left:1312px;
  7484. top:771px;
  7485. width:10px;
  7486. height:8px;
  7487. display:flex;
  7488. }
  7489. #u75585 .text {
  7490. position:absolute;
  7491. align-self:center;
  7492. padding:2px 2px 2px 2px;
  7493. box-sizing:border-box;
  7494. width:100%;
  7495. }
  7496. #u75585_text {
  7497. border-width:0px;
  7498. word-wrap:break-word;
  7499. text-transform:none;
  7500. visibility:hidden;
  7501. }
  7502. #u75586_img {
  7503. border-width:0px;
  7504. position:absolute;
  7505. left:0px;
  7506. top:0px;
  7507. width:10px;
  7508. height:8px;
  7509. }
  7510. #u75586 {
  7511. border-width:0px;
  7512. position:absolute;
  7513. left:1312px;
  7514. top:791px;
  7515. width:10px;
  7516. height:8px;
  7517. display:flex;
  7518. }
  7519. #u75586 .text {
  7520. position:absolute;
  7521. align-self:center;
  7522. padding:2px 2px 2px 2px;
  7523. box-sizing:border-box;
  7524. width:100%;
  7525. }
  7526. #u75586_text {
  7527. border-width:0px;
  7528. word-wrap:break-word;
  7529. text-transform:none;
  7530. visibility:hidden;
  7531. }
  7532. #u75587_img {
  7533. border-width:0px;
  7534. position:absolute;
  7535. left:0px;
  7536. top:0px;
  7537. width:10px;
  7538. height:8px;
  7539. }
  7540. #u75587 {
  7541. border-width:0px;
  7542. position:absolute;
  7543. left:1312px;
  7544. top:811px;
  7545. width:10px;
  7546. height:8px;
  7547. display:flex;
  7548. }
  7549. #u75587 .text {
  7550. position:absolute;
  7551. align-self:center;
  7552. padding:2px 2px 2px 2px;
  7553. box-sizing:border-box;
  7554. width:100%;
  7555. }
  7556. #u75587_text {
  7557. border-width:0px;
  7558. word-wrap:break-word;
  7559. text-transform:none;
  7560. visibility:hidden;
  7561. }
  7562. #u75588_img {
  7563. border-width:0px;
  7564. position:absolute;
  7565. left:0px;
  7566. top:0px;
  7567. width:10px;
  7568. height:8px;
  7569. }
  7570. #u75588 {
  7571. border-width:0px;
  7572. position:absolute;
  7573. left:1312px;
  7574. top:831px;
  7575. width:10px;
  7576. height:8px;
  7577. display:flex;
  7578. }
  7579. #u75588 .text {
  7580. position:absolute;
  7581. align-self:center;
  7582. padding:2px 2px 2px 2px;
  7583. box-sizing:border-box;
  7584. width:100%;
  7585. }
  7586. #u75588_text {
  7587. border-width:0px;
  7588. word-wrap:break-word;
  7589. text-transform:none;
  7590. visibility:hidden;
  7591. }
  7592. #u75589_img {
  7593. border-width:0px;
  7594. position:absolute;
  7595. left:0px;
  7596. top:0px;
  7597. width:10px;
  7598. height:8px;
  7599. }
  7600. #u75589 {
  7601. border-width:0px;
  7602. position:absolute;
  7603. left:1312px;
  7604. top:851px;
  7605. width:10px;
  7606. height:8px;
  7607. display:flex;
  7608. }
  7609. #u75589 .text {
  7610. position:absolute;
  7611. align-self:center;
  7612. padding:2px 2px 2px 2px;
  7613. box-sizing:border-box;
  7614. width:100%;
  7615. }
  7616. #u75589_text {
  7617. border-width:0px;
  7618. word-wrap:break-word;
  7619. text-transform:none;
  7620. visibility:hidden;
  7621. }
  7622. #u75590_img {
  7623. border-width:0px;
  7624. position:absolute;
  7625. left:0px;
  7626. top:0px;
  7627. width:10px;
  7628. height:8px;
  7629. }
  7630. #u75590 {
  7631. border-width:0px;
  7632. position:absolute;
  7633. left:1312px;
  7634. top:872px;
  7635. width:10px;
  7636. height:8px;
  7637. display:flex;
  7638. }
  7639. #u75590 .text {
  7640. position:absolute;
  7641. align-self:center;
  7642. padding:2px 2px 2px 2px;
  7643. box-sizing:border-box;
  7644. width:100%;
  7645. }
  7646. #u75590_text {
  7647. border-width:0px;
  7648. word-wrap:break-word;
  7649. text-transform:none;
  7650. visibility:hidden;
  7651. }
  7652. #u75591_img {
  7653. border-width:0px;
  7654. position:absolute;
  7655. left:0px;
  7656. top:0px;
  7657. width:10px;
  7658. height:8px;
  7659. }
  7660. #u75591 {
  7661. border-width:0px;
  7662. position:absolute;
  7663. left:1312px;
  7664. top:892px;
  7665. width:10px;
  7666. height:8px;
  7667. display:flex;
  7668. }
  7669. #u75591 .text {
  7670. position:absolute;
  7671. align-self:center;
  7672. padding:2px 2px 2px 2px;
  7673. box-sizing:border-box;
  7674. width:100%;
  7675. }
  7676. #u75591_text {
  7677. border-width:0px;
  7678. word-wrap:break-word;
  7679. text-transform:none;
  7680. visibility:hidden;
  7681. }
  7682. #u75592_img {
  7683. border-width:0px;
  7684. position:absolute;
  7685. left:0px;
  7686. top:0px;
  7687. width:10px;
  7688. height:8px;
  7689. }
  7690. #u75592 {
  7691. border-width:0px;
  7692. position:absolute;
  7693. left:1312px;
  7694. top:912px;
  7695. width:10px;
  7696. height:8px;
  7697. display:flex;
  7698. }
  7699. #u75592 .text {
  7700. position:absolute;
  7701. align-self:center;
  7702. padding:2px 2px 2px 2px;
  7703. box-sizing:border-box;
  7704. width:100%;
  7705. }
  7706. #u75592_text {
  7707. border-width:0px;
  7708. word-wrap:break-word;
  7709. text-transform:none;
  7710. visibility:hidden;
  7711. }
  7712. #u75593_div {
  7713. border-width:0px;
  7714. position:absolute;
  7715. left:0px;
  7716. top:0px;
  7717. width:21px;
  7718. height:35px;
  7719. background:inherit;
  7720. background-color:rgba(255, 255, 255, 0);
  7721. border:none;
  7722. border-top:0px;
  7723. border-right:0px;
  7724. border-bottom:0px;
  7725. border-radius:0px;
  7726. border-top-left-radius:0px;
  7727. border-bottom-left-radius:0px;
  7728. -moz-box-shadow:none;
  7729. -webkit-box-shadow:none;
  7730. box-shadow:none;
  7731. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7732. font-weight:500;
  7733. font-style:normal;
  7734. font-size:18px;
  7735. }
  7736. #u75593 {
  7737. border-width:0px;
  7738. position:absolute;
  7739. left:1340px;
  7740. top:519px;
  7741. width:21px;
  7742. height:35px;
  7743. display:flex;
  7744. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7745. font-weight:500;
  7746. font-style:normal;
  7747. font-size:18px;
  7748. }
  7749. #u75593 .text {
  7750. position:absolute;
  7751. align-self:center;
  7752. padding:5px 10px 5px 0px;
  7753. box-sizing:border-box;
  7754. width:100%;
  7755. }
  7756. #u75593_text {
  7757. border-width:0px;
  7758. white-space:nowrap;
  7759. text-transform:none;
  7760. }
  7761. #u75594 {
  7762. border-width:0px;
  7763. position:absolute;
  7764. left:0px;
  7765. top:0px;
  7766. width:0px;
  7767. height:0px;
  7768. }
  7769. #u75595_div {
  7770. border-width:0px;
  7771. position:absolute;
  7772. left:0px;
  7773. top:0px;
  7774. width:800px;
  7775. height:1200px;
  7776. background:inherit;
  7777. background-color:rgba(255, 255, 255, 1);
  7778. box-sizing:border-box;
  7779. border-width:1px;
  7780. border-style:solid;
  7781. border-color:rgba(215, 215, 215, 1);
  7782. border-radius:0px;
  7783. -moz-box-shadow:none;
  7784. -webkit-box-shadow:none;
  7785. box-shadow:none;
  7786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7787. font-weight:400;
  7788. font-style:normal;
  7789. font-size:14px;
  7790. color:#AAAAAA;
  7791. text-align:center;
  7792. line-height:30px;
  7793. }
  7794. #u75595 {
  7795. border-width:0px;
  7796. position:absolute;
  7797. left:1651px;
  7798. top:50px;
  7799. width:800px;
  7800. height:1200px;
  7801. display:flex;
  7802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7803. font-weight:400;
  7804. font-style:normal;
  7805. font-size:14px;
  7806. color:#AAAAAA;
  7807. text-align:center;
  7808. line-height:30px;
  7809. }
  7810. #u75595 .text {
  7811. position:absolute;
  7812. align-self:center;
  7813. padding:5px 10px 5px 10px;
  7814. box-sizing:border-box;
  7815. width:100%;
  7816. }
  7817. #u75595_text {
  7818. border-width:0px;
  7819. word-wrap:break-word;
  7820. text-transform:none;
  7821. visibility:hidden;
  7822. }
  7823. #u75596_div {
  7824. border-width:0px;
  7825. position:absolute;
  7826. left:0px;
  7827. top:0px;
  7828. width:83px;
  7829. height:35px;
  7830. background:inherit;
  7831. background-color:rgba(255, 255, 255, 0);
  7832. border:none;
  7833. border-top:0px;
  7834. border-right:0px;
  7835. border-bottom:0px;
  7836. border-radius:0px;
  7837. border-top-left-radius:0px;
  7838. border-bottom-left-radius:0px;
  7839. -moz-box-shadow:none;
  7840. -webkit-box-shadow:none;
  7841. box-shadow:none;
  7842. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7843. font-weight:500;
  7844. font-style:normal;
  7845. font-size:18px;
  7846. }
  7847. #u75596 {
  7848. border-width:0px;
  7849. position:absolute;
  7850. left:1671px;
  7851. top:68px;
  7852. width:83px;
  7853. height:35px;
  7854. display:flex;
  7855. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7856. font-weight:500;
  7857. font-style:normal;
  7858. font-size:18px;
  7859. }
  7860. #u75596 .text {
  7861. position:absolute;
  7862. align-self:center;
  7863. padding:5px 10px 5px 0px;
  7864. box-sizing:border-box;
  7865. width:100%;
  7866. }
  7867. #u75596_text {
  7868. border-width:0px;
  7869. white-space:nowrap;
  7870. text-transform:none;
  7871. }
  7872. #u75597 {
  7873. border-width:0px;
  7874. position:absolute;
  7875. left:0px;
  7876. top:0px;
  7877. width:0px;
  7878. height:0px;
  7879. }
  7880. #u75598_div {
  7881. border-width:0px;
  7882. position:absolute;
  7883. left:0px;
  7884. top:0px;
  7885. width:800px;
  7886. height:60px;
  7887. background:inherit;
  7888. background-color:rgba(255, 255, 255, 1);
  7889. box-sizing:border-box;
  7890. border-width:1px;
  7891. border-style:solid;
  7892. border-color:rgba(215, 215, 215, 1);
  7893. border-radius:0px;
  7894. -moz-box-shadow:none;
  7895. -webkit-box-shadow:none;
  7896. box-shadow:none;
  7897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7898. font-weight:400;
  7899. font-style:normal;
  7900. font-size:14px;
  7901. color:#AAAAAA;
  7902. text-align:center;
  7903. line-height:30px;
  7904. }
  7905. #u75598 {
  7906. border-width:0px;
  7907. position:absolute;
  7908. left:1651px;
  7909. top:1190px;
  7910. width:800px;
  7911. height:60px;
  7912. display:flex;
  7913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7914. font-weight:400;
  7915. font-style:normal;
  7916. font-size:14px;
  7917. color:#AAAAAA;
  7918. text-align:center;
  7919. line-height:30px;
  7920. }
  7921. #u75598 .text {
  7922. position:absolute;
  7923. align-self:center;
  7924. padding:5px 10px 5px 10px;
  7925. box-sizing:border-box;
  7926. width:100%;
  7927. }
  7928. #u75598_text {
  7929. border-width:0px;
  7930. word-wrap:break-word;
  7931. text-transform:none;
  7932. visibility:hidden;
  7933. }
  7934. #u75599_div {
  7935. border-width:0px;
  7936. position:absolute;
  7937. left:0px;
  7938. top:0px;
  7939. width:80px;
  7940. height:30px;
  7941. background:inherit;
  7942. background-color:rgba(24, 144, 255, 1);
  7943. border:none;
  7944. border-radius:4px;
  7945. -moz-box-shadow:none;
  7946. -webkit-box-shadow:none;
  7947. box-shadow:none;
  7948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7949. font-weight:400;
  7950. font-style:normal;
  7951. font-size:14px;
  7952. color:#FFFFFF;
  7953. }
  7954. #u75599 {
  7955. border-width:0px;
  7956. position:absolute;
  7957. left:2316px;
  7958. top:1205px;
  7959. width:80px;
  7960. height:30px;
  7961. display:flex;
  7962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7963. font-weight:400;
  7964. font-style:normal;
  7965. font-size:14px;
  7966. color:#FFFFFF;
  7967. }
  7968. #u75599 .text {
  7969. position:absolute;
  7970. align-self:center;
  7971. padding:2px 2px 2px 2px;
  7972. box-sizing:border-box;
  7973. width:100%;
  7974. }
  7975. #u75599_text {
  7976. border-width:0px;
  7977. word-wrap:break-word;
  7978. text-transform:none;
  7979. }
  7980. #u75600_div {
  7981. border-width:0px;
  7982. position:absolute;
  7983. left:0px;
  7984. top:0px;
  7985. width:80px;
  7986. height:30px;
  7987. background:inherit;
  7988. background-color:rgba(255, 255, 255, 1);
  7989. box-sizing:border-box;
  7990. border-width:1px;
  7991. border-style:solid;
  7992. border-color:rgba(170, 170, 170, 1);
  7993. border-radius:4px;
  7994. -moz-box-shadow:none;
  7995. -webkit-box-shadow:none;
  7996. box-shadow:none;
  7997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7998. font-weight:400;
  7999. font-style:normal;
  8000. font-size:14px;
  8001. }
  8002. #u75600 {
  8003. border-width:0px;
  8004. position:absolute;
  8005. left:2216px;
  8006. top:1205px;
  8007. width:80px;
  8008. height:30px;
  8009. display:flex;
  8010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8011. font-weight:400;
  8012. font-style:normal;
  8013. font-size:14px;
  8014. }
  8015. #u75600 .text {
  8016. position:absolute;
  8017. align-self:center;
  8018. padding:2px 2px 2px 2px;
  8019. box-sizing:border-box;
  8020. width:100%;
  8021. }
  8022. #u75600_text {
  8023. border-width:0px;
  8024. word-wrap:break-word;
  8025. text-transform:none;
  8026. }
  8027. #u75601_div {
  8028. border-width:0px;
  8029. position:absolute;
  8030. left:0px;
  8031. top:0px;
  8032. width:88px;
  8033. height:40px;
  8034. background:inherit;
  8035. background-color:rgba(255, 255, 255, 0);
  8036. border:none;
  8037. border-top:0px;
  8038. border-right:0px;
  8039. border-bottom:0px;
  8040. border-radius:0px;
  8041. border-top-left-radius:0px;
  8042. border-bottom-left-radius:0px;
  8043. -moz-box-shadow:none;
  8044. -webkit-box-shadow:none;
  8045. box-shadow:none;
  8046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8047. font-weight:400;
  8048. font-style:normal;
  8049. font-size:14px;
  8050. color:#7F7F7F;
  8051. text-align:right;
  8052. }
  8053. #u75601 {
  8054. border-width:0px;
  8055. position:absolute;
  8056. left:1724px;
  8057. top:126px;
  8058. width:88px;
  8059. height:40px;
  8060. display:flex;
  8061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8062. font-weight:400;
  8063. font-style:normal;
  8064. font-size:14px;
  8065. color:#7F7F7F;
  8066. text-align:right;
  8067. }
  8068. #u75601 .text {
  8069. position:absolute;
  8070. align-self:center;
  8071. padding:5px 10px 5px 0px;
  8072. box-sizing:border-box;
  8073. width:100%;
  8074. }
  8075. #u75601_text {
  8076. border-width:0px;
  8077. white-space:nowrap;
  8078. text-transform:none;
  8079. }
  8080. #u75602 {
  8081. border-width:0px;
  8082. position:absolute;
  8083. left:0px;
  8084. top:0px;
  8085. width:0px;
  8086. height:0px;
  8087. }
  8088. #u75603_div {
  8089. border-width:0px;
  8090. position:absolute;
  8091. left:0px;
  8092. top:0px;
  8093. width:400px;
  8094. height:40px;
  8095. background:inherit;
  8096. background-color:rgba(255, 255, 255, 1);
  8097. box-sizing:border-box;
  8098. border-width:1px;
  8099. border-style:solid;
  8100. border-color:rgba(201, 201, 201, 1);
  8101. border-radius:4px;
  8102. -moz-box-shadow:none;
  8103. -webkit-box-shadow:none;
  8104. box-shadow:none;
  8105. font-family:'Microsoft YaHei', sans-serif;
  8106. font-weight:400;
  8107. font-style:normal;
  8108. font-size:14px;
  8109. color:#CCCCCC;
  8110. text-align:left;
  8111. }
  8112. #u75603 {
  8113. border-width:0px;
  8114. position:absolute;
  8115. left:1822px;
  8116. top:127px;
  8117. width:400px;
  8118. height:40px;
  8119. display:flex;
  8120. font-family:'Microsoft YaHei', sans-serif;
  8121. font-weight:400;
  8122. font-style:normal;
  8123. font-size:14px;
  8124. color:#CCCCCC;
  8125. text-align:left;
  8126. }
  8127. #u75603 .text {
  8128. position:absolute;
  8129. align-self:center;
  8130. padding:2px 8px 2px 8px;
  8131. box-sizing:border-box;
  8132. width:100%;
  8133. }
  8134. #u75603_text {
  8135. border-width:0px;
  8136. word-wrap:break-word;
  8137. text-transform:none;
  8138. visibility:hidden;
  8139. }
  8140. #u75604_input {
  8141. position:absolute;
  8142. left:0px;
  8143. top:0px;
  8144. width:380px;
  8145. height:38px;
  8146. padding:2px 2px 2px 2px;
  8147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8148. font-weight:400;
  8149. font-style:normal;
  8150. font-size:14px;
  8151. letter-spacing:normal;
  8152. color:#000000;
  8153. vertical-align:none;
  8154. text-align:left;
  8155. text-transform:none;
  8156. background-color:transparent;
  8157. border-color:transparent;
  8158. }
  8159. #u75604_input.disabled {
  8160. position:absolute;
  8161. left:0px;
  8162. top:0px;
  8163. width:380px;
  8164. height:38px;
  8165. padding:2px 2px 2px 2px;
  8166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8167. font-weight:400;
  8168. font-style:normal;
  8169. font-size:14px;
  8170. letter-spacing:normal;
  8171. color:#000000;
  8172. vertical-align:none;
  8173. text-align:left;
  8174. text-transform:none;
  8175. background-color:transparent;
  8176. border-color:transparent;
  8177. }
  8178. #u75604_div {
  8179. border-width:0px;
  8180. position:absolute;
  8181. left:0px;
  8182. top:0px;
  8183. width:380px;
  8184. height:38px;
  8185. background:inherit;
  8186. background-color:rgba(255, 255, 255, 1);
  8187. border:none;
  8188. border-radius:0px;
  8189. -moz-box-shadow:none;
  8190. -webkit-box-shadow:none;
  8191. box-shadow:none;
  8192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8193. font-weight:400;
  8194. font-style:normal;
  8195. font-size:14px;
  8196. }
  8197. #u75604 {
  8198. border-width:0px;
  8199. position:absolute;
  8200. left:1833px;
  8201. top:128px;
  8202. width:380px;
  8203. height:38px;
  8204. display:flex;
  8205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8206. font-weight:400;
  8207. font-style:normal;
  8208. font-size:14px;
  8209. }
  8210. #u75604 .text {
  8211. position:absolute;
  8212. align-self:center;
  8213. padding:2px 2px 2px 2px;
  8214. box-sizing:border-box;
  8215. width:100%;
  8216. }
  8217. #u75604_div.disabled {
  8218. border-width:0px;
  8219. position:absolute;
  8220. left:0px;
  8221. top:0px;
  8222. width:380px;
  8223. height:38px;
  8224. background:inherit;
  8225. background-color:rgba(240, 240, 240, 1);
  8226. border:none;
  8227. border-radius:0px;
  8228. -moz-box-shadow:none;
  8229. -webkit-box-shadow:none;
  8230. box-shadow:none;
  8231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8232. font-weight:400;
  8233. font-style:normal;
  8234. font-size:14px;
  8235. }
  8236. #u75604.disabled {
  8237. }
  8238. #u75605_div {
  8239. border-width:0px;
  8240. position:absolute;
  8241. left:0px;
  8242. top:0px;
  8243. width:88px;
  8244. height:40px;
  8245. background:inherit;
  8246. background-color:rgba(255, 255, 255, 0);
  8247. border:none;
  8248. border-top:0px;
  8249. border-right:0px;
  8250. border-bottom:0px;
  8251. border-radius:0px;
  8252. border-top-left-radius:0px;
  8253. border-bottom-left-radius:0px;
  8254. -moz-box-shadow:none;
  8255. -webkit-box-shadow:none;
  8256. box-shadow:none;
  8257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8258. font-weight:400;
  8259. font-style:normal;
  8260. font-size:14px;
  8261. color:#7F7F7F;
  8262. text-align:right;
  8263. }
  8264. #u75605 {
  8265. border-width:0px;
  8266. position:absolute;
  8267. left:1724px;
  8268. top:177px;
  8269. width:88px;
  8270. height:40px;
  8271. display:flex;
  8272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8273. font-weight:400;
  8274. font-style:normal;
  8275. font-size:14px;
  8276. color:#7F7F7F;
  8277. text-align:right;
  8278. }
  8279. #u75605 .text {
  8280. position:absolute;
  8281. align-self:center;
  8282. padding:5px 10px 5px 0px;
  8283. box-sizing:border-box;
  8284. width:100%;
  8285. }
  8286. #u75605_text {
  8287. border-width:0px;
  8288. white-space:nowrap;
  8289. text-transform:none;
  8290. }
  8291. #u75606 {
  8292. border-width:0px;
  8293. position:absolute;
  8294. left:0px;
  8295. top:0px;
  8296. width:0px;
  8297. height:0px;
  8298. }
  8299. #u75607_div {
  8300. border-width:0px;
  8301. position:absolute;
  8302. left:0px;
  8303. top:0px;
  8304. width:400px;
  8305. height:40px;
  8306. background:inherit;
  8307. background-color:rgba(255, 255, 255, 1);
  8308. box-sizing:border-box;
  8309. border-width:1px;
  8310. border-style:solid;
  8311. border-color:rgba(201, 201, 201, 1);
  8312. border-radius:4px;
  8313. -moz-box-shadow:none;
  8314. -webkit-box-shadow:none;
  8315. box-shadow:none;
  8316. font-family:'Microsoft YaHei', sans-serif;
  8317. font-weight:400;
  8318. font-style:normal;
  8319. font-size:14px;
  8320. color:#CCCCCC;
  8321. text-align:left;
  8322. }
  8323. #u75607 {
  8324. border-width:0px;
  8325. position:absolute;
  8326. left:1822px;
  8327. top:178px;
  8328. width:400px;
  8329. height:40px;
  8330. display:flex;
  8331. font-family:'Microsoft YaHei', sans-serif;
  8332. font-weight:400;
  8333. font-style:normal;
  8334. font-size:14px;
  8335. color:#CCCCCC;
  8336. text-align:left;
  8337. }
  8338. #u75607 .text {
  8339. position:absolute;
  8340. align-self:center;
  8341. padding:2px 8px 2px 8px;
  8342. box-sizing:border-box;
  8343. width:100%;
  8344. }
  8345. #u75607_text {
  8346. border-width:0px;
  8347. word-wrap:break-word;
  8348. text-transform:none;
  8349. visibility:hidden;
  8350. }
  8351. #u75608_input {
  8352. position:absolute;
  8353. left:0px;
  8354. top:0px;
  8355. width:380px;
  8356. height:38px;
  8357. padding:2px 2px 2px 2px;
  8358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8359. font-weight:400;
  8360. font-style:normal;
  8361. font-size:14px;
  8362. letter-spacing:normal;
  8363. color:#000000;
  8364. vertical-align:none;
  8365. text-align:left;
  8366. text-transform:none;
  8367. background-color:transparent;
  8368. border-color:transparent;
  8369. }
  8370. #u75608_input.disabled {
  8371. position:absolute;
  8372. left:0px;
  8373. top:0px;
  8374. width:380px;
  8375. height:38px;
  8376. padding:2px 2px 2px 2px;
  8377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8378. font-weight:400;
  8379. font-style:normal;
  8380. font-size:14px;
  8381. letter-spacing:normal;
  8382. color:#000000;
  8383. vertical-align:none;
  8384. text-align:left;
  8385. text-transform:none;
  8386. background-color:transparent;
  8387. border-color:transparent;
  8388. }
  8389. #u75608_div {
  8390. border-width:0px;
  8391. position:absolute;
  8392. left:0px;
  8393. top:0px;
  8394. width:380px;
  8395. height:38px;
  8396. background:inherit;
  8397. background-color:rgba(255, 255, 255, 1);
  8398. border:none;
  8399. border-radius:0px;
  8400. -moz-box-shadow:none;
  8401. -webkit-box-shadow:none;
  8402. box-shadow:none;
  8403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8404. font-weight:400;
  8405. font-style:normal;
  8406. font-size:14px;
  8407. }
  8408. #u75608 {
  8409. border-width:0px;
  8410. position:absolute;
  8411. left:1833px;
  8412. top:179px;
  8413. width:380px;
  8414. height:38px;
  8415. display:flex;
  8416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8417. font-weight:400;
  8418. font-style:normal;
  8419. font-size:14px;
  8420. }
  8421. #u75608 .text {
  8422. position:absolute;
  8423. align-self:center;
  8424. padding:2px 2px 2px 2px;
  8425. box-sizing:border-box;
  8426. width:100%;
  8427. }
  8428. #u75608_div.disabled {
  8429. border-width:0px;
  8430. position:absolute;
  8431. left:0px;
  8432. top:0px;
  8433. width:380px;
  8434. height:38px;
  8435. background:inherit;
  8436. background-color:rgba(240, 240, 240, 1);
  8437. border:none;
  8438. border-radius:0px;
  8439. -moz-box-shadow:none;
  8440. -webkit-box-shadow:none;
  8441. box-shadow:none;
  8442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8443. font-weight:400;
  8444. font-style:normal;
  8445. font-size:14px;
  8446. }
  8447. #u75608.disabled {
  8448. }
  8449. #u75609_div {
  8450. border-width:0px;
  8451. position:absolute;
  8452. left:0px;
  8453. top:0px;
  8454. width:88px;
  8455. height:40px;
  8456. background:inherit;
  8457. background-color:rgba(255, 255, 255, 0);
  8458. border:none;
  8459. border-top:0px;
  8460. border-right:0px;
  8461. border-bottom:0px;
  8462. border-radius:0px;
  8463. border-top-left-radius:0px;
  8464. border-bottom-left-radius:0px;
  8465. -moz-box-shadow:none;
  8466. -webkit-box-shadow:none;
  8467. box-shadow:none;
  8468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8469. font-weight:400;
  8470. font-style:normal;
  8471. font-size:14px;
  8472. color:#7F7F7F;
  8473. text-align:right;
  8474. }
  8475. #u75609 {
  8476. border-width:0px;
  8477. position:absolute;
  8478. left:1724px;
  8479. top:233px;
  8480. width:88px;
  8481. height:40px;
  8482. display:flex;
  8483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8484. font-weight:400;
  8485. font-style:normal;
  8486. font-size:14px;
  8487. color:#7F7F7F;
  8488. text-align:right;
  8489. }
  8490. #u75609 .text {
  8491. position:absolute;
  8492. align-self:center;
  8493. padding:5px 10px 5px 0px;
  8494. box-sizing:border-box;
  8495. width:100%;
  8496. }
  8497. #u75609_text {
  8498. border-width:0px;
  8499. white-space:nowrap;
  8500. text-transform:none;
  8501. }
  8502. #u75610 {
  8503. border-width:0px;
  8504. position:absolute;
  8505. left:0px;
  8506. top:0px;
  8507. width:0px;
  8508. height:0px;
  8509. }
  8510. #u75611_div {
  8511. border-width:0px;
  8512. position:absolute;
  8513. left:0px;
  8514. top:0px;
  8515. width:400px;
  8516. height:40px;
  8517. background:inherit;
  8518. background-color:rgba(255, 255, 255, 1);
  8519. box-sizing:border-box;
  8520. border-width:1px;
  8521. border-style:solid;
  8522. border-color:rgba(215, 215, 215, 1);
  8523. border-radius:4px;
  8524. -moz-box-shadow:none;
  8525. -webkit-box-shadow:none;
  8526. box-shadow:none;
  8527. font-size:11px;
  8528. }
  8529. #u75611 {
  8530. border-width:0px;
  8531. position:absolute;
  8532. left:1822px;
  8533. top:233px;
  8534. width:400px;
  8535. height:40px;
  8536. display:flex;
  8537. font-size:11px;
  8538. }
  8539. #u75611 .text {
  8540. position:absolute;
  8541. align-self:center;
  8542. padding:2px 2px 2px 2px;
  8543. box-sizing:border-box;
  8544. width:100%;
  8545. }
  8546. #u75611_text {
  8547. border-width:0px;
  8548. word-wrap:break-word;
  8549. text-transform:none;
  8550. visibility:hidden;
  8551. }
  8552. #u75612_input {
  8553. position:absolute;
  8554. left:0px;
  8555. top:0px;
  8556. width:380px;
  8557. height:31px;
  8558. padding:2px 2px 2px 2px;
  8559. font-family:'ArialMT', 'Arial', sans-serif;
  8560. font-weight:400;
  8561. font-style:normal;
  8562. font-size:12px;
  8563. letter-spacing:normal;
  8564. color:#AAAAAA;
  8565. vertical-align:none;
  8566. text-align:left;
  8567. text-transform:none;
  8568. background-color:transparent;
  8569. border-color:transparent;
  8570. }
  8571. #u75612_input.disabled {
  8572. position:absolute;
  8573. left:0px;
  8574. top:0px;
  8575. width:380px;
  8576. height:31px;
  8577. padding:2px 2px 2px 2px;
  8578. font-family:'ArialMT', 'Arial', sans-serif;
  8579. font-weight:400;
  8580. font-style:normal;
  8581. font-size:12px;
  8582. letter-spacing:normal;
  8583. color:#AAAAAA;
  8584. vertical-align:none;
  8585. text-align:left;
  8586. text-transform:none;
  8587. background-color:transparent;
  8588. border-color:transparent;
  8589. }
  8590. #u75612_div {
  8591. border-width:0px;
  8592. position:absolute;
  8593. left:0px;
  8594. top:0px;
  8595. width:380px;
  8596. height:31px;
  8597. background:inherit;
  8598. background-color:rgba(255, 255, 255, 1);
  8599. border:none;
  8600. border-radius:0px;
  8601. -moz-box-shadow:none;
  8602. -webkit-box-shadow:none;
  8603. box-shadow:none;
  8604. font-size:12px;
  8605. color:#AAAAAA;
  8606. }
  8607. #u75612 {
  8608. border-width:0px;
  8609. position:absolute;
  8610. left:1833px;
  8611. top:236px;
  8612. width:380px;
  8613. height:31px;
  8614. display:flex;
  8615. font-size:12px;
  8616. color:#AAAAAA;
  8617. }
  8618. #u75612 .text {
  8619. position:absolute;
  8620. align-self:flex-start;
  8621. padding:2px 2px 2px 2px;
  8622. box-sizing:border-box;
  8623. width:100%;
  8624. }
  8625. #u75612_div.disabled {
  8626. border-width:0px;
  8627. position:absolute;
  8628. left:0px;
  8629. top:0px;
  8630. width:380px;
  8631. height:31px;
  8632. background:inherit;
  8633. background-color:rgba(240, 240, 240, 1);
  8634. border:none;
  8635. border-radius:0px;
  8636. -moz-box-shadow:none;
  8637. -webkit-box-shadow:none;
  8638. box-shadow:none;
  8639. font-size:12px;
  8640. color:#AAAAAA;
  8641. }
  8642. #u75612.disabled {
  8643. }
  8644. .u75612_input_option {
  8645. font-size:12px;
  8646. }
  8647. #u75613_div {
  8648. border-width:0px;
  8649. position:absolute;
  8650. left:0px;
  8651. top:0px;
  8652. width:109px;
  8653. height:40px;
  8654. background:inherit;
  8655. background-color:rgba(255, 255, 255, 0);
  8656. border:none;
  8657. border-top:0px;
  8658. border-right:0px;
  8659. border-bottom:0px;
  8660. border-radius:0px;
  8661. border-top-left-radius:0px;
  8662. border-bottom-left-radius:0px;
  8663. -moz-box-shadow:none;
  8664. -webkit-box-shadow:none;
  8665. box-shadow:none;
  8666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8667. font-weight:400;
  8668. font-style:normal;
  8669. font-size:14px;
  8670. color:#7F7F7F;
  8671. text-align:right;
  8672. }
  8673. #u75613 {
  8674. border-width:0px;
  8675. position:absolute;
  8676. left:1703px;
  8677. top:283px;
  8678. width:109px;
  8679. height:40px;
  8680. display:flex;
  8681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8682. font-weight:400;
  8683. font-style:normal;
  8684. font-size:14px;
  8685. color:#7F7F7F;
  8686. text-align:right;
  8687. }
  8688. #u75613 .text {
  8689. position:absolute;
  8690. align-self:center;
  8691. padding:5px 10px 5px 0px;
  8692. box-sizing:border-box;
  8693. width:100%;
  8694. }
  8695. #u75613_text {
  8696. border-width:0px;
  8697. white-space:nowrap;
  8698. text-transform:none;
  8699. }
  8700. #u75614 {
  8701. border-width:0px;
  8702. position:absolute;
  8703. left:0px;
  8704. top:0px;
  8705. width:0px;
  8706. height:0px;
  8707. }
  8708. #u75615_div {
  8709. border-width:0px;
  8710. position:absolute;
  8711. left:0px;
  8712. top:0px;
  8713. width:400px;
  8714. height:40px;
  8715. background:inherit;
  8716. background-color:rgba(255, 255, 255, 1);
  8717. box-sizing:border-box;
  8718. border-width:1px;
  8719. border-style:solid;
  8720. border-color:rgba(201, 201, 201, 1);
  8721. border-radius:4px;
  8722. -moz-box-shadow:none;
  8723. -webkit-box-shadow:none;
  8724. box-shadow:none;
  8725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8726. font-weight:400;
  8727. font-style:normal;
  8728. font-size:12px;
  8729. text-align:right;
  8730. }
  8731. #u75615 {
  8732. border-width:0px;
  8733. position:absolute;
  8734. left:1822px;
  8735. top:283px;
  8736. width:400px;
  8737. height:40px;
  8738. display:flex;
  8739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8740. font-weight:400;
  8741. font-style:normal;
  8742. font-size:12px;
  8743. text-align:right;
  8744. }
  8745. #u75615 .text {
  8746. position:absolute;
  8747. align-self:center;
  8748. padding:2px 8px 2px 8px;
  8749. box-sizing:border-box;
  8750. width:100%;
  8751. }
  8752. #u75615_text {
  8753. border-width:0px;
  8754. word-wrap:break-word;
  8755. text-transform:none;
  8756. }
  8757. #u75616_input {
  8758. position:absolute;
  8759. left:0px;
  8760. top:0px;
  8761. width:323px;
  8762. height:38px;
  8763. padding:2px 2px 2px 2px;
  8764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8765. font-weight:400;
  8766. font-style:normal;
  8767. font-size:14px;
  8768. letter-spacing:normal;
  8769. color:#000000;
  8770. vertical-align:none;
  8771. text-align:left;
  8772. text-transform:none;
  8773. background-color:transparent;
  8774. border-color:transparent;
  8775. }
  8776. #u75616_input.disabled {
  8777. position:absolute;
  8778. left:0px;
  8779. top:0px;
  8780. width:323px;
  8781. height:38px;
  8782. padding:2px 2px 2px 2px;
  8783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8784. font-weight:400;
  8785. font-style:normal;
  8786. font-size:14px;
  8787. letter-spacing:normal;
  8788. color:#000000;
  8789. vertical-align:none;
  8790. text-align:left;
  8791. text-transform:none;
  8792. background-color:transparent;
  8793. border-color:transparent;
  8794. }
  8795. #u75616_div {
  8796. border-width:0px;
  8797. position:absolute;
  8798. left:0px;
  8799. top:0px;
  8800. width:323px;
  8801. height:38px;
  8802. background:inherit;
  8803. background-color:rgba(255, 255, 255, 1);
  8804. border:none;
  8805. border-radius:0px;
  8806. -moz-box-shadow:none;
  8807. -webkit-box-shadow:none;
  8808. box-shadow:none;
  8809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8810. font-weight:400;
  8811. font-style:normal;
  8812. font-size:14px;
  8813. }
  8814. #u75616 {
  8815. border-width:0px;
  8816. position:absolute;
  8817. left:1833px;
  8818. top:284px;
  8819. width:323px;
  8820. height:38px;
  8821. display:flex;
  8822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8823. font-weight:400;
  8824. font-style:normal;
  8825. font-size:14px;
  8826. }
  8827. #u75616 .text {
  8828. position:absolute;
  8829. align-self:center;
  8830. padding:2px 2px 2px 2px;
  8831. box-sizing:border-box;
  8832. width:100%;
  8833. }
  8834. #u75616_div.disabled {
  8835. border-width:0px;
  8836. position:absolute;
  8837. left:0px;
  8838. top:0px;
  8839. width:323px;
  8840. height:38px;
  8841. background:inherit;
  8842. background-color:rgba(240, 240, 240, 1);
  8843. border:none;
  8844. border-radius:0px;
  8845. -moz-box-shadow:none;
  8846. -webkit-box-shadow:none;
  8847. box-shadow:none;
  8848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8849. font-weight:400;
  8850. font-style:normal;
  8851. font-size:14px;
  8852. }
  8853. #u75616.disabled {
  8854. }
  8855. #u75617_div {
  8856. border-width:0px;
  8857. position:absolute;
  8858. left:0px;
  8859. top:0px;
  8860. width:81px;
  8861. height:40px;
  8862. background:inherit;
  8863. background-color:rgba(255, 255, 255, 0);
  8864. border:none;
  8865. border-top:0px;
  8866. border-right:0px;
  8867. border-bottom:0px;
  8868. border-radius:0px;
  8869. border-top-left-radius:0px;
  8870. border-bottom-left-radius:0px;
  8871. -moz-box-shadow:none;
  8872. -webkit-box-shadow:none;
  8873. box-shadow:none;
  8874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8875. font-weight:400;
  8876. font-style:normal;
  8877. font-size:14px;
  8878. color:#7F7F7F;
  8879. text-align:right;
  8880. }
  8881. #u75617 {
  8882. border-width:0px;
  8883. position:absolute;
  8884. left:1731px;
  8885. top:333px;
  8886. width:81px;
  8887. height:40px;
  8888. display:flex;
  8889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8890. font-weight:400;
  8891. font-style:normal;
  8892. font-size:14px;
  8893. color:#7F7F7F;
  8894. text-align:right;
  8895. }
  8896. #u75617 .text {
  8897. position:absolute;
  8898. align-self:center;
  8899. padding:5px 10px 5px 0px;
  8900. box-sizing:border-box;
  8901. width:100%;
  8902. }
  8903. #u75617_text {
  8904. border-width:0px;
  8905. white-space:nowrap;
  8906. text-transform:none;
  8907. }
  8908. #u75618 {
  8909. border-width:0px;
  8910. position:absolute;
  8911. left:0px;
  8912. top:0px;
  8913. width:0px;
  8914. height:0px;
  8915. }
  8916. #u75619_div {
  8917. border-width:0px;
  8918. position:absolute;
  8919. left:0px;
  8920. top:0px;
  8921. width:400px;
  8922. height:40px;
  8923. background:inherit;
  8924. background-color:rgba(255, 255, 255, 1);
  8925. box-sizing:border-box;
  8926. border-width:1px;
  8927. border-style:solid;
  8928. border-color:rgba(201, 201, 201, 1);
  8929. border-radius:4px;
  8930. -moz-box-shadow:none;
  8931. -webkit-box-shadow:none;
  8932. box-shadow:none;
  8933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8934. font-weight:400;
  8935. font-style:normal;
  8936. font-size:12px;
  8937. text-align:right;
  8938. }
  8939. #u75619 {
  8940. border-width:0px;
  8941. position:absolute;
  8942. left:1822px;
  8943. top:333px;
  8944. width:400px;
  8945. height:40px;
  8946. display:flex;
  8947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8948. font-weight:400;
  8949. font-style:normal;
  8950. font-size:12px;
  8951. text-align:right;
  8952. }
  8953. #u75619 .text {
  8954. position:absolute;
  8955. align-self:center;
  8956. padding:2px 8px 2px 8px;
  8957. box-sizing:border-box;
  8958. width:100%;
  8959. }
  8960. #u75619_text {
  8961. border-width:0px;
  8962. word-wrap:break-word;
  8963. text-transform:none;
  8964. visibility:hidden;
  8965. }
  8966. #u75620_input {
  8967. position:absolute;
  8968. left:0px;
  8969. top:0px;
  8970. width:323px;
  8971. height:38px;
  8972. padding:2px 2px 2px 2px;
  8973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8974. font-weight:400;
  8975. font-style:normal;
  8976. font-size:14px;
  8977. letter-spacing:normal;
  8978. color:#000000;
  8979. vertical-align:none;
  8980. text-align:left;
  8981. text-transform:none;
  8982. background-color:transparent;
  8983. border-color:transparent;
  8984. }
  8985. #u75620_input.disabled {
  8986. position:absolute;
  8987. left:0px;
  8988. top:0px;
  8989. width:323px;
  8990. height:38px;
  8991. padding:2px 2px 2px 2px;
  8992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8993. font-weight:400;
  8994. font-style:normal;
  8995. font-size:14px;
  8996. letter-spacing:normal;
  8997. color:#000000;
  8998. vertical-align:none;
  8999. text-align:left;
  9000. text-transform:none;
  9001. background-color:transparent;
  9002. border-color:transparent;
  9003. }
  9004. #u75620_div {
  9005. border-width:0px;
  9006. position:absolute;
  9007. left:0px;
  9008. top:0px;
  9009. width:323px;
  9010. height:38px;
  9011. background:inherit;
  9012. background-color:rgba(255, 255, 255, 1);
  9013. border:none;
  9014. border-radius:0px;
  9015. -moz-box-shadow:none;
  9016. -webkit-box-shadow:none;
  9017. box-shadow:none;
  9018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9019. font-weight:400;
  9020. font-style:normal;
  9021. font-size:14px;
  9022. }
  9023. #u75620 {
  9024. border-width:0px;
  9025. position:absolute;
  9026. left:1833px;
  9027. top:334px;
  9028. width:323px;
  9029. height:38px;
  9030. display:flex;
  9031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9032. font-weight:400;
  9033. font-style:normal;
  9034. font-size:14px;
  9035. }
  9036. #u75620 .text {
  9037. position:absolute;
  9038. align-self:center;
  9039. padding:2px 2px 2px 2px;
  9040. box-sizing:border-box;
  9041. width:100%;
  9042. }
  9043. #u75620_div.disabled {
  9044. border-width:0px;
  9045. position:absolute;
  9046. left:0px;
  9047. top:0px;
  9048. width:323px;
  9049. height:38px;
  9050. background:inherit;
  9051. background-color:rgba(240, 240, 240, 1);
  9052. border:none;
  9053. border-radius:0px;
  9054. -moz-box-shadow:none;
  9055. -webkit-box-shadow:none;
  9056. box-shadow:none;
  9057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9058. font-weight:400;
  9059. font-style:normal;
  9060. font-size:14px;
  9061. }
  9062. #u75620.disabled {
  9063. }
  9064. #u75621 {
  9065. border-width:0px;
  9066. position:absolute;
  9067. left:0px;
  9068. top:0px;
  9069. width:0px;
  9070. height:0px;
  9071. }
  9072. #u75622_div {
  9073. border-width:0px;
  9074. position:absolute;
  9075. left:0px;
  9076. top:0px;
  9077. width:200px;
  9078. height:1180px;
  9079. background:inherit;
  9080. background-color:rgba(255, 255, 255, 1);
  9081. border:none;
  9082. border-radius:0px;
  9083. -moz-box-shadow:none;
  9084. -webkit-box-shadow:none;
  9085. box-shadow:none;
  9086. }
  9087. #u75622 {
  9088. border-width:0px;
  9089. position:absolute;
  9090. left:121px;
  9091. top:50px;
  9092. width:200px;
  9093. height:1180px;
  9094. display:flex;
  9095. }
  9096. #u75622 .text {
  9097. position:absolute;
  9098. align-self:center;
  9099. padding:2px 2px 2px 2px;
  9100. box-sizing:border-box;
  9101. width:100%;
  9102. }
  9103. #u75622_text {
  9104. border-width:0px;
  9105. word-wrap:break-word;
  9106. text-transform:none;
  9107. visibility:hidden;
  9108. }
  9109. #u75623_div {
  9110. border-width:0px;
  9111. position:absolute;
  9112. left:0px;
  9113. top:0px;
  9114. width:200px;
  9115. height:60px;
  9116. background:inherit;
  9117. background-color:rgba(224, 231, 247, 1);
  9118. border:none;
  9119. border-radius:0px;
  9120. -moz-box-shadow:none;
  9121. -webkit-box-shadow:none;
  9122. box-shadow:none;
  9123. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9124. font-weight:500;
  9125. font-style:normal;
  9126. font-size:18px;
  9127. }
  9128. #u75623 {
  9129. border-width:0px;
  9130. position:absolute;
  9131. left:121px;
  9132. top:50px;
  9133. width:200px;
  9134. height:60px;
  9135. display:flex;
  9136. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9137. font-weight:500;
  9138. font-style:normal;
  9139. font-size:18px;
  9140. }
  9141. #u75623 .text {
  9142. position:absolute;
  9143. align-self:center;
  9144. padding:0px 0px 0px 20px;
  9145. box-sizing:border-box;
  9146. width:100%;
  9147. }
  9148. #u75623_text {
  9149. border-width:0px;
  9150. word-wrap:break-word;
  9151. text-transform:none;
  9152. }
  9153. #u75624_div {
  9154. border-width:0px;
  9155. position:absolute;
  9156. left:0px;
  9157. top:0px;
  9158. width:97px;
  9159. height:22px;
  9160. background:inherit;
  9161. background-color:rgba(255, 255, 255, 0);
  9162. border:none;
  9163. border-radius:0px;
  9164. -moz-box-shadow:none;
  9165. -webkit-box-shadow:none;
  9166. box-shadow:none;
  9167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9168. font-weight:400;
  9169. font-style:normal;
  9170. font-size:16px;
  9171. }
  9172. #u75624 {
  9173. border-width:0px;
  9174. position:absolute;
  9175. left:148px;
  9176. top:369px;
  9177. width:97px;
  9178. height:22px;
  9179. display:flex;
  9180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9181. font-weight:400;
  9182. font-style:normal;
  9183. font-size:16px;
  9184. }
  9185. #u75624 .text {
  9186. position:absolute;
  9187. align-self:flex-start;
  9188. padding:0px 0px 0px 0px;
  9189. box-sizing:border-box;
  9190. width:100%;
  9191. }
  9192. #u75624_text {
  9193. border-width:0px;
  9194. word-wrap:break-word;
  9195. text-transform:none;
  9196. }
  9197. #u75625_div {
  9198. border-width:0px;
  9199. position:absolute;
  9200. left:0px;
  9201. top:0px;
  9202. width:97px;
  9203. height:22px;
  9204. background:inherit;
  9205. background-color:rgba(255, 255, 255, 0);
  9206. border:none;
  9207. border-radius:0px;
  9208. -moz-box-shadow:none;
  9209. -webkit-box-shadow:none;
  9210. box-shadow:none;
  9211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9212. font-weight:400;
  9213. font-style:normal;
  9214. font-size:16px;
  9215. }
  9216. #u75625 {
  9217. border-width:0px;
  9218. position:absolute;
  9219. left:148px;
  9220. top:597px;
  9221. width:97px;
  9222. height:22px;
  9223. display:flex;
  9224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9225. font-weight:400;
  9226. font-style:normal;
  9227. font-size:16px;
  9228. }
  9229. #u75625 .text {
  9230. position:absolute;
  9231. align-self:flex-start;
  9232. padding:0px 0px 0px 0px;
  9233. box-sizing:border-box;
  9234. width:100%;
  9235. }
  9236. #u75625_text {
  9237. border-width:0px;
  9238. word-wrap:break-word;
  9239. text-transform:none;
  9240. }
  9241. #u75626_div {
  9242. border-width:0px;
  9243. position:absolute;
  9244. left:0px;
  9245. top:0px;
  9246. width:49px;
  9247. height:17px;
  9248. background:inherit;
  9249. background-color:rgba(255, 255, 255, 0);
  9250. border:none;
  9251. border-radius:0px;
  9252. -moz-box-shadow:none;
  9253. -webkit-box-shadow:none;
  9254. box-shadow:none;
  9255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9256. font-weight:400;
  9257. font-style:normal;
  9258. font-size:12px;
  9259. color:#AAAAAA;
  9260. }
  9261. #u75626 {
  9262. border-width:0px;
  9263. position:absolute;
  9264. left:148px;
  9265. top:518px;
  9266. width:49px;
  9267. height:17px;
  9268. display:flex;
  9269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9270. font-weight:400;
  9271. font-style:normal;
  9272. font-size:12px;
  9273. color:#AAAAAA;
  9274. }
  9275. #u75626 .text {
  9276. position:absolute;
  9277. align-self:flex-start;
  9278. padding:0px 0px 0px 0px;
  9279. box-sizing:border-box;
  9280. width:100%;
  9281. }
  9282. #u75626_text {
  9283. border-width:0px;
  9284. white-space:nowrap;
  9285. text-transform:none;
  9286. }
  9287. #u75627_div {
  9288. border-width:0px;
  9289. position:absolute;
  9290. left:0px;
  9291. top:0px;
  9292. width:65px;
  9293. height:22px;
  9294. background:inherit;
  9295. background-color:rgba(255, 255, 255, 0);
  9296. border:none;
  9297. border-radius:0px;
  9298. -moz-box-shadow:none;
  9299. -webkit-box-shadow:none;
  9300. box-shadow:none;
  9301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9302. font-weight:400;
  9303. font-style:normal;
  9304. font-size:16px;
  9305. }
  9306. #u75627 {
  9307. border-width:0px;
  9308. position:absolute;
  9309. left:148px;
  9310. top:455px;
  9311. width:65px;
  9312. height:22px;
  9313. display:flex;
  9314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9315. font-weight:400;
  9316. font-style:normal;
  9317. font-size:16px;
  9318. }
  9319. #u75627 .text {
  9320. position:absolute;
  9321. align-self:flex-start;
  9322. padding:0px 0px 0px 0px;
  9323. box-sizing:border-box;
  9324. width:100%;
  9325. }
  9326. #u75627_text {
  9327. border-width:0px;
  9328. white-space:nowrap;
  9329. text-transform:none;
  9330. }
  9331. #u75628_img {
  9332. border-width:0px;
  9333. position:absolute;
  9334. left:0px;
  9335. top:0px;
  9336. width:201px;
  9337. height:2px;
  9338. }
  9339. #u75628 {
  9340. border-width:0px;
  9341. position:absolute;
  9342. left:121px;
  9343. top:497px;
  9344. width:200px;
  9345. height:1px;
  9346. display:flex;
  9347. }
  9348. #u75628 .text {
  9349. position:absolute;
  9350. align-self:center;
  9351. padding:2px 2px 2px 2px;
  9352. box-sizing:border-box;
  9353. width:100%;
  9354. }
  9355. #u75628_text {
  9356. border-width:0px;
  9357. word-wrap:break-word;
  9358. text-transform:none;
  9359. visibility:hidden;
  9360. }
  9361. #u75629_div {
  9362. border-width:0px;
  9363. position:absolute;
  9364. left:0px;
  9365. top:0px;
  9366. width:49px;
  9367. height:17px;
  9368. background:inherit;
  9369. background-color:rgba(255, 255, 255, 0);
  9370. border:none;
  9371. border-radius:0px;
  9372. -moz-box-shadow:none;
  9373. -webkit-box-shadow:none;
  9374. box-shadow:none;
  9375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9376. font-weight:400;
  9377. font-style:normal;
  9378. font-size:12px;
  9379. color:#AAAAAA;
  9380. }
  9381. #u75629 {
  9382. border-width:0px;
  9383. position:absolute;
  9384. left:148px;
  9385. top:332px;
  9386. width:49px;
  9387. height:17px;
  9388. display:flex;
  9389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9390. font-weight:400;
  9391. font-style:normal;
  9392. font-size:12px;
  9393. color:#AAAAAA;
  9394. }
  9395. #u75629 .text {
  9396. position:absolute;
  9397. align-self:flex-start;
  9398. padding:0px 0px 0px 0px;
  9399. box-sizing:border-box;
  9400. width:100%;
  9401. }
  9402. #u75629_text {
  9403. border-width:0px;
  9404. white-space:nowrap;
  9405. text-transform:none;
  9406. }
  9407. #u75630_div {
  9408. border-width:0px;
  9409. position:absolute;
  9410. left:0px;
  9411. top:0px;
  9412. width:97px;
  9413. height:22px;
  9414. background:inherit;
  9415. background-color:rgba(255, 255, 255, 0);
  9416. border:none;
  9417. border-radius:0px;
  9418. -moz-box-shadow:none;
  9419. -webkit-box-shadow:none;
  9420. box-shadow:none;
  9421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9422. font-weight:400;
  9423. font-style:normal;
  9424. font-size:16px;
  9425. }
  9426. #u75630 {
  9427. border-width:0px;
  9428. position:absolute;
  9429. left:148px;
  9430. top:639px;
  9431. width:97px;
  9432. height:22px;
  9433. display:flex;
  9434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9435. font-weight:400;
  9436. font-style:normal;
  9437. font-size:16px;
  9438. }
  9439. #u75630 .text {
  9440. position:absolute;
  9441. align-self:flex-start;
  9442. padding:0px 0px 0px 0px;
  9443. box-sizing:border-box;
  9444. width:100%;
  9445. }
  9446. #u75630_text {
  9447. border-width:0px;
  9448. word-wrap:break-word;
  9449. text-transform:none;
  9450. }
  9451. #u75631_div {
  9452. border-width:0px;
  9453. position:absolute;
  9454. left:0px;
  9455. top:0px;
  9456. width:97px;
  9457. height:22px;
  9458. background:inherit;
  9459. background-color:rgba(255, 255, 255, 0);
  9460. border:none;
  9461. border-radius:0px;
  9462. -moz-box-shadow:none;
  9463. -webkit-box-shadow:none;
  9464. box-shadow:none;
  9465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9466. font-weight:400;
  9467. font-style:normal;
  9468. font-size:16px;
  9469. }
  9470. #u75631 {
  9471. border-width:0px;
  9472. position:absolute;
  9473. left:148px;
  9474. top:253px;
  9475. width:97px;
  9476. height:22px;
  9477. display:flex;
  9478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9479. font-weight:400;
  9480. font-style:normal;
  9481. font-size:16px;
  9482. }
  9483. #u75631 .text {
  9484. position:absolute;
  9485. align-self:flex-start;
  9486. padding:0px 0px 0px 0px;
  9487. box-sizing:border-box;
  9488. width:100%;
  9489. }
  9490. #u75631_text {
  9491. border-width:0px;
  9492. word-wrap:break-word;
  9493. text-transform:none;
  9494. }
  9495. #u75632_div {
  9496. border-width:0px;
  9497. position:absolute;
  9498. left:0px;
  9499. top:0px;
  9500. width:97px;
  9501. height:22px;
  9502. background:inherit;
  9503. background-color:rgba(255, 255, 255, 0);
  9504. border:none;
  9505. border-radius:0px;
  9506. -moz-box-shadow:none;
  9507. -webkit-box-shadow:none;
  9508. box-shadow:none;
  9509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9510. font-weight:400;
  9511. font-style:normal;
  9512. font-size:16px;
  9513. }
  9514. #u75632 {
  9515. border-width:0px;
  9516. position:absolute;
  9517. left:148px;
  9518. top:413px;
  9519. width:97px;
  9520. height:22px;
  9521. display:flex;
  9522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9523. font-weight:400;
  9524. font-style:normal;
  9525. font-size:16px;
  9526. }
  9527. #u75632 .text {
  9528. position:absolute;
  9529. align-self:flex-start;
  9530. padding:0px 0px 0px 0px;
  9531. box-sizing:border-box;
  9532. width:100%;
  9533. }
  9534. #u75632_text {
  9535. border-width:0px;
  9536. word-wrap:break-word;
  9537. text-transform:none;
  9538. }
  9539. #u75633_div {
  9540. border-width:0px;
  9541. position:absolute;
  9542. left:0px;
  9543. top:0px;
  9544. width:97px;
  9545. height:22px;
  9546. background:inherit;
  9547. background-color:rgba(255, 255, 255, 0);
  9548. border:none;
  9549. border-radius:0px;
  9550. -moz-box-shadow:none;
  9551. -webkit-box-shadow:none;
  9552. box-shadow:none;
  9553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9554. font-weight:400;
  9555. font-style:normal;
  9556. font-size:16px;
  9557. }
  9558. #u75633 {
  9559. border-width:0px;
  9560. position:absolute;
  9561. left:148px;
  9562. top:555px;
  9563. width:97px;
  9564. height:22px;
  9565. display:flex;
  9566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9567. font-weight:400;
  9568. font-style:normal;
  9569. font-size:16px;
  9570. }
  9571. #u75633 .text {
  9572. position:absolute;
  9573. align-self:flex-start;
  9574. padding:0px 0px 0px 0px;
  9575. box-sizing:border-box;
  9576. width:100%;
  9577. }
  9578. #u75633_text {
  9579. border-width:0px;
  9580. word-wrap:break-word;
  9581. text-transform:none;
  9582. }
  9583. #u75634_div {
  9584. border-width:0px;
  9585. position:absolute;
  9586. left:0px;
  9587. top:0px;
  9588. width:97px;
  9589. height:22px;
  9590. background:inherit;
  9591. background-color:rgba(255, 255, 255, 0);
  9592. border:none;
  9593. border-radius:0px;
  9594. -moz-box-shadow:none;
  9595. -webkit-box-shadow:none;
  9596. box-shadow:none;
  9597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9598. font-weight:400;
  9599. font-style:normal;
  9600. font-size:16px;
  9601. }
  9602. #u75634 {
  9603. border-width:0px;
  9604. position:absolute;
  9605. left:148px;
  9606. top:167px;
  9607. width:97px;
  9608. height:22px;
  9609. display:flex;
  9610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9611. font-weight:400;
  9612. font-style:normal;
  9613. font-size:16px;
  9614. }
  9615. #u75634 .text {
  9616. position:absolute;
  9617. align-self:flex-start;
  9618. padding:0px 0px 0px 0px;
  9619. box-sizing:border-box;
  9620. width:100%;
  9621. }
  9622. #u75634_text {
  9623. border-width:0px;
  9624. word-wrap:break-word;
  9625. text-transform:none;
  9626. }
  9627. #u75635_img {
  9628. border-width:0px;
  9629. position:absolute;
  9630. left:0px;
  9631. top:0px;
  9632. width:201px;
  9633. height:2px;
  9634. }
  9635. #u75635 {
  9636. border-width:0px;
  9637. position:absolute;
  9638. left:121px;
  9639. top:302px;
  9640. width:200px;
  9641. height:1px;
  9642. display:flex;
  9643. }
  9644. #u75635 .text {
  9645. position:absolute;
  9646. align-self:center;
  9647. padding:2px 2px 2px 2px;
  9648. box-sizing:border-box;
  9649. width:100%;
  9650. }
  9651. #u75635_text {
  9652. border-width:0px;
  9653. word-wrap:break-word;
  9654. text-transform:none;
  9655. visibility:hidden;
  9656. }
  9657. #u75636_div {
  9658. border-width:0px;
  9659. position:absolute;
  9660. left:0px;
  9661. top:0px;
  9662. width:49px;
  9663. height:17px;
  9664. background:inherit;
  9665. background-color:rgba(255, 255, 255, 0);
  9666. border:none;
  9667. border-radius:0px;
  9668. -moz-box-shadow:none;
  9669. -webkit-box-shadow:none;
  9670. box-shadow:none;
  9671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9672. font-weight:400;
  9673. font-style:normal;
  9674. font-size:12px;
  9675. color:#AAAAAA;
  9676. }
  9677. #u75636 {
  9678. border-width:0px;
  9679. position:absolute;
  9680. left:148px;
  9681. top:130px;
  9682. width:49px;
  9683. height:17px;
  9684. display:flex;
  9685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9686. font-weight:400;
  9687. font-style:normal;
  9688. font-size:12px;
  9689. color:#AAAAAA;
  9690. }
  9691. #u75636 .text {
  9692. position:absolute;
  9693. align-self:flex-start;
  9694. padding:0px 0px 0px 0px;
  9695. box-sizing:border-box;
  9696. width:100%;
  9697. }
  9698. #u75636_text {
  9699. border-width:0px;
  9700. white-space:nowrap;
  9701. text-transform:none;
  9702. }
  9703. #u75637_div {
  9704. border-width:0px;
  9705. position:absolute;
  9706. left:0px;
  9707. top:0px;
  9708. width:97px;
  9709. height:22px;
  9710. background:inherit;
  9711. background-color:rgba(255, 255, 255, 0);
  9712. border:none;
  9713. border-radius:0px;
  9714. -moz-box-shadow:none;
  9715. -webkit-box-shadow:none;
  9716. box-shadow:none;
  9717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9718. font-weight:400;
  9719. font-style:normal;
  9720. font-size:16px;
  9721. }
  9722. #u75637 {
  9723. border-width:0px;
  9724. position:absolute;
  9725. left:148px;
  9726. top:209px;
  9727. width:97px;
  9728. height:22px;
  9729. display:flex;
  9730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9731. font-weight:400;
  9732. font-style:normal;
  9733. font-size:16px;
  9734. }
  9735. #u75637 .text {
  9736. position:absolute;
  9737. align-self:flex-start;
  9738. padding:0px 0px 0px 0px;
  9739. box-sizing:border-box;
  9740. width:100%;
  9741. }
  9742. #u75637_text {
  9743. border-width:0px;
  9744. word-wrap:break-word;
  9745. text-transform:none;
  9746. }