styles.css 154 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-105px;
  6. width:4102px;
  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. #u20239_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1000px;
  25. height:851px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. box-sizing:border-box;
  29. border-width:1px;
  30. border-style:solid;
  31. border-color:rgba(215, 215, 215, 1);
  32. border-radius:0px;
  33. -moz-box-shadow:none;
  34. -webkit-box-shadow:none;
  35. box-shadow:none;
  36. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  37. font-weight:400;
  38. font-style:normal;
  39. font-size:14px;
  40. color:#AAAAAA;
  41. text-align:center;
  42. line-height:30px;
  43. }
  44. #u20239 {
  45. border-width:0px;
  46. position:absolute;
  47. left:105px;
  48. top:49px;
  49. width:1000px;
  50. height:851px;
  51. display:flex;
  52. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  53. font-weight:400;
  54. font-style:normal;
  55. font-size:14px;
  56. color:#AAAAAA;
  57. text-align:center;
  58. line-height:30px;
  59. }
  60. #u20239 .text {
  61. position:absolute;
  62. align-self:center;
  63. padding:5px 10px 5px 10px;
  64. box-sizing:border-box;
  65. width:100%;
  66. }
  67. #u20239_text {
  68. border-width:0px;
  69. word-wrap:break-word;
  70. text-transform:none;
  71. visibility:hidden;
  72. }
  73. #u20240_div {
  74. border-width:0px;
  75. position:absolute;
  76. left:0px;
  77. top:0px;
  78. width:1000px;
  79. height:1200px;
  80. background:inherit;
  81. background-color:rgba(255, 255, 255, 1);
  82. box-sizing:border-box;
  83. border-width:1px;
  84. border-style:solid;
  85. border-color:rgba(215, 215, 215, 1);
  86. border-radius:0px;
  87. -moz-box-shadow:none;
  88. -webkit-box-shadow:none;
  89. box-shadow:none;
  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. #u20240 {
  99. border-width:0px;
  100. position:absolute;
  101. left:105px;
  102. top:49px;
  103. width:1000px;
  104. height:1200px;
  105. display:flex;
  106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  107. font-weight:400;
  108. font-style:normal;
  109. font-size:14px;
  110. color:#AAAAAA;
  111. text-align:center;
  112. line-height:30px;
  113. }
  114. #u20240 .text {
  115. position:absolute;
  116. align-self:center;
  117. padding:5px 10px 5px 10px;
  118. box-sizing:border-box;
  119. width:100%;
  120. }
  121. #u20240_text {
  122. border-width:0px;
  123. word-wrap:break-word;
  124. text-transform:none;
  125. visibility:hidden;
  126. }
  127. #u20241_div {
  128. border-width:0px;
  129. position:absolute;
  130. left:0px;
  131. top:0px;
  132. width:83px;
  133. height:35px;
  134. background:inherit;
  135. background-color:rgba(255, 255, 255, 0);
  136. border:none;
  137. border-top:0px;
  138. border-right:0px;
  139. border-bottom:0px;
  140. border-radius:0px;
  141. border-top-left-radius:0px;
  142. border-bottom-left-radius:0px;
  143. -moz-box-shadow:none;
  144. -webkit-box-shadow:none;
  145. box-shadow:none;
  146. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  147. font-weight:500;
  148. font-style:normal;
  149. font-size:18px;
  150. }
  151. #u20241 {
  152. border-width:0px;
  153. position:absolute;
  154. left:125px;
  155. top:67px;
  156. width:83px;
  157. height:35px;
  158. display:flex;
  159. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  160. font-weight:500;
  161. font-style:normal;
  162. font-size:18px;
  163. }
  164. #u20241 .text {
  165. position:absolute;
  166. align-self:center;
  167. padding:5px 10px 5px 0px;
  168. box-sizing:border-box;
  169. width:100%;
  170. }
  171. #u20241_text {
  172. border-width:0px;
  173. white-space:nowrap;
  174. text-transform:none;
  175. }
  176. #u20242 {
  177. border-width:0px;
  178. position:absolute;
  179. left:0px;
  180. top:0px;
  181. width:0px;
  182. height:0px;
  183. }
  184. #u20243_div {
  185. border-width:0px;
  186. position:absolute;
  187. left:0px;
  188. top:0px;
  189. width:40px;
  190. height:40px;
  191. background:inherit;
  192. background-color:rgba(255, 255, 255, 0);
  193. border:none;
  194. border-top:0px;
  195. border-right:0px;
  196. border-bottom:0px;
  197. border-radius:0px;
  198. border-top-left-radius:0px;
  199. border-bottom-left-radius:0px;
  200. -moz-box-shadow:none;
  201. -webkit-box-shadow:none;
  202. box-shadow:none;
  203. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  204. font-weight:500;
  205. font-style:normal;
  206. font-size:14px;
  207. text-align:center;
  208. }
  209. #u20243 {
  210. border-width:0px;
  211. position:absolute;
  212. left:1065px;
  213. top:49px;
  214. width:40px;
  215. height:40px;
  216. display:flex;
  217. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  218. font-weight:500;
  219. font-style:normal;
  220. font-size:14px;
  221. text-align:center;
  222. }
  223. #u20243 .text {
  224. position:absolute;
  225. align-self:center;
  226. padding:5px 10px 5px 0px;
  227. box-sizing:border-box;
  228. width:100%;
  229. }
  230. #u20243_text {
  231. border-width:0px;
  232. word-wrap:break-word;
  233. text-transform:none;
  234. }
  235. #u20244_img {
  236. border-width:0px;
  237. position:absolute;
  238. left:0px;
  239. top:0px;
  240. width:13px;
  241. height:13px;
  242. }
  243. #u20244 {
  244. border-width:0px;
  245. position:absolute;
  246. left:1053px;
  247. top:65px;
  248. width:13px;
  249. height:13px;
  250. display:flex;
  251. font-size:14px;
  252. }
  253. #u20244 .text {
  254. position:absolute;
  255. align-self:center;
  256. padding:2px 2px 2px 2px;
  257. box-sizing:border-box;
  258. width:100%;
  259. }
  260. #u20244_text {
  261. border-width:0px;
  262. word-wrap:break-word;
  263. text-transform:none;
  264. visibility:hidden;
  265. }
  266. #u20245_div {
  267. border-width:0px;
  268. position:absolute;
  269. left:0px;
  270. top:0px;
  271. width:396px;
  272. height:43px;
  273. background:inherit;
  274. background-color:rgba(255, 255, 255, 0);
  275. border:none;
  276. border-top:0px;
  277. border-right:0px;
  278. border-bottom:0px;
  279. border-radius:0px;
  280. border-top-left-radius:0px;
  281. border-bottom-left-radius:0px;
  282. -moz-box-shadow:none;
  283. -webkit-box-shadow:none;
  284. box-shadow:none;
  285. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  286. font-weight:500;
  287. font-style:normal;
  288. font-size:24px;
  289. }
  290. #u20245 {
  291. border-width:0px;
  292. position:absolute;
  293. left:135px;
  294. top:118px;
  295. width:396px;
  296. height:43px;
  297. display:flex;
  298. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  299. font-weight:500;
  300. font-style:normal;
  301. font-size:24px;
  302. }
  303. #u20245 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:5px 10px 5px 0px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u20245_text {
  311. border-width:0px;
  312. white-space:nowrap;
  313. text-transform:none;
  314. }
  315. #u20246_img {
  316. border-width:0px;
  317. position:absolute;
  318. left:0px;
  319. top:0px;
  320. width:108px;
  321. height:108px;
  322. }
  323. #u20246 {
  324. border-width:0px;
  325. position:absolute;
  326. left:955px;
  327. top:119px;
  328. width:108px;
  329. height:108px;
  330. display:flex;
  331. -webkit-transform:rotate(315deg);
  332. -moz-transform:rotate(315deg);
  333. -ms-transform:rotate(315deg);
  334. transform:rotate(315deg);
  335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  336. font-weight:400;
  337. font-style:normal;
  338. font-size:28px;
  339. color:#F59A23;
  340. }
  341. #u20246 .text {
  342. position:absolute;
  343. align-self:center;
  344. padding:2px 2px 2px 2px;
  345. box-sizing:border-box;
  346. width:100%;
  347. }
  348. #u20246_text {
  349. border-width:0px;
  350. word-wrap:break-word;
  351. text-transform:none;
  352. }
  353. #u20247 {
  354. border-width:0px;
  355. position:absolute;
  356. left:0px;
  357. top:0px;
  358. width:0px;
  359. height:0px;
  360. }
  361. #u20248_div {
  362. border-width:0px;
  363. position:absolute;
  364. left:0px;
  365. top:0px;
  366. width:1000px;
  367. height:60px;
  368. background:inherit;
  369. background-color:rgba(255, 255, 255, 1);
  370. box-sizing:border-box;
  371. border-width:1px;
  372. border-style:solid;
  373. border-color:rgba(215, 215, 215, 1);
  374. border-radius:0px;
  375. -moz-box-shadow:none;
  376. -webkit-box-shadow:none;
  377. box-shadow:none;
  378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  379. font-weight:400;
  380. font-style:normal;
  381. font-size:14px;
  382. color:#AAAAAA;
  383. text-align:center;
  384. line-height:30px;
  385. }
  386. #u20248 {
  387. border-width:0px;
  388. position:absolute;
  389. left:105px;
  390. top:1189px;
  391. width:1000px;
  392. height:60px;
  393. display:flex;
  394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  395. font-weight:400;
  396. font-style:normal;
  397. font-size:14px;
  398. color:#AAAAAA;
  399. text-align:center;
  400. line-height:30px;
  401. }
  402. #u20248 .text {
  403. position:absolute;
  404. align-self:center;
  405. padding:5px 10px 5px 10px;
  406. box-sizing:border-box;
  407. width:100%;
  408. }
  409. #u20248_text {
  410. border-width:0px;
  411. word-wrap:break-word;
  412. text-transform:none;
  413. visibility:hidden;
  414. }
  415. #u20249_div {
  416. border-width:0px;
  417. position:absolute;
  418. left:0px;
  419. top:0px;
  420. width:80px;
  421. height:30px;
  422. background:inherit;
  423. background-color:rgba(24, 144, 255, 1);
  424. border:none;
  425. border-radius:4px;
  426. -moz-box-shadow:none;
  427. -webkit-box-shadow:none;
  428. box-shadow:none;
  429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  430. font-weight:400;
  431. font-style:normal;
  432. font-size:14px;
  433. color:#FFFFFF;
  434. }
  435. #u20249 {
  436. border-width:0px;
  437. position:absolute;
  438. left:999px;
  439. top:1204px;
  440. width:80px;
  441. height:30px;
  442. display:flex;
  443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  444. font-weight:400;
  445. font-style:normal;
  446. font-size:14px;
  447. color:#FFFFFF;
  448. }
  449. #u20249 .text {
  450. position:absolute;
  451. align-self:center;
  452. padding:2px 2px 2px 2px;
  453. box-sizing:border-box;
  454. width:100%;
  455. }
  456. #u20249_text {
  457. border-width:0px;
  458. word-wrap:break-word;
  459. text-transform:none;
  460. }
  461. #u20250_div {
  462. border-width:0px;
  463. position:absolute;
  464. left:0px;
  465. top:0px;
  466. width:80px;
  467. height:30px;
  468. background:inherit;
  469. background-color:rgba(255, 255, 255, 1);
  470. box-sizing:border-box;
  471. border-width:1px;
  472. border-style:solid;
  473. border-color:rgba(170, 170, 170, 1);
  474. border-radius:4px;
  475. -moz-box-shadow:none;
  476. -webkit-box-shadow:none;
  477. box-shadow:none;
  478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  479. font-weight:400;
  480. font-style:normal;
  481. font-size:14px;
  482. }
  483. #u20250 {
  484. border-width:0px;
  485. position:absolute;
  486. left:819px;
  487. top:1204px;
  488. width:80px;
  489. height:30px;
  490. display:flex;
  491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  492. font-weight:400;
  493. font-style:normal;
  494. font-size:14px;
  495. }
  496. #u20250 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u20250_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. }
  508. #u20251_div {
  509. border-width:0px;
  510. position:absolute;
  511. left:0px;
  512. top:0px;
  513. width:80px;
  514. height:30px;
  515. background:inherit;
  516. background-color:rgba(255, 255, 255, 1);
  517. box-sizing:border-box;
  518. border-width:1px;
  519. border-style:solid;
  520. border-color:rgba(217, 0, 27, 1);
  521. border-radius:4px;
  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. color:#D9001B;
  530. }
  531. #u20251 {
  532. border-width:0px;
  533. position:absolute;
  534. left:909px;
  535. top:1204px;
  536. width:80px;
  537. height:30px;
  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. color:#D9001B;
  544. }
  545. #u20251 .text {
  546. position:absolute;
  547. align-self:center;
  548. padding:2px 2px 2px 2px;
  549. box-sizing:border-box;
  550. width:100%;
  551. }
  552. #u20251_text {
  553. border-width:0px;
  554. word-wrap:break-word;
  555. text-transform:none;
  556. }
  557. #u20252_div {
  558. border-width:0px;
  559. position:absolute;
  560. left:0px;
  561. top:0px;
  562. width:80px;
  563. height:30px;
  564. background:inherit;
  565. background-color:rgba(255, 255, 255, 0);
  566. border:none;
  567. border-left:0px;
  568. border-top:0px;
  569. border-right:0px;
  570. border-radius:0px;
  571. border-bottom-right-radius:0px;
  572. border-bottom-left-radius:0px;
  573. -moz-box-shadow:none;
  574. -webkit-box-shadow:none;
  575. box-shadow:none;
  576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  577. font-weight:400;
  578. font-style:normal;
  579. font-size:14px;
  580. color:#7F7F7F;
  581. line-height:30px;
  582. }
  583. #u20252 {
  584. border-width:0px;
  585. position:absolute;
  586. left:448px;
  587. top:306px;
  588. width:80px;
  589. height:30px;
  590. display:flex;
  591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  592. font-weight:400;
  593. font-style:normal;
  594. font-size:14px;
  595. color:#7F7F7F;
  596. line-height:30px;
  597. }
  598. #u20252 .text {
  599. position:absolute;
  600. align-self:flex-start;
  601. padding:0px 0px 0px 0px;
  602. box-sizing:border-box;
  603. width:100%;
  604. }
  605. #u20252_text {
  606. border-width:0px;
  607. word-wrap:break-word;
  608. text-transform:none;
  609. }
  610. #u20253_div {
  611. border-width:0px;
  612. position:absolute;
  613. left:0px;
  614. top:0px;
  615. width:113px;
  616. height:30px;
  617. background:inherit;
  618. background-color:rgba(255, 255, 255, 0);
  619. border:none;
  620. border-left:0px;
  621. border-top:0px;
  622. border-right:0px;
  623. border-radius:0px;
  624. border-bottom-right-radius:0px;
  625. border-bottom-left-radius:0px;
  626. -moz-box-shadow:none;
  627. -webkit-box-shadow:none;
  628. box-shadow:none;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:14px;
  633. line-height:30px;
  634. }
  635. #u20253 {
  636. border-width:0px;
  637. position:absolute;
  638. left:528px;
  639. top:306px;
  640. width:113px;
  641. height:30px;
  642. display:flex;
  643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  644. font-weight:400;
  645. font-style:normal;
  646. font-size:14px;
  647. line-height:30px;
  648. }
  649. #u20253 .text {
  650. position:absolute;
  651. align-self:flex-start;
  652. padding:0px 0px 0px 0px;
  653. box-sizing:border-box;
  654. width:100%;
  655. }
  656. #u20253_text {
  657. border-width:0px;
  658. white-space:nowrap;
  659. text-transform:none;
  660. }
  661. #u20254_div {
  662. border-width:0px;
  663. position:absolute;
  664. left:0px;
  665. top:0px;
  666. width:80px;
  667. height:30px;
  668. background:inherit;
  669. background-color:rgba(255, 255, 255, 0);
  670. border:none;
  671. border-left:0px;
  672. border-top:0px;
  673. border-right:0px;
  674. border-radius:0px;
  675. border-bottom-right-radius:0px;
  676. border-bottom-left-radius:0px;
  677. -moz-box-shadow:none;
  678. -webkit-box-shadow:none;
  679. box-shadow:none;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:14px;
  684. color:#7F7F7F;
  685. line-height:30px;
  686. }
  687. #u20254 {
  688. border-width:0px;
  689. position:absolute;
  690. left:135px;
  691. top:226px;
  692. width:80px;
  693. height:30px;
  694. display:flex;
  695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  696. font-weight:400;
  697. font-style:normal;
  698. font-size:14px;
  699. color:#7F7F7F;
  700. line-height:30px;
  701. }
  702. #u20254 .text {
  703. position:absolute;
  704. align-self:flex-start;
  705. padding:0px 0px 0px 0px;
  706. box-sizing:border-box;
  707. width:100%;
  708. }
  709. #u20254_text {
  710. border-width:0px;
  711. word-wrap:break-word;
  712. text-transform:none;
  713. }
  714. #u20255_div {
  715. border-width:0px;
  716. position:absolute;
  717. left:0px;
  718. top:0px;
  719. width:99px;
  720. height:30px;
  721. background:inherit;
  722. background-color:rgba(255, 255, 255, 0);
  723. border:none;
  724. border-left:0px;
  725. border-top:0px;
  726. border-right:0px;
  727. border-radius:0px;
  728. border-bottom-right-radius:0px;
  729. border-bottom-left-radius:0px;
  730. -moz-box-shadow:none;
  731. -webkit-box-shadow:none;
  732. box-shadow:none;
  733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  734. font-weight:400;
  735. font-style:normal;
  736. font-size:14px;
  737. line-height:30px;
  738. }
  739. #u20255 {
  740. border-width:0px;
  741. position:absolute;
  742. left:215px;
  743. top:226px;
  744. width:99px;
  745. height:30px;
  746. display:flex;
  747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  748. font-weight:400;
  749. font-style:normal;
  750. font-size:14px;
  751. line-height:30px;
  752. }
  753. #u20255 .text {
  754. position:absolute;
  755. align-self:flex-start;
  756. padding:0px 0px 0px 0px;
  757. box-sizing:border-box;
  758. width:100%;
  759. }
  760. #u20255_text {
  761. border-width:0px;
  762. white-space:nowrap;
  763. text-transform:none;
  764. }
  765. #u20256_div {
  766. border-width:0px;
  767. position:absolute;
  768. left:0px;
  769. top:0px;
  770. width:80px;
  771. height:30px;
  772. background:inherit;
  773. background-color:rgba(255, 255, 255, 0);
  774. border:none;
  775. border-left:0px;
  776. border-top:0px;
  777. border-right:0px;
  778. border-radius:0px;
  779. border-bottom-right-radius:0px;
  780. border-bottom-left-radius:0px;
  781. -moz-box-shadow:none;
  782. -webkit-box-shadow:none;
  783. box-shadow:none;
  784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  785. font-weight:400;
  786. font-style:normal;
  787. font-size:14px;
  788. color:#7F7F7F;
  789. line-height:30px;
  790. }
  791. #u20256 {
  792. border-width:0px;
  793. position:absolute;
  794. left:448px;
  795. top:266px;
  796. width:80px;
  797. height:30px;
  798. display:flex;
  799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  800. font-weight:400;
  801. font-style:normal;
  802. font-size:14px;
  803. color:#7F7F7F;
  804. line-height:30px;
  805. }
  806. #u20256 .text {
  807. position:absolute;
  808. align-self:flex-start;
  809. padding:0px 0px 0px 0px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u20256_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. }
  818. #u20257_div {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:82px;
  824. height:30px;
  825. background:inherit;
  826. background-color:rgba(255, 255, 255, 0);
  827. border:none;
  828. border-left:0px;
  829. border-top:0px;
  830. border-right:0px;
  831. border-radius:0px;
  832. border-bottom-right-radius:0px;
  833. border-bottom-left-radius:0px;
  834. -moz-box-shadow:none;
  835. -webkit-box-shadow:none;
  836. box-shadow:none;
  837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  838. font-weight:400;
  839. font-style:normal;
  840. font-size:14px;
  841. line-height:30px;
  842. }
  843. #u20257 {
  844. border-width:0px;
  845. position:absolute;
  846. left:528px;
  847. top:266px;
  848. width:82px;
  849. height:30px;
  850. display:flex;
  851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  852. font-weight:400;
  853. font-style:normal;
  854. font-size:14px;
  855. line-height:30px;
  856. }
  857. #u20257 .text {
  858. position:absolute;
  859. align-self:flex-start;
  860. padding:0px 0px 0px 0px;
  861. box-sizing:border-box;
  862. width:100%;
  863. }
  864. #u20257_text {
  865. border-width:0px;
  866. white-space:nowrap;
  867. text-transform:none;
  868. }
  869. #u20258_div {
  870. border-width:0px;
  871. position:absolute;
  872. left:0px;
  873. top:0px;
  874. width:80px;
  875. height:30px;
  876. background:inherit;
  877. background-color:rgba(255, 255, 255, 0);
  878. border:none;
  879. border-left:0px;
  880. border-top:0px;
  881. border-right:0px;
  882. border-radius:0px;
  883. border-bottom-right-radius:0px;
  884. border-bottom-left-radius:0px;
  885. -moz-box-shadow:none;
  886. -webkit-box-shadow:none;
  887. box-shadow:none;
  888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  889. font-weight:400;
  890. font-style:normal;
  891. font-size:14px;
  892. color:#7F7F7F;
  893. line-height:30px;
  894. }
  895. #u20258 {
  896. border-width:0px;
  897. position:absolute;
  898. left:135px;
  899. top:266px;
  900. width:80px;
  901. height:30px;
  902. display:flex;
  903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  904. font-weight:400;
  905. font-style:normal;
  906. font-size:14px;
  907. color:#7F7F7F;
  908. line-height:30px;
  909. }
  910. #u20258 .text {
  911. position:absolute;
  912. align-self:flex-start;
  913. padding:0px 0px 0px 0px;
  914. box-sizing:border-box;
  915. width:100%;
  916. }
  917. #u20258_text {
  918. border-width:0px;
  919. word-wrap:break-word;
  920. text-transform:none;
  921. }
  922. #u20259_div {
  923. border-width:0px;
  924. position:absolute;
  925. left:0px;
  926. top:0px;
  927. width:29px;
  928. height:30px;
  929. background:inherit;
  930. background-color:rgba(255, 255, 255, 0);
  931. border:none;
  932. border-left:0px;
  933. border-top:0px;
  934. border-right:0px;
  935. border-radius:0px;
  936. border-bottom-right-radius:0px;
  937. border-bottom-left-radius:0px;
  938. -moz-box-shadow:none;
  939. -webkit-box-shadow:none;
  940. box-shadow:none;
  941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  942. font-weight:400;
  943. font-style:normal;
  944. font-size:14px;
  945. line-height:30px;
  946. }
  947. #u20259 {
  948. border-width:0px;
  949. position:absolute;
  950. left:215px;
  951. top:266px;
  952. width:29px;
  953. height:30px;
  954. display:flex;
  955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  956. font-weight:400;
  957. font-style:normal;
  958. font-size:14px;
  959. line-height:30px;
  960. }
  961. #u20259 .text {
  962. position:absolute;
  963. align-self:flex-start;
  964. padding:0px 0px 0px 0px;
  965. box-sizing:border-box;
  966. width:100%;
  967. }
  968. #u20259_text {
  969. border-width:0px;
  970. white-space:nowrap;
  971. text-transform:none;
  972. }
  973. #u20260_img {
  974. border-width:0px;
  975. position:absolute;
  976. left:0px;
  977. top:0px;
  978. width:100px;
  979. height:100px;
  980. }
  981. #u20260 {
  982. border-width:0px;
  983. position:absolute;
  984. left:215px;
  985. top:426px;
  986. width:100px;
  987. height:100px;
  988. display:flex;
  989. }
  990. #u20260 .text {
  991. position:absolute;
  992. align-self:center;
  993. padding:2px 2px 2px 2px;
  994. box-sizing:border-box;
  995. width:100%;
  996. }
  997. #u20260_text {
  998. border-width:0px;
  999. word-wrap:break-word;
  1000. text-transform:none;
  1001. visibility:hidden;
  1002. }
  1003. #u20261_div {
  1004. border-width:0px;
  1005. position:absolute;
  1006. left:0px;
  1007. top:0px;
  1008. width:80px;
  1009. height:30px;
  1010. background:inherit;
  1011. background-color:rgba(255, 255, 255, 0);
  1012. border:none;
  1013. border-left:0px;
  1014. border-top:0px;
  1015. border-right:0px;
  1016. border-radius:0px;
  1017. border-bottom-right-radius:0px;
  1018. border-bottom-left-radius:0px;
  1019. -moz-box-shadow:none;
  1020. -webkit-box-shadow:none;
  1021. box-shadow:none;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:14px;
  1026. color:#7F7F7F;
  1027. line-height:30px;
  1028. }
  1029. #u20261 {
  1030. border-width:0px;
  1031. position:absolute;
  1032. left:448px;
  1033. top:226px;
  1034. width:80px;
  1035. height:30px;
  1036. display:flex;
  1037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1038. font-weight:400;
  1039. font-style:normal;
  1040. font-size:14px;
  1041. color:#7F7F7F;
  1042. line-height:30px;
  1043. }
  1044. #u20261 .text {
  1045. position:absolute;
  1046. align-self:flex-start;
  1047. padding:0px 0px 0px 0px;
  1048. box-sizing:border-box;
  1049. width:100%;
  1050. }
  1051. #u20261_text {
  1052. border-width:0px;
  1053. word-wrap:break-word;
  1054. text-transform:none;
  1055. }
  1056. #u20262_div {
  1057. border-width:0px;
  1058. position:absolute;
  1059. left:0px;
  1060. top:0px;
  1061. width:173px;
  1062. height:30px;
  1063. background:inherit;
  1064. background-color:rgba(255, 255, 255, 0);
  1065. border:none;
  1066. border-left:0px;
  1067. border-top:0px;
  1068. border-right:0px;
  1069. border-radius:0px;
  1070. border-bottom-right-radius:0px;
  1071. border-bottom-left-radius:0px;
  1072. -moz-box-shadow:none;
  1073. -webkit-box-shadow:none;
  1074. box-shadow:none;
  1075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1076. font-weight:400;
  1077. font-style:normal;
  1078. font-size:14px;
  1079. line-height:30px;
  1080. }
  1081. #u20262 {
  1082. border-width:0px;
  1083. position:absolute;
  1084. left:528px;
  1085. top:226px;
  1086. width:173px;
  1087. height:30px;
  1088. display:flex;
  1089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1090. font-weight:400;
  1091. font-style:normal;
  1092. font-size:14px;
  1093. line-height:30px;
  1094. }
  1095. #u20262 .text {
  1096. position:absolute;
  1097. align-self:flex-start;
  1098. padding:0px 0px 0px 0px;
  1099. box-sizing:border-box;
  1100. width:100%;
  1101. }
  1102. #u20262_text {
  1103. border-width:0px;
  1104. white-space:nowrap;
  1105. text-transform:none;
  1106. }
  1107. #u20263 {
  1108. border-width:0px;
  1109. position:absolute;
  1110. left:0px;
  1111. top:0px;
  1112. width:0px;
  1113. height:0px;
  1114. }
  1115. #u20264_img {
  1116. border-width:0px;
  1117. position:absolute;
  1118. left:-5px;
  1119. top:-5px;
  1120. width:370px;
  1121. height:200px;
  1122. }
  1123. #u20264 {
  1124. border-width:0px;
  1125. position:absolute;
  1126. left:569px;
  1127. top:725px;
  1128. width:360px;
  1129. height:190px;
  1130. display:flex;
  1131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1132. font-weight:400;
  1133. font-style:normal;
  1134. font-size:12px;
  1135. color:#FFFFFF;
  1136. }
  1137. #u20264 .text {
  1138. position:absolute;
  1139. align-self:center;
  1140. padding:2px 2px 2px 2px;
  1141. box-sizing:border-box;
  1142. width:100%;
  1143. }
  1144. #u20264_text {
  1145. border-width:0px;
  1146. word-wrap:break-word;
  1147. text-transform:none;
  1148. visibility:hidden;
  1149. }
  1150. #u20265_div {
  1151. border-width:0px;
  1152. position:absolute;
  1153. left:0px;
  1154. top:0px;
  1155. width:37px;
  1156. height:25px;
  1157. background:inherit;
  1158. background-color:rgba(255, 255, 255, 0);
  1159. border:none;
  1160. border-radius:0px;
  1161. -moz-box-shadow:none;
  1162. -webkit-box-shadow:none;
  1163. box-shadow:none;
  1164. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1165. font-weight:500;
  1166. font-style:normal;
  1167. font-size:18px;
  1168. }
  1169. #u20265 {
  1170. border-width:0px;
  1171. position:absolute;
  1172. left:592px;
  1173. top:741px;
  1174. width:37px;
  1175. height:25px;
  1176. display:flex;
  1177. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1178. font-weight:500;
  1179. font-style:normal;
  1180. font-size:18px;
  1181. }
  1182. #u20265 .text {
  1183. position:absolute;
  1184. align-self:flex-start;
  1185. padding:0px 0px 0px 0px;
  1186. box-sizing:border-box;
  1187. width:100%;
  1188. }
  1189. #u20265_text {
  1190. border-width:0px;
  1191. white-space:nowrap;
  1192. text-transform:none;
  1193. }
  1194. #u20266_img {
  1195. border-width:0px;
  1196. position:absolute;
  1197. left:0px;
  1198. top:0px;
  1199. width:8px;
  1200. height:8px;
  1201. }
  1202. #u20266 {
  1203. border-width:0px;
  1204. position:absolute;
  1205. left:906px;
  1206. top:737px;
  1207. width:8px;
  1208. height:8px;
  1209. display:flex;
  1210. opacity:0.5;
  1211. }
  1212. #u20266 .text {
  1213. position:absolute;
  1214. align-self:center;
  1215. padding:2px 2px 2px 2px;
  1216. box-sizing:border-box;
  1217. width:100%;
  1218. }
  1219. #u20266_text {
  1220. border-width:0px;
  1221. word-wrap:break-word;
  1222. text-transform:none;
  1223. visibility:hidden;
  1224. }
  1225. #u20267_div {
  1226. border-width:0px;
  1227. position:absolute;
  1228. left:0px;
  1229. top:0px;
  1230. width:80px;
  1231. height:30px;
  1232. background:inherit;
  1233. background-color:rgba(51, 153, 255, 1);
  1234. border:none;
  1235. border-radius:4px;
  1236. -moz-box-shadow:none;
  1237. -webkit-box-shadow:none;
  1238. box-shadow:none;
  1239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1240. font-weight:400;
  1241. font-style:normal;
  1242. font-size:14px;
  1243. color:#FFFFFF;
  1244. }
  1245. #u20267 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:834px;
  1249. top:869px;
  1250. width:80px;
  1251. height:30px;
  1252. display:flex;
  1253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1254. font-weight:400;
  1255. font-style:normal;
  1256. font-size:14px;
  1257. color:#FFFFFF;
  1258. }
  1259. #u20267 .text {
  1260. position:absolute;
  1261. align-self:center;
  1262. padding:8px 0px 8px 0px;
  1263. box-sizing:border-box;
  1264. width:100%;
  1265. }
  1266. #u20267_text {
  1267. border-width:0px;
  1268. word-wrap:break-word;
  1269. text-transform:none;
  1270. }
  1271. #u20268 {
  1272. border-width:0px;
  1273. position:absolute;
  1274. left:0px;
  1275. top:0px;
  1276. width:0px;
  1277. height:0px;
  1278. }
  1279. #u20269_div {
  1280. border-width:0px;
  1281. position:absolute;
  1282. left:0px;
  1283. top:0px;
  1284. width:322px;
  1285. height:80px;
  1286. background:inherit;
  1287. background-color:rgba(255, 255, 255, 1);
  1288. box-sizing:border-box;
  1289. border-width:1px;
  1290. border-style:solid;
  1291. border-color:rgba(51, 153, 255, 1);
  1292. border-radius:2px;
  1293. -moz-box-shadow:none;
  1294. -webkit-box-shadow:none;
  1295. box-shadow:none;
  1296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1297. font-weight:400;
  1298. font-style:normal;
  1299. font-size:12px;
  1300. color:#FFFFFF;
  1301. text-align:left;
  1302. }
  1303. #u20269 {
  1304. border-width:0px;
  1305. position:absolute;
  1306. left:592px;
  1307. top:776px;
  1308. width:322px;
  1309. height:80px;
  1310. display:flex;
  1311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1312. font-weight:400;
  1313. font-style:normal;
  1314. font-size:12px;
  1315. color:#FFFFFF;
  1316. text-align:left;
  1317. }
  1318. #u20269 .text {
  1319. position:absolute;
  1320. align-self:center;
  1321. padding:8px 15px 8px 15px;
  1322. box-sizing:border-box;
  1323. width:100%;
  1324. }
  1325. #u20269_text {
  1326. border-width:0px;
  1327. word-wrap:break-word;
  1328. text-transform:none;
  1329. }
  1330. #u20270_div {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:0px;
  1334. top:0px;
  1335. width:99px;
  1336. height:20px;
  1337. background:inherit;
  1338. background-color:rgba(255, 255, 255, 0);
  1339. border:none;
  1340. border-radius:0px;
  1341. -moz-box-shadow:none;
  1342. -webkit-box-shadow:none;
  1343. box-shadow:none;
  1344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1345. font-weight:400;
  1346. font-style:normal;
  1347. color:#D7D7D7;
  1348. }
  1349. #u20270 {
  1350. border-width:0px;
  1351. position:absolute;
  1352. left:603px;
  1353. top:787px;
  1354. width:99px;
  1355. height:20px;
  1356. display:flex;
  1357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1358. font-weight:400;
  1359. font-style:normal;
  1360. color:#D7D7D7;
  1361. }
  1362. #u20270 .text {
  1363. position:absolute;
  1364. align-self:flex-start;
  1365. padding:0px 0px 0px 0px;
  1366. box-sizing:border-box;
  1367. width:100%;
  1368. }
  1369. #u20270_text {
  1370. border-width:0px;
  1371. white-space:nowrap;
  1372. text-transform:none;
  1373. }
  1374. #u20271_div {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:0px;
  1378. top:0px;
  1379. width:60px;
  1380. height:30px;
  1381. background:inherit;
  1382. background-color:rgba(255, 255, 255, 1);
  1383. box-sizing:border-box;
  1384. border-width:1px;
  1385. border-style:solid;
  1386. border-color:rgba(170, 170, 170, 1);
  1387. border-radius:4px;
  1388. -moz-box-shadow:none;
  1389. -webkit-box-shadow:none;
  1390. box-shadow:none;
  1391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1392. font-weight:400;
  1393. font-style:normal;
  1394. font-size:14px;
  1395. }
  1396. #u20271 {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:764px;
  1400. top:869px;
  1401. width:60px;
  1402. height:30px;
  1403. display:flex;
  1404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1405. font-weight:400;
  1406. font-style:normal;
  1407. font-size:14px;
  1408. }
  1409. #u20271 .text {
  1410. position:absolute;
  1411. align-self:center;
  1412. padding:2px 2px 2px 2px;
  1413. box-sizing:border-box;
  1414. width:100%;
  1415. }
  1416. #u20271_text {
  1417. border-width:0px;
  1418. word-wrap:break-word;
  1419. text-transform:none;
  1420. }
  1421. #u20272 {
  1422. border-width:0px;
  1423. position:absolute;
  1424. left:0px;
  1425. top:0px;
  1426. width:0px;
  1427. height:0px;
  1428. }
  1429. #u20273_img {
  1430. border-width:0px;
  1431. position:absolute;
  1432. left:-5px;
  1433. top:-5px;
  1434. width:370px;
  1435. height:200px;
  1436. }
  1437. #u20273 {
  1438. border-width:0px;
  1439. position:absolute;
  1440. left:569px;
  1441. top:925px;
  1442. width:360px;
  1443. height:190px;
  1444. display:flex;
  1445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1446. font-weight:400;
  1447. font-style:normal;
  1448. font-size:12px;
  1449. color:#FFFFFF;
  1450. }
  1451. #u20273 .text {
  1452. position:absolute;
  1453. align-self:center;
  1454. padding:2px 2px 2px 2px;
  1455. box-sizing:border-box;
  1456. width:100%;
  1457. }
  1458. #u20273_text {
  1459. border-width:0px;
  1460. word-wrap:break-word;
  1461. text-transform:none;
  1462. visibility:hidden;
  1463. }
  1464. #u20274_div {
  1465. border-width:0px;
  1466. position:absolute;
  1467. left:0px;
  1468. top:0px;
  1469. width:37px;
  1470. height:25px;
  1471. background:inherit;
  1472. background-color:rgba(255, 255, 255, 0);
  1473. border:none;
  1474. border-radius:0px;
  1475. -moz-box-shadow:none;
  1476. -webkit-box-shadow:none;
  1477. box-shadow:none;
  1478. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1479. font-weight:500;
  1480. font-style:normal;
  1481. font-size:18px;
  1482. }
  1483. #u20274 {
  1484. border-width:0px;
  1485. position:absolute;
  1486. left:592px;
  1487. top:941px;
  1488. width:37px;
  1489. height:25px;
  1490. display:flex;
  1491. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1492. font-weight:500;
  1493. font-style:normal;
  1494. font-size:18px;
  1495. }
  1496. #u20274 .text {
  1497. position:absolute;
  1498. align-self:flex-start;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u20274_text {
  1504. border-width:0px;
  1505. white-space:nowrap;
  1506. text-transform:none;
  1507. }
  1508. #u20275_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:8px;
  1514. height:8px;
  1515. }
  1516. #u20275 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:906px;
  1520. top:937px;
  1521. width:8px;
  1522. height:8px;
  1523. display:flex;
  1524. opacity:0.5;
  1525. }
  1526. #u20275 .text {
  1527. position:absolute;
  1528. align-self:center;
  1529. padding:2px 2px 2px 2px;
  1530. box-sizing:border-box;
  1531. width:100%;
  1532. }
  1533. #u20275_text {
  1534. border-width:0px;
  1535. word-wrap:break-word;
  1536. text-transform:none;
  1537. visibility:hidden;
  1538. }
  1539. #u20276_div {
  1540. border-width:0px;
  1541. position:absolute;
  1542. left:0px;
  1543. top:0px;
  1544. width:80px;
  1545. height:30px;
  1546. background:inherit;
  1547. background-color:rgba(51, 153, 255, 1);
  1548. border:none;
  1549. border-radius:4px;
  1550. -moz-box-shadow:none;
  1551. -webkit-box-shadow:none;
  1552. box-shadow:none;
  1553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1554. font-weight:400;
  1555. font-style:normal;
  1556. font-size:14px;
  1557. color:#FFFFFF;
  1558. }
  1559. #u20276 {
  1560. border-width:0px;
  1561. position:absolute;
  1562. left:834px;
  1563. top:1069px;
  1564. width:80px;
  1565. height:30px;
  1566. display:flex;
  1567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1568. font-weight:400;
  1569. font-style:normal;
  1570. font-size:14px;
  1571. color:#FFFFFF;
  1572. }
  1573. #u20276 .text {
  1574. position:absolute;
  1575. align-self:center;
  1576. padding:8px 0px 8px 0px;
  1577. box-sizing:border-box;
  1578. width:100%;
  1579. }
  1580. #u20276_text {
  1581. border-width:0px;
  1582. word-wrap:break-word;
  1583. text-transform:none;
  1584. }
  1585. #u20277 {
  1586. border-width:0px;
  1587. position:absolute;
  1588. left:0px;
  1589. top:0px;
  1590. width:0px;
  1591. height:0px;
  1592. }
  1593. #u20278_div {
  1594. border-width:0px;
  1595. position:absolute;
  1596. left:0px;
  1597. top:0px;
  1598. width:322px;
  1599. height:80px;
  1600. background:inherit;
  1601. background-color:rgba(255, 255, 255, 1);
  1602. box-sizing:border-box;
  1603. border-width:1px;
  1604. border-style:solid;
  1605. border-color:rgba(51, 153, 255, 1);
  1606. border-radius:2px;
  1607. -moz-box-shadow:none;
  1608. -webkit-box-shadow:none;
  1609. box-shadow:none;
  1610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1611. font-weight:400;
  1612. font-style:normal;
  1613. font-size:12px;
  1614. color:#FFFFFF;
  1615. text-align:left;
  1616. }
  1617. #u20278 {
  1618. border-width:0px;
  1619. position:absolute;
  1620. left:592px;
  1621. top:976px;
  1622. width:322px;
  1623. height:80px;
  1624. display:flex;
  1625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1626. font-weight:400;
  1627. font-style:normal;
  1628. font-size:12px;
  1629. color:#FFFFFF;
  1630. text-align:left;
  1631. }
  1632. #u20278 .text {
  1633. position:absolute;
  1634. align-self:center;
  1635. padding:8px 15px 8px 15px;
  1636. box-sizing:border-box;
  1637. width:100%;
  1638. }
  1639. #u20278_text {
  1640. border-width:0px;
  1641. word-wrap:break-word;
  1642. text-transform:none;
  1643. }
  1644. #u20279_div {
  1645. border-width:0px;
  1646. position:absolute;
  1647. left:0px;
  1648. top:0px;
  1649. width:99px;
  1650. height:20px;
  1651. background:inherit;
  1652. background-color:rgba(255, 255, 255, 0);
  1653. border:none;
  1654. border-radius:0px;
  1655. -moz-box-shadow:none;
  1656. -webkit-box-shadow:none;
  1657. box-shadow:none;
  1658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1659. font-weight:400;
  1660. font-style:normal;
  1661. color:#D7D7D7;
  1662. }
  1663. #u20279 {
  1664. border-width:0px;
  1665. position:absolute;
  1666. left:603px;
  1667. top:987px;
  1668. width:99px;
  1669. height:20px;
  1670. display:flex;
  1671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1672. font-weight:400;
  1673. font-style:normal;
  1674. color:#D7D7D7;
  1675. }
  1676. #u20279 .text {
  1677. position:absolute;
  1678. align-self:flex-start;
  1679. padding:0px 0px 0px 0px;
  1680. box-sizing:border-box;
  1681. width:100%;
  1682. }
  1683. #u20279_text {
  1684. border-width:0px;
  1685. white-space:nowrap;
  1686. text-transform:none;
  1687. }
  1688. #u20280_div {
  1689. border-width:0px;
  1690. position:absolute;
  1691. left:0px;
  1692. top:0px;
  1693. width:60px;
  1694. height:30px;
  1695. background:inherit;
  1696. background-color:rgba(255, 255, 255, 1);
  1697. box-sizing:border-box;
  1698. border-width:1px;
  1699. border-style:solid;
  1700. border-color:rgba(170, 170, 170, 1);
  1701. border-radius:4px;
  1702. -moz-box-shadow:none;
  1703. -webkit-box-shadow:none;
  1704. box-shadow:none;
  1705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1706. font-weight:400;
  1707. font-style:normal;
  1708. font-size:14px;
  1709. }
  1710. #u20280 {
  1711. border-width:0px;
  1712. position:absolute;
  1713. left:764px;
  1714. top:1069px;
  1715. width:60px;
  1716. height:30px;
  1717. display:flex;
  1718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1719. font-weight:400;
  1720. font-style:normal;
  1721. font-size:14px;
  1722. }
  1723. #u20280 .text {
  1724. position:absolute;
  1725. align-self:center;
  1726. padding:2px 2px 2px 2px;
  1727. box-sizing:border-box;
  1728. width:100%;
  1729. }
  1730. #u20280_text {
  1731. border-width:0px;
  1732. word-wrap:break-word;
  1733. text-transform:none;
  1734. }
  1735. #u20281_div {
  1736. border-width:0px;
  1737. position:absolute;
  1738. left:0px;
  1739. top:0px;
  1740. width:80px;
  1741. height:30px;
  1742. background:inherit;
  1743. background-color:rgba(255, 255, 255, 0);
  1744. border:none;
  1745. border-left:0px;
  1746. border-top:0px;
  1747. border-right:0px;
  1748. border-radius:0px;
  1749. border-bottom-right-radius:0px;
  1750. border-bottom-left-radius:0px;
  1751. -moz-box-shadow:none;
  1752. -webkit-box-shadow:none;
  1753. box-shadow:none;
  1754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1755. font-weight:400;
  1756. font-style:normal;
  1757. font-size:14px;
  1758. color:#7F7F7F;
  1759. line-height:30px;
  1760. }
  1761. #u20281 {
  1762. border-width:0px;
  1763. position:absolute;
  1764. left:135px;
  1765. top:186px;
  1766. width:80px;
  1767. height:30px;
  1768. display:flex;
  1769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1770. font-weight:400;
  1771. font-style:normal;
  1772. font-size:14px;
  1773. color:#7F7F7F;
  1774. line-height:30px;
  1775. }
  1776. #u20281 .text {
  1777. position:absolute;
  1778. align-self:flex-start;
  1779. padding:0px 0px 0px 0px;
  1780. box-sizing:border-box;
  1781. width:100%;
  1782. }
  1783. #u20281_text {
  1784. border-width:0px;
  1785. word-wrap:break-word;
  1786. text-transform:none;
  1787. }
  1788. #u20282_div {
  1789. border-width:0px;
  1790. position:absolute;
  1791. left:0px;
  1792. top:0px;
  1793. width:113px;
  1794. height:30px;
  1795. background:inherit;
  1796. background-color:rgba(255, 255, 255, 0);
  1797. border:none;
  1798. border-left:0px;
  1799. border-top:0px;
  1800. border-right:0px;
  1801. border-radius:0px;
  1802. border-bottom-right-radius:0px;
  1803. border-bottom-left-radius:0px;
  1804. -moz-box-shadow:none;
  1805. -webkit-box-shadow:none;
  1806. box-shadow:none;
  1807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1808. font-weight:400;
  1809. font-style:normal;
  1810. font-size:14px;
  1811. line-height:30px;
  1812. }
  1813. #u20282 {
  1814. border-width:0px;
  1815. position:absolute;
  1816. left:215px;
  1817. top:186px;
  1818. width:113px;
  1819. height:30px;
  1820. display:flex;
  1821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1822. font-weight:400;
  1823. font-style:normal;
  1824. font-size:14px;
  1825. line-height:30px;
  1826. }
  1827. #u20282 .text {
  1828. position:absolute;
  1829. align-self:flex-start;
  1830. padding:0px 0px 0px 0px;
  1831. box-sizing:border-box;
  1832. width:100%;
  1833. }
  1834. #u20282_text {
  1835. border-width:0px;
  1836. white-space:nowrap;
  1837. text-transform:none;
  1838. }
  1839. #u20283_div {
  1840. border-width:0px;
  1841. position:absolute;
  1842. left:0px;
  1843. top:0px;
  1844. width:80px;
  1845. height:30px;
  1846. background:inherit;
  1847. background-color:rgba(255, 255, 255, 0);
  1848. border:none;
  1849. border-left:0px;
  1850. border-top:0px;
  1851. border-right:0px;
  1852. border-radius:0px;
  1853. border-bottom-right-radius:0px;
  1854. border-bottom-left-radius:0px;
  1855. -moz-box-shadow:none;
  1856. -webkit-box-shadow:none;
  1857. box-shadow:none;
  1858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1859. font-weight:400;
  1860. font-style:normal;
  1861. font-size:14px;
  1862. color:#7F7F7F;
  1863. line-height:30px;
  1864. }
  1865. #u20283 {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:135px;
  1869. top:306px;
  1870. width:80px;
  1871. height:30px;
  1872. display:flex;
  1873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1874. font-weight:400;
  1875. font-style:normal;
  1876. font-size:14px;
  1877. color:#7F7F7F;
  1878. line-height:30px;
  1879. }
  1880. #u20283 .text {
  1881. position:absolute;
  1882. align-self:flex-start;
  1883. padding:0px 0px 0px 0px;
  1884. box-sizing:border-box;
  1885. width:100%;
  1886. }
  1887. #u20283_text {
  1888. border-width:0px;
  1889. word-wrap:break-word;
  1890. text-transform:none;
  1891. }
  1892. #u20284_div {
  1893. border-width:0px;
  1894. position:absolute;
  1895. left:0px;
  1896. top:0px;
  1897. width:138px;
  1898. height:30px;
  1899. background:inherit;
  1900. background-color:rgba(255, 255, 255, 0);
  1901. border:none;
  1902. border-left:0px;
  1903. border-top:0px;
  1904. border-right:0px;
  1905. border-radius:0px;
  1906. border-bottom-right-radius:0px;
  1907. border-bottom-left-radius:0px;
  1908. -moz-box-shadow:none;
  1909. -webkit-box-shadow:none;
  1910. box-shadow:none;
  1911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1912. font-weight:400;
  1913. font-style:normal;
  1914. font-size:14px;
  1915. line-height:30px;
  1916. }
  1917. #u20284 {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:215px;
  1921. top:306px;
  1922. width:138px;
  1923. height:30px;
  1924. display:flex;
  1925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1926. font-weight:400;
  1927. font-style:normal;
  1928. font-size:14px;
  1929. line-height:30px;
  1930. }
  1931. #u20284 .text {
  1932. position:absolute;
  1933. align-self:flex-start;
  1934. padding:0px 0px 0px 0px;
  1935. box-sizing:border-box;
  1936. width:100%;
  1937. }
  1938. #u20284_text {
  1939. border-width:0px;
  1940. white-space:nowrap;
  1941. text-transform:none;
  1942. }
  1943. #u20285_div {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:0px;
  1947. top:0px;
  1948. width:80px;
  1949. height:30px;
  1950. background:inherit;
  1951. background-color:rgba(255, 255, 255, 0);
  1952. border:none;
  1953. border-left:0px;
  1954. border-top:0px;
  1955. border-right:0px;
  1956. border-radius:0px;
  1957. border-bottom-right-radius:0px;
  1958. border-bottom-left-radius:0px;
  1959. -moz-box-shadow:none;
  1960. -webkit-box-shadow:none;
  1961. box-shadow:none;
  1962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1963. font-weight:400;
  1964. font-style:normal;
  1965. font-size:14px;
  1966. color:#7F7F7F;
  1967. line-height:30px;
  1968. }
  1969. #u20285 {
  1970. border-width:0px;
  1971. position:absolute;
  1972. left:135px;
  1973. top:356px;
  1974. width:80px;
  1975. height:30px;
  1976. display:flex;
  1977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1978. font-weight:400;
  1979. font-style:normal;
  1980. font-size:14px;
  1981. color:#7F7F7F;
  1982. line-height:30px;
  1983. }
  1984. #u20285 .text {
  1985. position:absolute;
  1986. align-self:flex-start;
  1987. padding:0px 0px 0px 0px;
  1988. box-sizing:border-box;
  1989. width:100%;
  1990. }
  1991. #u20285_text {
  1992. border-width:0px;
  1993. word-wrap:break-word;
  1994. text-transform:none;
  1995. }
  1996. #u20286_div {
  1997. border-width:0px;
  1998. position:absolute;
  1999. left:0px;
  2000. top:0px;
  2001. width:774px;
  2002. height:60px;
  2003. background:inherit;
  2004. background-color:rgba(255, 255, 255, 0);
  2005. border:none;
  2006. border-left:0px;
  2007. border-top:0px;
  2008. border-right:0px;
  2009. border-radius:0px;
  2010. border-bottom-right-radius:0px;
  2011. border-bottom-left-radius:0px;
  2012. -moz-box-shadow:none;
  2013. -webkit-box-shadow:none;
  2014. box-shadow:none;
  2015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2016. font-weight:400;
  2017. font-style:normal;
  2018. font-size:14px;
  2019. line-height:30px;
  2020. }
  2021. #u20286 {
  2022. border-width:0px;
  2023. position:absolute;
  2024. left:215px;
  2025. top:356px;
  2026. width:774px;
  2027. height:60px;
  2028. display:flex;
  2029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2030. font-weight:400;
  2031. font-style:normal;
  2032. font-size:14px;
  2033. line-height:30px;
  2034. }
  2035. #u20286 .text {
  2036. position:absolute;
  2037. align-self:flex-start;
  2038. padding:0px 0px 0px 0px;
  2039. box-sizing:border-box;
  2040. width:100%;
  2041. }
  2042. #u20286_text {
  2043. border-width:0px;
  2044. word-wrap:break-word;
  2045. text-transform:none;
  2046. }
  2047. #u20287_div {
  2048. border-width:0px;
  2049. position:absolute;
  2050. left:0px;
  2051. top:0px;
  2052. width:80px;
  2053. height:30px;
  2054. background:inherit;
  2055. background-color:rgba(255, 255, 255, 0);
  2056. border:none;
  2057. border-left:0px;
  2058. border-top:0px;
  2059. border-right:0px;
  2060. border-radius:0px;
  2061. border-bottom-right-radius:0px;
  2062. border-bottom-left-radius:0px;
  2063. -moz-box-shadow:none;
  2064. -webkit-box-shadow:none;
  2065. box-shadow:none;
  2066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2067. font-weight:400;
  2068. font-style:normal;
  2069. font-size:14px;
  2070. color:#7F7F7F;
  2071. line-height:30px;
  2072. }
  2073. #u20287 {
  2074. border-width:0px;
  2075. position:absolute;
  2076. left:135px;
  2077. top:426px;
  2078. width:80px;
  2079. height:30px;
  2080. display:flex;
  2081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2082. font-weight:400;
  2083. font-style:normal;
  2084. font-size:14px;
  2085. color:#7F7F7F;
  2086. line-height:30px;
  2087. }
  2088. #u20287 .text {
  2089. position:absolute;
  2090. align-self:flex-start;
  2091. padding:0px 0px 0px 0px;
  2092. box-sizing:border-box;
  2093. width:100%;
  2094. }
  2095. #u20287_text {
  2096. border-width:0px;
  2097. word-wrap:break-word;
  2098. text-transform:none;
  2099. }
  2100. #u20288_img {
  2101. border-width:0px;
  2102. position:absolute;
  2103. left:0px;
  2104. top:0px;
  2105. width:100px;
  2106. height:100px;
  2107. }
  2108. #u20288 {
  2109. border-width:0px;
  2110. position:absolute;
  2111. left:325px;
  2112. top:426px;
  2113. width:100px;
  2114. height:100px;
  2115. display:flex;
  2116. }
  2117. #u20288 .text {
  2118. position:absolute;
  2119. align-self:center;
  2120. padding:2px 2px 2px 2px;
  2121. box-sizing:border-box;
  2122. width:100%;
  2123. }
  2124. #u20288_text {
  2125. border-width:0px;
  2126. word-wrap:break-word;
  2127. text-transform:none;
  2128. visibility:hidden;
  2129. }
  2130. #u20289_img {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:0px;
  2134. top:0px;
  2135. width:100px;
  2136. height:100px;
  2137. }
  2138. #u20289 {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:435px;
  2142. top:426px;
  2143. width:100px;
  2144. height:100px;
  2145. display:flex;
  2146. }
  2147. #u20289 .text {
  2148. position:absolute;
  2149. align-self:center;
  2150. padding:2px 2px 2px 2px;
  2151. box-sizing:border-box;
  2152. width:100%;
  2153. }
  2154. #u20289_text {
  2155. border-width:0px;
  2156. word-wrap:break-word;
  2157. text-transform:none;
  2158. visibility:hidden;
  2159. }
  2160. #u20290_img {
  2161. border-width:0px;
  2162. position:absolute;
  2163. left:0px;
  2164. top:0px;
  2165. width:100px;
  2166. height:100px;
  2167. }
  2168. #u20290 {
  2169. border-width:0px;
  2170. position:absolute;
  2171. left:545px;
  2172. top:426px;
  2173. width:100px;
  2174. height:100px;
  2175. display:flex;
  2176. }
  2177. #u20290 .text {
  2178. position:absolute;
  2179. align-self:center;
  2180. padding:2px 2px 2px 2px;
  2181. box-sizing:border-box;
  2182. width:100%;
  2183. }
  2184. #u20290_text {
  2185. border-width:0px;
  2186. word-wrap:break-word;
  2187. text-transform:none;
  2188. visibility:hidden;
  2189. }
  2190. #u20291 {
  2191. border-width:0px;
  2192. position:absolute;
  2193. left:0px;
  2194. top:0px;
  2195. width:0px;
  2196. height:0px;
  2197. }
  2198. #u20292_div {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:0px;
  2202. top:0px;
  2203. width:1000px;
  2204. height:1200px;
  2205. background:inherit;
  2206. background-color:rgba(242, 242, 242, 1);
  2207. box-sizing:border-box;
  2208. border-width:1px;
  2209. border-style:solid;
  2210. border-color:rgba(215, 215, 215, 1);
  2211. border-radius:0px;
  2212. -moz-box-shadow:none;
  2213. -webkit-box-shadow:none;
  2214. box-shadow:none;
  2215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2216. font-weight:400;
  2217. font-style:normal;
  2218. font-size:14px;
  2219. color:#AAAAAA;
  2220. text-align:center;
  2221. line-height:30px;
  2222. }
  2223. #u20292 {
  2224. border-width:0px;
  2225. position:absolute;
  2226. left:1147px;
  2227. top:49px;
  2228. width:1000px;
  2229. height:1200px;
  2230. display:flex;
  2231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2232. font-weight:400;
  2233. font-style:normal;
  2234. font-size:14px;
  2235. color:#AAAAAA;
  2236. text-align:center;
  2237. line-height:30px;
  2238. }
  2239. #u20292 .text {
  2240. position:absolute;
  2241. align-self:center;
  2242. padding:5px 10px 5px 10px;
  2243. box-sizing:border-box;
  2244. width:100%;
  2245. }
  2246. #u20292_text {
  2247. border-width:0px;
  2248. word-wrap:break-word;
  2249. text-transform:none;
  2250. visibility:hidden;
  2251. }
  2252. #u20293_div {
  2253. border-width:0px;
  2254. position:absolute;
  2255. left:0px;
  2256. top:0px;
  2257. width:1000px;
  2258. height:521px;
  2259. background:inherit;
  2260. background-color:rgba(255, 255, 255, 1);
  2261. box-sizing:border-box;
  2262. border-width:1px;
  2263. border-style:solid;
  2264. border-color:rgba(215, 215, 215, 1);
  2265. border-radius:0px;
  2266. -moz-box-shadow:none;
  2267. -webkit-box-shadow:none;
  2268. box-shadow:none;
  2269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2270. font-weight:400;
  2271. font-style:normal;
  2272. font-size:14px;
  2273. color:#AAAAAA;
  2274. text-align:center;
  2275. line-height:30px;
  2276. }
  2277. #u20293 {
  2278. border-width:0px;
  2279. position:absolute;
  2280. left:1147px;
  2281. top:49px;
  2282. width:1000px;
  2283. height:521px;
  2284. display:flex;
  2285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2286. font-weight:400;
  2287. font-style:normal;
  2288. font-size:14px;
  2289. color:#AAAAAA;
  2290. text-align:center;
  2291. line-height:30px;
  2292. }
  2293. #u20293 .text {
  2294. position:absolute;
  2295. align-self:center;
  2296. padding:5px 10px 5px 10px;
  2297. box-sizing:border-box;
  2298. width:100%;
  2299. }
  2300. #u20293_text {
  2301. border-width:0px;
  2302. word-wrap:break-word;
  2303. text-transform:none;
  2304. visibility:hidden;
  2305. }
  2306. #u20294_div {
  2307. border-width:0px;
  2308. position:absolute;
  2309. left:0px;
  2310. top:0px;
  2311. width:83px;
  2312. height:35px;
  2313. background:inherit;
  2314. background-color:rgba(255, 255, 255, 0);
  2315. border:none;
  2316. border-top:0px;
  2317. border-right:0px;
  2318. border-bottom:0px;
  2319. border-radius:0px;
  2320. border-top-left-radius:0px;
  2321. border-bottom-left-radius:0px;
  2322. -moz-box-shadow:none;
  2323. -webkit-box-shadow:none;
  2324. box-shadow:none;
  2325. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2326. font-weight:500;
  2327. font-style:normal;
  2328. font-size:18px;
  2329. }
  2330. #u20294 {
  2331. border-width:0px;
  2332. position:absolute;
  2333. left:1167px;
  2334. top:67px;
  2335. width:83px;
  2336. height:35px;
  2337. display:flex;
  2338. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2339. font-weight:500;
  2340. font-style:normal;
  2341. font-size:18px;
  2342. }
  2343. #u20294 .text {
  2344. position:absolute;
  2345. align-self:center;
  2346. padding:5px 10px 5px 0px;
  2347. box-sizing:border-box;
  2348. width:100%;
  2349. }
  2350. #u20294_text {
  2351. border-width:0px;
  2352. white-space:nowrap;
  2353. text-transform:none;
  2354. }
  2355. #u20295 {
  2356. border-width:0px;
  2357. position:absolute;
  2358. left:0px;
  2359. top:0px;
  2360. width:0px;
  2361. height:0px;
  2362. }
  2363. #u20296_div {
  2364. border-width:0px;
  2365. position:absolute;
  2366. left:0px;
  2367. top:0px;
  2368. width:40px;
  2369. height:40px;
  2370. background:inherit;
  2371. background-color:rgba(255, 255, 255, 0);
  2372. border:none;
  2373. border-top:0px;
  2374. border-right:0px;
  2375. border-bottom:0px;
  2376. border-radius:0px;
  2377. border-top-left-radius:0px;
  2378. border-bottom-left-radius:0px;
  2379. -moz-box-shadow:none;
  2380. -webkit-box-shadow:none;
  2381. box-shadow:none;
  2382. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2383. font-weight:500;
  2384. font-style:normal;
  2385. font-size:14px;
  2386. text-align:center;
  2387. }
  2388. #u20296 {
  2389. border-width:0px;
  2390. position:absolute;
  2391. left:2107px;
  2392. top:49px;
  2393. width:40px;
  2394. height:40px;
  2395. display:flex;
  2396. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2397. font-weight:500;
  2398. font-style:normal;
  2399. font-size:14px;
  2400. text-align:center;
  2401. }
  2402. #u20296 .text {
  2403. position:absolute;
  2404. align-self:center;
  2405. padding:5px 10px 5px 0px;
  2406. box-sizing:border-box;
  2407. width:100%;
  2408. }
  2409. #u20296_text {
  2410. border-width:0px;
  2411. word-wrap:break-word;
  2412. text-transform:none;
  2413. }
  2414. #u20297_img {
  2415. border-width:0px;
  2416. position:absolute;
  2417. left:0px;
  2418. top:0px;
  2419. width:13px;
  2420. height:13px;
  2421. }
  2422. #u20297 {
  2423. border-width:0px;
  2424. position:absolute;
  2425. left:2095px;
  2426. top:65px;
  2427. width:13px;
  2428. height:13px;
  2429. display:flex;
  2430. font-size:14px;
  2431. }
  2432. #u20297 .text {
  2433. position:absolute;
  2434. align-self:center;
  2435. padding:2px 2px 2px 2px;
  2436. box-sizing:border-box;
  2437. width:100%;
  2438. }
  2439. #u20297_text {
  2440. border-width:0px;
  2441. word-wrap:break-word;
  2442. text-transform:none;
  2443. visibility:hidden;
  2444. }
  2445. #u20298_div {
  2446. border-width:0px;
  2447. position:absolute;
  2448. left:0px;
  2449. top:0px;
  2450. width:396px;
  2451. height:43px;
  2452. background:inherit;
  2453. background-color:rgba(255, 255, 255, 0);
  2454. border:none;
  2455. border-top:0px;
  2456. border-right:0px;
  2457. border-bottom:0px;
  2458. border-radius:0px;
  2459. border-top-left-radius:0px;
  2460. border-bottom-left-radius:0px;
  2461. -moz-box-shadow:none;
  2462. -webkit-box-shadow:none;
  2463. box-shadow:none;
  2464. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2465. font-weight:500;
  2466. font-style:normal;
  2467. font-size:24px;
  2468. }
  2469. #u20298 {
  2470. border-width:0px;
  2471. position:absolute;
  2472. left:1177px;
  2473. top:118px;
  2474. width:396px;
  2475. height:43px;
  2476. display:flex;
  2477. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2478. font-weight:500;
  2479. font-style:normal;
  2480. font-size:24px;
  2481. }
  2482. #u20298 .text {
  2483. position:absolute;
  2484. align-self:center;
  2485. padding:5px 10px 5px 0px;
  2486. box-sizing:border-box;
  2487. width:100%;
  2488. }
  2489. #u20298_text {
  2490. border-width:0px;
  2491. white-space:nowrap;
  2492. text-transform:none;
  2493. }
  2494. #u20299_img {
  2495. border-width:0px;
  2496. position:absolute;
  2497. left:0px;
  2498. top:0px;
  2499. width:108px;
  2500. height:108px;
  2501. }
  2502. #u20299 {
  2503. border-width:0px;
  2504. position:absolute;
  2505. left:1997px;
  2506. top:119px;
  2507. width:108px;
  2508. height:108px;
  2509. display:flex;
  2510. -webkit-transform:rotate(315deg);
  2511. -moz-transform:rotate(315deg);
  2512. -ms-transform:rotate(315deg);
  2513. transform:rotate(315deg);
  2514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2515. font-weight:400;
  2516. font-style:normal;
  2517. font-size:28px;
  2518. color:#00BFBF;
  2519. }
  2520. #u20299 .text {
  2521. position:absolute;
  2522. align-self:center;
  2523. padding:2px 2px 2px 2px;
  2524. box-sizing:border-box;
  2525. width:100%;
  2526. }
  2527. #u20299_text {
  2528. border-width:0px;
  2529. word-wrap:break-word;
  2530. text-transform:none;
  2531. }
  2532. #u20300 {
  2533. border-width:0px;
  2534. position:absolute;
  2535. left:0px;
  2536. top:0px;
  2537. width:0px;
  2538. height:0px;
  2539. }
  2540. #u20301_div {
  2541. border-width:0px;
  2542. position:absolute;
  2543. left:0px;
  2544. top:0px;
  2545. width:1000px;
  2546. height:60px;
  2547. background:inherit;
  2548. background-color:rgba(255, 255, 255, 1);
  2549. box-sizing:border-box;
  2550. border-width:1px;
  2551. border-style:solid;
  2552. border-color:rgba(215, 215, 215, 1);
  2553. border-radius:0px;
  2554. -moz-box-shadow:none;
  2555. -webkit-box-shadow:none;
  2556. box-shadow:none;
  2557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2558. font-weight:400;
  2559. font-style:normal;
  2560. font-size:14px;
  2561. color:#AAAAAA;
  2562. text-align:center;
  2563. line-height:30px;
  2564. }
  2565. #u20301 {
  2566. border-width:0px;
  2567. position:absolute;
  2568. left:1147px;
  2569. top:1189px;
  2570. width:1000px;
  2571. height:60px;
  2572. display:flex;
  2573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2574. font-weight:400;
  2575. font-style:normal;
  2576. font-size:14px;
  2577. color:#AAAAAA;
  2578. text-align:center;
  2579. line-height:30px;
  2580. }
  2581. #u20301 .text {
  2582. position:absolute;
  2583. align-self:center;
  2584. padding:5px 10px 5px 10px;
  2585. box-sizing:border-box;
  2586. width:100%;
  2587. }
  2588. #u20301_text {
  2589. border-width:0px;
  2590. word-wrap:break-word;
  2591. text-transform:none;
  2592. visibility:hidden;
  2593. }
  2594. #u20302_div {
  2595. border-width:0px;
  2596. position:absolute;
  2597. left:0px;
  2598. top:0px;
  2599. width:80px;
  2600. height:30px;
  2601. background:inherit;
  2602. background-color:rgba(255, 255, 255, 1);
  2603. box-sizing:border-box;
  2604. border-width:1px;
  2605. border-style:solid;
  2606. border-color:rgba(170, 170, 170, 1);
  2607. border-radius:4px;
  2608. -moz-box-shadow:none;
  2609. -webkit-box-shadow:none;
  2610. box-shadow:none;
  2611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2612. font-weight:400;
  2613. font-style:normal;
  2614. font-size:14px;
  2615. }
  2616. #u20302 {
  2617. border-width:0px;
  2618. position:absolute;
  2619. left:2047px;
  2620. top:1204px;
  2621. width:80px;
  2622. height:30px;
  2623. display:flex;
  2624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2625. font-weight:400;
  2626. font-style:normal;
  2627. font-size:14px;
  2628. }
  2629. #u20302 .text {
  2630. position:absolute;
  2631. align-self:center;
  2632. padding:2px 2px 2px 2px;
  2633. box-sizing:border-box;
  2634. width:100%;
  2635. }
  2636. #u20302_text {
  2637. border-width:0px;
  2638. word-wrap:break-word;
  2639. text-transform:none;
  2640. }
  2641. #u20303_div {
  2642. border-width:0px;
  2643. position:absolute;
  2644. left:0px;
  2645. top:0px;
  2646. width:80px;
  2647. height:30px;
  2648. background:inherit;
  2649. background-color:rgba(255, 255, 255, 0);
  2650. border:none;
  2651. border-left:0px;
  2652. border-top:0px;
  2653. border-right:0px;
  2654. border-radius:0px;
  2655. border-bottom-right-radius:0px;
  2656. border-bottom-left-radius:0px;
  2657. -moz-box-shadow:none;
  2658. -webkit-box-shadow:none;
  2659. box-shadow:none;
  2660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2661. font-weight:400;
  2662. font-style:normal;
  2663. font-size:14px;
  2664. color:#7F7F7F;
  2665. line-height:30px;
  2666. }
  2667. #u20303 {
  2668. border-width:0px;
  2669. position:absolute;
  2670. left:1490px;
  2671. top:306px;
  2672. width:80px;
  2673. height:30px;
  2674. display:flex;
  2675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2676. font-weight:400;
  2677. font-style:normal;
  2678. font-size:14px;
  2679. color:#7F7F7F;
  2680. line-height:30px;
  2681. }
  2682. #u20303 .text {
  2683. position:absolute;
  2684. align-self:flex-start;
  2685. padding:0px 0px 0px 0px;
  2686. box-sizing:border-box;
  2687. width:100%;
  2688. }
  2689. #u20303_text {
  2690. border-width:0px;
  2691. word-wrap:break-word;
  2692. text-transform:none;
  2693. }
  2694. #u20304_div {
  2695. border-width:0px;
  2696. position:absolute;
  2697. left:0px;
  2698. top:0px;
  2699. width:113px;
  2700. height:30px;
  2701. background:inherit;
  2702. background-color:rgba(255, 255, 255, 0);
  2703. border:none;
  2704. border-left:0px;
  2705. border-top:0px;
  2706. border-right:0px;
  2707. border-radius:0px;
  2708. border-bottom-right-radius:0px;
  2709. border-bottom-left-radius:0px;
  2710. -moz-box-shadow:none;
  2711. -webkit-box-shadow:none;
  2712. box-shadow:none;
  2713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2714. font-weight:400;
  2715. font-style:normal;
  2716. font-size:14px;
  2717. line-height:30px;
  2718. }
  2719. #u20304 {
  2720. border-width:0px;
  2721. position:absolute;
  2722. left:1570px;
  2723. top:306px;
  2724. width:113px;
  2725. height:30px;
  2726. display:flex;
  2727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2728. font-weight:400;
  2729. font-style:normal;
  2730. font-size:14px;
  2731. line-height:30px;
  2732. }
  2733. #u20304 .text {
  2734. position:absolute;
  2735. align-self:flex-start;
  2736. padding:0px 0px 0px 0px;
  2737. box-sizing:border-box;
  2738. width:100%;
  2739. }
  2740. #u20304_text {
  2741. border-width:0px;
  2742. white-space:nowrap;
  2743. text-transform:none;
  2744. }
  2745. #u20305_div {
  2746. border-width:0px;
  2747. position:absolute;
  2748. left:0px;
  2749. top:0px;
  2750. width:80px;
  2751. height:30px;
  2752. background:inherit;
  2753. background-color:rgba(255, 255, 255, 0);
  2754. border:none;
  2755. border-left:0px;
  2756. border-top:0px;
  2757. border-right:0px;
  2758. border-radius:0px;
  2759. border-bottom-right-radius:0px;
  2760. border-bottom-left-radius:0px;
  2761. -moz-box-shadow:none;
  2762. -webkit-box-shadow:none;
  2763. box-shadow:none;
  2764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2765. font-weight:400;
  2766. font-style:normal;
  2767. font-size:14px;
  2768. color:#7F7F7F;
  2769. line-height:30px;
  2770. }
  2771. #u20305 {
  2772. border-width:0px;
  2773. position:absolute;
  2774. left:1177px;
  2775. top:226px;
  2776. width:80px;
  2777. height:30px;
  2778. display:flex;
  2779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2780. font-weight:400;
  2781. font-style:normal;
  2782. font-size:14px;
  2783. color:#7F7F7F;
  2784. line-height:30px;
  2785. }
  2786. #u20305 .text {
  2787. position:absolute;
  2788. align-self:flex-start;
  2789. padding:0px 0px 0px 0px;
  2790. box-sizing:border-box;
  2791. width:100%;
  2792. }
  2793. #u20305_text {
  2794. border-width:0px;
  2795. word-wrap:break-word;
  2796. text-transform:none;
  2797. }
  2798. #u20306_div {
  2799. border-width:0px;
  2800. position:absolute;
  2801. left:0px;
  2802. top:0px;
  2803. width:99px;
  2804. height:30px;
  2805. background:inherit;
  2806. background-color:rgba(255, 255, 255, 0);
  2807. border:none;
  2808. border-left:0px;
  2809. border-top:0px;
  2810. border-right:0px;
  2811. border-radius:0px;
  2812. border-bottom-right-radius:0px;
  2813. border-bottom-left-radius:0px;
  2814. -moz-box-shadow:none;
  2815. -webkit-box-shadow:none;
  2816. box-shadow:none;
  2817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2818. font-weight:400;
  2819. font-style:normal;
  2820. font-size:14px;
  2821. line-height:30px;
  2822. }
  2823. #u20306 {
  2824. border-width:0px;
  2825. position:absolute;
  2826. left:1257px;
  2827. top:226px;
  2828. width:99px;
  2829. height:30px;
  2830. display:flex;
  2831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2832. font-weight:400;
  2833. font-style:normal;
  2834. font-size:14px;
  2835. line-height:30px;
  2836. }
  2837. #u20306 .text {
  2838. position:absolute;
  2839. align-self:flex-start;
  2840. padding:0px 0px 0px 0px;
  2841. box-sizing:border-box;
  2842. width:100%;
  2843. }
  2844. #u20306_text {
  2845. border-width:0px;
  2846. white-space:nowrap;
  2847. text-transform:none;
  2848. }
  2849. #u20307_div {
  2850. border-width:0px;
  2851. position:absolute;
  2852. left:0px;
  2853. top:0px;
  2854. width:80px;
  2855. height:30px;
  2856. background:inherit;
  2857. background-color:rgba(255, 255, 255, 0);
  2858. border:none;
  2859. border-left:0px;
  2860. border-top:0px;
  2861. border-right:0px;
  2862. border-radius:0px;
  2863. border-bottom-right-radius:0px;
  2864. border-bottom-left-radius:0px;
  2865. -moz-box-shadow:none;
  2866. -webkit-box-shadow:none;
  2867. box-shadow:none;
  2868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2869. font-weight:400;
  2870. font-style:normal;
  2871. font-size:14px;
  2872. color:#7F7F7F;
  2873. line-height:30px;
  2874. }
  2875. #u20307 {
  2876. border-width:0px;
  2877. position:absolute;
  2878. left:1490px;
  2879. top:266px;
  2880. width:80px;
  2881. height:30px;
  2882. display:flex;
  2883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2884. font-weight:400;
  2885. font-style:normal;
  2886. font-size:14px;
  2887. color:#7F7F7F;
  2888. line-height:30px;
  2889. }
  2890. #u20307 .text {
  2891. position:absolute;
  2892. align-self:flex-start;
  2893. padding:0px 0px 0px 0px;
  2894. box-sizing:border-box;
  2895. width:100%;
  2896. }
  2897. #u20307_text {
  2898. border-width:0px;
  2899. word-wrap:break-word;
  2900. text-transform:none;
  2901. }
  2902. #u20308_div {
  2903. border-width:0px;
  2904. position:absolute;
  2905. left:0px;
  2906. top:0px;
  2907. width:82px;
  2908. height:30px;
  2909. background:inherit;
  2910. background-color:rgba(255, 255, 255, 0);
  2911. border:none;
  2912. border-left:0px;
  2913. border-top:0px;
  2914. border-right:0px;
  2915. border-radius:0px;
  2916. border-bottom-right-radius:0px;
  2917. border-bottom-left-radius:0px;
  2918. -moz-box-shadow:none;
  2919. -webkit-box-shadow:none;
  2920. box-shadow:none;
  2921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2922. font-weight:400;
  2923. font-style:normal;
  2924. font-size:14px;
  2925. line-height:30px;
  2926. }
  2927. #u20308 {
  2928. border-width:0px;
  2929. position:absolute;
  2930. left:1570px;
  2931. top:266px;
  2932. width:82px;
  2933. height:30px;
  2934. display:flex;
  2935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2936. font-weight:400;
  2937. font-style:normal;
  2938. font-size:14px;
  2939. line-height:30px;
  2940. }
  2941. #u20308 .text {
  2942. position:absolute;
  2943. align-self:flex-start;
  2944. padding:0px 0px 0px 0px;
  2945. box-sizing:border-box;
  2946. width:100%;
  2947. }
  2948. #u20308_text {
  2949. border-width:0px;
  2950. white-space:nowrap;
  2951. text-transform:none;
  2952. }
  2953. #u20309_div {
  2954. border-width:0px;
  2955. position:absolute;
  2956. left:0px;
  2957. top:0px;
  2958. width:80px;
  2959. height:30px;
  2960. background:inherit;
  2961. background-color:rgba(255, 255, 255, 0);
  2962. border:none;
  2963. border-left:0px;
  2964. border-top:0px;
  2965. border-right:0px;
  2966. border-radius:0px;
  2967. border-bottom-right-radius:0px;
  2968. border-bottom-left-radius:0px;
  2969. -moz-box-shadow:none;
  2970. -webkit-box-shadow:none;
  2971. box-shadow:none;
  2972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2973. font-weight:400;
  2974. font-style:normal;
  2975. font-size:14px;
  2976. color:#7F7F7F;
  2977. line-height:30px;
  2978. }
  2979. #u20309 {
  2980. border-width:0px;
  2981. position:absolute;
  2982. left:1177px;
  2983. top:266px;
  2984. width:80px;
  2985. height:30px;
  2986. display:flex;
  2987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2988. font-weight:400;
  2989. font-style:normal;
  2990. font-size:14px;
  2991. color:#7F7F7F;
  2992. line-height:30px;
  2993. }
  2994. #u20309 .text {
  2995. position:absolute;
  2996. align-self:flex-start;
  2997. padding:0px 0px 0px 0px;
  2998. box-sizing:border-box;
  2999. width:100%;
  3000. }
  3001. #u20309_text {
  3002. border-width:0px;
  3003. word-wrap:break-word;
  3004. text-transform:none;
  3005. }
  3006. #u20310_div {
  3007. border-width:0px;
  3008. position:absolute;
  3009. left:0px;
  3010. top:0px;
  3011. width:29px;
  3012. height:30px;
  3013. background:inherit;
  3014. background-color:rgba(255, 255, 255, 0);
  3015. border:none;
  3016. border-left:0px;
  3017. border-top:0px;
  3018. border-right:0px;
  3019. border-radius:0px;
  3020. border-bottom-right-radius:0px;
  3021. border-bottom-left-radius:0px;
  3022. -moz-box-shadow:none;
  3023. -webkit-box-shadow:none;
  3024. box-shadow:none;
  3025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3026. font-weight:400;
  3027. font-style:normal;
  3028. font-size:14px;
  3029. line-height:30px;
  3030. }
  3031. #u20310 {
  3032. border-width:0px;
  3033. position:absolute;
  3034. left:1257px;
  3035. top:266px;
  3036. width:29px;
  3037. height:30px;
  3038. display:flex;
  3039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3040. font-weight:400;
  3041. font-style:normal;
  3042. font-size:14px;
  3043. line-height:30px;
  3044. }
  3045. #u20310 .text {
  3046. position:absolute;
  3047. align-self:flex-start;
  3048. padding:0px 0px 0px 0px;
  3049. box-sizing:border-box;
  3050. width:100%;
  3051. }
  3052. #u20310_text {
  3053. border-width:0px;
  3054. white-space:nowrap;
  3055. text-transform:none;
  3056. }
  3057. #u20311_img {
  3058. border-width:0px;
  3059. position:absolute;
  3060. left:0px;
  3061. top:0px;
  3062. width:100px;
  3063. height:100px;
  3064. }
  3065. #u20311 {
  3066. border-width:0px;
  3067. position:absolute;
  3068. left:1257px;
  3069. top:426px;
  3070. width:100px;
  3071. height:100px;
  3072. display:flex;
  3073. }
  3074. #u20311 .text {
  3075. position:absolute;
  3076. align-self:center;
  3077. padding:2px 2px 2px 2px;
  3078. box-sizing:border-box;
  3079. width:100%;
  3080. }
  3081. #u20311_text {
  3082. border-width:0px;
  3083. word-wrap:break-word;
  3084. text-transform:none;
  3085. visibility:hidden;
  3086. }
  3087. #u20312_div {
  3088. border-width:0px;
  3089. position:absolute;
  3090. left:0px;
  3091. top:0px;
  3092. width:80px;
  3093. height:30px;
  3094. background:inherit;
  3095. background-color:rgba(255, 255, 255, 0);
  3096. border:none;
  3097. border-left:0px;
  3098. border-top:0px;
  3099. border-right:0px;
  3100. border-radius:0px;
  3101. border-bottom-right-radius:0px;
  3102. border-bottom-left-radius:0px;
  3103. -moz-box-shadow:none;
  3104. -webkit-box-shadow:none;
  3105. box-shadow:none;
  3106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3107. font-weight:400;
  3108. font-style:normal;
  3109. font-size:14px;
  3110. color:#7F7F7F;
  3111. line-height:30px;
  3112. }
  3113. #u20312 {
  3114. border-width:0px;
  3115. position:absolute;
  3116. left:1490px;
  3117. top:226px;
  3118. width:80px;
  3119. height:30px;
  3120. display:flex;
  3121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3122. font-weight:400;
  3123. font-style:normal;
  3124. font-size:14px;
  3125. color:#7F7F7F;
  3126. line-height:30px;
  3127. }
  3128. #u20312 .text {
  3129. position:absolute;
  3130. align-self:flex-start;
  3131. padding:0px 0px 0px 0px;
  3132. box-sizing:border-box;
  3133. width:100%;
  3134. }
  3135. #u20312_text {
  3136. border-width:0px;
  3137. word-wrap:break-word;
  3138. text-transform:none;
  3139. }
  3140. #u20313_div {
  3141. border-width:0px;
  3142. position:absolute;
  3143. left:0px;
  3144. top:0px;
  3145. width:173px;
  3146. height:30px;
  3147. background:inherit;
  3148. background-color:rgba(255, 255, 255, 0);
  3149. border:none;
  3150. border-left:0px;
  3151. border-top:0px;
  3152. border-right:0px;
  3153. border-radius:0px;
  3154. border-bottom-right-radius:0px;
  3155. border-bottom-left-radius:0px;
  3156. -moz-box-shadow:none;
  3157. -webkit-box-shadow:none;
  3158. box-shadow:none;
  3159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3160. font-weight:400;
  3161. font-style:normal;
  3162. font-size:14px;
  3163. line-height:30px;
  3164. }
  3165. #u20313 {
  3166. border-width:0px;
  3167. position:absolute;
  3168. left:1570px;
  3169. top:226px;
  3170. width:173px;
  3171. height:30px;
  3172. display:flex;
  3173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3174. font-weight:400;
  3175. font-style:normal;
  3176. font-size:14px;
  3177. line-height:30px;
  3178. }
  3179. #u20313 .text {
  3180. position:absolute;
  3181. align-self:flex-start;
  3182. padding:0px 0px 0px 0px;
  3183. box-sizing:border-box;
  3184. width:100%;
  3185. }
  3186. #u20313_text {
  3187. border-width:0px;
  3188. white-space:nowrap;
  3189. text-transform:none;
  3190. }
  3191. #u20314_div {
  3192. border-width:0px;
  3193. position:absolute;
  3194. left:0px;
  3195. top:0px;
  3196. width:80px;
  3197. height:30px;
  3198. background:inherit;
  3199. background-color:rgba(255, 255, 255, 0);
  3200. border:none;
  3201. border-left:0px;
  3202. border-top:0px;
  3203. border-right:0px;
  3204. border-radius:0px;
  3205. border-bottom-right-radius:0px;
  3206. border-bottom-left-radius:0px;
  3207. -moz-box-shadow:none;
  3208. -webkit-box-shadow:none;
  3209. box-shadow:none;
  3210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3211. font-weight:400;
  3212. font-style:normal;
  3213. font-size:14px;
  3214. color:#7F7F7F;
  3215. line-height:30px;
  3216. }
  3217. #u20314 {
  3218. border-width:0px;
  3219. position:absolute;
  3220. left:1177px;
  3221. top:186px;
  3222. width:80px;
  3223. height:30px;
  3224. display:flex;
  3225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3226. font-weight:400;
  3227. font-style:normal;
  3228. font-size:14px;
  3229. color:#7F7F7F;
  3230. line-height:30px;
  3231. }
  3232. #u20314 .text {
  3233. position:absolute;
  3234. align-self:flex-start;
  3235. padding:0px 0px 0px 0px;
  3236. box-sizing:border-box;
  3237. width:100%;
  3238. }
  3239. #u20314_text {
  3240. border-width:0px;
  3241. word-wrap:break-word;
  3242. text-transform:none;
  3243. }
  3244. #u20315_div {
  3245. border-width:0px;
  3246. position:absolute;
  3247. left:0px;
  3248. top:0px;
  3249. width:113px;
  3250. height:30px;
  3251. background:inherit;
  3252. background-color:rgba(255, 255, 255, 0);
  3253. border:none;
  3254. border-left:0px;
  3255. border-top:0px;
  3256. border-right:0px;
  3257. border-radius:0px;
  3258. border-bottom-right-radius:0px;
  3259. border-bottom-left-radius:0px;
  3260. -moz-box-shadow:none;
  3261. -webkit-box-shadow:none;
  3262. box-shadow:none;
  3263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3264. font-weight:400;
  3265. font-style:normal;
  3266. font-size:14px;
  3267. line-height:30px;
  3268. }
  3269. #u20315 {
  3270. border-width:0px;
  3271. position:absolute;
  3272. left:1257px;
  3273. top:186px;
  3274. width:113px;
  3275. height:30px;
  3276. display:flex;
  3277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3278. font-weight:400;
  3279. font-style:normal;
  3280. font-size:14px;
  3281. line-height:30px;
  3282. }
  3283. #u20315 .text {
  3284. position:absolute;
  3285. align-self:flex-start;
  3286. padding:0px 0px 0px 0px;
  3287. box-sizing:border-box;
  3288. width:100%;
  3289. }
  3290. #u20315_text {
  3291. border-width:0px;
  3292. white-space:nowrap;
  3293. text-transform:none;
  3294. }
  3295. #u20316_div {
  3296. border-width:0px;
  3297. position:absolute;
  3298. left:0px;
  3299. top:0px;
  3300. width:80px;
  3301. height:30px;
  3302. background:inherit;
  3303. background-color:rgba(255, 255, 255, 0);
  3304. border:none;
  3305. border-left:0px;
  3306. border-top:0px;
  3307. border-right:0px;
  3308. border-radius:0px;
  3309. border-bottom-right-radius:0px;
  3310. border-bottom-left-radius:0px;
  3311. -moz-box-shadow:none;
  3312. -webkit-box-shadow:none;
  3313. box-shadow:none;
  3314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3315. font-weight:400;
  3316. font-style:normal;
  3317. font-size:14px;
  3318. color:#7F7F7F;
  3319. line-height:30px;
  3320. }
  3321. #u20316 {
  3322. border-width:0px;
  3323. position:absolute;
  3324. left:1177px;
  3325. top:306px;
  3326. width:80px;
  3327. height:30px;
  3328. display:flex;
  3329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3330. font-weight:400;
  3331. font-style:normal;
  3332. font-size:14px;
  3333. color:#7F7F7F;
  3334. line-height:30px;
  3335. }
  3336. #u20316 .text {
  3337. position:absolute;
  3338. align-self:flex-start;
  3339. padding:0px 0px 0px 0px;
  3340. box-sizing:border-box;
  3341. width:100%;
  3342. }
  3343. #u20316_text {
  3344. border-width:0px;
  3345. word-wrap:break-word;
  3346. text-transform:none;
  3347. }
  3348. #u20317_div {
  3349. border-width:0px;
  3350. position:absolute;
  3351. left:0px;
  3352. top:0px;
  3353. width:138px;
  3354. height:30px;
  3355. background:inherit;
  3356. background-color:rgba(255, 255, 255, 0);
  3357. border:none;
  3358. border-left:0px;
  3359. border-top:0px;
  3360. border-right:0px;
  3361. border-radius:0px;
  3362. border-bottom-right-radius:0px;
  3363. border-bottom-left-radius:0px;
  3364. -moz-box-shadow:none;
  3365. -webkit-box-shadow:none;
  3366. box-shadow:none;
  3367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3368. font-weight:400;
  3369. font-style:normal;
  3370. font-size:14px;
  3371. line-height:30px;
  3372. }
  3373. #u20317 {
  3374. border-width:0px;
  3375. position:absolute;
  3376. left:1257px;
  3377. top:306px;
  3378. width:138px;
  3379. height:30px;
  3380. display:flex;
  3381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3382. font-weight:400;
  3383. font-style:normal;
  3384. font-size:14px;
  3385. line-height:30px;
  3386. }
  3387. #u20317 .text {
  3388. position:absolute;
  3389. align-self:flex-start;
  3390. padding:0px 0px 0px 0px;
  3391. box-sizing:border-box;
  3392. width:100%;
  3393. }
  3394. #u20317_text {
  3395. border-width:0px;
  3396. white-space:nowrap;
  3397. text-transform:none;
  3398. }
  3399. #u20318_div {
  3400. border-width:0px;
  3401. position:absolute;
  3402. left:0px;
  3403. top:0px;
  3404. width:80px;
  3405. height:30px;
  3406. background:inherit;
  3407. background-color:rgba(255, 255, 255, 0);
  3408. border:none;
  3409. border-left:0px;
  3410. border-top:0px;
  3411. border-right:0px;
  3412. border-radius:0px;
  3413. border-bottom-right-radius:0px;
  3414. border-bottom-left-radius:0px;
  3415. -moz-box-shadow:none;
  3416. -webkit-box-shadow:none;
  3417. box-shadow:none;
  3418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3419. font-weight:400;
  3420. font-style:normal;
  3421. font-size:14px;
  3422. color:#7F7F7F;
  3423. line-height:30px;
  3424. }
  3425. #u20318 {
  3426. border-width:0px;
  3427. position:absolute;
  3428. left:1177px;
  3429. top:356px;
  3430. width:80px;
  3431. height:30px;
  3432. display:flex;
  3433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3434. font-weight:400;
  3435. font-style:normal;
  3436. font-size:14px;
  3437. color:#7F7F7F;
  3438. line-height:30px;
  3439. }
  3440. #u20318 .text {
  3441. position:absolute;
  3442. align-self:flex-start;
  3443. padding:0px 0px 0px 0px;
  3444. box-sizing:border-box;
  3445. width:100%;
  3446. }
  3447. #u20318_text {
  3448. border-width:0px;
  3449. word-wrap:break-word;
  3450. text-transform:none;
  3451. }
  3452. #u20319_div {
  3453. border-width:0px;
  3454. position:absolute;
  3455. left:0px;
  3456. top:0px;
  3457. width:774px;
  3458. height:60px;
  3459. background:inherit;
  3460. background-color:rgba(255, 255, 255, 0);
  3461. border:none;
  3462. border-left:0px;
  3463. border-top:0px;
  3464. border-right:0px;
  3465. border-radius:0px;
  3466. border-bottom-right-radius:0px;
  3467. border-bottom-left-radius:0px;
  3468. -moz-box-shadow:none;
  3469. -webkit-box-shadow:none;
  3470. box-shadow:none;
  3471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3472. font-weight:400;
  3473. font-style:normal;
  3474. font-size:14px;
  3475. line-height:30px;
  3476. }
  3477. #u20319 {
  3478. border-width:0px;
  3479. position:absolute;
  3480. left:1257px;
  3481. top:356px;
  3482. width:774px;
  3483. height:60px;
  3484. display:flex;
  3485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3486. font-weight:400;
  3487. font-style:normal;
  3488. font-size:14px;
  3489. line-height:30px;
  3490. }
  3491. #u20319 .text {
  3492. position:absolute;
  3493. align-self:flex-start;
  3494. padding:0px 0px 0px 0px;
  3495. box-sizing:border-box;
  3496. width:100%;
  3497. }
  3498. #u20319_text {
  3499. border-width:0px;
  3500. word-wrap:break-word;
  3501. text-transform:none;
  3502. }
  3503. #u20320_div {
  3504. border-width:0px;
  3505. position:absolute;
  3506. left:0px;
  3507. top:0px;
  3508. width:80px;
  3509. height:30px;
  3510. background:inherit;
  3511. background-color:rgba(255, 255, 255, 0);
  3512. border:none;
  3513. border-left:0px;
  3514. border-top:0px;
  3515. border-right:0px;
  3516. border-radius:0px;
  3517. border-bottom-right-radius:0px;
  3518. border-bottom-left-radius:0px;
  3519. -moz-box-shadow:none;
  3520. -webkit-box-shadow:none;
  3521. box-shadow:none;
  3522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3523. font-weight:400;
  3524. font-style:normal;
  3525. font-size:14px;
  3526. color:#7F7F7F;
  3527. line-height:30px;
  3528. }
  3529. #u20320 {
  3530. border-width:0px;
  3531. position:absolute;
  3532. left:1177px;
  3533. top:426px;
  3534. width:80px;
  3535. height:30px;
  3536. display:flex;
  3537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3538. font-weight:400;
  3539. font-style:normal;
  3540. font-size:14px;
  3541. color:#7F7F7F;
  3542. line-height:30px;
  3543. }
  3544. #u20320 .text {
  3545. position:absolute;
  3546. align-self:flex-start;
  3547. padding:0px 0px 0px 0px;
  3548. box-sizing:border-box;
  3549. width:100%;
  3550. }
  3551. #u20320_text {
  3552. border-width:0px;
  3553. word-wrap:break-word;
  3554. text-transform:none;
  3555. }
  3556. #u20321_img {
  3557. border-width:0px;
  3558. position:absolute;
  3559. left:0px;
  3560. top:0px;
  3561. width:100px;
  3562. height:100px;
  3563. }
  3564. #u20321 {
  3565. border-width:0px;
  3566. position:absolute;
  3567. left:1367px;
  3568. top:426px;
  3569. width:100px;
  3570. height:100px;
  3571. display:flex;
  3572. }
  3573. #u20321 .text {
  3574. position:absolute;
  3575. align-self:center;
  3576. padding:2px 2px 2px 2px;
  3577. box-sizing:border-box;
  3578. width:100%;
  3579. }
  3580. #u20321_text {
  3581. border-width:0px;
  3582. word-wrap:break-word;
  3583. text-transform:none;
  3584. visibility:hidden;
  3585. }
  3586. #u20322_img {
  3587. border-width:0px;
  3588. position:absolute;
  3589. left:0px;
  3590. top:0px;
  3591. width:100px;
  3592. height:100px;
  3593. }
  3594. #u20322 {
  3595. border-width:0px;
  3596. position:absolute;
  3597. left:1477px;
  3598. top:426px;
  3599. width:100px;
  3600. height:100px;
  3601. display:flex;
  3602. }
  3603. #u20322 .text {
  3604. position:absolute;
  3605. align-self:center;
  3606. padding:2px 2px 2px 2px;
  3607. box-sizing:border-box;
  3608. width:100%;
  3609. }
  3610. #u20322_text {
  3611. border-width:0px;
  3612. word-wrap:break-word;
  3613. text-transform:none;
  3614. visibility:hidden;
  3615. }
  3616. #u20323_img {
  3617. border-width:0px;
  3618. position:absolute;
  3619. left:0px;
  3620. top:0px;
  3621. width:100px;
  3622. height:100px;
  3623. }
  3624. #u20323 {
  3625. border-width:0px;
  3626. position:absolute;
  3627. left:1587px;
  3628. top:426px;
  3629. width:100px;
  3630. height:100px;
  3631. display:flex;
  3632. }
  3633. #u20323 .text {
  3634. position:absolute;
  3635. align-self:center;
  3636. padding:2px 2px 2px 2px;
  3637. box-sizing:border-box;
  3638. width:100%;
  3639. }
  3640. #u20323_text {
  3641. border-width:0px;
  3642. word-wrap:break-word;
  3643. text-transform:none;
  3644. visibility:hidden;
  3645. }
  3646. #u20324_div {
  3647. border-width:0px;
  3648. position:absolute;
  3649. left:0px;
  3650. top:0px;
  3651. width:1000px;
  3652. height:609px;
  3653. background:inherit;
  3654. background-color:rgba(255, 255, 255, 1);
  3655. box-sizing:border-box;
  3656. border-width:1px;
  3657. border-style:solid;
  3658. border-color:rgba(215, 215, 215, 1);
  3659. border-radius:0px;
  3660. -moz-box-shadow:none;
  3661. -webkit-box-shadow:none;
  3662. box-shadow:none;
  3663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3664. font-weight:400;
  3665. font-style:normal;
  3666. font-size:14px;
  3667. color:#AAAAAA;
  3668. text-align:center;
  3669. line-height:30px;
  3670. }
  3671. #u20324 {
  3672. border-width:0px;
  3673. position:absolute;
  3674. left:1147px;
  3675. top:580px;
  3676. width:1000px;
  3677. height:609px;
  3678. display:flex;
  3679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3680. font-weight:400;
  3681. font-style:normal;
  3682. font-size:14px;
  3683. color:#AAAAAA;
  3684. text-align:center;
  3685. line-height:30px;
  3686. }
  3687. #u20324 .text {
  3688. position:absolute;
  3689. align-self:center;
  3690. padding:5px 10px 5px 10px;
  3691. box-sizing:border-box;
  3692. width:100%;
  3693. }
  3694. #u20324_text {
  3695. border-width:0px;
  3696. word-wrap:break-word;
  3697. text-transform:none;
  3698. visibility:hidden;
  3699. }
  3700. #u20325_div {
  3701. border-width:0px;
  3702. position:absolute;
  3703. left:0px;
  3704. top:0px;
  3705. width:107px;
  3706. height:43px;
  3707. background:inherit;
  3708. background-color:rgba(255, 255, 255, 0);
  3709. border:none;
  3710. border-top:0px;
  3711. border-right:0px;
  3712. border-bottom:0px;
  3713. border-radius:0px;
  3714. border-top-left-radius:0px;
  3715. border-bottom-left-radius:0px;
  3716. -moz-box-shadow:none;
  3717. -webkit-box-shadow:none;
  3718. box-shadow:none;
  3719. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3720. font-weight:500;
  3721. font-style:normal;
  3722. font-size:24px;
  3723. }
  3724. #u20325 {
  3725. border-width:0px;
  3726. position:absolute;
  3727. left:1177px;
  3728. top:606px;
  3729. width:107px;
  3730. height:43px;
  3731. display:flex;
  3732. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3733. font-weight:500;
  3734. font-style:normal;
  3735. font-size:24px;
  3736. }
  3737. #u20325 .text {
  3738. position:absolute;
  3739. align-self:center;
  3740. padding:5px 10px 5px 0px;
  3741. box-sizing:border-box;
  3742. width:100%;
  3743. }
  3744. #u20325_text {
  3745. border-width:0px;
  3746. white-space:nowrap;
  3747. text-transform:none;
  3748. }
  3749. #u20326_div {
  3750. border-width:0px;
  3751. position:absolute;
  3752. left:0px;
  3753. top:0px;
  3754. width:80px;
  3755. height:30px;
  3756. background:inherit;
  3757. background-color:rgba(255, 255, 255, 0);
  3758. border:none;
  3759. border-left:0px;
  3760. border-top:0px;
  3761. border-right:0px;
  3762. border-radius:0px;
  3763. border-bottom-right-radius:0px;
  3764. border-bottom-left-radius:0px;
  3765. -moz-box-shadow:none;
  3766. -webkit-box-shadow:none;
  3767. box-shadow:none;
  3768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3769. font-weight:400;
  3770. font-style:normal;
  3771. font-size:14px;
  3772. color:#7F7F7F;
  3773. line-height:30px;
  3774. }
  3775. #u20326 {
  3776. border-width:0px;
  3777. position:absolute;
  3778. left:1490px;
  3779. top:666px;
  3780. width:80px;
  3781. height:30px;
  3782. display:flex;
  3783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3784. font-weight:400;
  3785. font-style:normal;
  3786. font-size:14px;
  3787. color:#7F7F7F;
  3788. line-height:30px;
  3789. }
  3790. #u20326 .text {
  3791. position:absolute;
  3792. align-self:flex-start;
  3793. padding:0px 0px 0px 0px;
  3794. box-sizing:border-box;
  3795. width:100%;
  3796. }
  3797. #u20326_text {
  3798. border-width:0px;
  3799. word-wrap:break-word;
  3800. text-transform:none;
  3801. }
  3802. #u20327_div {
  3803. border-width:0px;
  3804. position:absolute;
  3805. left:0px;
  3806. top:0px;
  3807. width:138px;
  3808. height:30px;
  3809. background:inherit;
  3810. background-color:rgba(255, 255, 255, 0);
  3811. border:none;
  3812. border-left:0px;
  3813. border-top:0px;
  3814. border-right:0px;
  3815. border-radius:0px;
  3816. border-bottom-right-radius:0px;
  3817. border-bottom-left-radius:0px;
  3818. -moz-box-shadow:none;
  3819. -webkit-box-shadow:none;
  3820. box-shadow:none;
  3821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3822. font-weight:400;
  3823. font-style:normal;
  3824. font-size:14px;
  3825. line-height:30px;
  3826. }
  3827. #u20327 {
  3828. border-width:0px;
  3829. position:absolute;
  3830. left:1570px;
  3831. top:666px;
  3832. width:138px;
  3833. height:30px;
  3834. display:flex;
  3835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3836. font-weight:400;
  3837. font-style:normal;
  3838. font-size:14px;
  3839. line-height:30px;
  3840. }
  3841. #u20327 .text {
  3842. position:absolute;
  3843. align-self:flex-start;
  3844. padding:0px 0px 0px 0px;
  3845. box-sizing:border-box;
  3846. width:100%;
  3847. }
  3848. #u20327_text {
  3849. border-width:0px;
  3850. white-space:nowrap;
  3851. text-transform:none;
  3852. }
  3853. #u20328_div {
  3854. border-width:0px;
  3855. position:absolute;
  3856. left:0px;
  3857. top:0px;
  3858. width:80px;
  3859. height:30px;
  3860. background:inherit;
  3861. background-color:rgba(255, 255, 255, 0);
  3862. border:none;
  3863. border-left:0px;
  3864. border-top:0px;
  3865. border-right:0px;
  3866. border-radius:0px;
  3867. border-bottom-right-radius:0px;
  3868. border-bottom-left-radius:0px;
  3869. -moz-box-shadow:none;
  3870. -webkit-box-shadow:none;
  3871. box-shadow:none;
  3872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3873. font-weight:400;
  3874. font-style:normal;
  3875. font-size:14px;
  3876. color:#7F7F7F;
  3877. line-height:30px;
  3878. }
  3879. #u20328 {
  3880. border-width:0px;
  3881. position:absolute;
  3882. left:1184px;
  3883. top:666px;
  3884. width:80px;
  3885. height:30px;
  3886. display:flex;
  3887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3888. font-weight:400;
  3889. font-style:normal;
  3890. font-size:14px;
  3891. color:#7F7F7F;
  3892. line-height:30px;
  3893. }
  3894. #u20328 .text {
  3895. position:absolute;
  3896. align-self:flex-start;
  3897. padding:0px 0px 0px 0px;
  3898. box-sizing:border-box;
  3899. width:100%;
  3900. }
  3901. #u20328_text {
  3902. border-width:0px;
  3903. word-wrap:break-word;
  3904. text-transform:none;
  3905. }
  3906. #u20329_div {
  3907. border-width:0px;
  3908. position:absolute;
  3909. left:0px;
  3910. top:0px;
  3911. width:29px;
  3912. height:30px;
  3913. background:inherit;
  3914. background-color:rgba(255, 255, 255, 0);
  3915. border:none;
  3916. border-left:0px;
  3917. border-top:0px;
  3918. border-right:0px;
  3919. border-radius:0px;
  3920. border-bottom-right-radius:0px;
  3921. border-bottom-left-radius:0px;
  3922. -moz-box-shadow:none;
  3923. -webkit-box-shadow:none;
  3924. box-shadow:none;
  3925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3926. font-weight:400;
  3927. font-style:normal;
  3928. font-size:14px;
  3929. line-height:30px;
  3930. }
  3931. #u20329 {
  3932. border-width:0px;
  3933. position:absolute;
  3934. left:1264px;
  3935. top:666px;
  3936. width:29px;
  3937. height:30px;
  3938. display:flex;
  3939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3940. font-weight:400;
  3941. font-style:normal;
  3942. font-size:14px;
  3943. line-height:30px;
  3944. }
  3945. #u20329 .text {
  3946. position:absolute;
  3947. align-self:flex-start;
  3948. padding:0px 0px 0px 0px;
  3949. box-sizing:border-box;
  3950. width:100%;
  3951. }
  3952. #u20329_text {
  3953. border-width:0px;
  3954. white-space:nowrap;
  3955. text-transform:none;
  3956. }
  3957. #u20330_div {
  3958. border-width:0px;
  3959. position:absolute;
  3960. left:0px;
  3961. top:0px;
  3962. width:80px;
  3963. height:30px;
  3964. background:inherit;
  3965. background-color:rgba(255, 255, 255, 0);
  3966. border:none;
  3967. border-left:0px;
  3968. border-top:0px;
  3969. border-right:0px;
  3970. border-radius:0px;
  3971. border-bottom-right-radius:0px;
  3972. border-bottom-left-radius:0px;
  3973. -moz-box-shadow:none;
  3974. -webkit-box-shadow:none;
  3975. box-shadow:none;
  3976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3977. font-weight:400;
  3978. font-style:normal;
  3979. font-size:14px;
  3980. color:#7F7F7F;
  3981. line-height:30px;
  3982. }
  3983. #u20330 {
  3984. border-width:0px;
  3985. position:absolute;
  3986. left:1490px;
  3987. top:706px;
  3988. width:80px;
  3989. height:30px;
  3990. display:flex;
  3991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3992. font-weight:400;
  3993. font-style:normal;
  3994. font-size:14px;
  3995. color:#7F7F7F;
  3996. line-height:30px;
  3997. }
  3998. #u20330 .text {
  3999. position:absolute;
  4000. align-self:flex-start;
  4001. padding:0px 0px 0px 0px;
  4002. box-sizing:border-box;
  4003. width:100%;
  4004. }
  4005. #u20330_text {
  4006. border-width:0px;
  4007. word-wrap:break-word;
  4008. text-transform:none;
  4009. }
  4010. #u20331_div {
  4011. border-width:0px;
  4012. position:absolute;
  4013. left:0px;
  4014. top:0px;
  4015. width:577px;
  4016. height:30px;
  4017. background:inherit;
  4018. background-color:rgba(255, 255, 255, 0);
  4019. border:none;
  4020. border-left:0px;
  4021. border-top:0px;
  4022. border-right:0px;
  4023. border-radius:0px;
  4024. border-bottom-right-radius:0px;
  4025. border-bottom-left-radius:0px;
  4026. -moz-box-shadow:none;
  4027. -webkit-box-shadow:none;
  4028. box-shadow:none;
  4029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4030. font-weight:400;
  4031. font-style:normal;
  4032. font-size:14px;
  4033. line-height:30px;
  4034. }
  4035. #u20331 {
  4036. border-width:0px;
  4037. position:absolute;
  4038. left:1570px;
  4039. top:706px;
  4040. width:577px;
  4041. height:30px;
  4042. display:flex;
  4043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4044. font-weight:400;
  4045. font-style:normal;
  4046. font-size:14px;
  4047. line-height:30px;
  4048. }
  4049. #u20331 .text {
  4050. position:absolute;
  4051. align-self:flex-start;
  4052. padding:0px 0px 0px 0px;
  4053. box-sizing:border-box;
  4054. width:100%;
  4055. }
  4056. #u20331_text {
  4057. border-width:0px;
  4058. word-wrap:break-word;
  4059. text-transform:none;
  4060. }
  4061. #u20332_div {
  4062. border-width:0px;
  4063. position:absolute;
  4064. left:0px;
  4065. top:0px;
  4066. width:80px;
  4067. height:30px;
  4068. background:inherit;
  4069. background-color:rgba(255, 255, 255, 0);
  4070. border:none;
  4071. border-left:0px;
  4072. border-top:0px;
  4073. border-right:0px;
  4074. border-radius:0px;
  4075. border-bottom-right-radius:0px;
  4076. border-bottom-left-radius:0px;
  4077. -moz-box-shadow:none;
  4078. -webkit-box-shadow:none;
  4079. box-shadow:none;
  4080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4081. font-weight:400;
  4082. font-style:normal;
  4083. font-size:14px;
  4084. color:#7F7F7F;
  4085. line-height:30px;
  4086. }
  4087. #u20332 {
  4088. border-width:0px;
  4089. position:absolute;
  4090. left:1184px;
  4091. top:706px;
  4092. width:80px;
  4093. height:30px;
  4094. display:flex;
  4095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4096. font-weight:400;
  4097. font-style:normal;
  4098. font-size:14px;
  4099. color:#7F7F7F;
  4100. line-height:30px;
  4101. }
  4102. #u20332 .text {
  4103. position:absolute;
  4104. align-self:flex-start;
  4105. padding:0px 0px 0px 0px;
  4106. box-sizing:border-box;
  4107. width:100%;
  4108. }
  4109. #u20332_text {
  4110. border-width:0px;
  4111. word-wrap:break-word;
  4112. text-transform:none;
  4113. }
  4114. #u20333_div {
  4115. border-width:0px;
  4116. position:absolute;
  4117. left:0px;
  4118. top:0px;
  4119. width:29px;
  4120. height:30px;
  4121. background:inherit;
  4122. background-color:rgba(255, 255, 255, 0);
  4123. border:none;
  4124. border-left:0px;
  4125. border-top:0px;
  4126. border-right:0px;
  4127. border-radius:0px;
  4128. border-bottom-right-radius:0px;
  4129. border-bottom-left-radius:0px;
  4130. -moz-box-shadow:none;
  4131. -webkit-box-shadow:none;
  4132. box-shadow:none;
  4133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4134. font-weight:400;
  4135. font-style:normal;
  4136. font-size:14px;
  4137. line-height:30px;
  4138. }
  4139. #u20333 {
  4140. border-width:0px;
  4141. position:absolute;
  4142. left:1264px;
  4143. top:706px;
  4144. width:29px;
  4145. height:30px;
  4146. display:flex;
  4147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4148. font-weight:400;
  4149. font-style:normal;
  4150. font-size:14px;
  4151. line-height:30px;
  4152. }
  4153. #u20333 .text {
  4154. position:absolute;
  4155. align-self:flex-start;
  4156. padding:0px 0px 0px 0px;
  4157. box-sizing:border-box;
  4158. width:100%;
  4159. }
  4160. #u20333_text {
  4161. border-width:0px;
  4162. white-space:nowrap;
  4163. text-transform:none;
  4164. }
  4165. #u20334 {
  4166. border-width:0px;
  4167. position:absolute;
  4168. left:0px;
  4169. top:0px;
  4170. width:0px;
  4171. height:0px;
  4172. }
  4173. #u20335_div {
  4174. border-width:0px;
  4175. position:absolute;
  4176. left:0px;
  4177. top:0px;
  4178. width:1000px;
  4179. height:1200px;
  4180. background:inherit;
  4181. background-color:rgba(242, 242, 242, 1);
  4182. box-sizing:border-box;
  4183. border-width:1px;
  4184. border-style:solid;
  4185. border-color:rgba(215, 215, 215, 1);
  4186. border-radius:0px;
  4187. -moz-box-shadow:none;
  4188. -webkit-box-shadow:none;
  4189. box-shadow:none;
  4190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4191. font-weight:400;
  4192. font-style:normal;
  4193. font-size:14px;
  4194. color:#AAAAAA;
  4195. text-align:center;
  4196. line-height:30px;
  4197. }
  4198. #u20335 {
  4199. border-width:0px;
  4200. position:absolute;
  4201. left:2187px;
  4202. top:49px;
  4203. width:1000px;
  4204. height:1200px;
  4205. display:flex;
  4206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4207. font-weight:400;
  4208. font-style:normal;
  4209. font-size:14px;
  4210. color:#AAAAAA;
  4211. text-align:center;
  4212. line-height:30px;
  4213. }
  4214. #u20335 .text {
  4215. position:absolute;
  4216. align-self:center;
  4217. padding:5px 10px 5px 10px;
  4218. box-sizing:border-box;
  4219. width:100%;
  4220. }
  4221. #u20335_text {
  4222. border-width:0px;
  4223. word-wrap:break-word;
  4224. text-transform:none;
  4225. visibility:hidden;
  4226. }
  4227. #u20336_div {
  4228. border-width:0px;
  4229. position:absolute;
  4230. left:0px;
  4231. top:0px;
  4232. width:1000px;
  4233. height:521px;
  4234. background:inherit;
  4235. background-color:rgba(255, 255, 255, 1);
  4236. box-sizing:border-box;
  4237. border-width:1px;
  4238. border-style:solid;
  4239. border-color:rgba(215, 215, 215, 1);
  4240. border-radius:0px;
  4241. -moz-box-shadow:none;
  4242. -webkit-box-shadow:none;
  4243. box-shadow:none;
  4244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4245. font-weight:400;
  4246. font-style:normal;
  4247. font-size:14px;
  4248. color:#AAAAAA;
  4249. text-align:center;
  4250. line-height:30px;
  4251. }
  4252. #u20336 {
  4253. border-width:0px;
  4254. position:absolute;
  4255. left:2187px;
  4256. top:49px;
  4257. width:1000px;
  4258. height:521px;
  4259. display:flex;
  4260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4261. font-weight:400;
  4262. font-style:normal;
  4263. font-size:14px;
  4264. color:#AAAAAA;
  4265. text-align:center;
  4266. line-height:30px;
  4267. }
  4268. #u20336 .text {
  4269. position:absolute;
  4270. align-self:center;
  4271. padding:5px 10px 5px 10px;
  4272. box-sizing:border-box;
  4273. width:100%;
  4274. }
  4275. #u20336_text {
  4276. border-width:0px;
  4277. word-wrap:break-word;
  4278. text-transform:none;
  4279. visibility:hidden;
  4280. }
  4281. #u20337_div {
  4282. border-width:0px;
  4283. position:absolute;
  4284. left:0px;
  4285. top:0px;
  4286. width:83px;
  4287. height:35px;
  4288. background:inherit;
  4289. background-color:rgba(255, 255, 255, 0);
  4290. border:none;
  4291. border-top:0px;
  4292. border-right:0px;
  4293. border-bottom:0px;
  4294. border-radius:0px;
  4295. border-top-left-radius:0px;
  4296. border-bottom-left-radius:0px;
  4297. -moz-box-shadow:none;
  4298. -webkit-box-shadow:none;
  4299. box-shadow:none;
  4300. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4301. font-weight:500;
  4302. font-style:normal;
  4303. font-size:18px;
  4304. }
  4305. #u20337 {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:2207px;
  4309. top:67px;
  4310. width:83px;
  4311. height:35px;
  4312. display:flex;
  4313. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4314. font-weight:500;
  4315. font-style:normal;
  4316. font-size:18px;
  4317. }
  4318. #u20337 .text {
  4319. position:absolute;
  4320. align-self:center;
  4321. padding:5px 10px 5px 0px;
  4322. box-sizing:border-box;
  4323. width:100%;
  4324. }
  4325. #u20337_text {
  4326. border-width:0px;
  4327. white-space:nowrap;
  4328. text-transform:none;
  4329. }
  4330. #u20338 {
  4331. border-width:0px;
  4332. position:absolute;
  4333. left:0px;
  4334. top:0px;
  4335. width:0px;
  4336. height:0px;
  4337. }
  4338. #u20339_div {
  4339. border-width:0px;
  4340. position:absolute;
  4341. left:0px;
  4342. top:0px;
  4343. width:40px;
  4344. height:40px;
  4345. background:inherit;
  4346. background-color:rgba(255, 255, 255, 0);
  4347. border:none;
  4348. border-top:0px;
  4349. border-right:0px;
  4350. border-bottom:0px;
  4351. border-radius:0px;
  4352. border-top-left-radius:0px;
  4353. border-bottom-left-radius:0px;
  4354. -moz-box-shadow:none;
  4355. -webkit-box-shadow:none;
  4356. box-shadow:none;
  4357. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4358. font-weight:500;
  4359. font-style:normal;
  4360. font-size:14px;
  4361. text-align:center;
  4362. }
  4363. #u20339 {
  4364. border-width:0px;
  4365. position:absolute;
  4366. left:3147px;
  4367. top:49px;
  4368. width:40px;
  4369. height:40px;
  4370. display:flex;
  4371. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4372. font-weight:500;
  4373. font-style:normal;
  4374. font-size:14px;
  4375. text-align:center;
  4376. }
  4377. #u20339 .text {
  4378. position:absolute;
  4379. align-self:center;
  4380. padding:5px 10px 5px 0px;
  4381. box-sizing:border-box;
  4382. width:100%;
  4383. }
  4384. #u20339_text {
  4385. border-width:0px;
  4386. word-wrap:break-word;
  4387. text-transform:none;
  4388. }
  4389. #u20340_img {
  4390. border-width:0px;
  4391. position:absolute;
  4392. left:0px;
  4393. top:0px;
  4394. width:13px;
  4395. height:13px;
  4396. }
  4397. #u20340 {
  4398. border-width:0px;
  4399. position:absolute;
  4400. left:3135px;
  4401. top:65px;
  4402. width:13px;
  4403. height:13px;
  4404. display:flex;
  4405. font-size:14px;
  4406. }
  4407. #u20340 .text {
  4408. position:absolute;
  4409. align-self:center;
  4410. padding:2px 2px 2px 2px;
  4411. box-sizing:border-box;
  4412. width:100%;
  4413. }
  4414. #u20340_text {
  4415. border-width:0px;
  4416. word-wrap:break-word;
  4417. text-transform:none;
  4418. visibility:hidden;
  4419. }
  4420. #u20341_div {
  4421. border-width:0px;
  4422. position:absolute;
  4423. left:0px;
  4424. top:0px;
  4425. width:396px;
  4426. height:43px;
  4427. background:inherit;
  4428. background-color:rgba(255, 255, 255, 0);
  4429. border:none;
  4430. border-top:0px;
  4431. border-right:0px;
  4432. border-bottom:0px;
  4433. border-radius:0px;
  4434. border-top-left-radius:0px;
  4435. border-bottom-left-radius:0px;
  4436. -moz-box-shadow:none;
  4437. -webkit-box-shadow:none;
  4438. box-shadow:none;
  4439. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4440. font-weight:500;
  4441. font-style:normal;
  4442. font-size:24px;
  4443. }
  4444. #u20341 {
  4445. border-width:0px;
  4446. position:absolute;
  4447. left:2217px;
  4448. top:118px;
  4449. width:396px;
  4450. height:43px;
  4451. display:flex;
  4452. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4453. font-weight:500;
  4454. font-style:normal;
  4455. font-size:24px;
  4456. }
  4457. #u20341 .text {
  4458. position:absolute;
  4459. align-self:center;
  4460. padding:5px 10px 5px 0px;
  4461. box-sizing:border-box;
  4462. width:100%;
  4463. }
  4464. #u20341_text {
  4465. border-width:0px;
  4466. white-space:nowrap;
  4467. text-transform:none;
  4468. }
  4469. #u20342_img {
  4470. border-width:0px;
  4471. position:absolute;
  4472. left:0px;
  4473. top:0px;
  4474. width:108px;
  4475. height:108px;
  4476. }
  4477. #u20342 {
  4478. border-width:0px;
  4479. position:absolute;
  4480. left:3037px;
  4481. top:119px;
  4482. width:108px;
  4483. height:108px;
  4484. display:flex;
  4485. -webkit-transform:rotate(315deg);
  4486. -moz-transform:rotate(315deg);
  4487. -ms-transform:rotate(315deg);
  4488. transform:rotate(315deg);
  4489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4490. font-weight:400;
  4491. font-style:normal;
  4492. font-size:28px;
  4493. color:#D9001B;
  4494. }
  4495. #u20342 .text {
  4496. position:absolute;
  4497. align-self:center;
  4498. padding:2px 2px 2px 2px;
  4499. box-sizing:border-box;
  4500. width:100%;
  4501. }
  4502. #u20342_text {
  4503. border-width:0px;
  4504. word-wrap:break-word;
  4505. text-transform:none;
  4506. }
  4507. #u20343 {
  4508. border-width:0px;
  4509. position:absolute;
  4510. left:0px;
  4511. top:0px;
  4512. width:0px;
  4513. height:0px;
  4514. }
  4515. #u20344_div {
  4516. border-width:0px;
  4517. position:absolute;
  4518. left:0px;
  4519. top:0px;
  4520. width:1000px;
  4521. height:60px;
  4522. background:inherit;
  4523. background-color:rgba(255, 255, 255, 1);
  4524. box-sizing:border-box;
  4525. border-width:1px;
  4526. border-style:solid;
  4527. border-color:rgba(215, 215, 215, 1);
  4528. border-radius:0px;
  4529. -moz-box-shadow:none;
  4530. -webkit-box-shadow:none;
  4531. box-shadow:none;
  4532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4533. font-weight:400;
  4534. font-style:normal;
  4535. font-size:14px;
  4536. color:#AAAAAA;
  4537. text-align:center;
  4538. line-height:30px;
  4539. }
  4540. #u20344 {
  4541. border-width:0px;
  4542. position:absolute;
  4543. left:2187px;
  4544. top:1189px;
  4545. width:1000px;
  4546. height:60px;
  4547. display:flex;
  4548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4549. font-weight:400;
  4550. font-style:normal;
  4551. font-size:14px;
  4552. color:#AAAAAA;
  4553. text-align:center;
  4554. line-height:30px;
  4555. }
  4556. #u20344 .text {
  4557. position:absolute;
  4558. align-self:center;
  4559. padding:5px 10px 5px 10px;
  4560. box-sizing:border-box;
  4561. width:100%;
  4562. }
  4563. #u20344_text {
  4564. border-width:0px;
  4565. word-wrap:break-word;
  4566. text-transform:none;
  4567. visibility:hidden;
  4568. }
  4569. #u20345_div {
  4570. border-width:0px;
  4571. position:absolute;
  4572. left:0px;
  4573. top:0px;
  4574. width:80px;
  4575. height:30px;
  4576. background:inherit;
  4577. background-color:rgba(255, 255, 255, 1);
  4578. box-sizing:border-box;
  4579. border-width:1px;
  4580. border-style:solid;
  4581. border-color:rgba(170, 170, 170, 1);
  4582. border-radius:4px;
  4583. -moz-box-shadow:none;
  4584. -webkit-box-shadow:none;
  4585. box-shadow:none;
  4586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4587. font-weight:400;
  4588. font-style:normal;
  4589. font-size:14px;
  4590. }
  4591. #u20345 {
  4592. border-width:0px;
  4593. position:absolute;
  4594. left:3087px;
  4595. top:1204px;
  4596. width:80px;
  4597. height:30px;
  4598. display:flex;
  4599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4600. font-weight:400;
  4601. font-style:normal;
  4602. font-size:14px;
  4603. }
  4604. #u20345 .text {
  4605. position:absolute;
  4606. align-self:center;
  4607. padding:2px 2px 2px 2px;
  4608. box-sizing:border-box;
  4609. width:100%;
  4610. }
  4611. #u20345_text {
  4612. border-width:0px;
  4613. word-wrap:break-word;
  4614. text-transform:none;
  4615. }
  4616. #u20346_div {
  4617. border-width:0px;
  4618. position:absolute;
  4619. left:0px;
  4620. top:0px;
  4621. width:80px;
  4622. height:30px;
  4623. background:inherit;
  4624. background-color:rgba(255, 255, 255, 0);
  4625. border:none;
  4626. border-left:0px;
  4627. border-top:0px;
  4628. border-right:0px;
  4629. border-radius:0px;
  4630. border-bottom-right-radius:0px;
  4631. border-bottom-left-radius:0px;
  4632. -moz-box-shadow:none;
  4633. -webkit-box-shadow:none;
  4634. box-shadow:none;
  4635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4636. font-weight:400;
  4637. font-style:normal;
  4638. font-size:14px;
  4639. color:#7F7F7F;
  4640. line-height:30px;
  4641. }
  4642. #u20346 {
  4643. border-width:0px;
  4644. position:absolute;
  4645. left:2530px;
  4646. top:306px;
  4647. width:80px;
  4648. height:30px;
  4649. display:flex;
  4650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4651. font-weight:400;
  4652. font-style:normal;
  4653. font-size:14px;
  4654. color:#7F7F7F;
  4655. line-height:30px;
  4656. }
  4657. #u20346 .text {
  4658. position:absolute;
  4659. align-self:flex-start;
  4660. padding:0px 0px 0px 0px;
  4661. box-sizing:border-box;
  4662. width:100%;
  4663. }
  4664. #u20346_text {
  4665. border-width:0px;
  4666. word-wrap:break-word;
  4667. text-transform:none;
  4668. }
  4669. #u20347_div {
  4670. border-width:0px;
  4671. position:absolute;
  4672. left:0px;
  4673. top:0px;
  4674. width:113px;
  4675. height:30px;
  4676. background:inherit;
  4677. background-color:rgba(255, 255, 255, 0);
  4678. border:none;
  4679. border-left:0px;
  4680. border-top:0px;
  4681. border-right:0px;
  4682. border-radius:0px;
  4683. border-bottom-right-radius:0px;
  4684. border-bottom-left-radius:0px;
  4685. -moz-box-shadow:none;
  4686. -webkit-box-shadow:none;
  4687. box-shadow:none;
  4688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4689. font-weight:400;
  4690. font-style:normal;
  4691. font-size:14px;
  4692. line-height:30px;
  4693. }
  4694. #u20347 {
  4695. border-width:0px;
  4696. position:absolute;
  4697. left:2610px;
  4698. top:306px;
  4699. width:113px;
  4700. height:30px;
  4701. display:flex;
  4702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4703. font-weight:400;
  4704. font-style:normal;
  4705. font-size:14px;
  4706. line-height:30px;
  4707. }
  4708. #u20347 .text {
  4709. position:absolute;
  4710. align-self:flex-start;
  4711. padding:0px 0px 0px 0px;
  4712. box-sizing:border-box;
  4713. width:100%;
  4714. }
  4715. #u20347_text {
  4716. border-width:0px;
  4717. white-space:nowrap;
  4718. text-transform:none;
  4719. }
  4720. #u20348_div {
  4721. border-width:0px;
  4722. position:absolute;
  4723. left:0px;
  4724. top:0px;
  4725. width:80px;
  4726. height:30px;
  4727. background:inherit;
  4728. background-color:rgba(255, 255, 255, 0);
  4729. border:none;
  4730. border-left:0px;
  4731. border-top:0px;
  4732. border-right:0px;
  4733. border-radius:0px;
  4734. border-bottom-right-radius:0px;
  4735. border-bottom-left-radius:0px;
  4736. -moz-box-shadow:none;
  4737. -webkit-box-shadow:none;
  4738. box-shadow:none;
  4739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4740. font-weight:400;
  4741. font-style:normal;
  4742. font-size:14px;
  4743. color:#7F7F7F;
  4744. line-height:30px;
  4745. }
  4746. #u20348 {
  4747. border-width:0px;
  4748. position:absolute;
  4749. left:2217px;
  4750. top:226px;
  4751. width:80px;
  4752. height:30px;
  4753. display:flex;
  4754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4755. font-weight:400;
  4756. font-style:normal;
  4757. font-size:14px;
  4758. color:#7F7F7F;
  4759. line-height:30px;
  4760. }
  4761. #u20348 .text {
  4762. position:absolute;
  4763. align-self:flex-start;
  4764. padding:0px 0px 0px 0px;
  4765. box-sizing:border-box;
  4766. width:100%;
  4767. }
  4768. #u20348_text {
  4769. border-width:0px;
  4770. word-wrap:break-word;
  4771. text-transform:none;
  4772. }
  4773. #u20349_div {
  4774. border-width:0px;
  4775. position:absolute;
  4776. left:0px;
  4777. top:0px;
  4778. width:99px;
  4779. height:30px;
  4780. background:inherit;
  4781. background-color:rgba(255, 255, 255, 0);
  4782. border:none;
  4783. border-left:0px;
  4784. border-top:0px;
  4785. border-right:0px;
  4786. border-radius:0px;
  4787. border-bottom-right-radius:0px;
  4788. border-bottom-left-radius:0px;
  4789. -moz-box-shadow:none;
  4790. -webkit-box-shadow:none;
  4791. box-shadow:none;
  4792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4793. font-weight:400;
  4794. font-style:normal;
  4795. font-size:14px;
  4796. line-height:30px;
  4797. }
  4798. #u20349 {
  4799. border-width:0px;
  4800. position:absolute;
  4801. left:2297px;
  4802. top:226px;
  4803. width:99px;
  4804. height:30px;
  4805. display:flex;
  4806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4807. font-weight:400;
  4808. font-style:normal;
  4809. font-size:14px;
  4810. line-height:30px;
  4811. }
  4812. #u20349 .text {
  4813. position:absolute;
  4814. align-self:flex-start;
  4815. padding:0px 0px 0px 0px;
  4816. box-sizing:border-box;
  4817. width:100%;
  4818. }
  4819. #u20349_text {
  4820. border-width:0px;
  4821. white-space:nowrap;
  4822. text-transform:none;
  4823. }
  4824. #u20350_div {
  4825. border-width:0px;
  4826. position:absolute;
  4827. left:0px;
  4828. top:0px;
  4829. width:80px;
  4830. height:30px;
  4831. background:inherit;
  4832. background-color:rgba(255, 255, 255, 0);
  4833. border:none;
  4834. border-left:0px;
  4835. border-top:0px;
  4836. border-right:0px;
  4837. border-radius:0px;
  4838. border-bottom-right-radius:0px;
  4839. border-bottom-left-radius:0px;
  4840. -moz-box-shadow:none;
  4841. -webkit-box-shadow:none;
  4842. box-shadow:none;
  4843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4844. font-weight:400;
  4845. font-style:normal;
  4846. font-size:14px;
  4847. color:#7F7F7F;
  4848. line-height:30px;
  4849. }
  4850. #u20350 {
  4851. border-width:0px;
  4852. position:absolute;
  4853. left:2530px;
  4854. top:266px;
  4855. width:80px;
  4856. height:30px;
  4857. display:flex;
  4858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4859. font-weight:400;
  4860. font-style:normal;
  4861. font-size:14px;
  4862. color:#7F7F7F;
  4863. line-height:30px;
  4864. }
  4865. #u20350 .text {
  4866. position:absolute;
  4867. align-self:flex-start;
  4868. padding:0px 0px 0px 0px;
  4869. box-sizing:border-box;
  4870. width:100%;
  4871. }
  4872. #u20350_text {
  4873. border-width:0px;
  4874. word-wrap:break-word;
  4875. text-transform:none;
  4876. }
  4877. #u20351_div {
  4878. border-width:0px;
  4879. position:absolute;
  4880. left:0px;
  4881. top:0px;
  4882. width:82px;
  4883. height:30px;
  4884. background:inherit;
  4885. background-color:rgba(255, 255, 255, 0);
  4886. border:none;
  4887. border-left:0px;
  4888. border-top:0px;
  4889. border-right:0px;
  4890. border-radius:0px;
  4891. border-bottom-right-radius:0px;
  4892. border-bottom-left-radius:0px;
  4893. -moz-box-shadow:none;
  4894. -webkit-box-shadow:none;
  4895. box-shadow:none;
  4896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4897. font-weight:400;
  4898. font-style:normal;
  4899. font-size:14px;
  4900. line-height:30px;
  4901. }
  4902. #u20351 {
  4903. border-width:0px;
  4904. position:absolute;
  4905. left:2610px;
  4906. top:266px;
  4907. width:82px;
  4908. height:30px;
  4909. display:flex;
  4910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4911. font-weight:400;
  4912. font-style:normal;
  4913. font-size:14px;
  4914. line-height:30px;
  4915. }
  4916. #u20351 .text {
  4917. position:absolute;
  4918. align-self:flex-start;
  4919. padding:0px 0px 0px 0px;
  4920. box-sizing:border-box;
  4921. width:100%;
  4922. }
  4923. #u20351_text {
  4924. border-width:0px;
  4925. white-space:nowrap;
  4926. text-transform:none;
  4927. }
  4928. #u20352_div {
  4929. border-width:0px;
  4930. position:absolute;
  4931. left:0px;
  4932. top:0px;
  4933. width:80px;
  4934. height:30px;
  4935. background:inherit;
  4936. background-color:rgba(255, 255, 255, 0);
  4937. border:none;
  4938. border-left:0px;
  4939. border-top:0px;
  4940. border-right:0px;
  4941. border-radius:0px;
  4942. border-bottom-right-radius:0px;
  4943. border-bottom-left-radius:0px;
  4944. -moz-box-shadow:none;
  4945. -webkit-box-shadow:none;
  4946. box-shadow:none;
  4947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4948. font-weight:400;
  4949. font-style:normal;
  4950. font-size:14px;
  4951. color:#7F7F7F;
  4952. line-height:30px;
  4953. }
  4954. #u20352 {
  4955. border-width:0px;
  4956. position:absolute;
  4957. left:2217px;
  4958. top:266px;
  4959. width:80px;
  4960. height:30px;
  4961. display:flex;
  4962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4963. font-weight:400;
  4964. font-style:normal;
  4965. font-size:14px;
  4966. color:#7F7F7F;
  4967. line-height:30px;
  4968. }
  4969. #u20352 .text {
  4970. position:absolute;
  4971. align-self:flex-start;
  4972. padding:0px 0px 0px 0px;
  4973. box-sizing:border-box;
  4974. width:100%;
  4975. }
  4976. #u20352_text {
  4977. border-width:0px;
  4978. word-wrap:break-word;
  4979. text-transform:none;
  4980. }
  4981. #u20353_div {
  4982. border-width:0px;
  4983. position:absolute;
  4984. left:0px;
  4985. top:0px;
  4986. width:29px;
  4987. height:30px;
  4988. background:inherit;
  4989. background-color:rgba(255, 255, 255, 0);
  4990. border:none;
  4991. border-left:0px;
  4992. border-top:0px;
  4993. border-right:0px;
  4994. border-radius:0px;
  4995. border-bottom-right-radius:0px;
  4996. border-bottom-left-radius:0px;
  4997. -moz-box-shadow:none;
  4998. -webkit-box-shadow:none;
  4999. box-shadow:none;
  5000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5001. font-weight:400;
  5002. font-style:normal;
  5003. font-size:14px;
  5004. line-height:30px;
  5005. }
  5006. #u20353 {
  5007. border-width:0px;
  5008. position:absolute;
  5009. left:2297px;
  5010. top:266px;
  5011. width:29px;
  5012. height:30px;
  5013. display:flex;
  5014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5015. font-weight:400;
  5016. font-style:normal;
  5017. font-size:14px;
  5018. line-height:30px;
  5019. }
  5020. #u20353 .text {
  5021. position:absolute;
  5022. align-self:flex-start;
  5023. padding:0px 0px 0px 0px;
  5024. box-sizing:border-box;
  5025. width:100%;
  5026. }
  5027. #u20353_text {
  5028. border-width:0px;
  5029. white-space:nowrap;
  5030. text-transform:none;
  5031. }
  5032. #u20354_img {
  5033. border-width:0px;
  5034. position:absolute;
  5035. left:0px;
  5036. top:0px;
  5037. width:100px;
  5038. height:100px;
  5039. }
  5040. #u20354 {
  5041. border-width:0px;
  5042. position:absolute;
  5043. left:2297px;
  5044. top:426px;
  5045. width:100px;
  5046. height:100px;
  5047. display:flex;
  5048. }
  5049. #u20354 .text {
  5050. position:absolute;
  5051. align-self:center;
  5052. padding:2px 2px 2px 2px;
  5053. box-sizing:border-box;
  5054. width:100%;
  5055. }
  5056. #u20354_text {
  5057. border-width:0px;
  5058. word-wrap:break-word;
  5059. text-transform:none;
  5060. visibility:hidden;
  5061. }
  5062. #u20355_div {
  5063. border-width:0px;
  5064. position:absolute;
  5065. left:0px;
  5066. top:0px;
  5067. width:80px;
  5068. height:30px;
  5069. background:inherit;
  5070. background-color:rgba(255, 255, 255, 0);
  5071. border:none;
  5072. border-left:0px;
  5073. border-top:0px;
  5074. border-right:0px;
  5075. border-radius:0px;
  5076. border-bottom-right-radius:0px;
  5077. border-bottom-left-radius:0px;
  5078. -moz-box-shadow:none;
  5079. -webkit-box-shadow:none;
  5080. box-shadow:none;
  5081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5082. font-weight:400;
  5083. font-style:normal;
  5084. font-size:14px;
  5085. color:#7F7F7F;
  5086. line-height:30px;
  5087. }
  5088. #u20355 {
  5089. border-width:0px;
  5090. position:absolute;
  5091. left:2530px;
  5092. top:226px;
  5093. width:80px;
  5094. height:30px;
  5095. display:flex;
  5096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5097. font-weight:400;
  5098. font-style:normal;
  5099. font-size:14px;
  5100. color:#7F7F7F;
  5101. line-height:30px;
  5102. }
  5103. #u20355 .text {
  5104. position:absolute;
  5105. align-self:flex-start;
  5106. padding:0px 0px 0px 0px;
  5107. box-sizing:border-box;
  5108. width:100%;
  5109. }
  5110. #u20355_text {
  5111. border-width:0px;
  5112. word-wrap:break-word;
  5113. text-transform:none;
  5114. }
  5115. #u20356_div {
  5116. border-width:0px;
  5117. position:absolute;
  5118. left:0px;
  5119. top:0px;
  5120. width:173px;
  5121. height:30px;
  5122. background:inherit;
  5123. background-color:rgba(255, 255, 255, 0);
  5124. border:none;
  5125. border-left:0px;
  5126. border-top:0px;
  5127. border-right:0px;
  5128. border-radius:0px;
  5129. border-bottom-right-radius:0px;
  5130. border-bottom-left-radius:0px;
  5131. -moz-box-shadow:none;
  5132. -webkit-box-shadow:none;
  5133. box-shadow:none;
  5134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5135. font-weight:400;
  5136. font-style:normal;
  5137. font-size:14px;
  5138. line-height:30px;
  5139. }
  5140. #u20356 {
  5141. border-width:0px;
  5142. position:absolute;
  5143. left:2610px;
  5144. top:226px;
  5145. width:173px;
  5146. height:30px;
  5147. display:flex;
  5148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5149. font-weight:400;
  5150. font-style:normal;
  5151. font-size:14px;
  5152. line-height:30px;
  5153. }
  5154. #u20356 .text {
  5155. position:absolute;
  5156. align-self:flex-start;
  5157. padding:0px 0px 0px 0px;
  5158. box-sizing:border-box;
  5159. width:100%;
  5160. }
  5161. #u20356_text {
  5162. border-width:0px;
  5163. white-space:nowrap;
  5164. text-transform:none;
  5165. }
  5166. #u20357_div {
  5167. border-width:0px;
  5168. position:absolute;
  5169. left:0px;
  5170. top:0px;
  5171. width:80px;
  5172. height:30px;
  5173. background:inherit;
  5174. background-color:rgba(255, 255, 255, 0);
  5175. border:none;
  5176. border-left:0px;
  5177. border-top:0px;
  5178. border-right:0px;
  5179. border-radius:0px;
  5180. border-bottom-right-radius:0px;
  5181. border-bottom-left-radius:0px;
  5182. -moz-box-shadow:none;
  5183. -webkit-box-shadow:none;
  5184. box-shadow:none;
  5185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5186. font-weight:400;
  5187. font-style:normal;
  5188. font-size:14px;
  5189. color:#7F7F7F;
  5190. line-height:30px;
  5191. }
  5192. #u20357 {
  5193. border-width:0px;
  5194. position:absolute;
  5195. left:2217px;
  5196. top:186px;
  5197. width:80px;
  5198. height:30px;
  5199. display:flex;
  5200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5201. font-weight:400;
  5202. font-style:normal;
  5203. font-size:14px;
  5204. color:#7F7F7F;
  5205. line-height:30px;
  5206. }
  5207. #u20357 .text {
  5208. position:absolute;
  5209. align-self:flex-start;
  5210. padding:0px 0px 0px 0px;
  5211. box-sizing:border-box;
  5212. width:100%;
  5213. }
  5214. #u20357_text {
  5215. border-width:0px;
  5216. word-wrap:break-word;
  5217. text-transform:none;
  5218. }
  5219. #u20358_div {
  5220. border-width:0px;
  5221. position:absolute;
  5222. left:0px;
  5223. top:0px;
  5224. width:113px;
  5225. height:30px;
  5226. background:inherit;
  5227. background-color:rgba(255, 255, 255, 0);
  5228. border:none;
  5229. border-left:0px;
  5230. border-top:0px;
  5231. border-right:0px;
  5232. border-radius:0px;
  5233. border-bottom-right-radius:0px;
  5234. border-bottom-left-radius:0px;
  5235. -moz-box-shadow:none;
  5236. -webkit-box-shadow:none;
  5237. box-shadow:none;
  5238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5239. font-weight:400;
  5240. font-style:normal;
  5241. font-size:14px;
  5242. line-height:30px;
  5243. }
  5244. #u20358 {
  5245. border-width:0px;
  5246. position:absolute;
  5247. left:2297px;
  5248. top:186px;
  5249. width:113px;
  5250. height:30px;
  5251. display:flex;
  5252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5253. font-weight:400;
  5254. font-style:normal;
  5255. font-size:14px;
  5256. line-height:30px;
  5257. }
  5258. #u20358 .text {
  5259. position:absolute;
  5260. align-self:flex-start;
  5261. padding:0px 0px 0px 0px;
  5262. box-sizing:border-box;
  5263. width:100%;
  5264. }
  5265. #u20358_text {
  5266. border-width:0px;
  5267. white-space:nowrap;
  5268. text-transform:none;
  5269. }
  5270. #u20359_div {
  5271. border-width:0px;
  5272. position:absolute;
  5273. left:0px;
  5274. top:0px;
  5275. width:80px;
  5276. height:30px;
  5277. background:inherit;
  5278. background-color:rgba(255, 255, 255, 0);
  5279. border:none;
  5280. border-left:0px;
  5281. border-top:0px;
  5282. border-right:0px;
  5283. border-radius:0px;
  5284. border-bottom-right-radius:0px;
  5285. border-bottom-left-radius:0px;
  5286. -moz-box-shadow:none;
  5287. -webkit-box-shadow:none;
  5288. box-shadow:none;
  5289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5290. font-weight:400;
  5291. font-style:normal;
  5292. font-size:14px;
  5293. color:#7F7F7F;
  5294. line-height:30px;
  5295. }
  5296. #u20359 {
  5297. border-width:0px;
  5298. position:absolute;
  5299. left:2217px;
  5300. top:306px;
  5301. width:80px;
  5302. height:30px;
  5303. display:flex;
  5304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5305. font-weight:400;
  5306. font-style:normal;
  5307. font-size:14px;
  5308. color:#7F7F7F;
  5309. line-height:30px;
  5310. }
  5311. #u20359 .text {
  5312. position:absolute;
  5313. align-self:flex-start;
  5314. padding:0px 0px 0px 0px;
  5315. box-sizing:border-box;
  5316. width:100%;
  5317. }
  5318. #u20359_text {
  5319. border-width:0px;
  5320. word-wrap:break-word;
  5321. text-transform:none;
  5322. }
  5323. #u20360_div {
  5324. border-width:0px;
  5325. position:absolute;
  5326. left:0px;
  5327. top:0px;
  5328. width:138px;
  5329. height:30px;
  5330. background:inherit;
  5331. background-color:rgba(255, 255, 255, 0);
  5332. border:none;
  5333. border-left:0px;
  5334. border-top:0px;
  5335. border-right:0px;
  5336. border-radius:0px;
  5337. border-bottom-right-radius:0px;
  5338. border-bottom-left-radius:0px;
  5339. -moz-box-shadow:none;
  5340. -webkit-box-shadow:none;
  5341. box-shadow:none;
  5342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5343. font-weight:400;
  5344. font-style:normal;
  5345. font-size:14px;
  5346. line-height:30px;
  5347. }
  5348. #u20360 {
  5349. border-width:0px;
  5350. position:absolute;
  5351. left:2297px;
  5352. top:306px;
  5353. width:138px;
  5354. height:30px;
  5355. display:flex;
  5356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5357. font-weight:400;
  5358. font-style:normal;
  5359. font-size:14px;
  5360. line-height:30px;
  5361. }
  5362. #u20360 .text {
  5363. position:absolute;
  5364. align-self:flex-start;
  5365. padding:0px 0px 0px 0px;
  5366. box-sizing:border-box;
  5367. width:100%;
  5368. }
  5369. #u20360_text {
  5370. border-width:0px;
  5371. white-space:nowrap;
  5372. text-transform:none;
  5373. }
  5374. #u20361_div {
  5375. border-width:0px;
  5376. position:absolute;
  5377. left:0px;
  5378. top:0px;
  5379. width:80px;
  5380. height:30px;
  5381. background:inherit;
  5382. background-color:rgba(255, 255, 255, 0);
  5383. border:none;
  5384. border-left:0px;
  5385. border-top:0px;
  5386. border-right:0px;
  5387. border-radius:0px;
  5388. border-bottom-right-radius:0px;
  5389. border-bottom-left-radius:0px;
  5390. -moz-box-shadow:none;
  5391. -webkit-box-shadow:none;
  5392. box-shadow:none;
  5393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5394. font-weight:400;
  5395. font-style:normal;
  5396. font-size:14px;
  5397. color:#7F7F7F;
  5398. line-height:30px;
  5399. }
  5400. #u20361 {
  5401. border-width:0px;
  5402. position:absolute;
  5403. left:2217px;
  5404. top:356px;
  5405. width:80px;
  5406. height:30px;
  5407. display:flex;
  5408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5409. font-weight:400;
  5410. font-style:normal;
  5411. font-size:14px;
  5412. color:#7F7F7F;
  5413. line-height:30px;
  5414. }
  5415. #u20361 .text {
  5416. position:absolute;
  5417. align-self:flex-start;
  5418. padding:0px 0px 0px 0px;
  5419. box-sizing:border-box;
  5420. width:100%;
  5421. }
  5422. #u20361_text {
  5423. border-width:0px;
  5424. word-wrap:break-word;
  5425. text-transform:none;
  5426. }
  5427. #u20362_div {
  5428. border-width:0px;
  5429. position:absolute;
  5430. left:0px;
  5431. top:0px;
  5432. width:774px;
  5433. height:60px;
  5434. background:inherit;
  5435. background-color:rgba(255, 255, 255, 0);
  5436. border:none;
  5437. border-left:0px;
  5438. border-top:0px;
  5439. border-right:0px;
  5440. border-radius:0px;
  5441. border-bottom-right-radius:0px;
  5442. border-bottom-left-radius:0px;
  5443. -moz-box-shadow:none;
  5444. -webkit-box-shadow:none;
  5445. box-shadow:none;
  5446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5447. font-weight:400;
  5448. font-style:normal;
  5449. font-size:14px;
  5450. line-height:30px;
  5451. }
  5452. #u20362 {
  5453. border-width:0px;
  5454. position:absolute;
  5455. left:2297px;
  5456. top:356px;
  5457. width:774px;
  5458. height:60px;
  5459. display:flex;
  5460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5461. font-weight:400;
  5462. font-style:normal;
  5463. font-size:14px;
  5464. line-height:30px;
  5465. }
  5466. #u20362 .text {
  5467. position:absolute;
  5468. align-self:flex-start;
  5469. padding:0px 0px 0px 0px;
  5470. box-sizing:border-box;
  5471. width:100%;
  5472. }
  5473. #u20362_text {
  5474. border-width:0px;
  5475. word-wrap:break-word;
  5476. text-transform:none;
  5477. }
  5478. #u20363_div {
  5479. border-width:0px;
  5480. position:absolute;
  5481. left:0px;
  5482. top:0px;
  5483. width:80px;
  5484. height:30px;
  5485. background:inherit;
  5486. background-color:rgba(255, 255, 255, 0);
  5487. border:none;
  5488. border-left:0px;
  5489. border-top:0px;
  5490. border-right:0px;
  5491. border-radius:0px;
  5492. border-bottom-right-radius:0px;
  5493. border-bottom-left-radius:0px;
  5494. -moz-box-shadow:none;
  5495. -webkit-box-shadow:none;
  5496. box-shadow:none;
  5497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5498. font-weight:400;
  5499. font-style:normal;
  5500. font-size:14px;
  5501. color:#7F7F7F;
  5502. line-height:30px;
  5503. }
  5504. #u20363 {
  5505. border-width:0px;
  5506. position:absolute;
  5507. left:2217px;
  5508. top:426px;
  5509. width:80px;
  5510. height:30px;
  5511. display:flex;
  5512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5513. font-weight:400;
  5514. font-style:normal;
  5515. font-size:14px;
  5516. color:#7F7F7F;
  5517. line-height:30px;
  5518. }
  5519. #u20363 .text {
  5520. position:absolute;
  5521. align-self:flex-start;
  5522. padding:0px 0px 0px 0px;
  5523. box-sizing:border-box;
  5524. width:100%;
  5525. }
  5526. #u20363_text {
  5527. border-width:0px;
  5528. word-wrap:break-word;
  5529. text-transform:none;
  5530. }
  5531. #u20364_img {
  5532. border-width:0px;
  5533. position:absolute;
  5534. left:0px;
  5535. top:0px;
  5536. width:100px;
  5537. height:100px;
  5538. }
  5539. #u20364 {
  5540. border-width:0px;
  5541. position:absolute;
  5542. left:2407px;
  5543. top:426px;
  5544. width:100px;
  5545. height:100px;
  5546. display:flex;
  5547. }
  5548. #u20364 .text {
  5549. position:absolute;
  5550. align-self:center;
  5551. padding:2px 2px 2px 2px;
  5552. box-sizing:border-box;
  5553. width:100%;
  5554. }
  5555. #u20364_text {
  5556. border-width:0px;
  5557. word-wrap:break-word;
  5558. text-transform:none;
  5559. visibility:hidden;
  5560. }
  5561. #u20365_img {
  5562. border-width:0px;
  5563. position:absolute;
  5564. left:0px;
  5565. top:0px;
  5566. width:100px;
  5567. height:100px;
  5568. }
  5569. #u20365 {
  5570. border-width:0px;
  5571. position:absolute;
  5572. left:2517px;
  5573. top:426px;
  5574. width:100px;
  5575. height:100px;
  5576. display:flex;
  5577. }
  5578. #u20365 .text {
  5579. position:absolute;
  5580. align-self:center;
  5581. padding:2px 2px 2px 2px;
  5582. box-sizing:border-box;
  5583. width:100%;
  5584. }
  5585. #u20365_text {
  5586. border-width:0px;
  5587. word-wrap:break-word;
  5588. text-transform:none;
  5589. visibility:hidden;
  5590. }
  5591. #u20366_img {
  5592. border-width:0px;
  5593. position:absolute;
  5594. left:0px;
  5595. top:0px;
  5596. width:100px;
  5597. height:100px;
  5598. }
  5599. #u20366 {
  5600. border-width:0px;
  5601. position:absolute;
  5602. left:2627px;
  5603. top:426px;
  5604. width:100px;
  5605. height:100px;
  5606. display:flex;
  5607. }
  5608. #u20366 .text {
  5609. position:absolute;
  5610. align-self:center;
  5611. padding:2px 2px 2px 2px;
  5612. box-sizing:border-box;
  5613. width:100%;
  5614. }
  5615. #u20366_text {
  5616. border-width:0px;
  5617. word-wrap:break-word;
  5618. text-transform:none;
  5619. visibility:hidden;
  5620. }
  5621. #u20367_div {
  5622. border-width:0px;
  5623. position:absolute;
  5624. left:0px;
  5625. top:0px;
  5626. width:1000px;
  5627. height:609px;
  5628. background:inherit;
  5629. background-color:rgba(255, 255, 255, 1);
  5630. box-sizing:border-box;
  5631. border-width:1px;
  5632. border-style:solid;
  5633. border-color:rgba(215, 215, 215, 1);
  5634. border-radius:0px;
  5635. -moz-box-shadow:none;
  5636. -webkit-box-shadow:none;
  5637. box-shadow:none;
  5638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5639. font-weight:400;
  5640. font-style:normal;
  5641. font-size:14px;
  5642. color:#AAAAAA;
  5643. text-align:center;
  5644. line-height:30px;
  5645. }
  5646. #u20367 {
  5647. border-width:0px;
  5648. position:absolute;
  5649. left:2187px;
  5650. top:580px;
  5651. width:1000px;
  5652. height:609px;
  5653. display:flex;
  5654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5655. font-weight:400;
  5656. font-style:normal;
  5657. font-size:14px;
  5658. color:#AAAAAA;
  5659. text-align:center;
  5660. line-height:30px;
  5661. }
  5662. #u20367 .text {
  5663. position:absolute;
  5664. align-self:center;
  5665. padding:5px 10px 5px 10px;
  5666. box-sizing:border-box;
  5667. width:100%;
  5668. }
  5669. #u20367_text {
  5670. border-width:0px;
  5671. word-wrap:break-word;
  5672. text-transform:none;
  5673. visibility:hidden;
  5674. }
  5675. #u20368_div {
  5676. border-width:0px;
  5677. position:absolute;
  5678. left:0px;
  5679. top:0px;
  5680. width:107px;
  5681. height:43px;
  5682. background:inherit;
  5683. background-color:rgba(255, 255, 255, 0);
  5684. border:none;
  5685. border-top:0px;
  5686. border-right:0px;
  5687. border-bottom:0px;
  5688. border-radius:0px;
  5689. border-top-left-radius:0px;
  5690. border-bottom-left-radius:0px;
  5691. -moz-box-shadow:none;
  5692. -webkit-box-shadow:none;
  5693. box-shadow:none;
  5694. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5695. font-weight:500;
  5696. font-style:normal;
  5697. font-size:24px;
  5698. }
  5699. #u20368 {
  5700. border-width:0px;
  5701. position:absolute;
  5702. left:2217px;
  5703. top:606px;
  5704. width:107px;
  5705. height:43px;
  5706. display:flex;
  5707. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5708. font-weight:500;
  5709. font-style:normal;
  5710. font-size:24px;
  5711. }
  5712. #u20368 .text {
  5713. position:absolute;
  5714. align-self:center;
  5715. padding:5px 10px 5px 0px;
  5716. box-sizing:border-box;
  5717. width:100%;
  5718. }
  5719. #u20368_text {
  5720. border-width:0px;
  5721. white-space:nowrap;
  5722. text-transform:none;
  5723. }
  5724. #u20369_div {
  5725. border-width:0px;
  5726. position:absolute;
  5727. left:0px;
  5728. top:0px;
  5729. width:80px;
  5730. height:30px;
  5731. background:inherit;
  5732. background-color:rgba(255, 255, 255, 0);
  5733. border:none;
  5734. border-left:0px;
  5735. border-top:0px;
  5736. border-right:0px;
  5737. border-radius:0px;
  5738. border-bottom-right-radius:0px;
  5739. border-bottom-left-radius:0px;
  5740. -moz-box-shadow:none;
  5741. -webkit-box-shadow:none;
  5742. box-shadow:none;
  5743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5744. font-weight:400;
  5745. font-style:normal;
  5746. font-size:14px;
  5747. color:#7F7F7F;
  5748. line-height:30px;
  5749. }
  5750. #u20369 {
  5751. border-width:0px;
  5752. position:absolute;
  5753. left:2530px;
  5754. top:666px;
  5755. width:80px;
  5756. height:30px;
  5757. display:flex;
  5758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5759. font-weight:400;
  5760. font-style:normal;
  5761. font-size:14px;
  5762. color:#7F7F7F;
  5763. line-height:30px;
  5764. }
  5765. #u20369 .text {
  5766. position:absolute;
  5767. align-self:flex-start;
  5768. padding:0px 0px 0px 0px;
  5769. box-sizing:border-box;
  5770. width:100%;
  5771. }
  5772. #u20369_text {
  5773. border-width:0px;
  5774. word-wrap:break-word;
  5775. text-transform:none;
  5776. }
  5777. #u20370_div {
  5778. border-width:0px;
  5779. position:absolute;
  5780. left:0px;
  5781. top:0px;
  5782. width:138px;
  5783. height:30px;
  5784. background:inherit;
  5785. background-color:rgba(255, 255, 255, 0);
  5786. border:none;
  5787. border-left:0px;
  5788. border-top:0px;
  5789. border-right:0px;
  5790. border-radius:0px;
  5791. border-bottom-right-radius:0px;
  5792. border-bottom-left-radius:0px;
  5793. -moz-box-shadow:none;
  5794. -webkit-box-shadow:none;
  5795. box-shadow:none;
  5796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5797. font-weight:400;
  5798. font-style:normal;
  5799. font-size:14px;
  5800. line-height:30px;
  5801. }
  5802. #u20370 {
  5803. border-width:0px;
  5804. position:absolute;
  5805. left:2610px;
  5806. top:666px;
  5807. width:138px;
  5808. height:30px;
  5809. display:flex;
  5810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5811. font-weight:400;
  5812. font-style:normal;
  5813. font-size:14px;
  5814. line-height:30px;
  5815. }
  5816. #u20370 .text {
  5817. position:absolute;
  5818. align-self:flex-start;
  5819. padding:0px 0px 0px 0px;
  5820. box-sizing:border-box;
  5821. width:100%;
  5822. }
  5823. #u20370_text {
  5824. border-width:0px;
  5825. white-space:nowrap;
  5826. text-transform:none;
  5827. }
  5828. #u20371_div {
  5829. border-width:0px;
  5830. position:absolute;
  5831. left:0px;
  5832. top:0px;
  5833. width:80px;
  5834. height:30px;
  5835. background:inherit;
  5836. background-color:rgba(255, 255, 255, 0);
  5837. border:none;
  5838. border-left:0px;
  5839. border-top:0px;
  5840. border-right:0px;
  5841. border-radius:0px;
  5842. border-bottom-right-radius:0px;
  5843. border-bottom-left-radius:0px;
  5844. -moz-box-shadow:none;
  5845. -webkit-box-shadow:none;
  5846. box-shadow:none;
  5847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5848. font-weight:400;
  5849. font-style:normal;
  5850. font-size:14px;
  5851. color:#7F7F7F;
  5852. line-height:30px;
  5853. }
  5854. #u20371 {
  5855. border-width:0px;
  5856. position:absolute;
  5857. left:2224px;
  5858. top:666px;
  5859. width:80px;
  5860. height:30px;
  5861. display:flex;
  5862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5863. font-weight:400;
  5864. font-style:normal;
  5865. font-size:14px;
  5866. color:#7F7F7F;
  5867. line-height:30px;
  5868. }
  5869. #u20371 .text {
  5870. position:absolute;
  5871. align-self:flex-start;
  5872. padding:0px 0px 0px 0px;
  5873. box-sizing:border-box;
  5874. width:100%;
  5875. }
  5876. #u20371_text {
  5877. border-width:0px;
  5878. word-wrap:break-word;
  5879. text-transform:none;
  5880. }
  5881. #u20372_div {
  5882. border-width:0px;
  5883. position:absolute;
  5884. left:0px;
  5885. top:0px;
  5886. width:29px;
  5887. height:30px;
  5888. background:inherit;
  5889. background-color:rgba(255, 255, 255, 0);
  5890. border:none;
  5891. border-left:0px;
  5892. border-top:0px;
  5893. border-right:0px;
  5894. border-radius:0px;
  5895. border-bottom-right-radius:0px;
  5896. border-bottom-left-radius:0px;
  5897. -moz-box-shadow:none;
  5898. -webkit-box-shadow:none;
  5899. box-shadow:none;
  5900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5901. font-weight:400;
  5902. font-style:normal;
  5903. font-size:14px;
  5904. line-height:30px;
  5905. }
  5906. #u20372 {
  5907. border-width:0px;
  5908. position:absolute;
  5909. left:2304px;
  5910. top:666px;
  5911. width:29px;
  5912. height:30px;
  5913. display:flex;
  5914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5915. font-weight:400;
  5916. font-style:normal;
  5917. font-size:14px;
  5918. line-height:30px;
  5919. }
  5920. #u20372 .text {
  5921. position:absolute;
  5922. align-self:flex-start;
  5923. padding:0px 0px 0px 0px;
  5924. box-sizing:border-box;
  5925. width:100%;
  5926. }
  5927. #u20372_text {
  5928. border-width:0px;
  5929. white-space:nowrap;
  5930. text-transform:none;
  5931. }
  5932. #u20373_div {
  5933. border-width:0px;
  5934. position:absolute;
  5935. left:0px;
  5936. top:0px;
  5937. width:80px;
  5938. height:30px;
  5939. background:inherit;
  5940. background-color:rgba(255, 255, 255, 0);
  5941. border:none;
  5942. border-left:0px;
  5943. border-top:0px;
  5944. border-right:0px;
  5945. border-radius:0px;
  5946. border-bottom-right-radius:0px;
  5947. border-bottom-left-radius:0px;
  5948. -moz-box-shadow:none;
  5949. -webkit-box-shadow:none;
  5950. box-shadow:none;
  5951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5952. font-weight:400;
  5953. font-style:normal;
  5954. font-size:14px;
  5955. color:#7F7F7F;
  5956. line-height:30px;
  5957. }
  5958. #u20373 {
  5959. border-width:0px;
  5960. position:absolute;
  5961. left:2530px;
  5962. top:706px;
  5963. width:80px;
  5964. height:30px;
  5965. display:flex;
  5966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5967. font-weight:400;
  5968. font-style:normal;
  5969. font-size:14px;
  5970. color:#7F7F7F;
  5971. line-height:30px;
  5972. }
  5973. #u20373 .text {
  5974. position:absolute;
  5975. align-self:flex-start;
  5976. padding:0px 0px 0px 0px;
  5977. box-sizing:border-box;
  5978. width:100%;
  5979. }
  5980. #u20373_text {
  5981. border-width:0px;
  5982. word-wrap:break-word;
  5983. text-transform:none;
  5984. }
  5985. #u20374_div {
  5986. border-width:0px;
  5987. position:absolute;
  5988. left:0px;
  5989. top:0px;
  5990. width:577px;
  5991. height:30px;
  5992. background:inherit;
  5993. background-color:rgba(255, 255, 255, 0);
  5994. border:none;
  5995. border-left:0px;
  5996. border-top:0px;
  5997. border-right:0px;
  5998. border-radius:0px;
  5999. border-bottom-right-radius:0px;
  6000. border-bottom-left-radius:0px;
  6001. -moz-box-shadow:none;
  6002. -webkit-box-shadow:none;
  6003. box-shadow:none;
  6004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6005. font-weight:400;
  6006. font-style:normal;
  6007. font-size:14px;
  6008. line-height:30px;
  6009. }
  6010. #u20374 {
  6011. border-width:0px;
  6012. position:absolute;
  6013. left:2610px;
  6014. top:706px;
  6015. width:577px;
  6016. height:30px;
  6017. display:flex;
  6018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6019. font-weight:400;
  6020. font-style:normal;
  6021. font-size:14px;
  6022. line-height:30px;
  6023. }
  6024. #u20374 .text {
  6025. position:absolute;
  6026. align-self:flex-start;
  6027. padding:0px 0px 0px 0px;
  6028. box-sizing:border-box;
  6029. width:100%;
  6030. }
  6031. #u20374_text {
  6032. border-width:0px;
  6033. word-wrap:break-word;
  6034. text-transform:none;
  6035. }
  6036. #u20375_div {
  6037. border-width:0px;
  6038. position:absolute;
  6039. left:0px;
  6040. top:0px;
  6041. width:80px;
  6042. height:30px;
  6043. background:inherit;
  6044. background-color:rgba(255, 255, 255, 0);
  6045. border:none;
  6046. border-left:0px;
  6047. border-top:0px;
  6048. border-right:0px;
  6049. border-radius:0px;
  6050. border-bottom-right-radius:0px;
  6051. border-bottom-left-radius:0px;
  6052. -moz-box-shadow:none;
  6053. -webkit-box-shadow:none;
  6054. box-shadow:none;
  6055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6056. font-weight:400;
  6057. font-style:normal;
  6058. font-size:14px;
  6059. color:#7F7F7F;
  6060. line-height:30px;
  6061. }
  6062. #u20375 {
  6063. border-width:0px;
  6064. position:absolute;
  6065. left:2224px;
  6066. top:706px;
  6067. width:80px;
  6068. height:30px;
  6069. display:flex;
  6070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6071. font-weight:400;
  6072. font-style:normal;
  6073. font-size:14px;
  6074. color:#7F7F7F;
  6075. line-height:30px;
  6076. }
  6077. #u20375 .text {
  6078. position:absolute;
  6079. align-self:flex-start;
  6080. padding:0px 0px 0px 0px;
  6081. box-sizing:border-box;
  6082. width:100%;
  6083. }
  6084. #u20375_text {
  6085. border-width:0px;
  6086. word-wrap:break-word;
  6087. text-transform:none;
  6088. }
  6089. #u20376_div {
  6090. border-width:0px;
  6091. position:absolute;
  6092. left:0px;
  6093. top:0px;
  6094. width:29px;
  6095. height:30px;
  6096. background:inherit;
  6097. background-color:rgba(255, 255, 255, 0);
  6098. border:none;
  6099. border-left:0px;
  6100. border-top:0px;
  6101. border-right:0px;
  6102. border-radius:0px;
  6103. border-bottom-right-radius:0px;
  6104. border-bottom-left-radius:0px;
  6105. -moz-box-shadow:none;
  6106. -webkit-box-shadow:none;
  6107. box-shadow:none;
  6108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6109. font-weight:400;
  6110. font-style:normal;
  6111. font-size:14px;
  6112. line-height:30px;
  6113. }
  6114. #u20376 {
  6115. border-width:0px;
  6116. position:absolute;
  6117. left:2304px;
  6118. top:706px;
  6119. width:29px;
  6120. height:30px;
  6121. display:flex;
  6122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6123. font-weight:400;
  6124. font-style:normal;
  6125. font-size:14px;
  6126. line-height:30px;
  6127. }
  6128. #u20376 .text {
  6129. position:absolute;
  6130. align-self:flex-start;
  6131. padding:0px 0px 0px 0px;
  6132. box-sizing:border-box;
  6133. width:100%;
  6134. }
  6135. #u20376_text {
  6136. border-width:0px;
  6137. white-space:nowrap;
  6138. text-transform:none;
  6139. }
  6140. #u20377 {
  6141. border-width:0px;
  6142. position:absolute;
  6143. left:0px;
  6144. top:0px;
  6145. width:0px;
  6146. height:0px;
  6147. }
  6148. #u20378_div {
  6149. border-width:0px;
  6150. position:absolute;
  6151. left:0px;
  6152. top:0px;
  6153. width:1000px;
  6154. height:1200px;
  6155. background:inherit;
  6156. background-color:rgba(242, 242, 242, 1);
  6157. box-sizing:border-box;
  6158. border-width:1px;
  6159. border-style:solid;
  6160. border-color:rgba(215, 215, 215, 1);
  6161. border-radius:0px;
  6162. -moz-box-shadow:none;
  6163. -webkit-box-shadow:none;
  6164. box-shadow:none;
  6165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6166. font-weight:400;
  6167. font-style:normal;
  6168. font-size:14px;
  6169. color:#AAAAAA;
  6170. text-align:center;
  6171. line-height:30px;
  6172. }
  6173. #u20378 {
  6174. border-width:0px;
  6175. position:absolute;
  6176. left:3207px;
  6177. top:49px;
  6178. width:1000px;
  6179. height:1200px;
  6180. display:flex;
  6181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6182. font-weight:400;
  6183. font-style:normal;
  6184. font-size:14px;
  6185. color:#AAAAAA;
  6186. text-align:center;
  6187. line-height:30px;
  6188. }
  6189. #u20378 .text {
  6190. position:absolute;
  6191. align-self:center;
  6192. padding:5px 10px 5px 10px;
  6193. box-sizing:border-box;
  6194. width:100%;
  6195. }
  6196. #u20378_text {
  6197. border-width:0px;
  6198. word-wrap:break-word;
  6199. text-transform:none;
  6200. visibility:hidden;
  6201. }
  6202. #u20379_div {
  6203. border-width:0px;
  6204. position:absolute;
  6205. left:0px;
  6206. top:0px;
  6207. width:1000px;
  6208. height:521px;
  6209. background:inherit;
  6210. background-color:rgba(255, 255, 255, 1);
  6211. box-sizing:border-box;
  6212. border-width:1px;
  6213. border-style:solid;
  6214. border-color:rgba(215, 215, 215, 1);
  6215. border-radius:0px;
  6216. -moz-box-shadow:none;
  6217. -webkit-box-shadow:none;
  6218. box-shadow:none;
  6219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6220. font-weight:400;
  6221. font-style:normal;
  6222. font-size:14px;
  6223. color:#AAAAAA;
  6224. text-align:center;
  6225. line-height:30px;
  6226. }
  6227. #u20379 {
  6228. border-width:0px;
  6229. position:absolute;
  6230. left:3207px;
  6231. top:49px;
  6232. width:1000px;
  6233. height:521px;
  6234. display:flex;
  6235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6236. font-weight:400;
  6237. font-style:normal;
  6238. font-size:14px;
  6239. color:#AAAAAA;
  6240. text-align:center;
  6241. line-height:30px;
  6242. }
  6243. #u20379 .text {
  6244. position:absolute;
  6245. align-self:center;
  6246. padding:5px 10px 5px 10px;
  6247. box-sizing:border-box;
  6248. width:100%;
  6249. }
  6250. #u20379_text {
  6251. border-width:0px;
  6252. word-wrap:break-word;
  6253. text-transform:none;
  6254. visibility:hidden;
  6255. }
  6256. #u20380_div {
  6257. border-width:0px;
  6258. position:absolute;
  6259. left:0px;
  6260. top:0px;
  6261. width:83px;
  6262. height:35px;
  6263. background:inherit;
  6264. background-color:rgba(255, 255, 255, 0);
  6265. border:none;
  6266. border-top:0px;
  6267. border-right:0px;
  6268. border-bottom:0px;
  6269. border-radius:0px;
  6270. border-top-left-radius:0px;
  6271. border-bottom-left-radius:0px;
  6272. -moz-box-shadow:none;
  6273. -webkit-box-shadow:none;
  6274. box-shadow:none;
  6275. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6276. font-weight:500;
  6277. font-style:normal;
  6278. font-size:18px;
  6279. }
  6280. #u20380 {
  6281. border-width:0px;
  6282. position:absolute;
  6283. left:3227px;
  6284. top:67px;
  6285. width:83px;
  6286. height:35px;
  6287. display:flex;
  6288. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6289. font-weight:500;
  6290. font-style:normal;
  6291. font-size:18px;
  6292. }
  6293. #u20380 .text {
  6294. position:absolute;
  6295. align-self:center;
  6296. padding:5px 10px 5px 0px;
  6297. box-sizing:border-box;
  6298. width:100%;
  6299. }
  6300. #u20380_text {
  6301. border-width:0px;
  6302. white-space:nowrap;
  6303. text-transform:none;
  6304. }
  6305. #u20381 {
  6306. border-width:0px;
  6307. position:absolute;
  6308. left:0px;
  6309. top:0px;
  6310. width:0px;
  6311. height:0px;
  6312. }
  6313. #u20382_div {
  6314. border-width:0px;
  6315. position:absolute;
  6316. left:0px;
  6317. top:0px;
  6318. width:40px;
  6319. height:40px;
  6320. background:inherit;
  6321. background-color:rgba(255, 255, 255, 0);
  6322. border:none;
  6323. border-top:0px;
  6324. border-right:0px;
  6325. border-bottom:0px;
  6326. border-radius:0px;
  6327. border-top-left-radius:0px;
  6328. border-bottom-left-radius:0px;
  6329. -moz-box-shadow:none;
  6330. -webkit-box-shadow:none;
  6331. box-shadow:none;
  6332. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6333. font-weight:500;
  6334. font-style:normal;
  6335. font-size:14px;
  6336. text-align:center;
  6337. }
  6338. #u20382 {
  6339. border-width:0px;
  6340. position:absolute;
  6341. left:4167px;
  6342. top:49px;
  6343. width:40px;
  6344. height:40px;
  6345. display:flex;
  6346. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6347. font-weight:500;
  6348. font-style:normal;
  6349. font-size:14px;
  6350. text-align:center;
  6351. }
  6352. #u20382 .text {
  6353. position:absolute;
  6354. align-self:center;
  6355. padding:5px 10px 5px 0px;
  6356. box-sizing:border-box;
  6357. width:100%;
  6358. }
  6359. #u20382_text {
  6360. border-width:0px;
  6361. word-wrap:break-word;
  6362. text-transform:none;
  6363. }
  6364. #u20383_img {
  6365. border-width:0px;
  6366. position:absolute;
  6367. left:0px;
  6368. top:0px;
  6369. width:13px;
  6370. height:13px;
  6371. }
  6372. #u20383 {
  6373. border-width:0px;
  6374. position:absolute;
  6375. left:4155px;
  6376. top:65px;
  6377. width:13px;
  6378. height:13px;
  6379. display:flex;
  6380. font-size:14px;
  6381. }
  6382. #u20383 .text {
  6383. position:absolute;
  6384. align-self:center;
  6385. padding:2px 2px 2px 2px;
  6386. box-sizing:border-box;
  6387. width:100%;
  6388. }
  6389. #u20383_text {
  6390. border-width:0px;
  6391. word-wrap:break-word;
  6392. text-transform:none;
  6393. visibility:hidden;
  6394. }
  6395. #u20384_div {
  6396. border-width:0px;
  6397. position:absolute;
  6398. left:0px;
  6399. top:0px;
  6400. width:396px;
  6401. height:43px;
  6402. background:inherit;
  6403. background-color:rgba(255, 255, 255, 0);
  6404. border:none;
  6405. border-top:0px;
  6406. border-right:0px;
  6407. border-bottom:0px;
  6408. border-radius:0px;
  6409. border-top-left-radius:0px;
  6410. border-bottom-left-radius:0px;
  6411. -moz-box-shadow:none;
  6412. -webkit-box-shadow:none;
  6413. box-shadow:none;
  6414. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6415. font-weight:500;
  6416. font-style:normal;
  6417. font-size:24px;
  6418. }
  6419. #u20384 {
  6420. border-width:0px;
  6421. position:absolute;
  6422. left:3237px;
  6423. top:118px;
  6424. width:396px;
  6425. height:43px;
  6426. display:flex;
  6427. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6428. font-weight:500;
  6429. font-style:normal;
  6430. font-size:24px;
  6431. }
  6432. #u20384 .text {
  6433. position:absolute;
  6434. align-self:center;
  6435. padding:5px 10px 5px 0px;
  6436. box-sizing:border-box;
  6437. width:100%;
  6438. }
  6439. #u20384_text {
  6440. border-width:0px;
  6441. white-space:nowrap;
  6442. text-transform:none;
  6443. }
  6444. #u20385_img {
  6445. border-width:0px;
  6446. position:absolute;
  6447. left:0px;
  6448. top:0px;
  6449. width:108px;
  6450. height:108px;
  6451. }
  6452. #u20385 {
  6453. border-width:0px;
  6454. position:absolute;
  6455. left:4057px;
  6456. top:119px;
  6457. width:108px;
  6458. height:108px;
  6459. display:flex;
  6460. -webkit-transform:rotate(315deg);
  6461. -moz-transform:rotate(315deg);
  6462. -ms-transform:rotate(315deg);
  6463. transform:rotate(315deg);
  6464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6465. font-weight:400;
  6466. font-style:normal;
  6467. font-size:28px;
  6468. color:#AAAAAA;
  6469. }
  6470. #u20385 .text {
  6471. position:absolute;
  6472. align-self:center;
  6473. padding:2px 2px 2px 2px;
  6474. box-sizing:border-box;
  6475. width:100%;
  6476. }
  6477. #u20385_text {
  6478. border-width:0px;
  6479. word-wrap:break-word;
  6480. text-transform:none;
  6481. }
  6482. #u20386 {
  6483. border-width:0px;
  6484. position:absolute;
  6485. left:0px;
  6486. top:0px;
  6487. width:0px;
  6488. height:0px;
  6489. }
  6490. #u20387_div {
  6491. border-width:0px;
  6492. position:absolute;
  6493. left:0px;
  6494. top:0px;
  6495. width:1000px;
  6496. height:60px;
  6497. background:inherit;
  6498. background-color:rgba(255, 255, 255, 1);
  6499. box-sizing:border-box;
  6500. border-width:1px;
  6501. border-style:solid;
  6502. border-color:rgba(215, 215, 215, 1);
  6503. border-radius:0px;
  6504. -moz-box-shadow:none;
  6505. -webkit-box-shadow:none;
  6506. box-shadow:none;
  6507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6508. font-weight:400;
  6509. font-style:normal;
  6510. font-size:14px;
  6511. color:#AAAAAA;
  6512. text-align:center;
  6513. line-height:30px;
  6514. }
  6515. #u20387 {
  6516. border-width:0px;
  6517. position:absolute;
  6518. left:3207px;
  6519. top:1189px;
  6520. width:1000px;
  6521. height:60px;
  6522. display:flex;
  6523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6524. font-weight:400;
  6525. font-style:normal;
  6526. font-size:14px;
  6527. color:#AAAAAA;
  6528. text-align:center;
  6529. line-height:30px;
  6530. }
  6531. #u20387 .text {
  6532. position:absolute;
  6533. align-self:center;
  6534. padding:5px 10px 5px 10px;
  6535. box-sizing:border-box;
  6536. width:100%;
  6537. }
  6538. #u20387_text {
  6539. border-width:0px;
  6540. word-wrap:break-word;
  6541. text-transform:none;
  6542. visibility:hidden;
  6543. }
  6544. #u20388_div {
  6545. border-width:0px;
  6546. position:absolute;
  6547. left:0px;
  6548. top:0px;
  6549. width:80px;
  6550. height:30px;
  6551. background:inherit;
  6552. background-color:rgba(255, 255, 255, 1);
  6553. box-sizing:border-box;
  6554. border-width:1px;
  6555. border-style:solid;
  6556. border-color:rgba(170, 170, 170, 1);
  6557. border-radius:4px;
  6558. -moz-box-shadow:none;
  6559. -webkit-box-shadow:none;
  6560. box-shadow:none;
  6561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6562. font-weight:400;
  6563. font-style:normal;
  6564. font-size:14px;
  6565. }
  6566. #u20388 {
  6567. border-width:0px;
  6568. position:absolute;
  6569. left:4107px;
  6570. top:1204px;
  6571. width:80px;
  6572. height:30px;
  6573. display:flex;
  6574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6575. font-weight:400;
  6576. font-style:normal;
  6577. font-size:14px;
  6578. }
  6579. #u20388 .text {
  6580. position:absolute;
  6581. align-self:center;
  6582. padding:2px 2px 2px 2px;
  6583. box-sizing:border-box;
  6584. width:100%;
  6585. }
  6586. #u20388_text {
  6587. border-width:0px;
  6588. word-wrap:break-word;
  6589. text-transform:none;
  6590. }
  6591. #u20389_div {
  6592. border-width:0px;
  6593. position:absolute;
  6594. left:0px;
  6595. top:0px;
  6596. width:80px;
  6597. height:30px;
  6598. background:inherit;
  6599. background-color:rgba(255, 255, 255, 0);
  6600. border:none;
  6601. border-left:0px;
  6602. border-top:0px;
  6603. border-right:0px;
  6604. border-radius:0px;
  6605. border-bottom-right-radius:0px;
  6606. border-bottom-left-radius:0px;
  6607. -moz-box-shadow:none;
  6608. -webkit-box-shadow:none;
  6609. box-shadow:none;
  6610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6611. font-weight:400;
  6612. font-style:normal;
  6613. font-size:14px;
  6614. color:#7F7F7F;
  6615. line-height:30px;
  6616. }
  6617. #u20389 {
  6618. border-width:0px;
  6619. position:absolute;
  6620. left:3550px;
  6621. top:306px;
  6622. width:80px;
  6623. height:30px;
  6624. display:flex;
  6625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6626. font-weight:400;
  6627. font-style:normal;
  6628. font-size:14px;
  6629. color:#7F7F7F;
  6630. line-height:30px;
  6631. }
  6632. #u20389 .text {
  6633. position:absolute;
  6634. align-self:flex-start;
  6635. padding:0px 0px 0px 0px;
  6636. box-sizing:border-box;
  6637. width:100%;
  6638. }
  6639. #u20389_text {
  6640. border-width:0px;
  6641. word-wrap:break-word;
  6642. text-transform:none;
  6643. }
  6644. #u20390_div {
  6645. border-width:0px;
  6646. position:absolute;
  6647. left:0px;
  6648. top:0px;
  6649. width:113px;
  6650. height:30px;
  6651. background:inherit;
  6652. background-color:rgba(255, 255, 255, 0);
  6653. border:none;
  6654. border-left:0px;
  6655. border-top:0px;
  6656. border-right:0px;
  6657. border-radius:0px;
  6658. border-bottom-right-radius:0px;
  6659. border-bottom-left-radius:0px;
  6660. -moz-box-shadow:none;
  6661. -webkit-box-shadow:none;
  6662. box-shadow:none;
  6663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6664. font-weight:400;
  6665. font-style:normal;
  6666. font-size:14px;
  6667. line-height:30px;
  6668. }
  6669. #u20390 {
  6670. border-width:0px;
  6671. position:absolute;
  6672. left:3630px;
  6673. top:306px;
  6674. width:113px;
  6675. height:30px;
  6676. display:flex;
  6677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6678. font-weight:400;
  6679. font-style:normal;
  6680. font-size:14px;
  6681. line-height:30px;
  6682. }
  6683. #u20390 .text {
  6684. position:absolute;
  6685. align-self:flex-start;
  6686. padding:0px 0px 0px 0px;
  6687. box-sizing:border-box;
  6688. width:100%;
  6689. }
  6690. #u20390_text {
  6691. border-width:0px;
  6692. white-space:nowrap;
  6693. text-transform:none;
  6694. }
  6695. #u20391_div {
  6696. border-width:0px;
  6697. position:absolute;
  6698. left:0px;
  6699. top:0px;
  6700. width:80px;
  6701. height:30px;
  6702. background:inherit;
  6703. background-color:rgba(255, 255, 255, 0);
  6704. border:none;
  6705. border-left:0px;
  6706. border-top:0px;
  6707. border-right:0px;
  6708. border-radius:0px;
  6709. border-bottom-right-radius:0px;
  6710. border-bottom-left-radius:0px;
  6711. -moz-box-shadow:none;
  6712. -webkit-box-shadow:none;
  6713. box-shadow:none;
  6714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6715. font-weight:400;
  6716. font-style:normal;
  6717. font-size:14px;
  6718. color:#7F7F7F;
  6719. line-height:30px;
  6720. }
  6721. #u20391 {
  6722. border-width:0px;
  6723. position:absolute;
  6724. left:3237px;
  6725. top:226px;
  6726. width:80px;
  6727. height:30px;
  6728. display:flex;
  6729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6730. font-weight:400;
  6731. font-style:normal;
  6732. font-size:14px;
  6733. color:#7F7F7F;
  6734. line-height:30px;
  6735. }
  6736. #u20391 .text {
  6737. position:absolute;
  6738. align-self:flex-start;
  6739. padding:0px 0px 0px 0px;
  6740. box-sizing:border-box;
  6741. width:100%;
  6742. }
  6743. #u20391_text {
  6744. border-width:0px;
  6745. word-wrap:break-word;
  6746. text-transform:none;
  6747. }
  6748. #u20392_div {
  6749. border-width:0px;
  6750. position:absolute;
  6751. left:0px;
  6752. top:0px;
  6753. width:99px;
  6754. height:30px;
  6755. background:inherit;
  6756. background-color:rgba(255, 255, 255, 0);
  6757. border:none;
  6758. border-left:0px;
  6759. border-top:0px;
  6760. border-right:0px;
  6761. border-radius:0px;
  6762. border-bottom-right-radius:0px;
  6763. border-bottom-left-radius:0px;
  6764. -moz-box-shadow:none;
  6765. -webkit-box-shadow:none;
  6766. box-shadow:none;
  6767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6768. font-weight:400;
  6769. font-style:normal;
  6770. font-size:14px;
  6771. line-height:30px;
  6772. }
  6773. #u20392 {
  6774. border-width:0px;
  6775. position:absolute;
  6776. left:3317px;
  6777. top:226px;
  6778. width:99px;
  6779. height:30px;
  6780. display:flex;
  6781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6782. font-weight:400;
  6783. font-style:normal;
  6784. font-size:14px;
  6785. line-height:30px;
  6786. }
  6787. #u20392 .text {
  6788. position:absolute;
  6789. align-self:flex-start;
  6790. padding:0px 0px 0px 0px;
  6791. box-sizing:border-box;
  6792. width:100%;
  6793. }
  6794. #u20392_text {
  6795. border-width:0px;
  6796. white-space:nowrap;
  6797. text-transform:none;
  6798. }
  6799. #u20393_div {
  6800. border-width:0px;
  6801. position:absolute;
  6802. left:0px;
  6803. top:0px;
  6804. width:80px;
  6805. height:30px;
  6806. background:inherit;
  6807. background-color:rgba(255, 255, 255, 0);
  6808. border:none;
  6809. border-left:0px;
  6810. border-top:0px;
  6811. border-right:0px;
  6812. border-radius:0px;
  6813. border-bottom-right-radius:0px;
  6814. border-bottom-left-radius:0px;
  6815. -moz-box-shadow:none;
  6816. -webkit-box-shadow:none;
  6817. box-shadow:none;
  6818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6819. font-weight:400;
  6820. font-style:normal;
  6821. font-size:14px;
  6822. color:#7F7F7F;
  6823. line-height:30px;
  6824. }
  6825. #u20393 {
  6826. border-width:0px;
  6827. position:absolute;
  6828. left:3550px;
  6829. top:266px;
  6830. width:80px;
  6831. height:30px;
  6832. display:flex;
  6833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6834. font-weight:400;
  6835. font-style:normal;
  6836. font-size:14px;
  6837. color:#7F7F7F;
  6838. line-height:30px;
  6839. }
  6840. #u20393 .text {
  6841. position:absolute;
  6842. align-self:flex-start;
  6843. padding:0px 0px 0px 0px;
  6844. box-sizing:border-box;
  6845. width:100%;
  6846. }
  6847. #u20393_text {
  6848. border-width:0px;
  6849. word-wrap:break-word;
  6850. text-transform:none;
  6851. }
  6852. #u20394_div {
  6853. border-width:0px;
  6854. position:absolute;
  6855. left:0px;
  6856. top:0px;
  6857. width:82px;
  6858. height:30px;
  6859. background:inherit;
  6860. background-color:rgba(255, 255, 255, 0);
  6861. border:none;
  6862. border-left:0px;
  6863. border-top:0px;
  6864. border-right:0px;
  6865. border-radius:0px;
  6866. border-bottom-right-radius:0px;
  6867. border-bottom-left-radius:0px;
  6868. -moz-box-shadow:none;
  6869. -webkit-box-shadow:none;
  6870. box-shadow:none;
  6871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6872. font-weight:400;
  6873. font-style:normal;
  6874. font-size:14px;
  6875. line-height:30px;
  6876. }
  6877. #u20394 {
  6878. border-width:0px;
  6879. position:absolute;
  6880. left:3630px;
  6881. top:266px;
  6882. width:82px;
  6883. height:30px;
  6884. display:flex;
  6885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6886. font-weight:400;
  6887. font-style:normal;
  6888. font-size:14px;
  6889. line-height:30px;
  6890. }
  6891. #u20394 .text {
  6892. position:absolute;
  6893. align-self:flex-start;
  6894. padding:0px 0px 0px 0px;
  6895. box-sizing:border-box;
  6896. width:100%;
  6897. }
  6898. #u20394_text {
  6899. border-width:0px;
  6900. white-space:nowrap;
  6901. text-transform:none;
  6902. }
  6903. #u20395_div {
  6904. border-width:0px;
  6905. position:absolute;
  6906. left:0px;
  6907. top:0px;
  6908. width:80px;
  6909. height:30px;
  6910. background:inherit;
  6911. background-color:rgba(255, 255, 255, 0);
  6912. border:none;
  6913. border-left:0px;
  6914. border-top:0px;
  6915. border-right:0px;
  6916. border-radius:0px;
  6917. border-bottom-right-radius:0px;
  6918. border-bottom-left-radius:0px;
  6919. -moz-box-shadow:none;
  6920. -webkit-box-shadow:none;
  6921. box-shadow:none;
  6922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6923. font-weight:400;
  6924. font-style:normal;
  6925. font-size:14px;
  6926. color:#7F7F7F;
  6927. line-height:30px;
  6928. }
  6929. #u20395 {
  6930. border-width:0px;
  6931. position:absolute;
  6932. left:3237px;
  6933. top:266px;
  6934. width:80px;
  6935. height:30px;
  6936. display:flex;
  6937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6938. font-weight:400;
  6939. font-style:normal;
  6940. font-size:14px;
  6941. color:#7F7F7F;
  6942. line-height:30px;
  6943. }
  6944. #u20395 .text {
  6945. position:absolute;
  6946. align-self:flex-start;
  6947. padding:0px 0px 0px 0px;
  6948. box-sizing:border-box;
  6949. width:100%;
  6950. }
  6951. #u20395_text {
  6952. border-width:0px;
  6953. word-wrap:break-word;
  6954. text-transform:none;
  6955. }
  6956. #u20396_div {
  6957. border-width:0px;
  6958. position:absolute;
  6959. left:0px;
  6960. top:0px;
  6961. width:29px;
  6962. height:30px;
  6963. background:inherit;
  6964. background-color:rgba(255, 255, 255, 0);
  6965. border:none;
  6966. border-left:0px;
  6967. border-top:0px;
  6968. border-right:0px;
  6969. border-radius:0px;
  6970. border-bottom-right-radius:0px;
  6971. border-bottom-left-radius:0px;
  6972. -moz-box-shadow:none;
  6973. -webkit-box-shadow:none;
  6974. box-shadow:none;
  6975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6976. font-weight:400;
  6977. font-style:normal;
  6978. font-size:14px;
  6979. line-height:30px;
  6980. }
  6981. #u20396 {
  6982. border-width:0px;
  6983. position:absolute;
  6984. left:3317px;
  6985. top:266px;
  6986. width:29px;
  6987. height:30px;
  6988. display:flex;
  6989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6990. font-weight:400;
  6991. font-style:normal;
  6992. font-size:14px;
  6993. line-height:30px;
  6994. }
  6995. #u20396 .text {
  6996. position:absolute;
  6997. align-self:flex-start;
  6998. padding:0px 0px 0px 0px;
  6999. box-sizing:border-box;
  7000. width:100%;
  7001. }
  7002. #u20396_text {
  7003. border-width:0px;
  7004. white-space:nowrap;
  7005. text-transform:none;
  7006. }
  7007. #u20397_img {
  7008. border-width:0px;
  7009. position:absolute;
  7010. left:0px;
  7011. top:0px;
  7012. width:100px;
  7013. height:100px;
  7014. }
  7015. #u20397 {
  7016. border-width:0px;
  7017. position:absolute;
  7018. left:3317px;
  7019. top:426px;
  7020. width:100px;
  7021. height:100px;
  7022. display:flex;
  7023. }
  7024. #u20397 .text {
  7025. position:absolute;
  7026. align-self:center;
  7027. padding:2px 2px 2px 2px;
  7028. box-sizing:border-box;
  7029. width:100%;
  7030. }
  7031. #u20397_text {
  7032. border-width:0px;
  7033. word-wrap:break-word;
  7034. text-transform:none;
  7035. visibility:hidden;
  7036. }
  7037. #u20398_div {
  7038. border-width:0px;
  7039. position:absolute;
  7040. left:0px;
  7041. top:0px;
  7042. width:80px;
  7043. height:30px;
  7044. background:inherit;
  7045. background-color:rgba(255, 255, 255, 0);
  7046. border:none;
  7047. border-left:0px;
  7048. border-top:0px;
  7049. border-right:0px;
  7050. border-radius:0px;
  7051. border-bottom-right-radius:0px;
  7052. border-bottom-left-radius:0px;
  7053. -moz-box-shadow:none;
  7054. -webkit-box-shadow:none;
  7055. box-shadow:none;
  7056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7057. font-weight:400;
  7058. font-style:normal;
  7059. font-size:14px;
  7060. color:#7F7F7F;
  7061. line-height:30px;
  7062. }
  7063. #u20398 {
  7064. border-width:0px;
  7065. position:absolute;
  7066. left:3550px;
  7067. top:226px;
  7068. width:80px;
  7069. height:30px;
  7070. display:flex;
  7071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7072. font-weight:400;
  7073. font-style:normal;
  7074. font-size:14px;
  7075. color:#7F7F7F;
  7076. line-height:30px;
  7077. }
  7078. #u20398 .text {
  7079. position:absolute;
  7080. align-self:flex-start;
  7081. padding:0px 0px 0px 0px;
  7082. box-sizing:border-box;
  7083. width:100%;
  7084. }
  7085. #u20398_text {
  7086. border-width:0px;
  7087. word-wrap:break-word;
  7088. text-transform:none;
  7089. }
  7090. #u20399_div {
  7091. border-width:0px;
  7092. position:absolute;
  7093. left:0px;
  7094. top:0px;
  7095. width:173px;
  7096. height:30px;
  7097. background:inherit;
  7098. background-color:rgba(255, 255, 255, 0);
  7099. border:none;
  7100. border-left:0px;
  7101. border-top:0px;
  7102. border-right:0px;
  7103. border-radius:0px;
  7104. border-bottom-right-radius:0px;
  7105. border-bottom-left-radius:0px;
  7106. -moz-box-shadow:none;
  7107. -webkit-box-shadow:none;
  7108. box-shadow:none;
  7109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7110. font-weight:400;
  7111. font-style:normal;
  7112. font-size:14px;
  7113. line-height:30px;
  7114. }
  7115. #u20399 {
  7116. border-width:0px;
  7117. position:absolute;
  7118. left:3630px;
  7119. top:226px;
  7120. width:173px;
  7121. height:30px;
  7122. display:flex;
  7123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7124. font-weight:400;
  7125. font-style:normal;
  7126. font-size:14px;
  7127. line-height:30px;
  7128. }
  7129. #u20399 .text {
  7130. position:absolute;
  7131. align-self:flex-start;
  7132. padding:0px 0px 0px 0px;
  7133. box-sizing:border-box;
  7134. width:100%;
  7135. }
  7136. #u20399_text {
  7137. border-width:0px;
  7138. white-space:nowrap;
  7139. text-transform:none;
  7140. }
  7141. #u20400_div {
  7142. border-width:0px;
  7143. position:absolute;
  7144. left:0px;
  7145. top:0px;
  7146. width:80px;
  7147. height:30px;
  7148. background:inherit;
  7149. background-color:rgba(255, 255, 255, 0);
  7150. border:none;
  7151. border-left:0px;
  7152. border-top:0px;
  7153. border-right:0px;
  7154. border-radius:0px;
  7155. border-bottom-right-radius:0px;
  7156. border-bottom-left-radius:0px;
  7157. -moz-box-shadow:none;
  7158. -webkit-box-shadow:none;
  7159. box-shadow:none;
  7160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7161. font-weight:400;
  7162. font-style:normal;
  7163. font-size:14px;
  7164. color:#7F7F7F;
  7165. line-height:30px;
  7166. }
  7167. #u20400 {
  7168. border-width:0px;
  7169. position:absolute;
  7170. left:3237px;
  7171. top:186px;
  7172. width:80px;
  7173. height:30px;
  7174. display:flex;
  7175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7176. font-weight:400;
  7177. font-style:normal;
  7178. font-size:14px;
  7179. color:#7F7F7F;
  7180. line-height:30px;
  7181. }
  7182. #u20400 .text {
  7183. position:absolute;
  7184. align-self:flex-start;
  7185. padding:0px 0px 0px 0px;
  7186. box-sizing:border-box;
  7187. width:100%;
  7188. }
  7189. #u20400_text {
  7190. border-width:0px;
  7191. word-wrap:break-word;
  7192. text-transform:none;
  7193. }
  7194. #u20401_div {
  7195. border-width:0px;
  7196. position:absolute;
  7197. left:0px;
  7198. top:0px;
  7199. width:113px;
  7200. height:30px;
  7201. background:inherit;
  7202. background-color:rgba(255, 255, 255, 0);
  7203. border:none;
  7204. border-left:0px;
  7205. border-top:0px;
  7206. border-right:0px;
  7207. border-radius:0px;
  7208. border-bottom-right-radius:0px;
  7209. border-bottom-left-radius:0px;
  7210. -moz-box-shadow:none;
  7211. -webkit-box-shadow:none;
  7212. box-shadow:none;
  7213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7214. font-weight:400;
  7215. font-style:normal;
  7216. font-size:14px;
  7217. line-height:30px;
  7218. }
  7219. #u20401 {
  7220. border-width:0px;
  7221. position:absolute;
  7222. left:3317px;
  7223. top:186px;
  7224. width:113px;
  7225. height:30px;
  7226. display:flex;
  7227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7228. font-weight:400;
  7229. font-style:normal;
  7230. font-size:14px;
  7231. line-height:30px;
  7232. }
  7233. #u20401 .text {
  7234. position:absolute;
  7235. align-self:flex-start;
  7236. padding:0px 0px 0px 0px;
  7237. box-sizing:border-box;
  7238. width:100%;
  7239. }
  7240. #u20401_text {
  7241. border-width:0px;
  7242. white-space:nowrap;
  7243. text-transform:none;
  7244. }
  7245. #u20402_div {
  7246. border-width:0px;
  7247. position:absolute;
  7248. left:0px;
  7249. top:0px;
  7250. width:80px;
  7251. height:30px;
  7252. background:inherit;
  7253. background-color:rgba(255, 255, 255, 0);
  7254. border:none;
  7255. border-left:0px;
  7256. border-top:0px;
  7257. border-right:0px;
  7258. border-radius:0px;
  7259. border-bottom-right-radius:0px;
  7260. border-bottom-left-radius:0px;
  7261. -moz-box-shadow:none;
  7262. -webkit-box-shadow:none;
  7263. box-shadow:none;
  7264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7265. font-weight:400;
  7266. font-style:normal;
  7267. font-size:14px;
  7268. color:#7F7F7F;
  7269. line-height:30px;
  7270. }
  7271. #u20402 {
  7272. border-width:0px;
  7273. position:absolute;
  7274. left:3237px;
  7275. top:306px;
  7276. width:80px;
  7277. height:30px;
  7278. display:flex;
  7279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7280. font-weight:400;
  7281. font-style:normal;
  7282. font-size:14px;
  7283. color:#7F7F7F;
  7284. line-height:30px;
  7285. }
  7286. #u20402 .text {
  7287. position:absolute;
  7288. align-self:flex-start;
  7289. padding:0px 0px 0px 0px;
  7290. box-sizing:border-box;
  7291. width:100%;
  7292. }
  7293. #u20402_text {
  7294. border-width:0px;
  7295. word-wrap:break-word;
  7296. text-transform:none;
  7297. }
  7298. #u20403_div {
  7299. border-width:0px;
  7300. position:absolute;
  7301. left:0px;
  7302. top:0px;
  7303. width:138px;
  7304. height:30px;
  7305. background:inherit;
  7306. background-color:rgba(255, 255, 255, 0);
  7307. border:none;
  7308. border-left:0px;
  7309. border-top:0px;
  7310. border-right:0px;
  7311. border-radius:0px;
  7312. border-bottom-right-radius:0px;
  7313. border-bottom-left-radius:0px;
  7314. -moz-box-shadow:none;
  7315. -webkit-box-shadow:none;
  7316. box-shadow:none;
  7317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7318. font-weight:400;
  7319. font-style:normal;
  7320. font-size:14px;
  7321. line-height:30px;
  7322. }
  7323. #u20403 {
  7324. border-width:0px;
  7325. position:absolute;
  7326. left:3317px;
  7327. top:306px;
  7328. width:138px;
  7329. height:30px;
  7330. display:flex;
  7331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7332. font-weight:400;
  7333. font-style:normal;
  7334. font-size:14px;
  7335. line-height:30px;
  7336. }
  7337. #u20403 .text {
  7338. position:absolute;
  7339. align-self:flex-start;
  7340. padding:0px 0px 0px 0px;
  7341. box-sizing:border-box;
  7342. width:100%;
  7343. }
  7344. #u20403_text {
  7345. border-width:0px;
  7346. white-space:nowrap;
  7347. text-transform:none;
  7348. }
  7349. #u20404_div {
  7350. border-width:0px;
  7351. position:absolute;
  7352. left:0px;
  7353. top:0px;
  7354. width:80px;
  7355. height:30px;
  7356. background:inherit;
  7357. background-color:rgba(255, 255, 255, 0);
  7358. border:none;
  7359. border-left:0px;
  7360. border-top:0px;
  7361. border-right:0px;
  7362. border-radius:0px;
  7363. border-bottom-right-radius:0px;
  7364. border-bottom-left-radius:0px;
  7365. -moz-box-shadow:none;
  7366. -webkit-box-shadow:none;
  7367. box-shadow:none;
  7368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7369. font-weight:400;
  7370. font-style:normal;
  7371. font-size:14px;
  7372. color:#7F7F7F;
  7373. line-height:30px;
  7374. }
  7375. #u20404 {
  7376. border-width:0px;
  7377. position:absolute;
  7378. left:3237px;
  7379. top:356px;
  7380. width:80px;
  7381. height:30px;
  7382. display:flex;
  7383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7384. font-weight:400;
  7385. font-style:normal;
  7386. font-size:14px;
  7387. color:#7F7F7F;
  7388. line-height:30px;
  7389. }
  7390. #u20404 .text {
  7391. position:absolute;
  7392. align-self:flex-start;
  7393. padding:0px 0px 0px 0px;
  7394. box-sizing:border-box;
  7395. width:100%;
  7396. }
  7397. #u20404_text {
  7398. border-width:0px;
  7399. word-wrap:break-word;
  7400. text-transform:none;
  7401. }
  7402. #u20405_div {
  7403. border-width:0px;
  7404. position:absolute;
  7405. left:0px;
  7406. top:0px;
  7407. width:774px;
  7408. height:60px;
  7409. background:inherit;
  7410. background-color:rgba(255, 255, 255, 0);
  7411. border:none;
  7412. border-left:0px;
  7413. border-top:0px;
  7414. border-right:0px;
  7415. border-radius:0px;
  7416. border-bottom-right-radius:0px;
  7417. border-bottom-left-radius:0px;
  7418. -moz-box-shadow:none;
  7419. -webkit-box-shadow:none;
  7420. box-shadow:none;
  7421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7422. font-weight:400;
  7423. font-style:normal;
  7424. font-size:14px;
  7425. line-height:30px;
  7426. }
  7427. #u20405 {
  7428. border-width:0px;
  7429. position:absolute;
  7430. left:3317px;
  7431. top:356px;
  7432. width:774px;
  7433. height:60px;
  7434. display:flex;
  7435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7436. font-weight:400;
  7437. font-style:normal;
  7438. font-size:14px;
  7439. line-height:30px;
  7440. }
  7441. #u20405 .text {
  7442. position:absolute;
  7443. align-self:flex-start;
  7444. padding:0px 0px 0px 0px;
  7445. box-sizing:border-box;
  7446. width:100%;
  7447. }
  7448. #u20405_text {
  7449. border-width:0px;
  7450. word-wrap:break-word;
  7451. text-transform:none;
  7452. }
  7453. #u20406_div {
  7454. border-width:0px;
  7455. position:absolute;
  7456. left:0px;
  7457. top:0px;
  7458. width:80px;
  7459. height:30px;
  7460. background:inherit;
  7461. background-color:rgba(255, 255, 255, 0);
  7462. border:none;
  7463. border-left:0px;
  7464. border-top:0px;
  7465. border-right:0px;
  7466. border-radius:0px;
  7467. border-bottom-right-radius:0px;
  7468. border-bottom-left-radius:0px;
  7469. -moz-box-shadow:none;
  7470. -webkit-box-shadow:none;
  7471. box-shadow:none;
  7472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7473. font-weight:400;
  7474. font-style:normal;
  7475. font-size:14px;
  7476. color:#7F7F7F;
  7477. line-height:30px;
  7478. }
  7479. #u20406 {
  7480. border-width:0px;
  7481. position:absolute;
  7482. left:3237px;
  7483. top:426px;
  7484. width:80px;
  7485. height:30px;
  7486. display:flex;
  7487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7488. font-weight:400;
  7489. font-style:normal;
  7490. font-size:14px;
  7491. color:#7F7F7F;
  7492. line-height:30px;
  7493. }
  7494. #u20406 .text {
  7495. position:absolute;
  7496. align-self:flex-start;
  7497. padding:0px 0px 0px 0px;
  7498. box-sizing:border-box;
  7499. width:100%;
  7500. }
  7501. #u20406_text {
  7502. border-width:0px;
  7503. word-wrap:break-word;
  7504. text-transform:none;
  7505. }
  7506. #u20407_img {
  7507. border-width:0px;
  7508. position:absolute;
  7509. left:0px;
  7510. top:0px;
  7511. width:100px;
  7512. height:100px;
  7513. }
  7514. #u20407 {
  7515. border-width:0px;
  7516. position:absolute;
  7517. left:3427px;
  7518. top:426px;
  7519. width:100px;
  7520. height:100px;
  7521. display:flex;
  7522. }
  7523. #u20407 .text {
  7524. position:absolute;
  7525. align-self:center;
  7526. padding:2px 2px 2px 2px;
  7527. box-sizing:border-box;
  7528. width:100%;
  7529. }
  7530. #u20407_text {
  7531. border-width:0px;
  7532. word-wrap:break-word;
  7533. text-transform:none;
  7534. visibility:hidden;
  7535. }
  7536. #u20408_img {
  7537. border-width:0px;
  7538. position:absolute;
  7539. left:0px;
  7540. top:0px;
  7541. width:100px;
  7542. height:100px;
  7543. }
  7544. #u20408 {
  7545. border-width:0px;
  7546. position:absolute;
  7547. left:3537px;
  7548. top:426px;
  7549. width:100px;
  7550. height:100px;
  7551. display:flex;
  7552. }
  7553. #u20408 .text {
  7554. position:absolute;
  7555. align-self:center;
  7556. padding:2px 2px 2px 2px;
  7557. box-sizing:border-box;
  7558. width:100%;
  7559. }
  7560. #u20408_text {
  7561. border-width:0px;
  7562. word-wrap:break-word;
  7563. text-transform:none;
  7564. visibility:hidden;
  7565. }
  7566. #u20409_img {
  7567. border-width:0px;
  7568. position:absolute;
  7569. left:0px;
  7570. top:0px;
  7571. width:100px;
  7572. height:100px;
  7573. }
  7574. #u20409 {
  7575. border-width:0px;
  7576. position:absolute;
  7577. left:3647px;
  7578. top:426px;
  7579. width:100px;
  7580. height:100px;
  7581. display:flex;
  7582. }
  7583. #u20409 .text {
  7584. position:absolute;
  7585. align-self:center;
  7586. padding:2px 2px 2px 2px;
  7587. box-sizing:border-box;
  7588. width:100%;
  7589. }
  7590. #u20409_text {
  7591. border-width:0px;
  7592. word-wrap:break-word;
  7593. text-transform:none;
  7594. visibility:hidden;
  7595. }
  7596. #u20410_div {
  7597. border-width:0px;
  7598. position:absolute;
  7599. left:0px;
  7600. top:0px;
  7601. width:1000px;
  7602. height:609px;
  7603. background:inherit;
  7604. background-color:rgba(255, 255, 255, 1);
  7605. box-sizing:border-box;
  7606. border-width:1px;
  7607. border-style:solid;
  7608. border-color:rgba(215, 215, 215, 1);
  7609. border-radius:0px;
  7610. -moz-box-shadow:none;
  7611. -webkit-box-shadow:none;
  7612. box-shadow:none;
  7613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7614. font-weight:400;
  7615. font-style:normal;
  7616. font-size:14px;
  7617. color:#AAAAAA;
  7618. text-align:center;
  7619. line-height:30px;
  7620. }
  7621. #u20410 {
  7622. border-width:0px;
  7623. position:absolute;
  7624. left:3207px;
  7625. top:580px;
  7626. width:1000px;
  7627. height:609px;
  7628. display:flex;
  7629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7630. font-weight:400;
  7631. font-style:normal;
  7632. font-size:14px;
  7633. color:#AAAAAA;
  7634. text-align:center;
  7635. line-height:30px;
  7636. }
  7637. #u20410 .text {
  7638. position:absolute;
  7639. align-self:center;
  7640. padding:5px 10px 5px 10px;
  7641. box-sizing:border-box;
  7642. width:100%;
  7643. }
  7644. #u20410_text {
  7645. border-width:0px;
  7646. word-wrap:break-word;
  7647. text-transform:none;
  7648. visibility:hidden;
  7649. }
  7650. #u20411_div {
  7651. border-width:0px;
  7652. position:absolute;
  7653. left:0px;
  7654. top:0px;
  7655. width:107px;
  7656. height:43px;
  7657. background:inherit;
  7658. background-color:rgba(255, 255, 255, 0);
  7659. border:none;
  7660. border-top:0px;
  7661. border-right:0px;
  7662. border-bottom:0px;
  7663. border-radius:0px;
  7664. border-top-left-radius:0px;
  7665. border-bottom-left-radius:0px;
  7666. -moz-box-shadow:none;
  7667. -webkit-box-shadow:none;
  7668. box-shadow:none;
  7669. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7670. font-weight:500;
  7671. font-style:normal;
  7672. font-size:24px;
  7673. }
  7674. #u20411 {
  7675. border-width:0px;
  7676. position:absolute;
  7677. left:3237px;
  7678. top:606px;
  7679. width:107px;
  7680. height:43px;
  7681. display:flex;
  7682. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7683. font-weight:500;
  7684. font-style:normal;
  7685. font-size:24px;
  7686. }
  7687. #u20411 .text {
  7688. position:absolute;
  7689. align-self:center;
  7690. padding:5px 10px 5px 0px;
  7691. box-sizing:border-box;
  7692. width:100%;
  7693. }
  7694. #u20411_text {
  7695. border-width:0px;
  7696. white-space:nowrap;
  7697. text-transform:none;
  7698. }
  7699. #u20412_div {
  7700. border-width:0px;
  7701. position:absolute;
  7702. left:0px;
  7703. top:0px;
  7704. width:80px;
  7705. height:30px;
  7706. background:inherit;
  7707. background-color:rgba(255, 255, 255, 0);
  7708. border:none;
  7709. border-left:0px;
  7710. border-top:0px;
  7711. border-right:0px;
  7712. border-radius:0px;
  7713. border-bottom-right-radius:0px;
  7714. border-bottom-left-radius:0px;
  7715. -moz-box-shadow:none;
  7716. -webkit-box-shadow:none;
  7717. box-shadow:none;
  7718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7719. font-weight:400;
  7720. font-style:normal;
  7721. font-size:14px;
  7722. color:#7F7F7F;
  7723. line-height:30px;
  7724. }
  7725. #u20412 {
  7726. border-width:0px;
  7727. position:absolute;
  7728. left:3550px;
  7729. top:666px;
  7730. width:80px;
  7731. height:30px;
  7732. display:flex;
  7733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7734. font-weight:400;
  7735. font-style:normal;
  7736. font-size:14px;
  7737. color:#7F7F7F;
  7738. line-height:30px;
  7739. }
  7740. #u20412 .text {
  7741. position:absolute;
  7742. align-self:flex-start;
  7743. padding:0px 0px 0px 0px;
  7744. box-sizing:border-box;
  7745. width:100%;
  7746. }
  7747. #u20412_text {
  7748. border-width:0px;
  7749. word-wrap:break-word;
  7750. text-transform:none;
  7751. }
  7752. #u20413_div {
  7753. border-width:0px;
  7754. position:absolute;
  7755. left:0px;
  7756. top:0px;
  7757. width:138px;
  7758. height:30px;
  7759. background:inherit;
  7760. background-color:rgba(255, 255, 255, 0);
  7761. border:none;
  7762. border-left:0px;
  7763. border-top:0px;
  7764. border-right:0px;
  7765. border-radius:0px;
  7766. border-bottom-right-radius:0px;
  7767. border-bottom-left-radius:0px;
  7768. -moz-box-shadow:none;
  7769. -webkit-box-shadow:none;
  7770. box-shadow:none;
  7771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7772. font-weight:400;
  7773. font-style:normal;
  7774. font-size:14px;
  7775. line-height:30px;
  7776. }
  7777. #u20413 {
  7778. border-width:0px;
  7779. position:absolute;
  7780. left:3630px;
  7781. top:666px;
  7782. width:138px;
  7783. height:30px;
  7784. display:flex;
  7785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7786. font-weight:400;
  7787. font-style:normal;
  7788. font-size:14px;
  7789. line-height:30px;
  7790. }
  7791. #u20413 .text {
  7792. position:absolute;
  7793. align-self:flex-start;
  7794. padding:0px 0px 0px 0px;
  7795. box-sizing:border-box;
  7796. width:100%;
  7797. }
  7798. #u20413_text {
  7799. border-width:0px;
  7800. white-space:nowrap;
  7801. text-transform:none;
  7802. }
  7803. #u20414_div {
  7804. border-width:0px;
  7805. position:absolute;
  7806. left:0px;
  7807. top:0px;
  7808. width:80px;
  7809. height:30px;
  7810. background:inherit;
  7811. background-color:rgba(255, 255, 255, 0);
  7812. border:none;
  7813. border-left:0px;
  7814. border-top:0px;
  7815. border-right:0px;
  7816. border-radius:0px;
  7817. border-bottom-right-radius:0px;
  7818. border-bottom-left-radius:0px;
  7819. -moz-box-shadow:none;
  7820. -webkit-box-shadow:none;
  7821. box-shadow:none;
  7822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7823. font-weight:400;
  7824. font-style:normal;
  7825. font-size:14px;
  7826. color:#7F7F7F;
  7827. line-height:30px;
  7828. }
  7829. #u20414 {
  7830. border-width:0px;
  7831. position:absolute;
  7832. left:3244px;
  7833. top:666px;
  7834. width:80px;
  7835. height:30px;
  7836. display:flex;
  7837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7838. font-weight:400;
  7839. font-style:normal;
  7840. font-size:14px;
  7841. color:#7F7F7F;
  7842. line-height:30px;
  7843. }
  7844. #u20414 .text {
  7845. position:absolute;
  7846. align-self:flex-start;
  7847. padding:0px 0px 0px 0px;
  7848. box-sizing:border-box;
  7849. width:100%;
  7850. }
  7851. #u20414_text {
  7852. border-width:0px;
  7853. word-wrap:break-word;
  7854. text-transform:none;
  7855. }
  7856. #u20415_div {
  7857. border-width:0px;
  7858. position:absolute;
  7859. left:0px;
  7860. top:0px;
  7861. width:57px;
  7862. height:30px;
  7863. background:inherit;
  7864. background-color:rgba(255, 255, 255, 0);
  7865. border:none;
  7866. border-left:0px;
  7867. border-top:0px;
  7868. border-right:0px;
  7869. border-radius:0px;
  7870. border-bottom-right-radius:0px;
  7871. border-bottom-left-radius:0px;
  7872. -moz-box-shadow:none;
  7873. -webkit-box-shadow:none;
  7874. box-shadow:none;
  7875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7876. font-weight:400;
  7877. font-style:normal;
  7878. font-size:14px;
  7879. line-height:30px;
  7880. }
  7881. #u20415 {
  7882. border-width:0px;
  7883. position:absolute;
  7884. left:3324px;
  7885. top:666px;
  7886. width:57px;
  7887. height:30px;
  7888. display:flex;
  7889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7890. font-weight:400;
  7891. font-style:normal;
  7892. font-size:14px;
  7893. line-height:30px;
  7894. }
  7895. #u20415 .text {
  7896. position:absolute;
  7897. align-self:flex-start;
  7898. padding:0px 0px 0px 0px;
  7899. box-sizing:border-box;
  7900. width:100%;
  7901. }
  7902. #u20415_text {
  7903. border-width:0px;
  7904. white-space:nowrap;
  7905. text-transform:none;
  7906. }
  7907. #u20416_div {
  7908. border-width:0px;
  7909. position:absolute;
  7910. left:0px;
  7911. top:0px;
  7912. width:80px;
  7913. height:30px;
  7914. background:inherit;
  7915. background-color:rgba(255, 255, 255, 0);
  7916. border:none;
  7917. border-left:0px;
  7918. border-top:0px;
  7919. border-right:0px;
  7920. border-radius:0px;
  7921. border-bottom-right-radius:0px;
  7922. border-bottom-left-radius:0px;
  7923. -moz-box-shadow:none;
  7924. -webkit-box-shadow:none;
  7925. box-shadow:none;
  7926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7927. font-weight:400;
  7928. font-style:normal;
  7929. font-size:14px;
  7930. color:#7F7F7F;
  7931. line-height:30px;
  7932. }
  7933. #u20416 {
  7934. border-width:0px;
  7935. position:absolute;
  7936. left:3244px;
  7937. top:706px;
  7938. width:80px;
  7939. height:30px;
  7940. display:flex;
  7941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7942. font-weight:400;
  7943. font-style:normal;
  7944. font-size:14px;
  7945. color:#7F7F7F;
  7946. line-height:30px;
  7947. }
  7948. #u20416 .text {
  7949. position:absolute;
  7950. align-self:flex-start;
  7951. padding:0px 0px 0px 0px;
  7952. box-sizing:border-box;
  7953. width:100%;
  7954. }
  7955. #u20416_text {
  7956. border-width:0px;
  7957. word-wrap:break-word;
  7958. text-transform:none;
  7959. }
  7960. #u20417_div {
  7961. border-width:0px;
  7962. position:absolute;
  7963. left:0px;
  7964. top:0px;
  7965. width:577px;
  7966. height:30px;
  7967. background:inherit;
  7968. background-color:rgba(255, 255, 255, 0);
  7969. border:none;
  7970. border-left:0px;
  7971. border-top:0px;
  7972. border-right:0px;
  7973. border-radius:0px;
  7974. border-bottom-right-radius:0px;
  7975. border-bottom-left-radius:0px;
  7976. -moz-box-shadow:none;
  7977. -webkit-box-shadow:none;
  7978. box-shadow:none;
  7979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7980. font-weight:400;
  7981. font-style:normal;
  7982. font-size:14px;
  7983. line-height:30px;
  7984. }
  7985. #u20417 {
  7986. border-width:0px;
  7987. position:absolute;
  7988. left:3324px;
  7989. top:706px;
  7990. width:577px;
  7991. height:30px;
  7992. display:flex;
  7993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7994. font-weight:400;
  7995. font-style:normal;
  7996. font-size:14px;
  7997. line-height:30px;
  7998. }
  7999. #u20417 .text {
  8000. position:absolute;
  8001. align-self:flex-start;
  8002. padding:0px 0px 0px 0px;
  8003. box-sizing:border-box;
  8004. width:100%;
  8005. }
  8006. #u20417_text {
  8007. border-width:0px;
  8008. word-wrap:break-word;
  8009. text-transform:none;
  8010. }
  8011. #u20418_div {
  8012. border-width:0px;
  8013. position:absolute;
  8014. left:0px;
  8015. top:0px;
  8016. width:309px;
  8017. height:20px;
  8018. background:inherit;
  8019. background-color:rgba(255, 255, 255, 0);
  8020. border:none;
  8021. border-radius:0px;
  8022. -moz-box-shadow:none;
  8023. -webkit-box-shadow:none;
  8024. box-shadow:none;
  8025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8026. font-weight:400;
  8027. font-style:normal;
  8028. color:#D9001B;
  8029. }
  8030. #u20418 {
  8031. border-width:0px;
  8032. position:absolute;
  8033. left:620px;
  8034. top:1129px;
  8035. width:309px;
  8036. height:20px;
  8037. display:flex;
  8038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8039. font-weight:400;
  8040. font-style:normal;
  8041. color:#D9001B;
  8042. }
  8043. #u20418 .text {
  8044. position:absolute;
  8045. align-self:flex-start;
  8046. padding:0px 0px 0px 0px;
  8047. box-sizing:border-box;
  8048. width:100%;
  8049. }
  8050. #u20418_text {
  8051. border-width:0px;
  8052. white-space:nowrap;
  8053. text-transform:none;
  8054. }