styles.css 166 KB

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