styles.css 112 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:464px;
  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. #u41526_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. #u41526 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u41526 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u41526_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u41527_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. #u41527 {
  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. #u41527 .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. #u41527_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u41528_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. #u41528 {
  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. #u41528 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u41528_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u41529 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u41530_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u41530 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u41530 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u41530_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u41531_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. #u41531 {
  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. #u41531 .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. #u41531_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u41532_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. #u41532 {
  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. #u41532 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u41532_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u41533 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u41534_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. #u41534_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. #u41534_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. #u41534 {
  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. #u41534 .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. #u41534_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. #u41534.disabled {
  356. }
  357. .u41534_input_option {
  358. font-size:14px;
  359. }
  360. #u41535_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u41535 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u41535 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u41535_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u41536_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. #u41536 {
  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. #u41536 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u41536_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u41537_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. #u41537 {
  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. #u41537 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u41537_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u41538 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u41539_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. #u41539 {
  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. #u41539 .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. #u41539_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u41540_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u41540 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u41540 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u41540_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u41541 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u41542_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. #u41542 {
  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. #u41542 .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. #u41542_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u41543_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u41543 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u41543 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u41543_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u41544 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u41545_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. #u41545 {
  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. #u41545 .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. #u41545_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u41546_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u41546 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u41546 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u41546_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u41547 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u41548_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. #u41548 {
  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. #u41548 .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. #u41548_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u41549_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u41549 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u41549 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u41549_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u41550 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u41551_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. #u41551 {
  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. #u41551 .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. #u41551_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u41552_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u41552 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u41552 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u41552_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u41553 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u41554_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. #u41554 {
  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. #u41554 .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. #u41554_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u41555_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u41555 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u41555 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u41555_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u41556 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u41557_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. #u41557 {
  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. #u41557 .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. #u41557_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u41558_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u41558 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u41558 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u41558_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u41559 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u41560_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. #u41560 {
  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. #u41560 .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. #u41560_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u41561_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u41561 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u41561 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u41561_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u41562 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u41563_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. #u41563 {
  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. #u41563 .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. #u41563_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u41564_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u41564 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u41564 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u41564_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u41565 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u41566_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. #u41566 {
  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. #u41566 .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. #u41566_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u41567_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u41567 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u41567 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u41567_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u41568_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. #u41568 {
  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. #u41568 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u41568_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u41569_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u41569 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u41569 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u41569_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u41570_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. #u41570 {
  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. #u41570 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u41570_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u41571_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u41571 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u41571 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u41571_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u41572 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u41573_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. #u41573 {
  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. #u41573 .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. #u41573_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u41574_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u41574 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u41574 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u41574_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u41575 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u41576_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. #u41576 {
  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. #u41576 .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. #u41576_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u41577_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u41577 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u41577 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u41577_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u41578 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u41579_div {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:200px;
  1652. height:1180px;
  1653. background:inherit;
  1654. background-color:rgba(255, 255, 255, 1);
  1655. border:none;
  1656. border-radius:0px;
  1657. -moz-box-shadow:none;
  1658. -webkit-box-shadow:none;
  1659. box-shadow:none;
  1660. }
  1661. #u41579 {
  1662. border-width:0px;
  1663. position:absolute;
  1664. left:-1136px;
  1665. top:49px;
  1666. width:200px;
  1667. height:1180px;
  1668. display:flex;
  1669. }
  1670. #u41579 .text {
  1671. position:absolute;
  1672. align-self:center;
  1673. padding:2px 2px 2px 2px;
  1674. box-sizing:border-box;
  1675. width:100%;
  1676. }
  1677. #u41579_text {
  1678. border-width:0px;
  1679. word-wrap:break-word;
  1680. text-transform:none;
  1681. visibility:hidden;
  1682. }
  1683. #u41580_div {
  1684. border-width:0px;
  1685. position:absolute;
  1686. left:0px;
  1687. top:0px;
  1688. width:200px;
  1689. height:60px;
  1690. background:inherit;
  1691. background-color:rgba(224, 231, 247, 1);
  1692. border:none;
  1693. border-radius:0px;
  1694. -moz-box-shadow:none;
  1695. -webkit-box-shadow:none;
  1696. box-shadow:none;
  1697. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1698. font-weight:500;
  1699. font-style:normal;
  1700. font-size:18px;
  1701. }
  1702. #u41580 {
  1703. border-width:0px;
  1704. position:absolute;
  1705. left:-1136px;
  1706. top:49px;
  1707. width:200px;
  1708. height:60px;
  1709. display:flex;
  1710. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1711. font-weight:500;
  1712. font-style:normal;
  1713. font-size:18px;
  1714. }
  1715. #u41580 .text {
  1716. position:absolute;
  1717. align-self:center;
  1718. padding:0px 0px 0px 20px;
  1719. box-sizing:border-box;
  1720. width:100%;
  1721. }
  1722. #u41580_text {
  1723. border-width:0px;
  1724. word-wrap:break-word;
  1725. text-transform:none;
  1726. }
  1727. #u41581_div {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:0px;
  1731. top:0px;
  1732. width:65px;
  1733. height:22px;
  1734. background:inherit;
  1735. background-color:rgba(255, 255, 255, 0);
  1736. border:none;
  1737. border-radius:0px;
  1738. -moz-box-shadow:none;
  1739. -webkit-box-shadow:none;
  1740. box-shadow:none;
  1741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1742. font-weight:400;
  1743. font-style:normal;
  1744. font-size:16px;
  1745. color:#1890FF;
  1746. }
  1747. #u41581 {
  1748. border-width:0px;
  1749. position:absolute;
  1750. left:-1109px;
  1751. top:130px;
  1752. width:65px;
  1753. height:22px;
  1754. display:flex;
  1755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1756. font-weight:400;
  1757. font-style:normal;
  1758. font-size:16px;
  1759. color:#1890FF;
  1760. }
  1761. #u41581 .text {
  1762. position:absolute;
  1763. align-self:flex-start;
  1764. padding:0px 0px 0px 0px;
  1765. box-sizing:border-box;
  1766. width:100%;
  1767. }
  1768. #u41581_text {
  1769. border-width:0px;
  1770. white-space:nowrap;
  1771. text-transform:none;
  1772. }
  1773. #u41582_div {
  1774. border-width:0px;
  1775. position:absolute;
  1776. left:0px;
  1777. top:0px;
  1778. width:65px;
  1779. height:22px;
  1780. background:inherit;
  1781. background-color:rgba(255, 255, 255, 0);
  1782. border:none;
  1783. border-radius:0px;
  1784. -moz-box-shadow:none;
  1785. -webkit-box-shadow:none;
  1786. box-shadow:none;
  1787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1788. font-weight:400;
  1789. font-style:normal;
  1790. font-size:16px;
  1791. }
  1792. #u41582 {
  1793. border-width:0px;
  1794. position:absolute;
  1795. left:-1109px;
  1796. top:172px;
  1797. width:65px;
  1798. height:22px;
  1799. display:flex;
  1800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1801. font-weight:400;
  1802. font-style:normal;
  1803. font-size:16px;
  1804. }
  1805. #u41582 .text {
  1806. position:absolute;
  1807. align-self:flex-start;
  1808. padding:0px 0px 0px 0px;
  1809. box-sizing:border-box;
  1810. width:100%;
  1811. }
  1812. #u41582_text {
  1813. border-width:0px;
  1814. white-space:nowrap;
  1815. text-transform:none;
  1816. }
  1817. #u41583_div {
  1818. border-width:0px;
  1819. position:absolute;
  1820. left:0px;
  1821. top:0px;
  1822. width:65px;
  1823. height:22px;
  1824. background:inherit;
  1825. background-color:rgba(255, 255, 255, 0);
  1826. border:none;
  1827. border-radius:0px;
  1828. -moz-box-shadow:none;
  1829. -webkit-box-shadow:none;
  1830. box-shadow:none;
  1831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1832. font-weight:400;
  1833. font-style:normal;
  1834. font-size:16px;
  1835. }
  1836. #u41583 {
  1837. border-width:0px;
  1838. position:absolute;
  1839. left:-1109px;
  1840. top:214px;
  1841. width:65px;
  1842. height:22px;
  1843. display:flex;
  1844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1845. font-weight:400;
  1846. font-style:normal;
  1847. font-size:16px;
  1848. }
  1849. #u41583 .text {
  1850. position:absolute;
  1851. align-self:flex-start;
  1852. padding:0px 0px 0px 0px;
  1853. box-sizing:border-box;
  1854. width:100%;
  1855. }
  1856. #u41583_text {
  1857. border-width:0px;
  1858. white-space:nowrap;
  1859. text-transform:none;
  1860. }
  1861. #u41584_div {
  1862. border-width:0px;
  1863. position:absolute;
  1864. left:0px;
  1865. top:0px;
  1866. width:1255px;
  1867. height:1176px;
  1868. background:inherit;
  1869. background-color:rgba(255, 255, 255, 1);
  1870. border:none;
  1871. border-radius:0px;
  1872. -moz-box-shadow:none;
  1873. -webkit-box-shadow:none;
  1874. box-shadow:none;
  1875. }
  1876. #u41584 {
  1877. border-width:0px;
  1878. position:absolute;
  1879. left:333px;
  1880. top:51px;
  1881. width:1255px;
  1882. height:1176px;
  1883. display:flex;
  1884. }
  1885. #u41584 .text {
  1886. position:absolute;
  1887. align-self:center;
  1888. padding:2px 2px 2px 2px;
  1889. box-sizing:border-box;
  1890. width:100%;
  1891. }
  1892. #u41584_text {
  1893. border-width:0px;
  1894. word-wrap:break-word;
  1895. text-transform:none;
  1896. visibility:hidden;
  1897. }
  1898. #u41585 {
  1899. border-width:0px;
  1900. position:absolute;
  1901. left:0px;
  1902. top:0px;
  1903. width:0px;
  1904. height:0px;
  1905. }
  1906. #u41586_img {
  1907. border-width:0px;
  1908. position:absolute;
  1909. left:0px;
  1910. top:0px;
  1911. width:993px;
  1912. height:950px;
  1913. }
  1914. #u41586 {
  1915. border-width:0px;
  1916. position:absolute;
  1917. left:582px;
  1918. top:115px;
  1919. width:993px;
  1920. height:950px;
  1921. display:flex;
  1922. }
  1923. #u41586 .text {
  1924. position:absolute;
  1925. align-self:center;
  1926. padding:2px 2px 2px 2px;
  1927. box-sizing:border-box;
  1928. width:100%;
  1929. }
  1930. #u41586_text {
  1931. border-width:0px;
  1932. word-wrap:break-word;
  1933. text-transform:none;
  1934. visibility:hidden;
  1935. }
  1936. #u41587_div {
  1937. border-width:0px;
  1938. position:absolute;
  1939. left:0px;
  1940. top:0px;
  1941. width:29px;
  1942. height:17px;
  1943. background:inherit;
  1944. background-color:rgba(0, 191, 191, 1);
  1945. border:none;
  1946. border-radius:4px;
  1947. -moz-box-shadow:none;
  1948. -webkit-box-shadow:none;
  1949. box-shadow:none;
  1950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1951. font-weight:400;
  1952. font-style:normal;
  1953. font-size:10px;
  1954. color:#FFFFFF;
  1955. }
  1956. #u41587 {
  1957. border-width:0px;
  1958. position:absolute;
  1959. left:582px;
  1960. top:118px;
  1961. width:29px;
  1962. height:17px;
  1963. display:flex;
  1964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1965. font-weight:400;
  1966. font-style:normal;
  1967. font-size:10px;
  1968. color:#FFFFFF;
  1969. }
  1970. #u41587 .text {
  1971. position:absolute;
  1972. align-self:center;
  1973. padding:5px 0px 5px 0px;
  1974. box-sizing:border-box;
  1975. width:100%;
  1976. }
  1977. #u41587_text {
  1978. border-width:0px;
  1979. word-wrap:break-word;
  1980. text-transform:none;
  1981. }
  1982. #u41588_div {
  1983. border-width:0px;
  1984. position:absolute;
  1985. left:0px;
  1986. top:0px;
  1987. width:29px;
  1988. height:17px;
  1989. background:inherit;
  1990. background-color:rgba(217, 0, 27, 1);
  1991. border:none;
  1992. border-radius:4px;
  1993. -moz-box-shadow:none;
  1994. -webkit-box-shadow:none;
  1995. box-shadow:none;
  1996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1997. font-weight:400;
  1998. font-style:normal;
  1999. font-size:10px;
  2000. color:#FFFFFF;
  2001. }
  2002. #u41588 {
  2003. border-width:0px;
  2004. position:absolute;
  2005. left:1249px;
  2006. top:115px;
  2007. width:29px;
  2008. height:17px;
  2009. display:flex;
  2010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2011. font-weight:400;
  2012. font-style:normal;
  2013. font-size:10px;
  2014. color:#FFFFFF;
  2015. }
  2016. #u41588 .text {
  2017. position:absolute;
  2018. align-self:center;
  2019. padding:5px 0px 5px 0px;
  2020. box-sizing:border-box;
  2021. width:100%;
  2022. }
  2023. #u41588_text {
  2024. border-width:0px;
  2025. word-wrap:break-word;
  2026. text-transform:none;
  2027. }
  2028. #u41589_div {
  2029. border-width:0px;
  2030. position:absolute;
  2031. left:0px;
  2032. top:0px;
  2033. width:29px;
  2034. height:17px;
  2035. background:inherit;
  2036. background-color:rgba(245, 154, 35, 1);
  2037. border:none;
  2038. border-radius:4px;
  2039. -moz-box-shadow:none;
  2040. -webkit-box-shadow:none;
  2041. box-shadow:none;
  2042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2043. font-weight:400;
  2044. font-style:normal;
  2045. font-size:10px;
  2046. color:#FFFFFF;
  2047. }
  2048. #u41589 {
  2049. border-width:0px;
  2050. position:absolute;
  2051. left:582px;
  2052. top:346px;
  2053. width:29px;
  2054. height:17px;
  2055. display:flex;
  2056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2057. font-weight:400;
  2058. font-style:normal;
  2059. font-size:10px;
  2060. color:#FFFFFF;
  2061. }
  2062. #u41589 .text {
  2063. position:absolute;
  2064. align-self:center;
  2065. padding:5px 0px 5px 0px;
  2066. box-sizing:border-box;
  2067. width:100%;
  2068. }
  2069. #u41589_text {
  2070. border-width:0px;
  2071. word-wrap:break-word;
  2072. text-transform:none;
  2073. }
  2074. #u41590_div {
  2075. border-width:0px;
  2076. position:absolute;
  2077. left:0px;
  2078. top:0px;
  2079. width:29px;
  2080. height:17px;
  2081. background:inherit;
  2082. background-color:rgba(0, 191, 191, 1);
  2083. border:none;
  2084. border-radius:4px;
  2085. -moz-box-shadow:none;
  2086. -webkit-box-shadow:none;
  2087. box-shadow:none;
  2088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2089. font-weight:400;
  2090. font-style:normal;
  2091. font-size:10px;
  2092. color:#FFFFFF;
  2093. }
  2094. #u41590 {
  2095. border-width:0px;
  2096. position:absolute;
  2097. left:913px;
  2098. top:115px;
  2099. width:29px;
  2100. height:17px;
  2101. display:flex;
  2102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2103. font-weight:400;
  2104. font-style:normal;
  2105. font-size:10px;
  2106. color:#FFFFFF;
  2107. }
  2108. #u41590 .text {
  2109. position:absolute;
  2110. align-self:center;
  2111. padding:5px 0px 5px 0px;
  2112. box-sizing:border-box;
  2113. width:100%;
  2114. }
  2115. #u41590_text {
  2116. border-width:0px;
  2117. word-wrap:break-word;
  2118. text-transform:none;
  2119. }
  2120. #u41591_div {
  2121. border-width:0px;
  2122. position:absolute;
  2123. left:0px;
  2124. top:0px;
  2125. width:29px;
  2126. height:17px;
  2127. background:inherit;
  2128. background-color:rgba(0, 191, 191, 1);
  2129. border:none;
  2130. border-radius:4px;
  2131. -moz-box-shadow:none;
  2132. -webkit-box-shadow:none;
  2133. box-shadow:none;
  2134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2135. font-weight:400;
  2136. font-style:normal;
  2137. font-size:10px;
  2138. color:#FFFFFF;
  2139. }
  2140. #u41591 {
  2141. border-width:0px;
  2142. position:absolute;
  2143. left:913px;
  2144. top:349px;
  2145. width:29px;
  2146. height:17px;
  2147. display:flex;
  2148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2149. font-weight:400;
  2150. font-style:normal;
  2151. font-size:10px;
  2152. color:#FFFFFF;
  2153. }
  2154. #u41591 .text {
  2155. position:absolute;
  2156. align-self:center;
  2157. padding:5px 0px 5px 0px;
  2158. box-sizing:border-box;
  2159. width:100%;
  2160. }
  2161. #u41591_text {
  2162. border-width:0px;
  2163. word-wrap:break-word;
  2164. text-transform:none;
  2165. }
  2166. #u41592_div {
  2167. border-width:0px;
  2168. position:absolute;
  2169. left:0px;
  2170. top:0px;
  2171. width:29px;
  2172. height:17px;
  2173. background:inherit;
  2174. background-color:rgba(0, 191, 191, 1);
  2175. border:none;
  2176. border-radius:4px;
  2177. -moz-box-shadow:none;
  2178. -webkit-box-shadow:none;
  2179. box-shadow:none;
  2180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2181. font-weight:400;
  2182. font-style:normal;
  2183. font-size:10px;
  2184. color:#FFFFFF;
  2185. }
  2186. #u41592 {
  2187. border-width:0px;
  2188. position:absolute;
  2189. left:1243px;
  2190. top:346px;
  2191. width:29px;
  2192. height:17px;
  2193. display:flex;
  2194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2195. font-weight:400;
  2196. font-style:normal;
  2197. font-size:10px;
  2198. color:#FFFFFF;
  2199. }
  2200. #u41592 .text {
  2201. position:absolute;
  2202. align-self:center;
  2203. padding:5px 0px 5px 0px;
  2204. box-sizing:border-box;
  2205. width:100%;
  2206. }
  2207. #u41592_text {
  2208. border-width:0px;
  2209. word-wrap:break-word;
  2210. text-transform:none;
  2211. }
  2212. #u41593_div {
  2213. border-width:0px;
  2214. position:absolute;
  2215. left:0px;
  2216. top:0px;
  2217. width:29px;
  2218. height:17px;
  2219. background:inherit;
  2220. background-color:rgba(0, 191, 191, 1);
  2221. border:none;
  2222. border-radius:4px;
  2223. -moz-box-shadow:none;
  2224. -webkit-box-shadow:none;
  2225. box-shadow:none;
  2226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2227. font-weight:400;
  2228. font-style:normal;
  2229. font-size:10px;
  2230. color:#FFFFFF;
  2231. }
  2232. #u41593 {
  2233. border-width:0px;
  2234. position:absolute;
  2235. left:913px;
  2236. top:602px;
  2237. width:29px;
  2238. height:17px;
  2239. display:flex;
  2240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2241. font-weight:400;
  2242. font-style:normal;
  2243. font-size:10px;
  2244. color:#FFFFFF;
  2245. }
  2246. #u41593 .text {
  2247. position:absolute;
  2248. align-self:center;
  2249. padding:5px 0px 5px 0px;
  2250. box-sizing:border-box;
  2251. width:100%;
  2252. }
  2253. #u41593_text {
  2254. border-width:0px;
  2255. word-wrap:break-word;
  2256. text-transform:none;
  2257. }
  2258. #u41594_div {
  2259. border-width:0px;
  2260. position:absolute;
  2261. left:0px;
  2262. top:0px;
  2263. width:29px;
  2264. height:17px;
  2265. background:inherit;
  2266. background-color:rgba(0, 191, 191, 1);
  2267. border:none;
  2268. border-radius:4px;
  2269. -moz-box-shadow:none;
  2270. -webkit-box-shadow:none;
  2271. box-shadow:none;
  2272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2273. font-weight:400;
  2274. font-style:normal;
  2275. font-size:10px;
  2276. color:#FFFFFF;
  2277. }
  2278. #u41594 {
  2279. border-width:0px;
  2280. position:absolute;
  2281. left:1243px;
  2282. top:598px;
  2283. width:29px;
  2284. height:17px;
  2285. display:flex;
  2286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2287. font-weight:400;
  2288. font-style:normal;
  2289. font-size:10px;
  2290. color:#FFFFFF;
  2291. }
  2292. #u41594 .text {
  2293. position:absolute;
  2294. align-self:center;
  2295. padding:5px 0px 5px 0px;
  2296. box-sizing:border-box;
  2297. width:100%;
  2298. }
  2299. #u41594_text {
  2300. border-width:0px;
  2301. word-wrap:break-word;
  2302. text-transform:none;
  2303. }
  2304. #u41595_div {
  2305. border-width:0px;
  2306. position:absolute;
  2307. left:0px;
  2308. top:0px;
  2309. width:29px;
  2310. height:17px;
  2311. background:inherit;
  2312. background-color:rgba(0, 191, 191, 1);
  2313. border:none;
  2314. border-radius:4px;
  2315. -moz-box-shadow:none;
  2316. -webkit-box-shadow:none;
  2317. box-shadow:none;
  2318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2319. font-weight:400;
  2320. font-style:normal;
  2321. font-size:10px;
  2322. color:#FFFFFF;
  2323. }
  2324. #u41595 {
  2325. border-width:0px;
  2326. position:absolute;
  2327. left:582px;
  2328. top:602px;
  2329. width:29px;
  2330. height:17px;
  2331. display:flex;
  2332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2333. font-weight:400;
  2334. font-style:normal;
  2335. font-size:10px;
  2336. color:#FFFFFF;
  2337. }
  2338. #u41595 .text {
  2339. position:absolute;
  2340. align-self:center;
  2341. padding:5px 0px 5px 0px;
  2342. box-sizing:border-box;
  2343. width:100%;
  2344. }
  2345. #u41595_text {
  2346. border-width:0px;
  2347. word-wrap:break-word;
  2348. text-transform:none;
  2349. }
  2350. #u41596_div {
  2351. border-width:0px;
  2352. position:absolute;
  2353. left:0px;
  2354. top:0px;
  2355. width:29px;
  2356. height:17px;
  2357. background:inherit;
  2358. background-color:rgba(0, 191, 191, 1);
  2359. border:none;
  2360. border-radius:4px;
  2361. -moz-box-shadow:none;
  2362. -webkit-box-shadow:none;
  2363. box-shadow:none;
  2364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2365. font-weight:400;
  2366. font-style:normal;
  2367. font-size:10px;
  2368. color:#FFFFFF;
  2369. }
  2370. #u41596 {
  2371. border-width:0px;
  2372. position:absolute;
  2373. left:913px;
  2374. top:848px;
  2375. width:29px;
  2376. height:17px;
  2377. display:flex;
  2378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2379. font-weight:400;
  2380. font-style:normal;
  2381. font-size:10px;
  2382. color:#FFFFFF;
  2383. }
  2384. #u41596 .text {
  2385. position:absolute;
  2386. align-self:center;
  2387. padding:5px 0px 5px 0px;
  2388. box-sizing:border-box;
  2389. width:100%;
  2390. }
  2391. #u41596_text {
  2392. border-width:0px;
  2393. word-wrap:break-word;
  2394. text-transform:none;
  2395. }
  2396. #u41597_div {
  2397. border-width:0px;
  2398. position:absolute;
  2399. left:0px;
  2400. top:0px;
  2401. width:29px;
  2402. height:17px;
  2403. background:inherit;
  2404. background-color:rgba(0, 191, 191, 1);
  2405. border:none;
  2406. border-radius:4px;
  2407. -moz-box-shadow:none;
  2408. -webkit-box-shadow:none;
  2409. box-shadow:none;
  2410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2411. font-weight:400;
  2412. font-style:normal;
  2413. font-size:10px;
  2414. color:#FFFFFF;
  2415. }
  2416. #u41597 {
  2417. border-width:0px;
  2418. position:absolute;
  2419. left:1243px;
  2420. top:845px;
  2421. width:29px;
  2422. height:17px;
  2423. display:flex;
  2424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2425. font-weight:400;
  2426. font-style:normal;
  2427. font-size:10px;
  2428. color:#FFFFFF;
  2429. }
  2430. #u41597 .text {
  2431. position:absolute;
  2432. align-self:center;
  2433. padding:5px 0px 5px 0px;
  2434. box-sizing:border-box;
  2435. width:100%;
  2436. }
  2437. #u41597_text {
  2438. border-width:0px;
  2439. word-wrap:break-word;
  2440. text-transform:none;
  2441. }
  2442. #u41598_div {
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:0px;
  2446. top:0px;
  2447. width:29px;
  2448. height:17px;
  2449. background:inherit;
  2450. background-color:rgba(0, 191, 191, 1);
  2451. border:none;
  2452. border-radius:4px;
  2453. -moz-box-shadow:none;
  2454. -webkit-box-shadow:none;
  2455. box-shadow:none;
  2456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2457. font-weight:400;
  2458. font-style:normal;
  2459. font-size:10px;
  2460. color:#FFFFFF;
  2461. }
  2462. #u41598 {
  2463. border-width:0px;
  2464. position:absolute;
  2465. left:582px;
  2466. top:848px;
  2467. width:29px;
  2468. height:17px;
  2469. display:flex;
  2470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2471. font-weight:400;
  2472. font-style:normal;
  2473. font-size:10px;
  2474. color:#FFFFFF;
  2475. }
  2476. #u41598 .text {
  2477. position:absolute;
  2478. align-self:center;
  2479. padding:5px 0px 5px 0px;
  2480. box-sizing:border-box;
  2481. width:100%;
  2482. }
  2483. #u41598_text {
  2484. border-width:0px;
  2485. word-wrap:break-word;
  2486. text-transform:none;
  2487. }
  2488. #u41599_div {
  2489. border-width:0px;
  2490. position:absolute;
  2491. left:0px;
  2492. top:0px;
  2493. width:73px;
  2494. height:50px;
  2495. background:inherit;
  2496. background-color:rgba(255, 255, 255, 0);
  2497. border:none;
  2498. border-left:0px;
  2499. border-top:0px;
  2500. border-right:0px;
  2501. border-radius:0px;
  2502. border-bottom-right-radius:0px;
  2503. border-bottom-left-radius:0px;
  2504. -moz-box-shadow:none;
  2505. -webkit-box-shadow:none;
  2506. box-shadow:none;
  2507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2508. font-weight:400;
  2509. font-style:normal;
  2510. font-size:18px;
  2511. }
  2512. #u41599 {
  2513. border-width:0px;
  2514. position:absolute;
  2515. left:352px;
  2516. top:51px;
  2517. width:73px;
  2518. height:50px;
  2519. display:flex;
  2520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2521. font-weight:400;
  2522. font-style:normal;
  2523. font-size:18px;
  2524. }
  2525. #u41599 .text {
  2526. position:absolute;
  2527. align-self:center;
  2528. padding:0px 0px 0px 0px;
  2529. box-sizing:border-box;
  2530. width:100%;
  2531. }
  2532. #u41599_text {
  2533. border-width:0px;
  2534. white-space:nowrap;
  2535. text-transform:none;
  2536. }
  2537. #u41600_div {
  2538. border-width:0px;
  2539. position:absolute;
  2540. left:0px;
  2541. top:0px;
  2542. width:191px;
  2543. height:435px;
  2544. background:inherit;
  2545. background-color:rgba(242, 242, 242, 1);
  2546. border:none;
  2547. border-radius:4px;
  2548. -moz-box-shadow:none;
  2549. -webkit-box-shadow:none;
  2550. box-shadow:none;
  2551. }
  2552. #u41600 {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:351px;
  2556. top:321px;
  2557. width:191px;
  2558. height:435px;
  2559. display:flex;
  2560. }
  2561. #u41600 .text {
  2562. position:absolute;
  2563. align-self:center;
  2564. padding:2px 2px 2px 2px;
  2565. box-sizing:border-box;
  2566. width:100%;
  2567. }
  2568. #u41600_text {
  2569. border-width:0px;
  2570. word-wrap:break-word;
  2571. text-transform:none;
  2572. visibility:hidden;
  2573. }
  2574. #u41601_div {
  2575. border-width:0px;
  2576. position:absolute;
  2577. left:0px;
  2578. top:0px;
  2579. width:57px;
  2580. height:30px;
  2581. background:inherit;
  2582. background-color:rgba(255, 255, 255, 0);
  2583. border:none;
  2584. border-radius:0px;
  2585. -moz-box-shadow:none;
  2586. -webkit-box-shadow:none;
  2587. box-shadow:none;
  2588. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2589. font-weight:500;
  2590. font-style:normal;
  2591. font-size:14px;
  2592. color:#000000;
  2593. line-height:30px;
  2594. }
  2595. #u41601 {
  2596. border-width:0px;
  2597. position:absolute;
  2598. left:351px;
  2599. top:99px;
  2600. width:57px;
  2601. height:30px;
  2602. display:flex;
  2603. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2604. font-weight:500;
  2605. font-style:normal;
  2606. font-size:14px;
  2607. color:#000000;
  2608. line-height:30px;
  2609. }
  2610. #u41601 .text {
  2611. position:absolute;
  2612. align-self:flex-start;
  2613. padding:0px 0px 0px 0px;
  2614. box-sizing:border-box;
  2615. width:100%;
  2616. }
  2617. #u41601_text {
  2618. border-width:0px;
  2619. white-space:nowrap;
  2620. text-transform:none;
  2621. }
  2622. #u41602 {
  2623. border-width:0px;
  2624. position:absolute;
  2625. left:0px;
  2626. top:0px;
  2627. width:0px;
  2628. height:0px;
  2629. }
  2630. #u41603_img {
  2631. border-width:0px;
  2632. position:absolute;
  2633. left:0px;
  2634. top:0px;
  2635. width:18px;
  2636. height:18px;
  2637. }
  2638. #u41603 {
  2639. border-width:0px;
  2640. position:absolute;
  2641. left:1550px;
  2642. top:67px;
  2643. width:18px;
  2644. height:18px;
  2645. display:flex;
  2646. }
  2647. #u41603 .text {
  2648. position:absolute;
  2649. align-self:center;
  2650. padding:2px 2px 2px 2px;
  2651. box-sizing:border-box;
  2652. width:100%;
  2653. }
  2654. #u41603_text {
  2655. border-width:0px;
  2656. word-wrap:break-word;
  2657. text-transform:none;
  2658. visibility:hidden;
  2659. }
  2660. #u41604_img {
  2661. border-width:0px;
  2662. position:absolute;
  2663. left:0px;
  2664. top:0px;
  2665. width:2px;
  2666. height:15px;
  2667. }
  2668. #u41604 {
  2669. border-width:0px;
  2670. position:absolute;
  2671. left:1535px;
  2672. top:69px;
  2673. width:1px;
  2674. height:14px;
  2675. display:flex;
  2676. }
  2677. #u41604 .text {
  2678. position:absolute;
  2679. align-self:center;
  2680. padding:2px 2px 2px 2px;
  2681. box-sizing:border-box;
  2682. width:100%;
  2683. }
  2684. #u41604_text {
  2685. border-width:0px;
  2686. word-wrap:break-word;
  2687. text-transform:none;
  2688. visibility:hidden;
  2689. }
  2690. #u41605 {
  2691. border-width:0px;
  2692. position:absolute;
  2693. left:0px;
  2694. top:0px;
  2695. width:0px;
  2696. height:0px;
  2697. }
  2698. #u41606_img {
  2699. border-width:0px;
  2700. position:absolute;
  2701. left:0px;
  2702. top:0px;
  2703. width:9px;
  2704. height:9px;
  2705. }
  2706. #u41606 {
  2707. border-width:0px;
  2708. position:absolute;
  2709. left:1412px;
  2710. top:66px;
  2711. width:9px;
  2712. height:9px;
  2713. display:flex;
  2714. }
  2715. #u41606 .text {
  2716. position:absolute;
  2717. align-self:center;
  2718. padding:2px 2px 2px 2px;
  2719. box-sizing:border-box;
  2720. width:100%;
  2721. }
  2722. #u41606_text {
  2723. border-width:0px;
  2724. word-wrap:break-word;
  2725. text-transform:none;
  2726. visibility:hidden;
  2727. }
  2728. #u41607_img {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:0px;
  2732. top:0px;
  2733. width:9px;
  2734. height:9px;
  2735. }
  2736. #u41607 {
  2737. border-width:0px;
  2738. position:absolute;
  2739. left:1424px;
  2740. top:66px;
  2741. width:9px;
  2742. height:9px;
  2743. display:flex;
  2744. }
  2745. #u41607 .text {
  2746. position:absolute;
  2747. align-self:center;
  2748. padding:2px 2px 2px 2px;
  2749. box-sizing:border-box;
  2750. width:100%;
  2751. }
  2752. #u41607_text {
  2753. border-width:0px;
  2754. word-wrap:break-word;
  2755. text-transform:none;
  2756. visibility:hidden;
  2757. }
  2758. #u41608_img {
  2759. border-width:0px;
  2760. position:absolute;
  2761. left:0px;
  2762. top:0px;
  2763. width:9px;
  2764. height:9px;
  2765. }
  2766. #u41608 {
  2767. border-width:0px;
  2768. position:absolute;
  2769. left:1412px;
  2770. top:78px;
  2771. width:9px;
  2772. height:9px;
  2773. display:flex;
  2774. }
  2775. #u41608 .text {
  2776. position:absolute;
  2777. align-self:center;
  2778. padding:2px 2px 2px 2px;
  2779. box-sizing:border-box;
  2780. width:100%;
  2781. }
  2782. #u41608_text {
  2783. border-width:0px;
  2784. word-wrap:break-word;
  2785. text-transform:none;
  2786. visibility:hidden;
  2787. }
  2788. #u41609_img {
  2789. border-width:0px;
  2790. position:absolute;
  2791. left:0px;
  2792. top:0px;
  2793. width:9px;
  2794. height:9px;
  2795. }
  2796. #u41609 {
  2797. border-width:0px;
  2798. position:absolute;
  2799. left:1424px;
  2800. top:78px;
  2801. width:9px;
  2802. height:9px;
  2803. display:flex;
  2804. }
  2805. #u41609 .text {
  2806. position:absolute;
  2807. align-self:center;
  2808. padding:2px 2px 2px 2px;
  2809. box-sizing:border-box;
  2810. width:100%;
  2811. }
  2812. #u41609_text {
  2813. border-width:0px;
  2814. word-wrap:break-word;
  2815. text-transform:none;
  2816. visibility:hidden;
  2817. }
  2818. #u41610 {
  2819. border-width:0px;
  2820. position:absolute;
  2821. left:0px;
  2822. top:0px;
  2823. width:0px;
  2824. height:0px;
  2825. }
  2826. #u41611_img {
  2827. border-width:0px;
  2828. position:absolute;
  2829. left:0px;
  2830. top:0px;
  2831. width:6px;
  2832. height:6px;
  2833. }
  2834. #u41611 {
  2835. border-width:0px;
  2836. position:absolute;
  2837. left:1372px;
  2838. top:66px;
  2839. width:6px;
  2840. height:6px;
  2841. display:flex;
  2842. }
  2843. #u41611 .text {
  2844. position:absolute;
  2845. align-self:center;
  2846. padding:2px 2px 2px 2px;
  2847. box-sizing:border-box;
  2848. width:100%;
  2849. }
  2850. #u41611_text {
  2851. border-width:0px;
  2852. word-wrap:break-word;
  2853. text-transform:none;
  2854. visibility:hidden;
  2855. }
  2856. #u41612_img {
  2857. border-width:0px;
  2858. position:absolute;
  2859. left:0px;
  2860. top:0px;
  2861. width:6px;
  2862. height:6px;
  2863. }
  2864. #u41612 {
  2865. border-width:0px;
  2866. position:absolute;
  2867. left:1379px;
  2868. top:66px;
  2869. width:6px;
  2870. height:6px;
  2871. display:flex;
  2872. }
  2873. #u41612 .text {
  2874. position:absolute;
  2875. align-self:center;
  2876. padding:2px 2px 2px 2px;
  2877. box-sizing:border-box;
  2878. width:100%;
  2879. }
  2880. #u41612_text {
  2881. border-width:0px;
  2882. word-wrap:break-word;
  2883. text-transform:none;
  2884. visibility:hidden;
  2885. }
  2886. #u41613_img {
  2887. border-width:0px;
  2888. position:absolute;
  2889. left:0px;
  2890. top:0px;
  2891. width:6px;
  2892. height:6px;
  2893. }
  2894. #u41613 {
  2895. border-width:0px;
  2896. position:absolute;
  2897. left:1386px;
  2898. top:66px;
  2899. width:6px;
  2900. height:6px;
  2901. display:flex;
  2902. }
  2903. #u41613 .text {
  2904. position:absolute;
  2905. align-self:center;
  2906. padding:2px 2px 2px 2px;
  2907. box-sizing:border-box;
  2908. width:100%;
  2909. }
  2910. #u41613_text {
  2911. border-width:0px;
  2912. word-wrap:break-word;
  2913. text-transform:none;
  2914. visibility:hidden;
  2915. }
  2916. #u41614_img {
  2917. border-width:0px;
  2918. position:absolute;
  2919. left:0px;
  2920. top:0px;
  2921. width:6px;
  2922. height:6px;
  2923. }
  2924. #u41614 {
  2925. border-width:0px;
  2926. position:absolute;
  2927. left:1372px;
  2928. top:73px;
  2929. width:6px;
  2930. height:6px;
  2931. display:flex;
  2932. }
  2933. #u41614 .text {
  2934. position:absolute;
  2935. align-self:center;
  2936. padding:2px 2px 2px 2px;
  2937. box-sizing:border-box;
  2938. width:100%;
  2939. }
  2940. #u41614_text {
  2941. border-width:0px;
  2942. word-wrap:break-word;
  2943. text-transform:none;
  2944. visibility:hidden;
  2945. }
  2946. #u41615_img {
  2947. border-width:0px;
  2948. position:absolute;
  2949. left:0px;
  2950. top:0px;
  2951. width:6px;
  2952. height:6px;
  2953. }
  2954. #u41615 {
  2955. border-width:0px;
  2956. position:absolute;
  2957. left:1379px;
  2958. top:73px;
  2959. width:6px;
  2960. height:6px;
  2961. display:flex;
  2962. }
  2963. #u41615 .text {
  2964. position:absolute;
  2965. align-self:center;
  2966. padding:2px 2px 2px 2px;
  2967. box-sizing:border-box;
  2968. width:100%;
  2969. }
  2970. #u41615_text {
  2971. border-width:0px;
  2972. word-wrap:break-word;
  2973. text-transform:none;
  2974. visibility:hidden;
  2975. }
  2976. #u41616_img {
  2977. border-width:0px;
  2978. position:absolute;
  2979. left:0px;
  2980. top:0px;
  2981. width:6px;
  2982. height:6px;
  2983. }
  2984. #u41616 {
  2985. border-width:0px;
  2986. position:absolute;
  2987. left:1386px;
  2988. top:73px;
  2989. width:6px;
  2990. height:6px;
  2991. display:flex;
  2992. }
  2993. #u41616 .text {
  2994. position:absolute;
  2995. align-self:center;
  2996. padding:2px 2px 2px 2px;
  2997. box-sizing:border-box;
  2998. width:100%;
  2999. }
  3000. #u41616_text {
  3001. border-width:0px;
  3002. word-wrap:break-word;
  3003. text-transform:none;
  3004. visibility:hidden;
  3005. }
  3006. #u41617_img {
  3007. border-width:0px;
  3008. position:absolute;
  3009. left:0px;
  3010. top:0px;
  3011. width:6px;
  3012. height:6px;
  3013. }
  3014. #u41617 {
  3015. border-width:0px;
  3016. position:absolute;
  3017. left:1372px;
  3018. top:80px;
  3019. width:6px;
  3020. height:6px;
  3021. display:flex;
  3022. }
  3023. #u41617 .text {
  3024. position:absolute;
  3025. align-self:center;
  3026. padding:2px 2px 2px 2px;
  3027. box-sizing:border-box;
  3028. width:100%;
  3029. }
  3030. #u41617_text {
  3031. border-width:0px;
  3032. word-wrap:break-word;
  3033. text-transform:none;
  3034. visibility:hidden;
  3035. }
  3036. #u41618_img {
  3037. border-width:0px;
  3038. position:absolute;
  3039. left:0px;
  3040. top:0px;
  3041. width:6px;
  3042. height:6px;
  3043. }
  3044. #u41618 {
  3045. border-width:0px;
  3046. position:absolute;
  3047. left:1379px;
  3048. top:80px;
  3049. width:6px;
  3050. height:6px;
  3051. display:flex;
  3052. }
  3053. #u41618 .text {
  3054. position:absolute;
  3055. align-self:center;
  3056. padding:2px 2px 2px 2px;
  3057. box-sizing:border-box;
  3058. width:100%;
  3059. }
  3060. #u41618_text {
  3061. border-width:0px;
  3062. word-wrap:break-word;
  3063. text-transform:none;
  3064. visibility:hidden;
  3065. }
  3066. #u41619_img {
  3067. border-width:0px;
  3068. position:absolute;
  3069. left:0px;
  3070. top:0px;
  3071. width:6px;
  3072. height:6px;
  3073. }
  3074. #u41619 {
  3075. border-width:0px;
  3076. position:absolute;
  3077. left:1386px;
  3078. top:80px;
  3079. width:6px;
  3080. height:6px;
  3081. display:flex;
  3082. }
  3083. #u41619 .text {
  3084. position:absolute;
  3085. align-self:center;
  3086. padding:2px 2px 2px 2px;
  3087. box-sizing:border-box;
  3088. width:100%;
  3089. }
  3090. #u41619_text {
  3091. border-width:0px;
  3092. word-wrap:break-word;
  3093. text-transform:none;
  3094. visibility:hidden;
  3095. }
  3096. #u41620 {
  3097. border-width:0px;
  3098. position:absolute;
  3099. left:0px;
  3100. top:0px;
  3101. width:0px;
  3102. height:0px;
  3103. }
  3104. #u41621_img {
  3105. border-width:0px;
  3106. position:absolute;
  3107. left:0px;
  3108. top:0px;
  3109. width:4px;
  3110. height:4px;
  3111. }
  3112. #u41621 {
  3113. border-width:0px;
  3114. position:absolute;
  3115. left:1332px;
  3116. top:67px;
  3117. width:4px;
  3118. height:4px;
  3119. display:flex;
  3120. }
  3121. #u41621 .text {
  3122. position:absolute;
  3123. align-self:center;
  3124. padding:2px 2px 2px 2px;
  3125. box-sizing:border-box;
  3126. width:100%;
  3127. }
  3128. #u41621_text {
  3129. border-width:0px;
  3130. word-wrap:break-word;
  3131. text-transform:none;
  3132. visibility:hidden;
  3133. }
  3134. #u41622_img {
  3135. border-width:0px;
  3136. position:absolute;
  3137. left:0px;
  3138. top:0px;
  3139. width:4px;
  3140. height:4px;
  3141. }
  3142. #u41622 {
  3143. border-width:0px;
  3144. position:absolute;
  3145. left:1337px;
  3146. top:67px;
  3147. width:4px;
  3148. height:4px;
  3149. display:flex;
  3150. }
  3151. #u41622 .text {
  3152. position:absolute;
  3153. align-self:center;
  3154. padding:2px 2px 2px 2px;
  3155. box-sizing:border-box;
  3156. width:100%;
  3157. }
  3158. #u41622_text {
  3159. border-width:0px;
  3160. word-wrap:break-word;
  3161. text-transform:none;
  3162. visibility:hidden;
  3163. }
  3164. #u41623_img {
  3165. border-width:0px;
  3166. position:absolute;
  3167. left:0px;
  3168. top:0px;
  3169. width:4px;
  3170. height:4px;
  3171. }
  3172. #u41623 {
  3173. border-width:0px;
  3174. position:absolute;
  3175. left:1342px;
  3176. top:67px;
  3177. width:4px;
  3178. height:4px;
  3179. display:flex;
  3180. }
  3181. #u41623 .text {
  3182. position:absolute;
  3183. align-self:center;
  3184. padding:2px 2px 2px 2px;
  3185. box-sizing:border-box;
  3186. width:100%;
  3187. }
  3188. #u41623_text {
  3189. border-width:0px;
  3190. word-wrap:break-word;
  3191. text-transform:none;
  3192. visibility:hidden;
  3193. }
  3194. #u41624_img {
  3195. border-width:0px;
  3196. position:absolute;
  3197. left:0px;
  3198. top:0px;
  3199. width:4px;
  3200. height:4px;
  3201. }
  3202. #u41624 {
  3203. border-width:0px;
  3204. position:absolute;
  3205. left:1347px;
  3206. top:67px;
  3207. width:4px;
  3208. height:4px;
  3209. display:flex;
  3210. }
  3211. #u41624 .text {
  3212. position:absolute;
  3213. align-self:center;
  3214. padding:2px 2px 2px 2px;
  3215. box-sizing:border-box;
  3216. width:100%;
  3217. }
  3218. #u41624_text {
  3219. border-width:0px;
  3220. word-wrap:break-word;
  3221. text-transform:none;
  3222. visibility:hidden;
  3223. }
  3224. #u41625_img {
  3225. border-width:0px;
  3226. position:absolute;
  3227. left:0px;
  3228. top:0px;
  3229. width:4px;
  3230. height:4px;
  3231. }
  3232. #u41625 {
  3233. border-width:0px;
  3234. position:absolute;
  3235. left:1332px;
  3236. top:72px;
  3237. width:4px;
  3238. height:4px;
  3239. display:flex;
  3240. }
  3241. #u41625 .text {
  3242. position:absolute;
  3243. align-self:center;
  3244. padding:2px 2px 2px 2px;
  3245. box-sizing:border-box;
  3246. width:100%;
  3247. }
  3248. #u41625_text {
  3249. border-width:0px;
  3250. word-wrap:break-word;
  3251. text-transform:none;
  3252. visibility:hidden;
  3253. }
  3254. #u41626_img {
  3255. border-width:0px;
  3256. position:absolute;
  3257. left:0px;
  3258. top:0px;
  3259. width:4px;
  3260. height:4px;
  3261. }
  3262. #u41626 {
  3263. border-width:0px;
  3264. position:absolute;
  3265. left:1337px;
  3266. top:72px;
  3267. width:4px;
  3268. height:4px;
  3269. display:flex;
  3270. }
  3271. #u41626 .text {
  3272. position:absolute;
  3273. align-self:center;
  3274. padding:2px 2px 2px 2px;
  3275. box-sizing:border-box;
  3276. width:100%;
  3277. }
  3278. #u41626_text {
  3279. border-width:0px;
  3280. word-wrap:break-word;
  3281. text-transform:none;
  3282. visibility:hidden;
  3283. }
  3284. #u41627_img {
  3285. border-width:0px;
  3286. position:absolute;
  3287. left:0px;
  3288. top:0px;
  3289. width:4px;
  3290. height:4px;
  3291. }
  3292. #u41627 {
  3293. border-width:0px;
  3294. position:absolute;
  3295. left:1342px;
  3296. top:72px;
  3297. width:4px;
  3298. height:4px;
  3299. display:flex;
  3300. }
  3301. #u41627 .text {
  3302. position:absolute;
  3303. align-self:center;
  3304. padding:2px 2px 2px 2px;
  3305. box-sizing:border-box;
  3306. width:100%;
  3307. }
  3308. #u41627_text {
  3309. border-width:0px;
  3310. word-wrap:break-word;
  3311. text-transform:none;
  3312. visibility:hidden;
  3313. }
  3314. #u41628_img {
  3315. border-width:0px;
  3316. position:absolute;
  3317. left:0px;
  3318. top:0px;
  3319. width:4px;
  3320. height:4px;
  3321. }
  3322. #u41628 {
  3323. border-width:0px;
  3324. position:absolute;
  3325. left:1347px;
  3326. top:72px;
  3327. width:4px;
  3328. height:4px;
  3329. display:flex;
  3330. }
  3331. #u41628 .text {
  3332. position:absolute;
  3333. align-self:center;
  3334. padding:2px 2px 2px 2px;
  3335. box-sizing:border-box;
  3336. width:100%;
  3337. }
  3338. #u41628_text {
  3339. border-width:0px;
  3340. word-wrap:break-word;
  3341. text-transform:none;
  3342. visibility:hidden;
  3343. }
  3344. #u41629_img {
  3345. border-width:0px;
  3346. position:absolute;
  3347. left:0px;
  3348. top:0px;
  3349. width:4px;
  3350. height:4px;
  3351. }
  3352. #u41629 {
  3353. border-width:0px;
  3354. position:absolute;
  3355. left:1332px;
  3356. top:77px;
  3357. width:4px;
  3358. height:4px;
  3359. display:flex;
  3360. }
  3361. #u41629 .text {
  3362. position:absolute;
  3363. align-self:center;
  3364. padding:2px 2px 2px 2px;
  3365. box-sizing:border-box;
  3366. width:100%;
  3367. }
  3368. #u41629_text {
  3369. border-width:0px;
  3370. word-wrap:break-word;
  3371. text-transform:none;
  3372. visibility:hidden;
  3373. }
  3374. #u41630_img {
  3375. border-width:0px;
  3376. position:absolute;
  3377. left:0px;
  3378. top:0px;
  3379. width:4px;
  3380. height:4px;
  3381. }
  3382. #u41630 {
  3383. border-width:0px;
  3384. position:absolute;
  3385. left:1337px;
  3386. top:77px;
  3387. width:4px;
  3388. height:4px;
  3389. display:flex;
  3390. }
  3391. #u41630 .text {
  3392. position:absolute;
  3393. align-self:center;
  3394. padding:2px 2px 2px 2px;
  3395. box-sizing:border-box;
  3396. width:100%;
  3397. }
  3398. #u41630_text {
  3399. border-width:0px;
  3400. word-wrap:break-word;
  3401. text-transform:none;
  3402. visibility:hidden;
  3403. }
  3404. #u41631_img {
  3405. border-width:0px;
  3406. position:absolute;
  3407. left:0px;
  3408. top:0px;
  3409. width:4px;
  3410. height:4px;
  3411. }
  3412. #u41631 {
  3413. border-width:0px;
  3414. position:absolute;
  3415. left:1342px;
  3416. top:77px;
  3417. width:4px;
  3418. height:4px;
  3419. display:flex;
  3420. }
  3421. #u41631 .text {
  3422. position:absolute;
  3423. align-self:center;
  3424. padding:2px 2px 2px 2px;
  3425. box-sizing:border-box;
  3426. width:100%;
  3427. }
  3428. #u41631_text {
  3429. border-width:0px;
  3430. word-wrap:break-word;
  3431. text-transform:none;
  3432. visibility:hidden;
  3433. }
  3434. #u41632_img {
  3435. border-width:0px;
  3436. position:absolute;
  3437. left:0px;
  3438. top:0px;
  3439. width:4px;
  3440. height:4px;
  3441. }
  3442. #u41632 {
  3443. border-width:0px;
  3444. position:absolute;
  3445. left:1347px;
  3446. top:77px;
  3447. width:4px;
  3448. height:4px;
  3449. display:flex;
  3450. }
  3451. #u41632 .text {
  3452. position:absolute;
  3453. align-self:center;
  3454. padding:2px 2px 2px 2px;
  3455. box-sizing:border-box;
  3456. width:100%;
  3457. }
  3458. #u41632_text {
  3459. border-width:0px;
  3460. word-wrap:break-word;
  3461. text-transform:none;
  3462. visibility:hidden;
  3463. }
  3464. #u41633_img {
  3465. border-width:0px;
  3466. position:absolute;
  3467. left:0px;
  3468. top:0px;
  3469. width:4px;
  3470. height:4px;
  3471. }
  3472. #u41633 {
  3473. border-width:0px;
  3474. position:absolute;
  3475. left:1332px;
  3476. top:82px;
  3477. width:4px;
  3478. height:4px;
  3479. display:flex;
  3480. }
  3481. #u41633 .text {
  3482. position:absolute;
  3483. align-self:center;
  3484. padding:2px 2px 2px 2px;
  3485. box-sizing:border-box;
  3486. width:100%;
  3487. }
  3488. #u41633_text {
  3489. border-width:0px;
  3490. word-wrap:break-word;
  3491. text-transform:none;
  3492. visibility:hidden;
  3493. }
  3494. #u41634_img {
  3495. border-width:0px;
  3496. position:absolute;
  3497. left:0px;
  3498. top:0px;
  3499. width:4px;
  3500. height:4px;
  3501. }
  3502. #u41634 {
  3503. border-width:0px;
  3504. position:absolute;
  3505. left:1337px;
  3506. top:82px;
  3507. width:4px;
  3508. height:4px;
  3509. display:flex;
  3510. }
  3511. #u41634 .text {
  3512. position:absolute;
  3513. align-self:center;
  3514. padding:2px 2px 2px 2px;
  3515. box-sizing:border-box;
  3516. width:100%;
  3517. }
  3518. #u41634_text {
  3519. border-width:0px;
  3520. word-wrap:break-word;
  3521. text-transform:none;
  3522. visibility:hidden;
  3523. }
  3524. #u41635_img {
  3525. border-width:0px;
  3526. position:absolute;
  3527. left:0px;
  3528. top:0px;
  3529. width:4px;
  3530. height:4px;
  3531. }
  3532. #u41635 {
  3533. border-width:0px;
  3534. position:absolute;
  3535. left:1342px;
  3536. top:82px;
  3537. width:4px;
  3538. height:4px;
  3539. display:flex;
  3540. }
  3541. #u41635 .text {
  3542. position:absolute;
  3543. align-self:center;
  3544. padding:2px 2px 2px 2px;
  3545. box-sizing:border-box;
  3546. width:100%;
  3547. }
  3548. #u41635_text {
  3549. border-width:0px;
  3550. word-wrap:break-word;
  3551. text-transform:none;
  3552. visibility:hidden;
  3553. }
  3554. #u41636_img {
  3555. border-width:0px;
  3556. position:absolute;
  3557. left:0px;
  3558. top:0px;
  3559. width:4px;
  3560. height:4px;
  3561. }
  3562. #u41636 {
  3563. border-width:0px;
  3564. position:absolute;
  3565. left:1347px;
  3566. top:82px;
  3567. width:4px;
  3568. height:4px;
  3569. display:flex;
  3570. }
  3571. #u41636 .text {
  3572. position:absolute;
  3573. align-self:center;
  3574. padding:2px 2px 2px 2px;
  3575. box-sizing:border-box;
  3576. width:100%;
  3577. }
  3578. #u41636_text {
  3579. border-width:0px;
  3580. word-wrap:break-word;
  3581. text-transform:none;
  3582. visibility:hidden;
  3583. }
  3584. #u41637_img {
  3585. border-width:0px;
  3586. position:absolute;
  3587. left:0px;
  3588. top:0px;
  3589. width:20px;
  3590. height:20px;
  3591. }
  3592. #u41637 {
  3593. border-width:0px;
  3594. position:absolute;
  3595. left:1454px;
  3596. top:66px;
  3597. width:20px;
  3598. height:20px;
  3599. display:flex;
  3600. }
  3601. #u41637 .text {
  3602. position:absolute;
  3603. align-self:center;
  3604. padding:2px 2px 2px 2px;
  3605. box-sizing:border-box;
  3606. width:100%;
  3607. }
  3608. #u41637_text {
  3609. border-width:0px;
  3610. word-wrap:break-word;
  3611. text-transform:none;
  3612. visibility:hidden;
  3613. }
  3614. #u41638_img {
  3615. border-width:0px;
  3616. position:absolute;
  3617. left:0px;
  3618. top:0px;
  3619. width:18px;
  3620. height:18px;
  3621. }
  3622. #u41638 {
  3623. border-width:0px;
  3624. position:absolute;
  3625. left:1503px;
  3626. top:67px;
  3627. width:18px;
  3628. height:18px;
  3629. display:flex;
  3630. }
  3631. #u41638 .text {
  3632. position:absolute;
  3633. align-self:center;
  3634. padding:2px 2px 2px 2px;
  3635. box-sizing:border-box;
  3636. width:100%;
  3637. }
  3638. #u41638_text {
  3639. border-width:0px;
  3640. word-wrap:break-word;
  3641. text-transform:none;
  3642. visibility:hidden;
  3643. }
  3644. #u41639_img {
  3645. border-width:0px;
  3646. position:absolute;
  3647. left:0px;
  3648. top:0px;
  3649. width:2px;
  3650. height:15px;
  3651. }
  3652. #u41639 {
  3653. border-width:0px;
  3654. position:absolute;
  3655. left:1488px;
  3656. top:69px;
  3657. width:1px;
  3658. height:14px;
  3659. display:flex;
  3660. }
  3661. #u41639 .text {
  3662. position:absolute;
  3663. align-self:center;
  3664. padding:2px 2px 2px 2px;
  3665. box-sizing:border-box;
  3666. width:100%;
  3667. }
  3668. #u41639_text {
  3669. border-width:0px;
  3670. word-wrap:break-word;
  3671. text-transform:none;
  3672. visibility:hidden;
  3673. }
  3674. #u41640_div {
  3675. border-width:0px;
  3676. position:absolute;
  3677. left:0px;
  3678. top:0px;
  3679. width:43px;
  3680. height:30px;
  3681. background:inherit;
  3682. background-color:rgba(255, 255, 255, 0);
  3683. border:none;
  3684. border-radius:0px;
  3685. -moz-box-shadow:none;
  3686. -webkit-box-shadow:none;
  3687. box-shadow:none;
  3688. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3689. font-weight:500;
  3690. font-style:normal;
  3691. font-size:14px;
  3692. color:#000000;
  3693. line-height:30px;
  3694. }
  3695. #u41640 {
  3696. border-width:0px;
  3697. position:absolute;
  3698. left:351px;
  3699. top:291px;
  3700. width:43px;
  3701. height:30px;
  3702. display:flex;
  3703. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3704. font-weight:500;
  3705. font-style:normal;
  3706. font-size:14px;
  3707. color:#000000;
  3708. line-height:30px;
  3709. }
  3710. #u41640 .text {
  3711. position:absolute;
  3712. align-self:flex-start;
  3713. padding:0px 0px 0px 0px;
  3714. box-sizing:border-box;
  3715. width:100%;
  3716. }
  3717. #u41640_text {
  3718. border-width:0px;
  3719. white-space:nowrap;
  3720. text-transform:none;
  3721. }
  3722. #u41641 {
  3723. border-width:0px;
  3724. position:absolute;
  3725. left:0px;
  3726. top:0px;
  3727. width:0px;
  3728. height:0px;
  3729. }
  3730. #u41642_div {
  3731. border-width:0px;
  3732. position:absolute;
  3733. left:0px;
  3734. top:0px;
  3735. width:30px;
  3736. height:30px;
  3737. background:inherit;
  3738. background-color:rgba(255, 255, 255, 1);
  3739. box-sizing:border-box;
  3740. border-width:1px;
  3741. border-style:solid;
  3742. border-color:rgba(121, 121, 121, 1);
  3743. border-radius:0px;
  3744. -moz-box-shadow:none;
  3745. -webkit-box-shadow:none;
  3746. box-shadow:none;
  3747. }
  3748. #u41642 {
  3749. border-width:0px;
  3750. position:absolute;
  3751. left:352px;
  3752. top:134px;
  3753. width:30px;
  3754. height:30px;
  3755. display:flex;
  3756. }
  3757. #u41642 .text {
  3758. position:absolute;
  3759. align-self:center;
  3760. padding:2px 2px 2px 2px;
  3761. box-sizing:border-box;
  3762. width:100%;
  3763. }
  3764. #u41642_text {
  3765. border-width:0px;
  3766. word-wrap:break-word;
  3767. text-transform:none;
  3768. visibility:hidden;
  3769. }
  3770. #u41643_img {
  3771. border-width:0px;
  3772. position:absolute;
  3773. left:0px;
  3774. top:0px;
  3775. width:19px;
  3776. height:18px;
  3777. }
  3778. #u41643 {
  3779. border-width:0px;
  3780. position:absolute;
  3781. left:358px;
  3782. top:140px;
  3783. width:19px;
  3784. height:18px;
  3785. display:flex;
  3786. -webkit-transform:rotate(135deg);
  3787. -moz-transform:rotate(135deg);
  3788. -ms-transform:rotate(135deg);
  3789. transform:rotate(135deg);
  3790. }
  3791. #u41643 .text {
  3792. position:absolute;
  3793. align-self:center;
  3794. padding:2px 2px 2px 2px;
  3795. box-sizing:border-box;
  3796. width:100%;
  3797. }
  3798. #u41643_text {
  3799. border-width:0px;
  3800. word-wrap:break-word;
  3801. text-transform:none;
  3802. visibility:hidden;
  3803. }
  3804. #u41644 {
  3805. border-width:0px;
  3806. position:absolute;
  3807. left:0px;
  3808. top:0px;
  3809. width:0px;
  3810. height:0px;
  3811. }
  3812. #u41645_div {
  3813. border-width:0px;
  3814. position:absolute;
  3815. left:0px;
  3816. top:0px;
  3817. width:30px;
  3818. height:30px;
  3819. background:inherit;
  3820. background-color:rgba(255, 255, 255, 1);
  3821. box-sizing:border-box;
  3822. border-width:1px;
  3823. border-style:solid;
  3824. border-color:rgba(121, 121, 121, 1);
  3825. border-radius:0px;
  3826. -moz-box-shadow:none;
  3827. -webkit-box-shadow:none;
  3828. box-shadow:none;
  3829. }
  3830. #u41645 {
  3831. border-width:0px;
  3832. position:absolute;
  3833. left:392px;
  3834. top:134px;
  3835. width:30px;
  3836. height:30px;
  3837. display:flex;
  3838. }
  3839. #u41645 .text {
  3840. position:absolute;
  3841. align-self:center;
  3842. padding:2px 2px 2px 2px;
  3843. box-sizing:border-box;
  3844. width:100%;
  3845. }
  3846. #u41645_text {
  3847. border-width:0px;
  3848. word-wrap:break-word;
  3849. text-transform:none;
  3850. visibility:hidden;
  3851. }
  3852. #u41646_img {
  3853. border-width:0px;
  3854. position:absolute;
  3855. left:0px;
  3856. top:0px;
  3857. width:19px;
  3858. height:18px;
  3859. }
  3860. #u41646 {
  3861. border-width:0px;
  3862. position:absolute;
  3863. left:398px;
  3864. top:140px;
  3865. width:19px;
  3866. height:18px;
  3867. display:flex;
  3868. -webkit-transform:rotate(180deg);
  3869. -moz-transform:rotate(180deg);
  3870. -ms-transform:rotate(180deg);
  3871. transform:rotate(180deg);
  3872. }
  3873. #u41646 .text {
  3874. position:absolute;
  3875. align-self:center;
  3876. padding:2px 2px 2px 2px;
  3877. box-sizing:border-box;
  3878. width:100%;
  3879. }
  3880. #u41646_text {
  3881. border-width:0px;
  3882. word-wrap:break-word;
  3883. text-transform:none;
  3884. visibility:hidden;
  3885. }
  3886. #u41647 {
  3887. border-width:0px;
  3888. position:absolute;
  3889. left:0px;
  3890. top:0px;
  3891. width:0px;
  3892. height:0px;
  3893. }
  3894. #u41648_div {
  3895. border-width:0px;
  3896. position:absolute;
  3897. left:0px;
  3898. top:0px;
  3899. width:30px;
  3900. height:30px;
  3901. background:inherit;
  3902. background-color:rgba(255, 255, 255, 1);
  3903. box-sizing:border-box;
  3904. border-width:1px;
  3905. border-style:solid;
  3906. border-color:rgba(121, 121, 121, 1);
  3907. border-radius:0px;
  3908. -moz-box-shadow:none;
  3909. -webkit-box-shadow:none;
  3910. box-shadow:none;
  3911. }
  3912. #u41648 {
  3913. border-width:0px;
  3914. position:absolute;
  3915. left:432px;
  3916. top:134px;
  3917. width:30px;
  3918. height:30px;
  3919. display:flex;
  3920. }
  3921. #u41648 .text {
  3922. position:absolute;
  3923. align-self:center;
  3924. padding:2px 2px 2px 2px;
  3925. box-sizing:border-box;
  3926. width:100%;
  3927. }
  3928. #u41648_text {
  3929. border-width:0px;
  3930. word-wrap:break-word;
  3931. text-transform:none;
  3932. visibility:hidden;
  3933. }
  3934. #u41649_img {
  3935. border-width:0px;
  3936. position:absolute;
  3937. left:0px;
  3938. top:0px;
  3939. width:19px;
  3940. height:18px;
  3941. }
  3942. #u41649 {
  3943. border-width:0px;
  3944. position:absolute;
  3945. left:438px;
  3946. top:140px;
  3947. width:19px;
  3948. height:18px;
  3949. display:flex;
  3950. -webkit-transform:rotate(225deg);
  3951. -moz-transform:rotate(225deg);
  3952. -ms-transform:rotate(225deg);
  3953. transform:rotate(225deg);
  3954. }
  3955. #u41649 .text {
  3956. position:absolute;
  3957. align-self:center;
  3958. padding:2px 2px 2px 2px;
  3959. box-sizing:border-box;
  3960. width:100%;
  3961. }
  3962. #u41649_text {
  3963. border-width:0px;
  3964. word-wrap:break-word;
  3965. text-transform:none;
  3966. visibility:hidden;
  3967. }
  3968. #u41650 {
  3969. border-width:0px;
  3970. position:absolute;
  3971. left:0px;
  3972. top:0px;
  3973. width:0px;
  3974. height:0px;
  3975. }
  3976. #u41651_div {
  3977. border-width:0px;
  3978. position:absolute;
  3979. left:0px;
  3980. top:0px;
  3981. width:30px;
  3982. height:30px;
  3983. background:inherit;
  3984. background-color:rgba(255, 255, 255, 1);
  3985. box-sizing:border-box;
  3986. border-width:1px;
  3987. border-style:solid;
  3988. border-color:rgba(121, 121, 121, 1);
  3989. border-radius:0px;
  3990. -moz-box-shadow:none;
  3991. -webkit-box-shadow:none;
  3992. box-shadow:none;
  3993. }
  3994. #u41651 {
  3995. border-width:0px;
  3996. position:absolute;
  3997. left:352px;
  3998. top:174px;
  3999. width:30px;
  4000. height:30px;
  4001. display:flex;
  4002. }
  4003. #u41651 .text {
  4004. position:absolute;
  4005. align-self:center;
  4006. padding:2px 2px 2px 2px;
  4007. box-sizing:border-box;
  4008. width:100%;
  4009. }
  4010. #u41651_text {
  4011. border-width:0px;
  4012. word-wrap:break-word;
  4013. text-transform:none;
  4014. visibility:hidden;
  4015. }
  4016. #u41652_img {
  4017. border-width:0px;
  4018. position:absolute;
  4019. left:0px;
  4020. top:0px;
  4021. width:19px;
  4022. height:18px;
  4023. }
  4024. #u41652 {
  4025. border-width:0px;
  4026. position:absolute;
  4027. left:358px;
  4028. top:180px;
  4029. width:19px;
  4030. height:18px;
  4031. display:flex;
  4032. -webkit-transform:rotate(90deg);
  4033. -moz-transform:rotate(90deg);
  4034. -ms-transform:rotate(90deg);
  4035. transform:rotate(90deg);
  4036. }
  4037. #u41652 .text {
  4038. position:absolute;
  4039. align-self:center;
  4040. padding:2px 2px 2px 2px;
  4041. box-sizing:border-box;
  4042. width:100%;
  4043. }
  4044. #u41652_text {
  4045. border-width:0px;
  4046. word-wrap:break-word;
  4047. text-transform:none;
  4048. visibility:hidden;
  4049. }
  4050. #u41653 {
  4051. border-width:0px;
  4052. position:absolute;
  4053. left:0px;
  4054. top:0px;
  4055. width:0px;
  4056. height:0px;
  4057. }
  4058. #u41654_div {
  4059. border-width:0px;
  4060. position:absolute;
  4061. left:0px;
  4062. top:0px;
  4063. width:30px;
  4064. height:30px;
  4065. background:inherit;
  4066. background-color:rgba(255, 255, 255, 1);
  4067. box-sizing:border-box;
  4068. border-width:1px;
  4069. border-style:solid;
  4070. border-color:rgba(121, 121, 121, 1);
  4071. border-radius:0px;
  4072. -moz-box-shadow:none;
  4073. -webkit-box-shadow:none;
  4074. box-shadow:none;
  4075. }
  4076. #u41654 {
  4077. border-width:0px;
  4078. position:absolute;
  4079. left:432px;
  4080. top:174px;
  4081. width:30px;
  4082. height:30px;
  4083. display:flex;
  4084. }
  4085. #u41654 .text {
  4086. position:absolute;
  4087. align-self:center;
  4088. padding:2px 2px 2px 2px;
  4089. box-sizing:border-box;
  4090. width:100%;
  4091. }
  4092. #u41654_text {
  4093. border-width:0px;
  4094. word-wrap:break-word;
  4095. text-transform:none;
  4096. visibility:hidden;
  4097. }
  4098. #u41655_img {
  4099. border-width:0px;
  4100. position:absolute;
  4101. left:0px;
  4102. top:0px;
  4103. width:19px;
  4104. height:18px;
  4105. }
  4106. #u41655 {
  4107. border-width:0px;
  4108. position:absolute;
  4109. left:438px;
  4110. top:180px;
  4111. width:19px;
  4112. height:18px;
  4113. display:flex;
  4114. -webkit-transform:rotate(270deg);
  4115. -moz-transform:rotate(270deg);
  4116. -ms-transform:rotate(270deg);
  4117. transform:rotate(270deg);
  4118. }
  4119. #u41655 .text {
  4120. position:absolute;
  4121. align-self:center;
  4122. padding:2px 2px 2px 2px;
  4123. box-sizing:border-box;
  4124. width:100%;
  4125. }
  4126. #u41655_text {
  4127. border-width:0px;
  4128. word-wrap:break-word;
  4129. text-transform:none;
  4130. visibility:hidden;
  4131. }
  4132. #u41656 {
  4133. border-width:0px;
  4134. position:absolute;
  4135. left:0px;
  4136. top:0px;
  4137. width:0px;
  4138. height:0px;
  4139. }
  4140. #u41657_div {
  4141. border-width:0px;
  4142. position:absolute;
  4143. left:0px;
  4144. top:0px;
  4145. width:30px;
  4146. height:30px;
  4147. background:inherit;
  4148. background-color:rgba(255, 255, 255, 1);
  4149. box-sizing:border-box;
  4150. border-width:1px;
  4151. border-style:solid;
  4152. border-color:rgba(121, 121, 121, 1);
  4153. border-radius:0px;
  4154. -moz-box-shadow:none;
  4155. -webkit-box-shadow:none;
  4156. box-shadow:none;
  4157. }
  4158. #u41657 {
  4159. border-width:0px;
  4160. position:absolute;
  4161. left:352px;
  4162. top:214px;
  4163. width:30px;
  4164. height:30px;
  4165. display:flex;
  4166. }
  4167. #u41657 .text {
  4168. position:absolute;
  4169. align-self:center;
  4170. padding:2px 2px 2px 2px;
  4171. box-sizing:border-box;
  4172. width:100%;
  4173. }
  4174. #u41657_text {
  4175. border-width:0px;
  4176. word-wrap:break-word;
  4177. text-transform:none;
  4178. visibility:hidden;
  4179. }
  4180. #u41658_img {
  4181. border-width:0px;
  4182. position:absolute;
  4183. left:0px;
  4184. top:0px;
  4185. width:19px;
  4186. height:18px;
  4187. }
  4188. #u41658 {
  4189. border-width:0px;
  4190. position:absolute;
  4191. left:358px;
  4192. top:220px;
  4193. width:19px;
  4194. height:18px;
  4195. display:flex;
  4196. -webkit-transform:rotate(51deg);
  4197. -moz-transform:rotate(51deg);
  4198. -ms-transform:rotate(51deg);
  4199. transform:rotate(51deg);
  4200. }
  4201. #u41658 .text {
  4202. position:absolute;
  4203. align-self:center;
  4204. padding:2px 2px 2px 2px;
  4205. box-sizing:border-box;
  4206. width:100%;
  4207. }
  4208. #u41658_text {
  4209. border-width:0px;
  4210. word-wrap:break-word;
  4211. text-transform:none;
  4212. visibility:hidden;
  4213. }
  4214. #u41659 {
  4215. border-width:0px;
  4216. position:absolute;
  4217. left:0px;
  4218. top:0px;
  4219. width:0px;
  4220. height:0px;
  4221. }
  4222. #u41660_div {
  4223. border-width:0px;
  4224. position:absolute;
  4225. left:0px;
  4226. top:0px;
  4227. width:30px;
  4228. height:30px;
  4229. background:inherit;
  4230. background-color:rgba(255, 255, 255, 1);
  4231. box-sizing:border-box;
  4232. border-width:1px;
  4233. border-style:solid;
  4234. border-color:rgba(121, 121, 121, 1);
  4235. border-radius:0px;
  4236. -moz-box-shadow:none;
  4237. -webkit-box-shadow:none;
  4238. box-shadow:none;
  4239. }
  4240. #u41660 {
  4241. border-width:0px;
  4242. position:absolute;
  4243. left:392px;
  4244. top:214px;
  4245. width:30px;
  4246. height:30px;
  4247. display:flex;
  4248. }
  4249. #u41660 .text {
  4250. position:absolute;
  4251. align-self:center;
  4252. padding:2px 2px 2px 2px;
  4253. box-sizing:border-box;
  4254. width:100%;
  4255. }
  4256. #u41660_text {
  4257. border-width:0px;
  4258. word-wrap:break-word;
  4259. text-transform:none;
  4260. visibility:hidden;
  4261. }
  4262. #u41661_img {
  4263. border-width:0px;
  4264. position:absolute;
  4265. left:0px;
  4266. top:0px;
  4267. width:19px;
  4268. height:18px;
  4269. }
  4270. #u41661 {
  4271. border-width:0px;
  4272. position:absolute;
  4273. left:398px;
  4274. top:220px;
  4275. width:19px;
  4276. height:18px;
  4277. display:flex;
  4278. }
  4279. #u41661 .text {
  4280. position:absolute;
  4281. align-self:center;
  4282. padding:2px 2px 2px 2px;
  4283. box-sizing:border-box;
  4284. width:100%;
  4285. }
  4286. #u41661_text {
  4287. border-width:0px;
  4288. word-wrap:break-word;
  4289. text-transform:none;
  4290. visibility:hidden;
  4291. }
  4292. #u41662 {
  4293. border-width:0px;
  4294. position:absolute;
  4295. left:0px;
  4296. top:0px;
  4297. width:0px;
  4298. height:0px;
  4299. }
  4300. #u41663_div {
  4301. border-width:0px;
  4302. position:absolute;
  4303. left:0px;
  4304. top:0px;
  4305. width:30px;
  4306. height:30px;
  4307. background:inherit;
  4308. background-color:rgba(255, 255, 255, 1);
  4309. box-sizing:border-box;
  4310. border-width:1px;
  4311. border-style:solid;
  4312. border-color:rgba(121, 121, 121, 1);
  4313. border-radius:0px;
  4314. -moz-box-shadow:none;
  4315. -webkit-box-shadow:none;
  4316. box-shadow:none;
  4317. }
  4318. #u41663 {
  4319. border-width:0px;
  4320. position:absolute;
  4321. left:432px;
  4322. top:214px;
  4323. width:30px;
  4324. height:30px;
  4325. display:flex;
  4326. }
  4327. #u41663 .text {
  4328. position:absolute;
  4329. align-self:center;
  4330. padding:2px 2px 2px 2px;
  4331. box-sizing:border-box;
  4332. width:100%;
  4333. }
  4334. #u41663_text {
  4335. border-width:0px;
  4336. word-wrap:break-word;
  4337. text-transform:none;
  4338. visibility:hidden;
  4339. }
  4340. #u41664_img {
  4341. border-width:0px;
  4342. position:absolute;
  4343. left:0px;
  4344. top:0px;
  4345. width:19px;
  4346. height:18px;
  4347. }
  4348. #u41664 {
  4349. border-width:0px;
  4350. position:absolute;
  4351. left:438px;
  4352. top:220px;
  4353. width:19px;
  4354. height:18px;
  4355. display:flex;
  4356. -webkit-transform:rotate(300deg);
  4357. -moz-transform:rotate(300deg);
  4358. -ms-transform:rotate(300deg);
  4359. transform:rotate(300deg);
  4360. }
  4361. #u41664 .text {
  4362. position:absolute;
  4363. align-self:center;
  4364. padding:2px 2px 2px 2px;
  4365. box-sizing:border-box;
  4366. width:100%;
  4367. }
  4368. #u41664_text {
  4369. border-width:0px;
  4370. word-wrap:break-word;
  4371. text-transform:none;
  4372. visibility:hidden;
  4373. }
  4374. #u41665_div {
  4375. border-width:0px;
  4376. position:absolute;
  4377. left:0px;
  4378. top:0px;
  4379. width:30px;
  4380. height:30px;
  4381. background:inherit;
  4382. background-color:rgba(255, 255, 255, 1);
  4383. box-sizing:border-box;
  4384. border-width:1px;
  4385. border-style:solid;
  4386. border-color:rgba(121, 121, 121, 1);
  4387. border-radius:0px;
  4388. -moz-box-shadow:none;
  4389. -webkit-box-shadow:none;
  4390. box-shadow:none;
  4391. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4392. font-weight:700;
  4393. font-style:normal;
  4394. font-size:24px;
  4395. }
  4396. #u41665 {
  4397. border-width:0px;
  4398. position:absolute;
  4399. left:472px;
  4400. top:134px;
  4401. width:30px;
  4402. height:30px;
  4403. display:flex;
  4404. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4405. font-weight:700;
  4406. font-style:normal;
  4407. font-size:24px;
  4408. }
  4409. #u41665 .text {
  4410. position:absolute;
  4411. align-self:center;
  4412. padding:2px 2px 2px 2px;
  4413. box-sizing:border-box;
  4414. width:100%;
  4415. }
  4416. #u41665_text {
  4417. border-width:0px;
  4418. word-wrap:break-word;
  4419. text-transform:none;
  4420. }
  4421. #u41666_div {
  4422. border-width:0px;
  4423. position:absolute;
  4424. left:0px;
  4425. top:0px;
  4426. width:30px;
  4427. height:30px;
  4428. background:inherit;
  4429. background-color:rgba(255, 255, 255, 1);
  4430. box-sizing:border-box;
  4431. border-width:1px;
  4432. border-style:solid;
  4433. border-color:rgba(121, 121, 121, 1);
  4434. border-radius:0px;
  4435. -moz-box-shadow:none;
  4436. -webkit-box-shadow:none;
  4437. box-shadow:none;
  4438. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4439. font-weight:700;
  4440. font-style:normal;
  4441. font-size:24px;
  4442. }
  4443. #u41666 {
  4444. border-width:0px;
  4445. position:absolute;
  4446. left:472px;
  4447. top:174px;
  4448. width:30px;
  4449. height:30px;
  4450. display:flex;
  4451. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4452. font-weight:700;
  4453. font-style:normal;
  4454. font-size:24px;
  4455. }
  4456. #u41666 .text {
  4457. position:absolute;
  4458. align-self:center;
  4459. padding:2px 2px 2px 2px;
  4460. box-sizing:border-box;
  4461. width:100%;
  4462. }
  4463. #u41666_text {
  4464. border-width:0px;
  4465. word-wrap:break-word;
  4466. text-transform:none;
  4467. }
  4468. #u41667_div {
  4469. border-width:0px;
  4470. position:absolute;
  4471. left:0px;
  4472. top:0px;
  4473. width:30px;
  4474. height:30px;
  4475. background:inherit;
  4476. background-color:rgba(255, 255, 255, 1);
  4477. box-sizing:border-box;
  4478. border-width:1px;
  4479. border-style:solid;
  4480. border-color:rgba(121, 121, 121, 1);
  4481. border-radius:0px;
  4482. -moz-box-shadow:none;
  4483. -webkit-box-shadow:none;
  4484. box-shadow:none;
  4485. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4486. font-weight:700;
  4487. font-style:normal;
  4488. font-size:24px;
  4489. }
  4490. #u41667 {
  4491. border-width:0px;
  4492. position:absolute;
  4493. left:472px;
  4494. top:214px;
  4495. width:30px;
  4496. height:30px;
  4497. display:flex;
  4498. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4499. font-weight:700;
  4500. font-style:normal;
  4501. font-size:24px;
  4502. }
  4503. #u41667 .text {
  4504. position:absolute;
  4505. align-self:center;
  4506. padding:2px 2px 2px 2px;
  4507. box-sizing:border-box;
  4508. width:100%;
  4509. }
  4510. #u41667_text {
  4511. border-width:0px;
  4512. word-wrap:break-word;
  4513. text-transform:none;
  4514. }
  4515. #u41668 {
  4516. border-width:0px;
  4517. position:absolute;
  4518. left:0px;
  4519. top:0px;
  4520. width:0px;
  4521. height:0px;
  4522. }
  4523. #u41669_div {
  4524. border-width:0px;
  4525. position:absolute;
  4526. left:0px;
  4527. top:0px;
  4528. width:30px;
  4529. height:30px;
  4530. background:inherit;
  4531. background-color:rgba(255, 255, 255, 1);
  4532. box-sizing:border-box;
  4533. border-width:1px;
  4534. border-style:solid;
  4535. border-color:rgba(121, 121, 121, 1);
  4536. border-radius:0px;
  4537. -moz-box-shadow:none;
  4538. -webkit-box-shadow:none;
  4539. box-shadow:none;
  4540. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4541. font-weight:700;
  4542. font-style:normal;
  4543. font-size:18px;
  4544. }
  4545. #u41669 {
  4546. border-width:0px;
  4547. position:absolute;
  4548. left:512px;
  4549. top:134px;
  4550. width:30px;
  4551. height:30px;
  4552. display:flex;
  4553. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4554. font-weight:700;
  4555. font-style:normal;
  4556. font-size:18px;
  4557. }
  4558. #u41669 .text {
  4559. position:absolute;
  4560. align-self:center;
  4561. padding:2px 2px 2px 2px;
  4562. box-sizing:border-box;
  4563. width:100%;
  4564. }
  4565. #u41669_text {
  4566. border-width:0px;
  4567. word-wrap:break-word;
  4568. text-transform:none;
  4569. visibility:hidden;
  4570. }
  4571. #u41670_img {
  4572. border-width:0px;
  4573. position:absolute;
  4574. left:0px;
  4575. top:0px;
  4576. width:14px;
  4577. height:14px;
  4578. }
  4579. #u41670 {
  4580. border-width:0px;
  4581. position:absolute;
  4582. left:520px;
  4583. top:142px;
  4584. width:14px;
  4585. height:14px;
  4586. display:flex;
  4587. }
  4588. #u41670 .text {
  4589. position:absolute;
  4590. align-self:center;
  4591. padding:2px 2px 2px 2px;
  4592. box-sizing:border-box;
  4593. width:100%;
  4594. }
  4595. #u41670_text {
  4596. border-width:0px;
  4597. word-wrap:break-word;
  4598. text-transform:none;
  4599. visibility:hidden;
  4600. }
  4601. #u41671 {
  4602. border-width:0px;
  4603. position:absolute;
  4604. left:0px;
  4605. top:0px;
  4606. width:0px;
  4607. height:0px;
  4608. }
  4609. #u41672_div {
  4610. border-width:0px;
  4611. position:absolute;
  4612. left:0px;
  4613. top:0px;
  4614. width:30px;
  4615. height:30px;
  4616. background:inherit;
  4617. background-color:rgba(255, 255, 255, 1);
  4618. box-sizing:border-box;
  4619. border-width:1px;
  4620. border-style:solid;
  4621. border-color:rgba(121, 121, 121, 1);
  4622. border-radius:0px;
  4623. -moz-box-shadow:none;
  4624. -webkit-box-shadow:none;
  4625. box-shadow:none;
  4626. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4627. font-weight:700;
  4628. font-style:normal;
  4629. font-size:18px;
  4630. }
  4631. #u41672 {
  4632. border-width:0px;
  4633. position:absolute;
  4634. left:512px;
  4635. top:174px;
  4636. width:30px;
  4637. height:30px;
  4638. display:flex;
  4639. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4640. font-weight:700;
  4641. font-style:normal;
  4642. font-size:18px;
  4643. }
  4644. #u41672 .text {
  4645. position:absolute;
  4646. align-self:center;
  4647. padding:2px 2px 2px 2px;
  4648. box-sizing:border-box;
  4649. width:100%;
  4650. }
  4651. #u41672_text {
  4652. border-width:0px;
  4653. word-wrap:break-word;
  4654. text-transform:none;
  4655. visibility:hidden;
  4656. }
  4657. #u41673_img {
  4658. border-width:0px;
  4659. position:absolute;
  4660. left:0px;
  4661. top:0px;
  4662. width:14px;
  4663. height:14px;
  4664. }
  4665. #u41673 {
  4666. border-width:0px;
  4667. position:absolute;
  4668. left:520px;
  4669. top:182px;
  4670. width:14px;
  4671. height:14px;
  4672. display:flex;
  4673. }
  4674. #u41673 .text {
  4675. position:absolute;
  4676. align-self:center;
  4677. padding:2px 2px 2px 2px;
  4678. box-sizing:border-box;
  4679. width:100%;
  4680. }
  4681. #u41673_text {
  4682. border-width:0px;
  4683. word-wrap:break-word;
  4684. text-transform:none;
  4685. visibility:hidden;
  4686. }
  4687. #u41674 {
  4688. border-width:0px;
  4689. position:absolute;
  4690. left:0px;
  4691. top:0px;
  4692. width:0px;
  4693. height:0px;
  4694. }
  4695. #u41675_div {
  4696. border-width:0px;
  4697. position:absolute;
  4698. left:0px;
  4699. top:0px;
  4700. width:30px;
  4701. height:30px;
  4702. background:inherit;
  4703. background-color:rgba(255, 255, 255, 1);
  4704. box-sizing:border-box;
  4705. border-width:1px;
  4706. border-style:solid;
  4707. border-color:rgba(121, 121, 121, 1);
  4708. border-radius:0px;
  4709. -moz-box-shadow:none;
  4710. -webkit-box-shadow:none;
  4711. box-shadow:none;
  4712. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4713. font-weight:700;
  4714. font-style:normal;
  4715. font-size:18px;
  4716. }
  4717. #u41675 {
  4718. border-width:0px;
  4719. position:absolute;
  4720. left:512px;
  4721. top:214px;
  4722. width:30px;
  4723. height:30px;
  4724. display:flex;
  4725. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4726. font-weight:700;
  4727. font-style:normal;
  4728. font-size:18px;
  4729. }
  4730. #u41675 .text {
  4731. position:absolute;
  4732. align-self:center;
  4733. padding:2px 2px 2px 2px;
  4734. box-sizing:border-box;
  4735. width:100%;
  4736. }
  4737. #u41675_text {
  4738. border-width:0px;
  4739. word-wrap:break-word;
  4740. text-transform:none;
  4741. visibility:hidden;
  4742. }
  4743. #u41676_img {
  4744. border-width:0px;
  4745. position:absolute;
  4746. left:0px;
  4747. top:0px;
  4748. width:17px;
  4749. height:11px;
  4750. }
  4751. #u41676 {
  4752. border-width:0px;
  4753. position:absolute;
  4754. left:519px;
  4755. top:224px;
  4756. width:17px;
  4757. height:11px;
  4758. display:flex;
  4759. }
  4760. #u41676 .text {
  4761. position:absolute;
  4762. align-self:center;
  4763. padding:2px 2px 2px 2px;
  4764. box-sizing:border-box;
  4765. width:100%;
  4766. }
  4767. #u41676_text {
  4768. border-width:0px;
  4769. word-wrap:break-word;
  4770. text-transform:none;
  4771. visibility:hidden;
  4772. }
  4773. #u41677 {
  4774. border-width:0px;
  4775. position:absolute;
  4776. left:0px;
  4777. top:0px;
  4778. width:0px;
  4779. height:0px;
  4780. }
  4781. #u41678_div {
  4782. border-width:0px;
  4783. position:absolute;
  4784. left:0px;
  4785. top:0px;
  4786. width:84px;
  4787. height:21px;
  4788. background:inherit;
  4789. background-color:rgba(51, 51, 51, 1);
  4790. border:none;
  4791. border-radius:11px;
  4792. -moz-box-shadow:none;
  4793. -webkit-box-shadow:none;
  4794. box-shadow:none;
  4795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4796. font-weight:400;
  4797. font-style:normal;
  4798. font-size:12px;
  4799. color:#FFFFFF;
  4800. text-align:center;
  4801. }
  4802. #u41678 {
  4803. border-width:0px;
  4804. position:absolute;
  4805. left:443px;
  4806. top:240px;
  4807. width:84px;
  4808. height:21px;
  4809. display:flex;
  4810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4811. font-weight:400;
  4812. font-style:normal;
  4813. font-size:12px;
  4814. color:#FFFFFF;
  4815. text-align:center;
  4816. }
  4817. #u41678 .text {
  4818. position:absolute;
  4819. align-self:center;
  4820. padding:2px 2px 2px 2px;
  4821. box-sizing:border-box;
  4822. width:100%;
  4823. }
  4824. #u41678_text {
  4825. border-width:0px;
  4826. white-space:nowrap;
  4827. text-transform:none;
  4828. }
  4829. #u41679_img {
  4830. border-width:0px;
  4831. position:absolute;
  4832. left:0px;
  4833. top:0px;
  4834. width:11px;
  4835. height:17px;
  4836. }
  4837. #u41679 {
  4838. border-width:0px;
  4839. position:absolute;
  4840. left:495px;
  4841. top:271px;
  4842. width:11px;
  4843. height:17px;
  4844. display:flex;
  4845. }
  4846. #u41679 .text {
  4847. position:absolute;
  4848. align-self:center;
  4849. padding:2px 2px 2px 2px;
  4850. box-sizing:border-box;
  4851. width:100%;
  4852. }
  4853. #u41679_text {
  4854. border-width:0px;
  4855. word-wrap:break-word;
  4856. text-transform:none;
  4857. visibility:hidden;
  4858. }
  4859. #u41680_div {
  4860. border-width:0px;
  4861. position:absolute;
  4862. left:0px;
  4863. top:0px;
  4864. width:191px;
  4865. height:6px;
  4866. background:inherit;
  4867. background-color:rgba(255, 255, 255, 1);
  4868. box-sizing:border-box;
  4869. border-width:1px;
  4870. border-style:solid;
  4871. border-color:rgba(228, 228, 228, 1);
  4872. border-radius:0px;
  4873. -moz-box-shadow:none;
  4874. -webkit-box-shadow:none;
  4875. box-shadow:none;
  4876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4877. font-weight:400;
  4878. font-style:normal;
  4879. font-size:12px;
  4880. color:#FFFFFF;
  4881. }
  4882. #u41680 {
  4883. border-width:0px;
  4884. position:absolute;
  4885. left:351px;
  4886. top:268px;
  4887. width:191px;
  4888. height:6px;
  4889. display:flex;
  4890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4891. font-weight:400;
  4892. font-style:normal;
  4893. font-size:12px;
  4894. color:#FFFFFF;
  4895. }
  4896. #u41680 .text {
  4897. position:absolute;
  4898. align-self:center;
  4899. padding:8px 15px 8px 15px;
  4900. box-sizing:border-box;
  4901. width:100%;
  4902. }
  4903. #u41680_text {
  4904. border-width:0px;
  4905. word-wrap:break-word;
  4906. text-transform:none;
  4907. visibility:hidden;
  4908. }
  4909. #u41681_div {
  4910. border-width:0px;
  4911. position:absolute;
  4912. left:0px;
  4913. top:0px;
  4914. width:140px;
  4915. height:6px;
  4916. background:inherit;
  4917. background-color:rgba(51, 153, 255, 1);
  4918. box-sizing:border-box;
  4919. border-width:1px;
  4920. border-style:solid;
  4921. border-color:rgba(228, 228, 228, 1);
  4922. border-radius:0px;
  4923. -moz-box-shadow:none;
  4924. -webkit-box-shadow:none;
  4925. box-shadow:none;
  4926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4927. font-weight:400;
  4928. font-style:normal;
  4929. font-size:12px;
  4930. color:#FFFFFF;
  4931. }
  4932. #u41681 {
  4933. border-width:0px;
  4934. position:absolute;
  4935. left:351px;
  4936. top:268px;
  4937. width:140px;
  4938. height:6px;
  4939. display:flex;
  4940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4941. font-weight:400;
  4942. font-style:normal;
  4943. font-size:12px;
  4944. color:#FFFFFF;
  4945. }
  4946. #u41681 .text {
  4947. position:absolute;
  4948. align-self:center;
  4949. padding:8px 15px 8px 15px;
  4950. box-sizing:border-box;
  4951. width:100%;
  4952. }
  4953. #u41681_text {
  4954. border-width:0px;
  4955. word-wrap:break-word;
  4956. text-transform:none;
  4957. visibility:hidden;
  4958. }
  4959. #u41682_img {
  4960. border-width:0px;
  4961. position:absolute;
  4962. left:-3px;
  4963. top:-3px;
  4964. width:20px;
  4965. height:20px;
  4966. }
  4967. #u41682 {
  4968. border-width:0px;
  4969. position:absolute;
  4970. left:480px;
  4971. top:264px;
  4972. width:14px;
  4973. height:14px;
  4974. display:flex;
  4975. }
  4976. #u41682 .text {
  4977. position:absolute;
  4978. align-self:center;
  4979. padding:2px 2px 2px 2px;
  4980. box-sizing:border-box;
  4981. width:100%;
  4982. }
  4983. #u41682_text {
  4984. border-width:0px;
  4985. word-wrap:break-word;
  4986. text-transform:none;
  4987. visibility:hidden;
  4988. }
  4989. #u41683 {
  4990. border-width:0px;
  4991. position:absolute;
  4992. left:358px;
  4993. top:410px;
  4994. width:127px;
  4995. height:240px;
  4996. }
  4997. #u41683_children {
  4998. border-width:0px;
  4999. position:absolute;
  5000. left:0px;
  5001. top:0px;
  5002. width:0px;
  5003. height:0px;
  5004. }
  5005. #u41684 {
  5006. border-width:0px;
  5007. position:absolute;
  5008. left:0px;
  5009. top:0px;
  5010. width:80px;
  5011. height:20px;
  5012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5013. font-weight:400;
  5014. font-style:normal;
  5015. }
  5016. #u41685_img {
  5017. border-width:0px;
  5018. position:absolute;
  5019. left:0px;
  5020. top:0px;
  5021. width:9px;
  5022. height:9px;
  5023. }
  5024. #u41685 {
  5025. border-width:0px;
  5026. position:absolute;
  5027. left:6px;
  5028. top:6px;
  5029. width:9px;
  5030. height:9px;
  5031. display:flex;
  5032. }
  5033. #u41685 .text {
  5034. position:absolute;
  5035. align-self:center;
  5036. padding:2px 2px 2px 2px;
  5037. box-sizing:border-box;
  5038. width:100%;
  5039. }
  5040. #u41685_img.selected {
  5041. }
  5042. #u41685.selected {
  5043. }
  5044. #u41685_text {
  5045. border-width:0px;
  5046. word-wrap:break-word;
  5047. text-transform:none;
  5048. visibility:hidden;
  5049. }
  5050. #u41686_div {
  5051. border-width:0px;
  5052. position:absolute;
  5053. left:0px;
  5054. top:0px;
  5055. width:58px;
  5056. height:20px;
  5057. background:inherit;
  5058. background-color:rgba(255, 255, 255, 0);
  5059. border:none;
  5060. border-radius:0px;
  5061. -moz-box-shadow:none;
  5062. -webkit-box-shadow:none;
  5063. box-shadow:none;
  5064. }
  5065. #u41686 {
  5066. border-width:0px;
  5067. position:absolute;
  5068. left:22px;
  5069. top:0px;
  5070. width:58px;
  5071. height:20px;
  5072. display:flex;
  5073. }
  5074. #u41686 .text {
  5075. position:absolute;
  5076. align-self:center;
  5077. padding:2px 2px 2px 3px;
  5078. box-sizing:border-box;
  5079. width:100%;
  5080. }
  5081. #u41686_text {
  5082. border-width:0px;
  5083. white-space:nowrap;
  5084. text-transform:none;
  5085. }
  5086. #u41684_children {
  5087. border-width:0px;
  5088. position:absolute;
  5089. left:0px;
  5090. top:0px;
  5091. width:0px;
  5092. height:0px;
  5093. }
  5094. #u41687 {
  5095. border-width:0px;
  5096. position:absolute;
  5097. left:20px;
  5098. top:20px;
  5099. width:87px;
  5100. height:20px;
  5101. }
  5102. #u41688_img {
  5103. border-width:0px;
  5104. position:absolute;
  5105. left:0px;
  5106. top:0px;
  5107. width:9px;
  5108. height:9px;
  5109. }
  5110. #u41688 {
  5111. border-width:0px;
  5112. position:absolute;
  5113. left:6px;
  5114. top:6px;
  5115. width:9px;
  5116. height:9px;
  5117. display:flex;
  5118. }
  5119. #u41688 .text {
  5120. position:absolute;
  5121. align-self:center;
  5122. padding:2px 2px 2px 2px;
  5123. box-sizing:border-box;
  5124. width:100%;
  5125. }
  5126. #u41688_img.selected {
  5127. }
  5128. #u41688.selected {
  5129. }
  5130. #u41688_text {
  5131. border-width:0px;
  5132. word-wrap:break-word;
  5133. text-transform:none;
  5134. visibility:hidden;
  5135. }
  5136. #u41689_div {
  5137. border-width:0px;
  5138. position:absolute;
  5139. left:0px;
  5140. top:0px;
  5141. width:65px;
  5142. height:20px;
  5143. background:inherit;
  5144. background-color:rgba(255, 255, 255, 0);
  5145. border:none;
  5146. border-radius:0px;
  5147. -moz-box-shadow:none;
  5148. -webkit-box-shadow:none;
  5149. box-shadow:none;
  5150. }
  5151. #u41689 {
  5152. border-width:0px;
  5153. position:absolute;
  5154. left:22px;
  5155. top:0px;
  5156. width:65px;
  5157. height:20px;
  5158. display:flex;
  5159. }
  5160. #u41689 .text {
  5161. position:absolute;
  5162. align-self:center;
  5163. padding:2px 2px 2px 3px;
  5164. box-sizing:border-box;
  5165. width:100%;
  5166. }
  5167. #u41689_text {
  5168. border-width:0px;
  5169. white-space:nowrap;
  5170. text-transform:none;
  5171. }
  5172. #u41687_children {
  5173. border-width:0px;
  5174. position:absolute;
  5175. left:0px;
  5176. top:0px;
  5177. width:0px;
  5178. height:0px;
  5179. }
  5180. #u41690 {
  5181. border-width:0px;
  5182. position:absolute;
  5183. left:20px;
  5184. top:20px;
  5185. width:87px;
  5186. height:20px;
  5187. }
  5188. #u41691_div {
  5189. border-width:0px;
  5190. position:absolute;
  5191. left:0px;
  5192. top:0px;
  5193. width:65px;
  5194. height:20px;
  5195. background:inherit;
  5196. background-color:rgba(255, 255, 255, 0);
  5197. border:none;
  5198. border-radius:0px;
  5199. -moz-box-shadow:none;
  5200. -webkit-box-shadow:none;
  5201. box-shadow:none;
  5202. }
  5203. #u41691 {
  5204. border-width:0px;
  5205. position:absolute;
  5206. left:22px;
  5207. top:0px;
  5208. width:65px;
  5209. height:20px;
  5210. display:flex;
  5211. }
  5212. #u41691 .text {
  5213. position:absolute;
  5214. align-self:center;
  5215. padding:2px 2px 2px 3px;
  5216. box-sizing:border-box;
  5217. width:100%;
  5218. }
  5219. #u41691_text {
  5220. border-width:0px;
  5221. white-space:nowrap;
  5222. text-transform:none;
  5223. }
  5224. #u41692 {
  5225. border-width:0px;
  5226. position:absolute;
  5227. left:20px;
  5228. top:40px;
  5229. width:87px;
  5230. height:20px;
  5231. }
  5232. #u41693_div {
  5233. border-width:0px;
  5234. position:absolute;
  5235. left:0px;
  5236. top:0px;
  5237. width:65px;
  5238. height:20px;
  5239. background:inherit;
  5240. background-color:rgba(255, 255, 255, 0);
  5241. border:none;
  5242. border-radius:0px;
  5243. -moz-box-shadow:none;
  5244. -webkit-box-shadow:none;
  5245. box-shadow:none;
  5246. }
  5247. #u41693 {
  5248. border-width:0px;
  5249. position:absolute;
  5250. left:22px;
  5251. top:0px;
  5252. width:65px;
  5253. height:20px;
  5254. display:flex;
  5255. }
  5256. #u41693 .text {
  5257. position:absolute;
  5258. align-self:center;
  5259. padding:2px 2px 2px 3px;
  5260. box-sizing:border-box;
  5261. width:100%;
  5262. }
  5263. #u41693_text {
  5264. border-width:0px;
  5265. white-space:nowrap;
  5266. text-transform:none;
  5267. }
  5268. #u41694 {
  5269. border-width:0px;
  5270. position:absolute;
  5271. left:20px;
  5272. top:60px;
  5273. width:54px;
  5274. height:20px;
  5275. }
  5276. #u41695_div {
  5277. border-width:0px;
  5278. position:absolute;
  5279. left:0px;
  5280. top:0px;
  5281. width:32px;
  5282. height:20px;
  5283. background:inherit;
  5284. background-color:rgba(255, 255, 255, 0);
  5285. border:none;
  5286. border-radius:0px;
  5287. -moz-box-shadow:none;
  5288. -webkit-box-shadow:none;
  5289. box-shadow:none;
  5290. }
  5291. #u41695 {
  5292. border-width:0px;
  5293. position:absolute;
  5294. left:22px;
  5295. top:0px;
  5296. width:32px;
  5297. height:20px;
  5298. display:flex;
  5299. }
  5300. #u41695 .text {
  5301. position:absolute;
  5302. align-self:center;
  5303. padding:2px 2px 2px 3px;
  5304. box-sizing:border-box;
  5305. width:100%;
  5306. }
  5307. #u41695_text {
  5308. border-width:0px;
  5309. white-space:nowrap;
  5310. text-transform:none;
  5311. }
  5312. #u41696 {
  5313. border-width:0px;
  5314. position:absolute;
  5315. left:20px;
  5316. top:100px;
  5317. width:87px;
  5318. height:20px;
  5319. }
  5320. #u41697_img {
  5321. border-width:0px;
  5322. position:absolute;
  5323. left:0px;
  5324. top:0px;
  5325. width:9px;
  5326. height:9px;
  5327. }
  5328. #u41697 {
  5329. border-width:0px;
  5330. position:absolute;
  5331. left:6px;
  5332. top:6px;
  5333. width:9px;
  5334. height:9px;
  5335. display:flex;
  5336. }
  5337. #u41697 .text {
  5338. position:absolute;
  5339. align-self:center;
  5340. padding:2px 2px 2px 2px;
  5341. box-sizing:border-box;
  5342. width:100%;
  5343. }
  5344. #u41697_img.selected {
  5345. }
  5346. #u41697.selected {
  5347. }
  5348. #u41697_text {
  5349. border-width:0px;
  5350. word-wrap:break-word;
  5351. text-transform:none;
  5352. visibility:hidden;
  5353. }
  5354. #u41698_div {
  5355. border-width:0px;
  5356. position:absolute;
  5357. left:0px;
  5358. top:0px;
  5359. width:65px;
  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. #u41698 {
  5370. border-width:0px;
  5371. position:absolute;
  5372. left:22px;
  5373. top:0px;
  5374. width:65px;
  5375. height:20px;
  5376. display:flex;
  5377. }
  5378. #u41698 .text {
  5379. position:absolute;
  5380. align-self:center;
  5381. padding:2px 2px 2px 3px;
  5382. box-sizing:border-box;
  5383. width:100%;
  5384. }
  5385. #u41698_text {
  5386. border-width:0px;
  5387. white-space:nowrap;
  5388. text-transform:none;
  5389. }
  5390. #u41696_children {
  5391. border-width:0px;
  5392. position:absolute;
  5393. left:0px;
  5394. top:0px;
  5395. width:0px;
  5396. height:0px;
  5397. }
  5398. #u41699 {
  5399. border-width:0px;
  5400. position:absolute;
  5401. left:20px;
  5402. top:20px;
  5403. width:87px;
  5404. height:20px;
  5405. }
  5406. #u41700_div {
  5407. border-width:0px;
  5408. position:absolute;
  5409. left:0px;
  5410. top:0px;
  5411. width:65px;
  5412. height:20px;
  5413. background:inherit;
  5414. background-color:rgba(255, 255, 255, 0);
  5415. border:none;
  5416. border-radius:0px;
  5417. -moz-box-shadow:none;
  5418. -webkit-box-shadow:none;
  5419. box-shadow:none;
  5420. }
  5421. #u41700 {
  5422. border-width:0px;
  5423. position:absolute;
  5424. left:22px;
  5425. top:0px;
  5426. width:65px;
  5427. height:20px;
  5428. display:flex;
  5429. }
  5430. #u41700 .text {
  5431. position:absolute;
  5432. align-self:center;
  5433. padding:2px 2px 2px 3px;
  5434. box-sizing:border-box;
  5435. width:100%;
  5436. }
  5437. #u41700_text {
  5438. border-width:0px;
  5439. white-space:nowrap;
  5440. text-transform:none;
  5441. }
  5442. #u41701 {
  5443. border-width:0px;
  5444. position:absolute;
  5445. left:20px;
  5446. top:40px;
  5447. width:87px;
  5448. height:20px;
  5449. }
  5450. #u41702_div {
  5451. border-width:0px;
  5452. position:absolute;
  5453. left:0px;
  5454. top:0px;
  5455. width:65px;
  5456. height:20px;
  5457. background:inherit;
  5458. background-color:rgba(255, 255, 255, 0);
  5459. border:none;
  5460. border-radius:0px;
  5461. -moz-box-shadow:none;
  5462. -webkit-box-shadow:none;
  5463. box-shadow:none;
  5464. }
  5465. #u41702 {
  5466. border-width:0px;
  5467. position:absolute;
  5468. left:22px;
  5469. top:0px;
  5470. width:65px;
  5471. height:20px;
  5472. display:flex;
  5473. }
  5474. #u41702 .text {
  5475. position:absolute;
  5476. align-self:center;
  5477. padding:2px 2px 2px 3px;
  5478. box-sizing:border-box;
  5479. width:100%;
  5480. }
  5481. #u41702_text {
  5482. border-width:0px;
  5483. white-space:nowrap;
  5484. text-transform:none;
  5485. }
  5486. #u41703 {
  5487. border-width:0px;
  5488. position:absolute;
  5489. left:20px;
  5490. top:60px;
  5491. width:54px;
  5492. height:20px;
  5493. }
  5494. #u41704_div {
  5495. border-width:0px;
  5496. position:absolute;
  5497. left:0px;
  5498. top:0px;
  5499. width:32px;
  5500. height:20px;
  5501. background:inherit;
  5502. background-color:rgba(255, 255, 255, 0);
  5503. border:none;
  5504. border-radius:0px;
  5505. -moz-box-shadow:none;
  5506. -webkit-box-shadow:none;
  5507. box-shadow:none;
  5508. }
  5509. #u41704 {
  5510. border-width:0px;
  5511. position:absolute;
  5512. left:22px;
  5513. top:0px;
  5514. width:32px;
  5515. height:20px;
  5516. display:flex;
  5517. }
  5518. #u41704 .text {
  5519. position:absolute;
  5520. align-self:center;
  5521. padding:2px 2px 2px 3px;
  5522. box-sizing:border-box;
  5523. width:100%;
  5524. }
  5525. #u41704_text {
  5526. border-width:0px;
  5527. white-space:nowrap;
  5528. text-transform:none;
  5529. }
  5530. #u41705 {
  5531. border-width:0px;
  5532. position:absolute;
  5533. left:20px;
  5534. top:180px;
  5535. width:87px;
  5536. height:20px;
  5537. }
  5538. #u41706_img {
  5539. border-width:0px;
  5540. position:absolute;
  5541. left:0px;
  5542. top:0px;
  5543. width:9px;
  5544. height:9px;
  5545. }
  5546. #u41706 {
  5547. border-width:0px;
  5548. position:absolute;
  5549. left:6px;
  5550. top:6px;
  5551. width:9px;
  5552. height:9px;
  5553. display:flex;
  5554. }
  5555. #u41706 .text {
  5556. position:absolute;
  5557. align-self:center;
  5558. padding:2px 2px 2px 2px;
  5559. box-sizing:border-box;
  5560. width:100%;
  5561. }
  5562. #u41706_img.selected {
  5563. }
  5564. #u41706.selected {
  5565. }
  5566. #u41706_text {
  5567. border-width:0px;
  5568. word-wrap:break-word;
  5569. text-transform:none;
  5570. visibility:hidden;
  5571. }
  5572. #u41707_div {
  5573. border-width:0px;
  5574. position:absolute;
  5575. left:0px;
  5576. top:0px;
  5577. width:65px;
  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. #u41707 {
  5588. border-width:0px;
  5589. position:absolute;
  5590. left:22px;
  5591. top:0px;
  5592. width:65px;
  5593. height:20px;
  5594. display:flex;
  5595. }
  5596. #u41707 .text {
  5597. position:absolute;
  5598. align-self:center;
  5599. padding:2px 2px 2px 3px;
  5600. box-sizing:border-box;
  5601. width:100%;
  5602. }
  5603. #u41707_text {
  5604. border-width:0px;
  5605. white-space:nowrap;
  5606. text-transform:none;
  5607. }
  5608. #u41705_children {
  5609. border-width:0px;
  5610. position:absolute;
  5611. left:0px;
  5612. top:0px;
  5613. width:0px;
  5614. height:0px;
  5615. }
  5616. #u41708 {
  5617. border-width:0px;
  5618. position:absolute;
  5619. left:20px;
  5620. top:20px;
  5621. width:87px;
  5622. height:20px;
  5623. }
  5624. #u41709_div {
  5625. border-width:0px;
  5626. position:absolute;
  5627. left:0px;
  5628. top:0px;
  5629. width:65px;
  5630. height:20px;
  5631. background:inherit;
  5632. background-color:rgba(255, 255, 255, 0);
  5633. border:none;
  5634. border-radius:0px;
  5635. -moz-box-shadow:none;
  5636. -webkit-box-shadow:none;
  5637. box-shadow:none;
  5638. }
  5639. #u41709 {
  5640. border-width:0px;
  5641. position:absolute;
  5642. left:22px;
  5643. top:0px;
  5644. width:65px;
  5645. height:20px;
  5646. display:flex;
  5647. }
  5648. #u41709 .text {
  5649. position:absolute;
  5650. align-self:center;
  5651. padding:2px 2px 2px 3px;
  5652. box-sizing:border-box;
  5653. width:100%;
  5654. }
  5655. #u41709_text {
  5656. border-width:0px;
  5657. white-space:nowrap;
  5658. text-transform:none;
  5659. }
  5660. #u41710 {
  5661. border-width:0px;
  5662. position:absolute;
  5663. left:20px;
  5664. top:40px;
  5665. width:54px;
  5666. height:20px;
  5667. }
  5668. #u41711_div {
  5669. border-width:0px;
  5670. position:absolute;
  5671. left:0px;
  5672. top:0px;
  5673. width:32px;
  5674. height:20px;
  5675. background:inherit;
  5676. background-color:rgba(255, 255, 255, 0);
  5677. border:none;
  5678. border-radius:0px;
  5679. -moz-box-shadow:none;
  5680. -webkit-box-shadow:none;
  5681. box-shadow:none;
  5682. }
  5683. #u41711 {
  5684. border-width:0px;
  5685. position:absolute;
  5686. left:22px;
  5687. top:0px;
  5688. width:32px;
  5689. height:20px;
  5690. display:flex;
  5691. }
  5692. #u41711 .text {
  5693. position:absolute;
  5694. align-self:center;
  5695. padding:2px 2px 2px 3px;
  5696. box-sizing:border-box;
  5697. width:100%;
  5698. }
  5699. #u41711_text {
  5700. border-width:0px;
  5701. white-space:nowrap;
  5702. text-transform:none;
  5703. }
  5704. #u41712 {
  5705. border-width:0px;
  5706. position:absolute;
  5707. left:0px;
  5708. top:0px;
  5709. width:0px;
  5710. height:0px;
  5711. }
  5712. #u41713_div {
  5713. border-width:0px;
  5714. position:absolute;
  5715. left:0px;
  5716. top:0px;
  5717. width:175px;
  5718. height:30px;
  5719. background:inherit;
  5720. background-color:rgba(255, 255, 255, 1);
  5721. box-sizing:border-box;
  5722. border-width:1px;
  5723. border-style:solid;
  5724. border-color:rgba(201, 201, 201, 1);
  5725. border-radius:4px;
  5726. -moz-box-shadow:none;
  5727. -webkit-box-shadow:none;
  5728. box-shadow:none;
  5729. font-family:'Microsoft YaHei', sans-serif;
  5730. font-weight:400;
  5731. font-style:normal;
  5732. font-size:14px;
  5733. color:#CCCCCC;
  5734. text-align:left;
  5735. }
  5736. #u41713 {
  5737. border-width:0px;
  5738. position:absolute;
  5739. left:359px;
  5740. top:333px;
  5741. width:175px;
  5742. height:30px;
  5743. display:flex;
  5744. font-family:'Microsoft YaHei', sans-serif;
  5745. font-weight:400;
  5746. font-style:normal;
  5747. font-size:14px;
  5748. color:#CCCCCC;
  5749. text-align:left;
  5750. }
  5751. #u41713 .text {
  5752. position:absolute;
  5753. align-self:center;
  5754. padding:2px 8px 2px 8px;
  5755. box-sizing:border-box;
  5756. width:100%;
  5757. }
  5758. #u41713_text {
  5759. border-width:0px;
  5760. word-wrap:break-word;
  5761. text-transform:none;
  5762. visibility:hidden;
  5763. }
  5764. #u41714_input {
  5765. position:absolute;
  5766. left:0px;
  5767. top:0px;
  5768. width:159px;
  5769. height:25px;
  5770. padding:2px 2px 2px 2px;
  5771. font-family:'Microsoft YaHei', sans-serif;
  5772. font-weight:400;
  5773. font-style:normal;
  5774. font-size:10px;
  5775. letter-spacing:normal;
  5776. color:#000000;
  5777. vertical-align:none;
  5778. text-align:left;
  5779. text-transform:none;
  5780. background-color:transparent;
  5781. border-color:transparent;
  5782. }
  5783. #u41714_input.disabled {
  5784. position:absolute;
  5785. left:0px;
  5786. top:0px;
  5787. width:159px;
  5788. height:25px;
  5789. padding:2px 2px 2px 2px;
  5790. font-family:'Microsoft YaHei', sans-serif;
  5791. font-weight:400;
  5792. font-style:normal;
  5793. font-size:10px;
  5794. letter-spacing:normal;
  5795. color:#000000;
  5796. vertical-align:none;
  5797. text-align:left;
  5798. text-transform:none;
  5799. background-color:transparent;
  5800. border-color:transparent;
  5801. }
  5802. #u41714_div {
  5803. border-width:0px;
  5804. position:absolute;
  5805. left:0px;
  5806. top:0px;
  5807. width:159px;
  5808. height:25px;
  5809. background:inherit;
  5810. background-color:rgba(255, 255, 255, 1);
  5811. border:none;
  5812. border-radius:0px;
  5813. -moz-box-shadow:none;
  5814. -webkit-box-shadow:none;
  5815. box-shadow:none;
  5816. font-family:'Microsoft YaHei', sans-serif;
  5817. font-weight:400;
  5818. font-style:normal;
  5819. font-size:10px;
  5820. }
  5821. #u41714 {
  5822. border-width:0px;
  5823. position:absolute;
  5824. left:369px;
  5825. top:334px;
  5826. width:159px;
  5827. height:25px;
  5828. display:flex;
  5829. font-family:'Microsoft YaHei', sans-serif;
  5830. font-weight:400;
  5831. font-style:normal;
  5832. font-size:10px;
  5833. }
  5834. #u41714 .text {
  5835. position:absolute;
  5836. align-self:center;
  5837. padding:2px 2px 2px 2px;
  5838. box-sizing:border-box;
  5839. width:100%;
  5840. }
  5841. #u41714_div.disabled {
  5842. border-width:0px;
  5843. position:absolute;
  5844. left:0px;
  5845. top:0px;
  5846. width:159px;
  5847. height:25px;
  5848. background:inherit;
  5849. background-color:rgba(240, 240, 240, 1);
  5850. border:none;
  5851. border-radius:0px;
  5852. -moz-box-shadow:none;
  5853. -webkit-box-shadow:none;
  5854. box-shadow:none;
  5855. font-family:'Microsoft YaHei', sans-serif;
  5856. font-weight:400;
  5857. font-style:normal;
  5858. font-size:10px;
  5859. }
  5860. #u41714.disabled {
  5861. }
  5862. #u41715_div {
  5863. border-width:0px;
  5864. position:absolute;
  5865. left:0px;
  5866. top:0px;
  5867. width:25px;
  5868. height:30px;
  5869. background:inherit;
  5870. background-color:rgba(255, 255, 255, 0);
  5871. border:none;
  5872. border-radius:0px;
  5873. -moz-box-shadow:none;
  5874. -webkit-box-shadow:none;
  5875. box-shadow:none;
  5876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5877. font-weight:400;
  5878. font-style:normal;
  5879. font-size:12px;
  5880. color:#3399FF;
  5881. line-height:30px;
  5882. }
  5883. #u41715 {
  5884. border-width:0px;
  5885. position:absolute;
  5886. left:359px;
  5887. top:372px;
  5888. width:25px;
  5889. height:30px;
  5890. display:flex;
  5891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5892. font-weight:400;
  5893. font-style:normal;
  5894. font-size:12px;
  5895. color:#3399FF;
  5896. line-height:30px;
  5897. }
  5898. #u41715 .text {
  5899. position:absolute;
  5900. align-self:flex-start;
  5901. padding:0px 0px 0px 0px;
  5902. box-sizing:border-box;
  5903. width:100%;
  5904. }
  5905. #u41715_text {
  5906. border-width:0px;
  5907. white-space:nowrap;
  5908. text-transform:none;
  5909. }
  5910. #u41716_div {
  5911. border-width:0px;
  5912. position:absolute;
  5913. left:0px;
  5914. top:0px;
  5915. width:25px;
  5916. height:30px;
  5917. background:inherit;
  5918. background-color:rgba(255, 255, 255, 0);
  5919. border:none;
  5920. border-radius:0px;
  5921. -moz-box-shadow:none;
  5922. -webkit-box-shadow:none;
  5923. box-shadow:none;
  5924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5925. font-weight:400;
  5926. font-style:normal;
  5927. font-size:12px;
  5928. color:#7F7F7F;
  5929. line-height:30px;
  5930. }
  5931. #u41716 {
  5932. border-width:0px;
  5933. position:absolute;
  5934. left:396px;
  5935. top:372px;
  5936. width:25px;
  5937. height:30px;
  5938. display:flex;
  5939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5940. font-weight:400;
  5941. font-style:normal;
  5942. font-size:12px;
  5943. color:#7F7F7F;
  5944. line-height:30px;
  5945. }
  5946. #u41716 .text {
  5947. position:absolute;
  5948. align-self:flex-start;
  5949. padding:0px 0px 0px 0px;
  5950. box-sizing:border-box;
  5951. width:100%;
  5952. }
  5953. #u41716_text {
  5954. border-width:0px;
  5955. white-space:nowrap;
  5956. text-transform:none;
  5957. }
  5958. #u41717_div {
  5959. border-width:0px;
  5960. position:absolute;
  5961. left:0px;
  5962. top:0px;
  5963. width:25px;
  5964. height:30px;
  5965. background:inherit;
  5966. background-color:rgba(255, 255, 255, 0);
  5967. border:none;
  5968. border-radius:0px;
  5969. -moz-box-shadow:none;
  5970. -webkit-box-shadow:none;
  5971. box-shadow:none;
  5972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5973. font-weight:400;
  5974. font-style:normal;
  5975. font-size:12px;
  5976. color:#7F7F7F;
  5977. line-height:30px;
  5978. }
  5979. #u41717 {
  5980. border-width:0px;
  5981. position:absolute;
  5982. left:432px;
  5983. top:372px;
  5984. width:25px;
  5985. height:30px;
  5986. display:flex;
  5987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5988. font-weight:400;
  5989. font-style:normal;
  5990. font-size:12px;
  5991. color:#7F7F7F;
  5992. line-height:30px;
  5993. }
  5994. #u41717 .text {
  5995. position:absolute;
  5996. align-self:flex-start;
  5997. padding:0px 0px 0px 0px;
  5998. box-sizing:border-box;
  5999. width:100%;
  6000. }
  6001. #u41717_text {
  6002. border-width:0px;
  6003. white-space:nowrap;
  6004. text-transform:none;
  6005. }
  6006. #u41718_div {
  6007. border-width:0px;
  6008. position:absolute;
  6009. left:0px;
  6010. top:0px;
  6011. width:25px;
  6012. height:30px;
  6013. background:inherit;
  6014. background-color:rgba(255, 255, 255, 0);
  6015. border:none;
  6016. border-radius:0px;
  6017. -moz-box-shadow:none;
  6018. -webkit-box-shadow:none;
  6019. box-shadow:none;
  6020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6021. font-weight:400;
  6022. font-style:normal;
  6023. font-size:12px;
  6024. color:#7F7F7F;
  6025. line-height:30px;
  6026. }
  6027. #u41718 {
  6028. border-width:0px;
  6029. position:absolute;
  6030. left:469px;
  6031. top:372px;
  6032. width:25px;
  6033. height:30px;
  6034. display:flex;
  6035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6036. font-weight:400;
  6037. font-style:normal;
  6038. font-size:12px;
  6039. color:#7F7F7F;
  6040. line-height:30px;
  6041. }
  6042. #u41718 .text {
  6043. position:absolute;
  6044. align-self:flex-start;
  6045. padding:0px 0px 0px 0px;
  6046. box-sizing:border-box;
  6047. width:100%;
  6048. }
  6049. #u41718_text {
  6050. border-width:0px;
  6051. white-space:nowrap;
  6052. text-transform:none;
  6053. }
  6054. #u41719 {
  6055. border-width:0px;
  6056. position:absolute;
  6057. left:0px;
  6058. top:0px;
  6059. width:0px;
  6060. height:0px;
  6061. }
  6062. #u41720_div {
  6063. border-width:0px;
  6064. position:absolute;
  6065. left:0px;
  6066. top:0px;
  6067. width:200px;
  6068. height:1187px;
  6069. background:inherit;
  6070. background-color:rgba(255, 255, 255, 1);
  6071. border:none;
  6072. border-radius:0px;
  6073. -moz-box-shadow:none;
  6074. -webkit-box-shadow:none;
  6075. box-shadow:none;
  6076. }
  6077. #u41720 {
  6078. border-width:0px;
  6079. position:absolute;
  6080. left:120px;
  6081. top:50px;
  6082. width:200px;
  6083. height:1187px;
  6084. display:flex;
  6085. }
  6086. #u41720 .text {
  6087. position:absolute;
  6088. align-self:center;
  6089. padding:2px 2px 2px 2px;
  6090. box-sizing:border-box;
  6091. width:100%;
  6092. }
  6093. #u41720_text {
  6094. border-width:0px;
  6095. word-wrap:break-word;
  6096. text-transform:none;
  6097. visibility:hidden;
  6098. }
  6099. #u41721_div {
  6100. border-width:0px;
  6101. position:absolute;
  6102. left:0px;
  6103. top:0px;
  6104. width:200px;
  6105. height:60px;
  6106. background:inherit;
  6107. background-color:rgba(224, 231, 247, 1);
  6108. border:none;
  6109. border-radius:0px;
  6110. -moz-box-shadow:none;
  6111. -webkit-box-shadow:none;
  6112. box-shadow:none;
  6113. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6114. font-weight:500;
  6115. font-style:normal;
  6116. font-size:18px;
  6117. }
  6118. #u41721 {
  6119. border-width:0px;
  6120. position:absolute;
  6121. left:120px;
  6122. top:50px;
  6123. width:200px;
  6124. height:60px;
  6125. display:flex;
  6126. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6127. font-weight:500;
  6128. font-style:normal;
  6129. font-size:18px;
  6130. }
  6131. #u41721 .text {
  6132. position:absolute;
  6133. align-self:center;
  6134. padding:0px 0px 0px 20px;
  6135. box-sizing:border-box;
  6136. width:100%;
  6137. }
  6138. #u41721_text {
  6139. border-width:0px;
  6140. word-wrap:break-word;
  6141. text-transform:none;
  6142. }
  6143. #u41722_div {
  6144. border-width:0px;
  6145. position:absolute;
  6146. left:0px;
  6147. top:0px;
  6148. width:65px;
  6149. height:22px;
  6150. background:inherit;
  6151. background-color:rgba(255, 255, 255, 0);
  6152. border:none;
  6153. border-radius:0px;
  6154. -moz-box-shadow:none;
  6155. -webkit-box-shadow:none;
  6156. box-shadow:none;
  6157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6158. font-weight:400;
  6159. font-style:normal;
  6160. font-size:16px;
  6161. }
  6162. #u41722 {
  6163. border-width:0px;
  6164. position:absolute;
  6165. left:147px;
  6166. top:204px;
  6167. width:65px;
  6168. height:22px;
  6169. display:flex;
  6170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6171. font-weight:400;
  6172. font-style:normal;
  6173. font-size:16px;
  6174. }
  6175. #u41722 .text {
  6176. position:absolute;
  6177. align-self:flex-start;
  6178. padding:0px 0px 0px 0px;
  6179. box-sizing:border-box;
  6180. width:100%;
  6181. }
  6182. #u41722_text {
  6183. border-width:0px;
  6184. white-space:nowrap;
  6185. text-transform:none;
  6186. }
  6187. #u41723_div {
  6188. border-width:0px;
  6189. position:absolute;
  6190. left:0px;
  6191. top:0px;
  6192. width:49px;
  6193. height:17px;
  6194. background:inherit;
  6195. background-color:rgba(255, 255, 255, 0);
  6196. border:none;
  6197. border-radius:0px;
  6198. -moz-box-shadow:none;
  6199. -webkit-box-shadow:none;
  6200. box-shadow:none;
  6201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6202. font-weight:400;
  6203. font-style:normal;
  6204. font-size:12px;
  6205. color:#AAAAAA;
  6206. }
  6207. #u41723 {
  6208. border-width:0px;
  6209. position:absolute;
  6210. left:147px;
  6211. top:125px;
  6212. width:49px;
  6213. height:17px;
  6214. display:flex;
  6215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6216. font-weight:400;
  6217. font-style:normal;
  6218. font-size:12px;
  6219. color:#AAAAAA;
  6220. }
  6221. #u41723 .text {
  6222. position:absolute;
  6223. align-self:flex-start;
  6224. padding:0px 0px 0px 0px;
  6225. box-sizing:border-box;
  6226. width:100%;
  6227. }
  6228. #u41723_text {
  6229. border-width:0px;
  6230. white-space:nowrap;
  6231. text-transform:none;
  6232. }
  6233. #u41724_div {
  6234. border-width:0px;
  6235. position:absolute;
  6236. left:0px;
  6237. top:0px;
  6238. width:49px;
  6239. height:17px;
  6240. background:inherit;
  6241. background-color:rgba(255, 255, 255, 0);
  6242. border:none;
  6243. border-radius:0px;
  6244. -moz-box-shadow:none;
  6245. -webkit-box-shadow:none;
  6246. box-shadow:none;
  6247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6248. font-weight:400;
  6249. font-style:normal;
  6250. font-size:12px;
  6251. color:#AAAAAA;
  6252. }
  6253. #u41724 {
  6254. border-width:0px;
  6255. position:absolute;
  6256. left:147px;
  6257. top:371px;
  6258. width:49px;
  6259. height:17px;
  6260. display:flex;
  6261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6262. font-weight:400;
  6263. font-style:normal;
  6264. font-size:12px;
  6265. color:#AAAAAA;
  6266. }
  6267. #u41724 .text {
  6268. position:absolute;
  6269. align-self:flex-start;
  6270. padding:0px 0px 0px 0px;
  6271. box-sizing:border-box;
  6272. width:100%;
  6273. }
  6274. #u41724_text {
  6275. border-width:0px;
  6276. white-space:nowrap;
  6277. text-transform:none;
  6278. }
  6279. #u41725_img {
  6280. border-width:0px;
  6281. position:absolute;
  6282. left:0px;
  6283. top:0px;
  6284. width:201px;
  6285. height:2px;
  6286. }
  6287. #u41725 {
  6288. border-width:0px;
  6289. position:absolute;
  6290. left:120px;
  6291. top:349px;
  6292. width:200px;
  6293. height:1px;
  6294. display:flex;
  6295. }
  6296. #u41725 .text {
  6297. position:absolute;
  6298. align-self:center;
  6299. padding:2px 2px 2px 2px;
  6300. box-sizing:border-box;
  6301. width:100%;
  6302. }
  6303. #u41725_text {
  6304. border-width:0px;
  6305. word-wrap:break-word;
  6306. text-transform:none;
  6307. visibility:hidden;
  6308. }
  6309. #u41726_div {
  6310. border-width:0px;
  6311. position:absolute;
  6312. left:0px;
  6313. top:0px;
  6314. width:65px;
  6315. height:22px;
  6316. background:inherit;
  6317. background-color:rgba(255, 255, 255, 0);
  6318. border:none;
  6319. border-radius:0px;
  6320. -moz-box-shadow:none;
  6321. -webkit-box-shadow:none;
  6322. box-shadow:none;
  6323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6324. font-weight:400;
  6325. font-style:normal;
  6326. font-size:16px;
  6327. }
  6328. #u41726 {
  6329. border-width:0px;
  6330. position:absolute;
  6331. left:147px;
  6332. top:309px;
  6333. width:65px;
  6334. height:22px;
  6335. display:flex;
  6336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6337. font-weight:400;
  6338. font-style:normal;
  6339. font-size:16px;
  6340. }
  6341. #u41726 .text {
  6342. position:absolute;
  6343. align-self:flex-start;
  6344. padding:0px 0px 0px 0px;
  6345. box-sizing:border-box;
  6346. width:100%;
  6347. }
  6348. #u41726_text {
  6349. border-width:0px;
  6350. white-space:nowrap;
  6351. text-transform:none;
  6352. }
  6353. #u41727_div {
  6354. border-width:0px;
  6355. position:absolute;
  6356. left:0px;
  6357. top:0px;
  6358. width:49px;
  6359. height:17px;
  6360. background:inherit;
  6361. background-color:rgba(255, 255, 255, 0);
  6362. border:none;
  6363. border-radius:0px;
  6364. -moz-box-shadow:none;
  6365. -webkit-box-shadow:none;
  6366. box-shadow:none;
  6367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6368. font-weight:400;
  6369. font-style:normal;
  6370. font-size:12px;
  6371. color:#AAAAAA;
  6372. }
  6373. #u41727 {
  6374. border-width:0px;
  6375. position:absolute;
  6376. left:147px;
  6377. top:273px;
  6378. width:49px;
  6379. height:17px;
  6380. display:flex;
  6381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6382. font-weight:400;
  6383. font-style:normal;
  6384. font-size:12px;
  6385. color:#AAAAAA;
  6386. }
  6387. #u41727 .text {
  6388. position:absolute;
  6389. align-self:flex-start;
  6390. padding:0px 0px 0px 0px;
  6391. box-sizing:border-box;
  6392. width:100%;
  6393. }
  6394. #u41727_text {
  6395. border-width:0px;
  6396. white-space:nowrap;
  6397. text-transform:none;
  6398. }
  6399. #u41728_img {
  6400. border-width:0px;
  6401. position:absolute;
  6402. left:0px;
  6403. top:0px;
  6404. width:201px;
  6405. height:2px;
  6406. }
  6407. #u41728 {
  6408. border-width:0px;
  6409. position:absolute;
  6410. left:120px;
  6411. top:251px;
  6412. width:200px;
  6413. height:1px;
  6414. display:flex;
  6415. }
  6416. #u41728 .text {
  6417. position:absolute;
  6418. align-self:center;
  6419. padding:2px 2px 2px 2px;
  6420. box-sizing:border-box;
  6421. width:100%;
  6422. }
  6423. #u41728_text {
  6424. border-width:0px;
  6425. word-wrap:break-word;
  6426. text-transform:none;
  6427. visibility:hidden;
  6428. }
  6429. #u41729_div {
  6430. border-width:0px;
  6431. position:absolute;
  6432. left:0px;
  6433. top:0px;
  6434. width:65px;
  6435. height:22px;
  6436. background:inherit;
  6437. background-color:rgba(255, 255, 255, 0);
  6438. border:none;
  6439. border-radius:0px;
  6440. -moz-box-shadow:none;
  6441. -webkit-box-shadow:none;
  6442. box-shadow:none;
  6443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6444. font-weight:400;
  6445. font-style:normal;
  6446. font-size:16px;
  6447. }
  6448. #u41729 {
  6449. border-width:0px;
  6450. position:absolute;
  6451. left:147px;
  6452. top:162px;
  6453. width:65px;
  6454. height:22px;
  6455. display:flex;
  6456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6457. font-weight:400;
  6458. font-style:normal;
  6459. font-size:16px;
  6460. }
  6461. #u41729 .text {
  6462. position:absolute;
  6463. align-self:flex-start;
  6464. padding:0px 0px 0px 0px;
  6465. box-sizing:border-box;
  6466. width:100%;
  6467. }
  6468. #u41729_text {
  6469. border-width:0px;
  6470. white-space:nowrap;
  6471. text-transform:none;
  6472. }
  6473. #u41730_div {
  6474. border-width:0px;
  6475. position:absolute;
  6476. left:0px;
  6477. top:0px;
  6478. width:65px;
  6479. height:22px;
  6480. background:inherit;
  6481. background-color:rgba(255, 255, 255, 0);
  6482. border:none;
  6483. border-radius:0px;
  6484. -moz-box-shadow:none;
  6485. -webkit-box-shadow:none;
  6486. box-shadow:none;
  6487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6488. font-weight:400;
  6489. font-style:normal;
  6490. font-size:16px;
  6491. }
  6492. #u41730 {
  6493. border-width:0px;
  6494. position:absolute;
  6495. left:148px;
  6496. top:448px;
  6497. width:65px;
  6498. height:22px;
  6499. display:flex;
  6500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6501. font-weight:400;
  6502. font-style:normal;
  6503. font-size:16px;
  6504. }
  6505. #u41730 .text {
  6506. position:absolute;
  6507. align-self:flex-start;
  6508. padding:0px 0px 0px 0px;
  6509. box-sizing:border-box;
  6510. width:100%;
  6511. }
  6512. #u41730_text {
  6513. border-width:0px;
  6514. white-space:nowrap;
  6515. text-transform:none;
  6516. }
  6517. #u41731_div {
  6518. border-width:0px;
  6519. position:absolute;
  6520. left:0px;
  6521. top:0px;
  6522. width:65px;
  6523. height:22px;
  6524. background:inherit;
  6525. background-color:rgba(255, 255, 255, 0);
  6526. border:none;
  6527. border-radius:0px;
  6528. -moz-box-shadow:none;
  6529. -webkit-box-shadow:none;
  6530. box-shadow:none;
  6531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6532. font-weight:400;
  6533. font-style:normal;
  6534. font-size:16px;
  6535. }
  6536. #u41731 {
  6537. border-width:0px;
  6538. position:absolute;
  6539. left:148px;
  6540. top:406px;
  6541. width:65px;
  6542. height:22px;
  6543. display:flex;
  6544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6545. font-weight:400;
  6546. font-style:normal;
  6547. font-size:16px;
  6548. }
  6549. #u41731 .text {
  6550. position:absolute;
  6551. align-self:flex-start;
  6552. padding:0px 0px 0px 0px;
  6553. box-sizing:border-box;
  6554. width:100%;
  6555. }
  6556. #u41731_text {
  6557. border-width:0px;
  6558. white-space:nowrap;
  6559. text-transform:none;
  6560. }