styles.css 188 KB

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