styles.css 188 KB

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