styles.css 195 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:4195px;
  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. #u12787_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:129px;
  25. height:22px;
  26. background:inherit;
  27. background-color:rgba(255, 255, 255, 0);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. font-size:16px;
  34. color:#FFFFFF;
  35. }
  36. #u12787 {
  37. border-width:0px;
  38. position:absolute;
  39. left:49px;
  40. top:14px;
  41. width:129px;
  42. height:22px;
  43. display:flex;
  44. font-size:16px;
  45. color:#FFFFFF;
  46. }
  47. #u12787 .text {
  48. position:absolute;
  49. align-self:flex-start;
  50. padding:0px 0px 0px 0px;
  51. box-sizing:border-box;
  52. width:100%;
  53. }
  54. #u12787_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u12788_div {
  60. border-width:0px;
  61. position:absolute;
  62. left:0px;
  63. top:0px;
  64. width:1600px;
  65. height:50px;
  66. background:inherit;
  67. background-color:rgba(30, 42, 68, 1);
  68. border:none;
  69. border-radius:0px;
  70. -moz-box-shadow:none;
  71. -webkit-box-shadow:none;
  72. box-shadow:none;
  73. color:#AFB3B6;
  74. }
  75. #u12788 {
  76. border-width:0px;
  77. position:absolute;
  78. left:0px;
  79. top:0px;
  80. width:1600px;
  81. height:50px;
  82. display:flex;
  83. color:#AFB3B6;
  84. }
  85. #u12788 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u12788_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u12789 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u12790_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u12790 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u12790 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u12790_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u12791_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:161px;
  141. height:22px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 0);
  144. border:none;
  145. border-radius:0px;
  146. -moz-box-shadow:none;
  147. -webkit-box-shadow:none;
  148. box-shadow:none;
  149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  150. font-weight:400;
  151. font-style:normal;
  152. font-size:16px;
  153. color:#FFFFFF;
  154. }
  155. #u12791 {
  156. border-width:0px;
  157. position:absolute;
  158. left:62px;
  159. top:14px;
  160. width:161px;
  161. height:22px;
  162. display:flex;
  163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  164. font-weight:400;
  165. font-style:normal;
  166. font-size:16px;
  167. color:#FFFFFF;
  168. }
  169. #u12791 .text {
  170. position:absolute;
  171. align-self:flex-start;
  172. padding:0px 0px 0px 0px;
  173. box-sizing:border-box;
  174. width:100%;
  175. }
  176. #u12791_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u12792_div {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:120px;
  187. height:1200px;
  188. background:inherit;
  189. background-color:rgba(30, 42, 68, 1);
  190. border:none;
  191. border-radius:0px;
  192. -moz-box-shadow:none;
  193. -webkit-box-shadow:none;
  194. box-shadow:none;
  195. color:#AFB3B6;
  196. }
  197. #u12792 {
  198. border-width:0px;
  199. position:absolute;
  200. left:0px;
  201. top:47px;
  202. width:120px;
  203. height:1200px;
  204. display:flex;
  205. color:#AFB3B6;
  206. }
  207. #u12792 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u12792_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u12793_div {
  221. border-width:0px;
  222. position:absolute;
  223. left:0px;
  224. top:0px;
  225. width:1480px;
  226. height:1200px;
  227. background:inherit;
  228. background-color:rgba(242, 242, 242, 1);
  229. border:none;
  230. border-radius:0px;
  231. -moz-box-shadow:none;
  232. -webkit-box-shadow:none;
  233. box-shadow:none;
  234. }
  235. #u12793 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u12793 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u12793_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u12794 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u12795_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u12795 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:67px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u12795 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u12795_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u12796_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u12796 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u12796 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u12796_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u12797 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u12798_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u12798 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:109px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u12798 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u12798_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u12799_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u12799 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u12799 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u12799_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u12800 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u12801_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:29px;
  439. height:20px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:25px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. color:#FFFFFF;
  451. }
  452. #u12801 {
  453. border-width:0px;
  454. position:absolute;
  455. left:59px;
  456. top:1141px;
  457. width:29px;
  458. height:20px;
  459. display:flex;
  460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  461. font-weight:400;
  462. font-style:normal;
  463. color:#FFFFFF;
  464. }
  465. #u12801 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u12801_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u12802_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u12802 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u12802 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u12802_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u12803 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u12804_div {
  516. border-width:0px;
  517. position:absolute;
  518. left:0px;
  519. top:0px;
  520. width:29px;
  521. height:20px;
  522. background:inherit;
  523. background-color:rgba(255, 255, 255, 0);
  524. border:none;
  525. border-radius:25px;
  526. -moz-box-shadow:none;
  527. -webkit-box-shadow:none;
  528. box-shadow:none;
  529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  530. font-weight:400;
  531. font-style:normal;
  532. color:#FFFFFF;
  533. }
  534. #u12804 {
  535. border-width:0px;
  536. position:absolute;
  537. left:59px;
  538. top:1183px;
  539. width:29px;
  540. height:20px;
  541. display:flex;
  542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  543. font-weight:400;
  544. font-style:normal;
  545. color:#FFFFFF;
  546. }
  547. #u12804 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u12804_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u12805_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u12805 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u12805 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u12805_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u12806 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u12807_div {
  598. border-width:0px;
  599. position:absolute;
  600. left:0px;
  601. top:0px;
  602. width:33px;
  603. height:22px;
  604. background:inherit;
  605. background-color:rgba(255, 255, 255, 0);
  606. border:none;
  607. border-radius:0px;
  608. -moz-box-shadow:none;
  609. -webkit-box-shadow:none;
  610. box-shadow:none;
  611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  612. font-weight:400;
  613. font-style:normal;
  614. font-size:16px;
  615. color:#FFFFFF;
  616. }
  617. #u12807 {
  618. border-width:0px;
  619. position:absolute;
  620. left:39px;
  621. top:277px;
  622. width:33px;
  623. height:22px;
  624. display:flex;
  625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  626. font-weight:400;
  627. font-style:normal;
  628. font-size:16px;
  629. color:#FFFFFF;
  630. }
  631. #u12807 .text {
  632. position:absolute;
  633. align-self:flex-start;
  634. padding:0px 0px 0px 0px;
  635. box-sizing:border-box;
  636. width:100%;
  637. }
  638. #u12807_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u12808_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u12808 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u12808 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u12808_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u12809 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u12810_div {
  682. border-width:0px;
  683. position:absolute;
  684. left:0px;
  685. top:0px;
  686. width:33px;
  687. height:22px;
  688. background:inherit;
  689. background-color:rgba(255, 255, 255, 0);
  690. border:none;
  691. border-radius:0px;
  692. -moz-box-shadow:none;
  693. -webkit-box-shadow:none;
  694. box-shadow:none;
  695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  696. font-weight:400;
  697. font-style:normal;
  698. font-size:16px;
  699. color:#FFFFFF;
  700. }
  701. #u12810 {
  702. border-width:0px;
  703. position:absolute;
  704. left:39px;
  705. top:235px;
  706. width:33px;
  707. height:22px;
  708. display:flex;
  709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  710. font-weight:400;
  711. font-style:normal;
  712. font-size:16px;
  713. color:#FFFFFF;
  714. }
  715. #u12810 .text {
  716. position:absolute;
  717. align-self:flex-start;
  718. padding:0px 0px 0px 0px;
  719. box-sizing:border-box;
  720. width:100%;
  721. }
  722. #u12810_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u12811_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u12811 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u12811 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u12811_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u12812 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u12813_div {
  766. border-width:0px;
  767. position:absolute;
  768. left:0px;
  769. top:0px;
  770. width:33px;
  771. height:22px;
  772. background:inherit;
  773. background-color:rgba(255, 255, 255, 0);
  774. border:none;
  775. border-radius:0px;
  776. -moz-box-shadow:none;
  777. -webkit-box-shadow:none;
  778. box-shadow:none;
  779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  780. font-weight:400;
  781. font-style:normal;
  782. font-size:16px;
  783. color:#FFFFFF;
  784. }
  785. #u12813 {
  786. border-width:0px;
  787. position:absolute;
  788. left:39px;
  789. top:403px;
  790. width:33px;
  791. height:22px;
  792. display:flex;
  793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  794. font-weight:400;
  795. font-style:normal;
  796. font-size:16px;
  797. color:#FFFFFF;
  798. }
  799. #u12813 .text {
  800. position:absolute;
  801. align-self:flex-start;
  802. padding:0px 0px 0px 0px;
  803. box-sizing:border-box;
  804. width:100%;
  805. }
  806. #u12813_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u12814_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u12814 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:407px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u12814 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u12814_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u12815 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u12816_div {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:33px;
  855. height:22px;
  856. background:inherit;
  857. background-color:rgba(255, 255, 255, 0);
  858. border:none;
  859. border-radius:0px;
  860. -moz-box-shadow:none;
  861. -webkit-box-shadow:none;
  862. box-shadow:none;
  863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  864. font-weight:400;
  865. font-style:normal;
  866. font-size:16px;
  867. color:#FFFFFF;
  868. }
  869. #u12816 {
  870. border-width:0px;
  871. position:absolute;
  872. left:39px;
  873. top:445px;
  874. width:33px;
  875. height:22px;
  876. display:flex;
  877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  878. font-weight:400;
  879. font-style:normal;
  880. font-size:16px;
  881. color:#FFFFFF;
  882. }
  883. #u12816 .text {
  884. position:absolute;
  885. align-self:flex-start;
  886. padding:0px 0px 0px 0px;
  887. box-sizing:border-box;
  888. width:100%;
  889. }
  890. #u12816_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u12817_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u12817 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:449px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u12817 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u12817_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u12818 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u12819_div {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:33px;
  939. height:22px;
  940. background:inherit;
  941. background-color:rgba(255, 255, 255, 0);
  942. border:none;
  943. border-radius:0px;
  944. -moz-box-shadow:none;
  945. -webkit-box-shadow:none;
  946. box-shadow:none;
  947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  948. font-weight:400;
  949. font-style:normal;
  950. font-size:16px;
  951. color:#FFFFFF;
  952. }
  953. #u12819 {
  954. border-width:0px;
  955. position:absolute;
  956. left:39px;
  957. top:571px;
  958. width:33px;
  959. height:22px;
  960. display:flex;
  961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  962. font-weight:400;
  963. font-style:normal;
  964. font-size:16px;
  965. color:#FFFFFF;
  966. }
  967. #u12819 .text {
  968. position:absolute;
  969. align-self:flex-start;
  970. padding:0px 0px 0px 0px;
  971. box-sizing:border-box;
  972. width:100%;
  973. }
  974. #u12819_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u12820_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u12820 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:575px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u12820 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u12820_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u12821 {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:0px;
  1013. top:0px;
  1014. width:0px;
  1015. height:0px;
  1016. }
  1017. #u12822_div {
  1018. border-width:0px;
  1019. position:absolute;
  1020. left:0px;
  1021. top:0px;
  1022. width:33px;
  1023. height:22px;
  1024. background:inherit;
  1025. background-color:rgba(255, 255, 255, 0);
  1026. border:none;
  1027. border-radius:0px;
  1028. -moz-box-shadow:none;
  1029. -webkit-box-shadow:none;
  1030. box-shadow:none;
  1031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1032. font-weight:400;
  1033. font-style:normal;
  1034. font-size:16px;
  1035. color:#FFFFFF;
  1036. }
  1037. #u12822 {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:39px;
  1041. top:529px;
  1042. width:33px;
  1043. height:22px;
  1044. display:flex;
  1045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1046. font-weight:400;
  1047. font-style:normal;
  1048. font-size:16px;
  1049. color:#FFFFFF;
  1050. }
  1051. #u12822 .text {
  1052. position:absolute;
  1053. align-self:flex-start;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u12822_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u12823_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:14px;
  1069. height:14px;
  1070. }
  1071. #u12823 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:533px;
  1076. width:14px;
  1077. height:14px;
  1078. display:flex;
  1079. }
  1080. #u12823 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u12823_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u12824_input {
  1094. position:absolute;
  1095. left:0px;
  1096. top:0px;
  1097. width:214px;
  1098. height:27px;
  1099. padding:2px 2px 2px 2px;
  1100. font-family:'ArialMT', 'Arial', sans-serif;
  1101. font-weight:400;
  1102. font-style:normal;
  1103. font-size:14px;
  1104. letter-spacing:normal;
  1105. color:#FFFFFF;
  1106. vertical-align:none;
  1107. text-align:left;
  1108. text-transform:none;
  1109. background-color:transparent;
  1110. border-color:transparent;
  1111. }
  1112. #u12824_input.disabled {
  1113. position:absolute;
  1114. left:0px;
  1115. top:0px;
  1116. width:214px;
  1117. height:27px;
  1118. padding:2px 2px 2px 2px;
  1119. font-family:'ArialMT', 'Arial', sans-serif;
  1120. font-weight:400;
  1121. font-style:normal;
  1122. font-size:14px;
  1123. letter-spacing:normal;
  1124. color:#FFFFFF;
  1125. vertical-align:none;
  1126. text-align:left;
  1127. text-transform:none;
  1128. background-color:transparent;
  1129. border-color:transparent;
  1130. }
  1131. #u12824_div {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:214px;
  1137. height:27px;
  1138. background:inherit;
  1139. background-color:rgba(255, 255, 255, 0);
  1140. border:none;
  1141. border-radius:0px;
  1142. -moz-box-shadow:none;
  1143. -webkit-box-shadow:none;
  1144. box-shadow:none;
  1145. font-size:14px;
  1146. color:#FFFFFF;
  1147. }
  1148. #u12824 {
  1149. border-width:0px;
  1150. position:absolute;
  1151. left:1221px;
  1152. top:10px;
  1153. width:214px;
  1154. height:27px;
  1155. display:flex;
  1156. font-size:14px;
  1157. color:#FFFFFF;
  1158. }
  1159. #u12824 .text {
  1160. position:absolute;
  1161. align-self:flex-start;
  1162. padding:2px 2px 2px 2px;
  1163. box-sizing:border-box;
  1164. width:100%;
  1165. }
  1166. #u12824_div.disabled {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:0px;
  1170. top:0px;
  1171. width:214px;
  1172. height:27px;
  1173. background:inherit;
  1174. background-color:rgba(240, 240, 240, 1);
  1175. border:none;
  1176. border-radius:0px;
  1177. -moz-box-shadow:none;
  1178. -webkit-box-shadow:none;
  1179. box-shadow:none;
  1180. font-size:14px;
  1181. color:#FFFFFF;
  1182. }
  1183. #u12824.disabled {
  1184. }
  1185. .u12824_input_option {
  1186. font-size:14px;
  1187. }
  1188. #u12825_img {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:22px;
  1194. height:22px;
  1195. }
  1196. #u12825 {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:1194px;
  1200. top:15px;
  1201. width:22px;
  1202. height:22px;
  1203. display:flex;
  1204. }
  1205. #u12825 .text {
  1206. position:absolute;
  1207. align-self:center;
  1208. padding:2px 2px 2px 2px;
  1209. box-sizing:border-box;
  1210. width:100%;
  1211. }
  1212. #u12825_text {
  1213. border-width:0px;
  1214. word-wrap:break-word;
  1215. text-transform:none;
  1216. visibility:hidden;
  1217. }
  1218. #u12826_div {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:100px;
  1224. height:24px;
  1225. background:inherit;
  1226. background-color:rgba(242, 242, 242, 0.2);
  1227. border:none;
  1228. border-radius:25px;
  1229. -moz-box-shadow:none;
  1230. -webkit-box-shadow:none;
  1231. box-shadow:none;
  1232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1233. font-weight:400;
  1234. font-style:normal;
  1235. color:#FFFFFF;
  1236. text-align:center;
  1237. }
  1238. #u12826 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:1480px;
  1242. top:12px;
  1243. width:100px;
  1244. height:24px;
  1245. display:flex;
  1246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1247. font-weight:400;
  1248. font-style:normal;
  1249. color:#FFFFFF;
  1250. text-align:center;
  1251. }
  1252. #u12826 .text {
  1253. position:absolute;
  1254. align-self:center;
  1255. padding:0px 0px 0px 0px;
  1256. box-sizing:border-box;
  1257. width:100%;
  1258. }
  1259. #u12826_text {
  1260. border-width:0px;
  1261. word-wrap:break-word;
  1262. text-transform:none;
  1263. }
  1264. #u12827_img {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:2px;
  1270. height:12px;
  1271. }
  1272. #u12827 {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:1452px;
  1276. top:19px;
  1277. width:1px;
  1278. height:11px;
  1279. display:flex;
  1280. }
  1281. #u12827 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:2px 2px 2px 2px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u12827_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. visibility:hidden;
  1293. }
  1294. #u12828 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:0px;
  1300. height:0px;
  1301. }
  1302. #u12829_div {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:33px;
  1308. height:22px;
  1309. background:inherit;
  1310. background-color:rgba(255, 255, 255, 0);
  1311. border:none;
  1312. border-radius:0px;
  1313. -moz-box-shadow:none;
  1314. -webkit-box-shadow:none;
  1315. box-shadow:none;
  1316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1317. font-weight:400;
  1318. font-style:normal;
  1319. font-size:16px;
  1320. color:#FFFFFF;
  1321. }
  1322. #u12829 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:39px;
  1326. top:319px;
  1327. width:33px;
  1328. height:22px;
  1329. display:flex;
  1330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1331. font-weight:400;
  1332. font-style:normal;
  1333. font-size:16px;
  1334. color:#FFFFFF;
  1335. }
  1336. #u12829 .text {
  1337. position:absolute;
  1338. align-self:flex-start;
  1339. padding:0px 0px 0px 0px;
  1340. box-sizing:border-box;
  1341. width:100%;
  1342. }
  1343. #u12829_text {
  1344. border-width:0px;
  1345. white-space:nowrap;
  1346. text-transform:none;
  1347. }
  1348. #u12830_img {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:0px;
  1352. top:0px;
  1353. width:14px;
  1354. height:14px;
  1355. }
  1356. #u12830 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:20px;
  1360. top:323px;
  1361. width:14px;
  1362. height:14px;
  1363. display:flex;
  1364. }
  1365. #u12830 .text {
  1366. position:absolute;
  1367. align-self:center;
  1368. padding:2px 2px 2px 2px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u12830_text {
  1373. border-width:0px;
  1374. word-wrap:break-word;
  1375. text-transform:none;
  1376. visibility:hidden;
  1377. }
  1378. #u12831 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:0px;
  1384. height:0px;
  1385. }
  1386. #u12832_div {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:33px;
  1392. height:22px;
  1393. background:inherit;
  1394. background-color:rgba(255, 255, 255, 0);
  1395. border:none;
  1396. border-radius:0px;
  1397. -moz-box-shadow:none;
  1398. -webkit-box-shadow:none;
  1399. box-shadow:none;
  1400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1401. font-weight:400;
  1402. font-style:normal;
  1403. font-size:16px;
  1404. color:#FFFFFF;
  1405. }
  1406. #u12832 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:39px;
  1410. top:361px;
  1411. width:33px;
  1412. height:22px;
  1413. display:flex;
  1414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1415. font-weight:400;
  1416. font-style:normal;
  1417. font-size:16px;
  1418. color:#FFFFFF;
  1419. }
  1420. #u12832 .text {
  1421. position:absolute;
  1422. align-self:flex-start;
  1423. padding:0px 0px 0px 0px;
  1424. box-sizing:border-box;
  1425. width:100%;
  1426. }
  1427. #u12832_text {
  1428. border-width:0px;
  1429. white-space:nowrap;
  1430. text-transform:none;
  1431. }
  1432. #u12833_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:14px;
  1438. height:14px;
  1439. }
  1440. #u12833 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:20px;
  1444. top:365px;
  1445. width:14px;
  1446. height:14px;
  1447. display:flex;
  1448. }
  1449. #u12833 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u12833_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u12834 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:0px;
  1468. height:0px;
  1469. }
  1470. #u12835_div {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:33px;
  1476. height:22px;
  1477. background:inherit;
  1478. background-color:rgba(255, 255, 255, 0);
  1479. border:none;
  1480. border-radius:0px;
  1481. -moz-box-shadow:none;
  1482. -webkit-box-shadow:none;
  1483. box-shadow:none;
  1484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1485. font-weight:400;
  1486. font-style:normal;
  1487. font-size:16px;
  1488. color:#FFFFFF;
  1489. }
  1490. #u12835 {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:39px;
  1494. top:151px;
  1495. width:33px;
  1496. height:22px;
  1497. display:flex;
  1498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1499. font-weight:400;
  1500. font-style:normal;
  1501. font-size:16px;
  1502. color:#FFFFFF;
  1503. }
  1504. #u12835 .text {
  1505. position:absolute;
  1506. align-self:flex-start;
  1507. padding:0px 0px 0px 0px;
  1508. box-sizing:border-box;
  1509. width:100%;
  1510. }
  1511. #u12835_text {
  1512. border-width:0px;
  1513. white-space:nowrap;
  1514. text-transform:none;
  1515. }
  1516. #u12836_img {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:14px;
  1522. height:14px;
  1523. }
  1524. #u12836 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:20px;
  1528. top:155px;
  1529. width:14px;
  1530. height:14px;
  1531. display:flex;
  1532. }
  1533. #u12836 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:2px 2px 2px 2px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u12836_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. visibility:hidden;
  1545. }
  1546. #u12837 {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:0px;
  1552. height:0px;
  1553. }
  1554. #u12838_div {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:33px;
  1560. height:22px;
  1561. background:inherit;
  1562. background-color:rgba(255, 255, 255, 0);
  1563. border:none;
  1564. border-radius:0px;
  1565. -moz-box-shadow:none;
  1566. -webkit-box-shadow:none;
  1567. box-shadow:none;
  1568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1569. font-weight:400;
  1570. font-style:normal;
  1571. font-size:16px;
  1572. color:#FFFFFF;
  1573. }
  1574. #u12838 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:39px;
  1578. top:487px;
  1579. width:33px;
  1580. height:22px;
  1581. display:flex;
  1582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1583. font-weight:400;
  1584. font-style:normal;
  1585. font-size:16px;
  1586. color:#FFFFFF;
  1587. }
  1588. #u12838 .text {
  1589. position:absolute;
  1590. align-self:flex-start;
  1591. padding:0px 0px 0px 0px;
  1592. box-sizing:border-box;
  1593. width:100%;
  1594. }
  1595. #u12838_text {
  1596. border-width:0px;
  1597. white-space:nowrap;
  1598. text-transform:none;
  1599. }
  1600. #u12839_img {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:14px;
  1606. height:14px;
  1607. }
  1608. #u12839 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:20px;
  1612. top:491px;
  1613. width:14px;
  1614. height:14px;
  1615. display:flex;
  1616. }
  1617. #u12839 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 2px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u12839_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. visibility:hidden;
  1629. }
  1630. #u12840 {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:0px;
  1634. top:0px;
  1635. width:0px;
  1636. height:0px;
  1637. }
  1638. #u12841_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:33px;
  1644. height:22px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 0);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1653. font-weight:400;
  1654. font-style:normal;
  1655. font-size:16px;
  1656. color:#FFFFFF;
  1657. }
  1658. #u12841 {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:39px;
  1662. top:193px;
  1663. width:33px;
  1664. height:22px;
  1665. display:flex;
  1666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1667. font-weight:400;
  1668. font-style:normal;
  1669. font-size:16px;
  1670. color:#FFFFFF;
  1671. }
  1672. #u12841 .text {
  1673. position:absolute;
  1674. align-self:flex-start;
  1675. padding:0px 0px 0px 0px;
  1676. box-sizing:border-box;
  1677. width:100%;
  1678. }
  1679. #u12841_text {
  1680. border-width:0px;
  1681. white-space:nowrap;
  1682. text-transform:none;
  1683. }
  1684. #u12842_img {
  1685. border-width:0px;
  1686. position:absolute;
  1687. left:0px;
  1688. top:0px;
  1689. width:14px;
  1690. height:14px;
  1691. }
  1692. #u12842 {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:20px;
  1696. top:197px;
  1697. width:14px;
  1698. height:14px;
  1699. display:flex;
  1700. }
  1701. #u12842 .text {
  1702. position:absolute;
  1703. align-self:center;
  1704. padding:2px 2px 2px 2px;
  1705. box-sizing:border-box;
  1706. width:100%;
  1707. }
  1708. #u12842_text {
  1709. border-width:0px;
  1710. word-wrap:break-word;
  1711. text-transform:none;
  1712. visibility:hidden;
  1713. }
  1714. #u12843_div {
  1715. border-width:0px;
  1716. position:absolute;
  1717. left:0px;
  1718. top:0px;
  1719. width:200px;
  1720. height:1192px;
  1721. background:inherit;
  1722. background-color:rgba(255, 255, 255, 1);
  1723. border:none;
  1724. border-radius:0px;
  1725. -moz-box-shadow:none;
  1726. -webkit-box-shadow:none;
  1727. box-shadow:none;
  1728. }
  1729. #u12843 {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:122px;
  1733. top:50px;
  1734. width:200px;
  1735. height:1192px;
  1736. display:flex;
  1737. }
  1738. #u12843 .text {
  1739. position:absolute;
  1740. align-self:center;
  1741. padding:2px 2px 2px 2px;
  1742. box-sizing:border-box;
  1743. width:100%;
  1744. }
  1745. #u12843_text {
  1746. border-width:0px;
  1747. word-wrap:break-word;
  1748. text-transform:none;
  1749. visibility:hidden;
  1750. }
  1751. #u12844_div {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:0px;
  1755. top:0px;
  1756. width:200px;
  1757. height:60px;
  1758. background:inherit;
  1759. background-color:rgba(224, 231, 247, 1);
  1760. border:none;
  1761. border-radius:0px;
  1762. -moz-box-shadow:none;
  1763. -webkit-box-shadow:none;
  1764. box-shadow:none;
  1765. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1766. font-weight:500;
  1767. font-style:normal;
  1768. font-size:18px;
  1769. }
  1770. #u12844 {
  1771. border-width:0px;
  1772. position:absolute;
  1773. left:122px;
  1774. top:50px;
  1775. width:200px;
  1776. height:60px;
  1777. display:flex;
  1778. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1779. font-weight:500;
  1780. font-style:normal;
  1781. font-size:18px;
  1782. }
  1783. #u12844 .text {
  1784. position:absolute;
  1785. align-self:center;
  1786. padding:0px 0px 0px 20px;
  1787. box-sizing:border-box;
  1788. width:100%;
  1789. }
  1790. #u12844_text {
  1791. border-width:0px;
  1792. word-wrap:break-word;
  1793. text-transform:none;
  1794. }
  1795. #u12845_div {
  1796. border-width:0px;
  1797. position:absolute;
  1798. left:0px;
  1799. top:0px;
  1800. width:65px;
  1801. height:22px;
  1802. background:inherit;
  1803. background-color:rgba(255, 255, 255, 0);
  1804. border:none;
  1805. border-radius:0px;
  1806. -moz-box-shadow:none;
  1807. -webkit-box-shadow:none;
  1808. box-shadow:none;
  1809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1810. font-weight:400;
  1811. font-style:normal;
  1812. font-size:16px;
  1813. color:#1890FF;
  1814. }
  1815. #u12845 {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:149px;
  1819. top:131px;
  1820. width:65px;
  1821. height:22px;
  1822. display:flex;
  1823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1824. font-weight:400;
  1825. font-style:normal;
  1826. font-size:16px;
  1827. color:#1890FF;
  1828. }
  1829. #u12845 .text {
  1830. position:absolute;
  1831. align-self:flex-start;
  1832. padding:0px 0px 0px 0px;
  1833. box-sizing:border-box;
  1834. width:100%;
  1835. }
  1836. #u12845_text {
  1837. border-width:0px;
  1838. white-space:nowrap;
  1839. text-transform:none;
  1840. }
  1841. #u12846_div {
  1842. border-width:0px;
  1843. position:absolute;
  1844. left:0px;
  1845. top:0px;
  1846. width:1258px;
  1847. height:1192px;
  1848. background:inherit;
  1849. background-color:rgba(255, 255, 255, 1);
  1850. border:none;
  1851. border-radius:0px;
  1852. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1853. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1854. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1855. color:#1890FF;
  1856. }
  1857. #u12846 {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:332px;
  1861. top:50px;
  1862. width:1258px;
  1863. height:1192px;
  1864. display:flex;
  1865. color:#1890FF;
  1866. }
  1867. #u12846 .text {
  1868. position:absolute;
  1869. align-self:center;
  1870. padding:2px 2px 2px 2px;
  1871. box-sizing:border-box;
  1872. width:100%;
  1873. }
  1874. #u12846_text {
  1875. border-width:0px;
  1876. word-wrap:break-word;
  1877. text-transform:none;
  1878. visibility:hidden;
  1879. }
  1880. #u12847_div {
  1881. border-width:0px;
  1882. position:absolute;
  1883. left:0px;
  1884. top:0px;
  1885. width:73px;
  1886. height:50px;
  1887. background:inherit;
  1888. background-color:rgba(255, 255, 255, 0);
  1889. border:none;
  1890. border-left:0px;
  1891. border-top:0px;
  1892. border-right:0px;
  1893. border-radius:0px;
  1894. border-bottom-right-radius:0px;
  1895. border-bottom-left-radius:0px;
  1896. -moz-box-shadow:none;
  1897. -webkit-box-shadow:none;
  1898. box-shadow:none;
  1899. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1900. font-weight:500;
  1901. font-style:normal;
  1902. font-size:18px;
  1903. }
  1904. #u12847 {
  1905. border-width:0px;
  1906. position:absolute;
  1907. left:351px;
  1908. top:50px;
  1909. width:73px;
  1910. height:50px;
  1911. display:flex;
  1912. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1913. font-weight:500;
  1914. font-style:normal;
  1915. font-size:18px;
  1916. }
  1917. #u12847 .text {
  1918. position:absolute;
  1919. align-self:center;
  1920. padding:0px 0px 0px 0px;
  1921. box-sizing:border-box;
  1922. width:100%;
  1923. }
  1924. #u12847_text {
  1925. border-width:0px;
  1926. white-space:nowrap;
  1927. text-transform:none;
  1928. }
  1929. #u12848 {
  1930. border-width:0px;
  1931. position:absolute;
  1932. left:351px;
  1933. top:210px;
  1934. width:1220px;
  1935. height:364px;
  1936. }
  1937. #u12849_img {
  1938. border-width:0px;
  1939. position:absolute;
  1940. left:0px;
  1941. top:0px;
  1942. width:153px;
  1943. height:39px;
  1944. }
  1945. #u12849 {
  1946. border-width:0px;
  1947. position:absolute;
  1948. left:0px;
  1949. top:0px;
  1950. width:153px;
  1951. height:39px;
  1952. display:flex;
  1953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1954. font-weight:400;
  1955. font-style:normal;
  1956. font-size:12px;
  1957. color:#FFFFFF;
  1958. }
  1959. #u12849 .text {
  1960. position:absolute;
  1961. align-self:center;
  1962. padding:2px 2px 2px 0px;
  1963. box-sizing:border-box;
  1964. width:100%;
  1965. }
  1966. #u12849_text {
  1967. border-width:0px;
  1968. word-wrap:break-word;
  1969. text-transform:none;
  1970. }
  1971. #u12850_img {
  1972. border-width:0px;
  1973. position:absolute;
  1974. left:0px;
  1975. top:0px;
  1976. width:153px;
  1977. height:39px;
  1978. }
  1979. #u12850 {
  1980. border-width:0px;
  1981. position:absolute;
  1982. left:153px;
  1983. top:0px;
  1984. width:153px;
  1985. height:39px;
  1986. display:flex;
  1987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1988. font-weight:400;
  1989. font-style:normal;
  1990. font-size:12px;
  1991. color:#FFFFFF;
  1992. }
  1993. #u12850 .text {
  1994. position:absolute;
  1995. align-self:center;
  1996. padding:2px 2px 2px 0px;
  1997. box-sizing:border-box;
  1998. width:100%;
  1999. }
  2000. #u12850_text {
  2001. border-width:0px;
  2002. word-wrap:break-word;
  2003. text-transform:none;
  2004. }
  2005. #u12851_img {
  2006. border-width:0px;
  2007. position:absolute;
  2008. left:0px;
  2009. top:0px;
  2010. width:153px;
  2011. height:39px;
  2012. }
  2013. #u12851 {
  2014. border-width:0px;
  2015. position:absolute;
  2016. left:306px;
  2017. top:0px;
  2018. width:153px;
  2019. height:39px;
  2020. display:flex;
  2021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2022. font-weight:400;
  2023. font-style:normal;
  2024. font-size:12px;
  2025. color:#FFFFFF;
  2026. }
  2027. #u12851 .text {
  2028. position:absolute;
  2029. align-self:center;
  2030. padding:2px 2px 2px 0px;
  2031. box-sizing:border-box;
  2032. width:100%;
  2033. }
  2034. #u12851_text {
  2035. border-width:0px;
  2036. word-wrap:break-word;
  2037. text-transform:none;
  2038. }
  2039. #u12852_img {
  2040. border-width:0px;
  2041. position:absolute;
  2042. left:0px;
  2043. top:0px;
  2044. width:153px;
  2045. height:39px;
  2046. }
  2047. #u12852 {
  2048. border-width:0px;
  2049. position:absolute;
  2050. left:459px;
  2051. top:0px;
  2052. width:153px;
  2053. height:39px;
  2054. display:flex;
  2055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2056. font-weight:400;
  2057. font-style:normal;
  2058. font-size:12px;
  2059. color:#FFFFFF;
  2060. }
  2061. #u12852 .text {
  2062. position:absolute;
  2063. align-self:center;
  2064. padding:2px 2px 2px 0px;
  2065. box-sizing:border-box;
  2066. width:100%;
  2067. }
  2068. #u12852_text {
  2069. border-width:0px;
  2070. word-wrap:break-word;
  2071. text-transform:none;
  2072. }
  2073. #u12853_img {
  2074. border-width:0px;
  2075. position:absolute;
  2076. left:0px;
  2077. top:0px;
  2078. width:153px;
  2079. height:39px;
  2080. }
  2081. #u12853 {
  2082. border-width:0px;
  2083. position:absolute;
  2084. left:612px;
  2085. top:0px;
  2086. width:153px;
  2087. height:39px;
  2088. display:flex;
  2089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2090. font-weight:400;
  2091. font-style:normal;
  2092. font-size:12px;
  2093. color:#FFFFFF;
  2094. }
  2095. #u12853 .text {
  2096. position:absolute;
  2097. align-self:center;
  2098. padding:2px 2px 2px 0px;
  2099. box-sizing:border-box;
  2100. width:100%;
  2101. }
  2102. #u12853_text {
  2103. border-width:0px;
  2104. word-wrap:break-word;
  2105. text-transform:none;
  2106. }
  2107. #u12854_img {
  2108. border-width:0px;
  2109. position:absolute;
  2110. left:0px;
  2111. top:0px;
  2112. width:152px;
  2113. height:39px;
  2114. }
  2115. #u12854 {
  2116. border-width:0px;
  2117. position:absolute;
  2118. left:765px;
  2119. top:0px;
  2120. width:152px;
  2121. height:39px;
  2122. display:flex;
  2123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2124. font-weight:400;
  2125. font-style:normal;
  2126. font-size:12px;
  2127. color:#FFFFFF;
  2128. }
  2129. #u12854 .text {
  2130. position:absolute;
  2131. align-self:center;
  2132. padding:2px 2px 2px 0px;
  2133. box-sizing:border-box;
  2134. width:100%;
  2135. }
  2136. #u12854_text {
  2137. border-width:0px;
  2138. word-wrap:break-word;
  2139. text-transform:none;
  2140. }
  2141. #u12855_img {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:0px;
  2145. top:0px;
  2146. width:153px;
  2147. height:39px;
  2148. }
  2149. #u12855 {
  2150. border-width:0px;
  2151. position:absolute;
  2152. left:917px;
  2153. top:0px;
  2154. width:153px;
  2155. height:39px;
  2156. display:flex;
  2157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2158. font-weight:400;
  2159. font-style:normal;
  2160. font-size:12px;
  2161. color:#FFFFFF;
  2162. }
  2163. #u12855 .text {
  2164. position:absolute;
  2165. align-self:center;
  2166. padding:2px 2px 2px 0px;
  2167. box-sizing:border-box;
  2168. width:100%;
  2169. }
  2170. #u12855_text {
  2171. border-width:0px;
  2172. word-wrap:break-word;
  2173. text-transform:none;
  2174. }
  2175. #u12856_img {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:0px;
  2179. top:0px;
  2180. width:150px;
  2181. height:39px;
  2182. }
  2183. #u12856 {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:1070px;
  2187. top:0px;
  2188. width:150px;
  2189. height:39px;
  2190. display:flex;
  2191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2192. font-weight:400;
  2193. font-style:normal;
  2194. font-size:12px;
  2195. color:#FFFFFF;
  2196. }
  2197. #u12856 .text {
  2198. position:absolute;
  2199. align-self:center;
  2200. padding:2px 2px 2px 0px;
  2201. box-sizing:border-box;
  2202. width:100%;
  2203. }
  2204. #u12856_text {
  2205. border-width:0px;
  2206. word-wrap:break-word;
  2207. text-transform:none;
  2208. }
  2209. #u12857_img {
  2210. border-width:0px;
  2211. position:absolute;
  2212. left:0px;
  2213. top:0px;
  2214. width:153px;
  2215. height:36px;
  2216. }
  2217. #u12857 {
  2218. border-width:0px;
  2219. position:absolute;
  2220. left:0px;
  2221. top:39px;
  2222. width:153px;
  2223. height:36px;
  2224. display:flex;
  2225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2226. font-weight:400;
  2227. font-style:normal;
  2228. font-size:12px;
  2229. }
  2230. #u12857 .text {
  2231. position:absolute;
  2232. align-self:center;
  2233. padding:2px 2px 2px 0px;
  2234. box-sizing:border-box;
  2235. width:100%;
  2236. }
  2237. #u12857_text {
  2238. border-width:0px;
  2239. word-wrap:break-word;
  2240. text-transform:none;
  2241. visibility:hidden;
  2242. }
  2243. #u12858_img {
  2244. border-width:0px;
  2245. position:absolute;
  2246. left:0px;
  2247. top:0px;
  2248. width:153px;
  2249. height:36px;
  2250. }
  2251. #u12858 {
  2252. border-width:0px;
  2253. position:absolute;
  2254. left:153px;
  2255. top:39px;
  2256. width:153px;
  2257. height:36px;
  2258. display:flex;
  2259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2260. font-weight:400;
  2261. font-style:normal;
  2262. font-size:12px;
  2263. }
  2264. #u12858 .text {
  2265. position:absolute;
  2266. align-self:center;
  2267. padding:2px 2px 2px 0px;
  2268. box-sizing:border-box;
  2269. width:100%;
  2270. }
  2271. #u12858_text {
  2272. border-width:0px;
  2273. word-wrap:break-word;
  2274. text-transform:none;
  2275. visibility:hidden;
  2276. }
  2277. #u12859_img {
  2278. border-width:0px;
  2279. position:absolute;
  2280. left:0px;
  2281. top:0px;
  2282. width:153px;
  2283. height:36px;
  2284. }
  2285. #u12859 {
  2286. border-width:0px;
  2287. position:absolute;
  2288. left:306px;
  2289. top:39px;
  2290. width:153px;
  2291. height:36px;
  2292. display:flex;
  2293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2294. font-weight:400;
  2295. font-style:normal;
  2296. font-size:12px;
  2297. color:#333333;
  2298. }
  2299. #u12859 .text {
  2300. position:absolute;
  2301. align-self:center;
  2302. padding:2px 2px 2px 0px;
  2303. box-sizing:border-box;
  2304. width:100%;
  2305. }
  2306. #u12859_text {
  2307. border-width:0px;
  2308. word-wrap:break-word;
  2309. text-transform:none;
  2310. }
  2311. #u12860_img {
  2312. border-width:0px;
  2313. position:absolute;
  2314. left:0px;
  2315. top:0px;
  2316. width:153px;
  2317. height:36px;
  2318. }
  2319. #u12860 {
  2320. border-width:0px;
  2321. position:absolute;
  2322. left:459px;
  2323. top:39px;
  2324. width:153px;
  2325. height:36px;
  2326. display:flex;
  2327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2328. font-weight:400;
  2329. font-style:normal;
  2330. font-size:12px;
  2331. color:#333333;
  2332. }
  2333. #u12860 .text {
  2334. position:absolute;
  2335. align-self:center;
  2336. padding:2px 2px 2px 0px;
  2337. box-sizing:border-box;
  2338. width:100%;
  2339. }
  2340. #u12860_text {
  2341. border-width:0px;
  2342. word-wrap:break-word;
  2343. text-transform:none;
  2344. visibility:hidden;
  2345. }
  2346. #u12861_img {
  2347. border-width:0px;
  2348. position:absolute;
  2349. left:0px;
  2350. top:0px;
  2351. width:153px;
  2352. height:36px;
  2353. }
  2354. #u12861 {
  2355. border-width:0px;
  2356. position:absolute;
  2357. left:612px;
  2358. top:39px;
  2359. width:153px;
  2360. height:36px;
  2361. display:flex;
  2362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2363. font-weight:400;
  2364. font-style:normal;
  2365. font-size:12px;
  2366. }
  2367. #u12861 .text {
  2368. position:absolute;
  2369. align-self:center;
  2370. padding:2px 2px 2px 0px;
  2371. box-sizing:border-box;
  2372. width:100%;
  2373. }
  2374. #u12861_text {
  2375. border-width:0px;
  2376. word-wrap:break-word;
  2377. text-transform:none;
  2378. visibility:hidden;
  2379. }
  2380. #u12862_img {
  2381. border-width:0px;
  2382. position:absolute;
  2383. left:0px;
  2384. top:0px;
  2385. width:152px;
  2386. height:36px;
  2387. }
  2388. #u12862 {
  2389. border-width:0px;
  2390. position:absolute;
  2391. left:765px;
  2392. top:39px;
  2393. width:152px;
  2394. height:36px;
  2395. display:flex;
  2396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2397. font-weight:400;
  2398. font-style:normal;
  2399. font-size:12px;
  2400. }
  2401. #u12862 .text {
  2402. position:absolute;
  2403. align-self:center;
  2404. padding:2px 2px 2px 0px;
  2405. box-sizing:border-box;
  2406. width:100%;
  2407. }
  2408. #u12862_text {
  2409. border-width:0px;
  2410. word-wrap:break-word;
  2411. text-transform:none;
  2412. visibility:hidden;
  2413. }
  2414. #u12863_img {
  2415. border-width:0px;
  2416. position:absolute;
  2417. left:0px;
  2418. top:0px;
  2419. width:153px;
  2420. height:36px;
  2421. }
  2422. #u12863 {
  2423. border-width:0px;
  2424. position:absolute;
  2425. left:917px;
  2426. top:39px;
  2427. width:153px;
  2428. height:36px;
  2429. display:flex;
  2430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2431. font-weight:400;
  2432. font-style:normal;
  2433. font-size:12px;
  2434. }
  2435. #u12863 .text {
  2436. position:absolute;
  2437. align-self:center;
  2438. padding:2px 2px 2px 0px;
  2439. box-sizing:border-box;
  2440. width:100%;
  2441. }
  2442. #u12863_text {
  2443. border-width:0px;
  2444. word-wrap:break-word;
  2445. text-transform:none;
  2446. visibility:hidden;
  2447. }
  2448. #u12864_img {
  2449. border-width:0px;
  2450. position:absolute;
  2451. left:0px;
  2452. top:0px;
  2453. width:150px;
  2454. height:36px;
  2455. }
  2456. #u12864 {
  2457. border-width:0px;
  2458. position:absolute;
  2459. left:1070px;
  2460. top:39px;
  2461. width:150px;
  2462. height:36px;
  2463. display:flex;
  2464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2465. font-weight:400;
  2466. font-style:normal;
  2467. font-size:12px;
  2468. color:#1890FF;
  2469. }
  2470. #u12864 .text {
  2471. position:absolute;
  2472. align-self:center;
  2473. padding:2px 2px 2px 0px;
  2474. box-sizing:border-box;
  2475. width:100%;
  2476. }
  2477. #u12864_text {
  2478. border-width:0px;
  2479. word-wrap:break-word;
  2480. text-transform:none;
  2481. }
  2482. #u12865_img {
  2483. border-width:0px;
  2484. position:absolute;
  2485. left:0px;
  2486. top:0px;
  2487. width:153px;
  2488. height:38px;
  2489. }
  2490. #u12865 {
  2491. border-width:0px;
  2492. position:absolute;
  2493. left:0px;
  2494. top:75px;
  2495. width:153px;
  2496. height:38px;
  2497. display:flex;
  2498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2499. font-weight:400;
  2500. font-style:normal;
  2501. font-size:12px;
  2502. }
  2503. #u12865 .text {
  2504. position:absolute;
  2505. align-self:center;
  2506. padding:2px 2px 2px 0px;
  2507. box-sizing:border-box;
  2508. width:100%;
  2509. }
  2510. #u12865_text {
  2511. border-width:0px;
  2512. word-wrap:break-word;
  2513. text-transform:none;
  2514. visibility:hidden;
  2515. }
  2516. #u12866_img {
  2517. border-width:0px;
  2518. position:absolute;
  2519. left:0px;
  2520. top:0px;
  2521. width:153px;
  2522. height:38px;
  2523. }
  2524. #u12866 {
  2525. border-width:0px;
  2526. position:absolute;
  2527. left:153px;
  2528. top:75px;
  2529. width:153px;
  2530. height:38px;
  2531. display:flex;
  2532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2533. font-weight:400;
  2534. font-style:normal;
  2535. font-size:12px;
  2536. }
  2537. #u12866 .text {
  2538. position:absolute;
  2539. align-self:center;
  2540. padding:2px 2px 2px 0px;
  2541. box-sizing:border-box;
  2542. width:100%;
  2543. }
  2544. #u12866_text {
  2545. border-width:0px;
  2546. word-wrap:break-word;
  2547. text-transform:none;
  2548. visibility:hidden;
  2549. }
  2550. #u12867_img {
  2551. border-width:0px;
  2552. position:absolute;
  2553. left:0px;
  2554. top:0px;
  2555. width:153px;
  2556. height:38px;
  2557. }
  2558. #u12867 {
  2559. border-width:0px;
  2560. position:absolute;
  2561. left:306px;
  2562. top:75px;
  2563. width:153px;
  2564. height:38px;
  2565. display:flex;
  2566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2567. font-weight:400;
  2568. font-style:normal;
  2569. font-size:12px;
  2570. color:#333333;
  2571. }
  2572. #u12867 .text {
  2573. position:absolute;
  2574. align-self:center;
  2575. padding:2px 2px 2px 0px;
  2576. box-sizing:border-box;
  2577. width:100%;
  2578. }
  2579. #u12867_text {
  2580. border-width:0px;
  2581. word-wrap:break-word;
  2582. text-transform:none;
  2583. }
  2584. #u12868_img {
  2585. border-width:0px;
  2586. position:absolute;
  2587. left:0px;
  2588. top:0px;
  2589. width:153px;
  2590. height:38px;
  2591. }
  2592. #u12868 {
  2593. border-width:0px;
  2594. position:absolute;
  2595. left:459px;
  2596. top:75px;
  2597. width:153px;
  2598. height:38px;
  2599. display:flex;
  2600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2601. font-weight:400;
  2602. font-style:normal;
  2603. font-size:12px;
  2604. color:#333333;
  2605. }
  2606. #u12868 .text {
  2607. position:absolute;
  2608. align-self:center;
  2609. padding:2px 2px 2px 0px;
  2610. box-sizing:border-box;
  2611. width:100%;
  2612. }
  2613. #u12868_text {
  2614. border-width:0px;
  2615. word-wrap:break-word;
  2616. text-transform:none;
  2617. visibility:hidden;
  2618. }
  2619. #u12869_img {
  2620. border-width:0px;
  2621. position:absolute;
  2622. left:0px;
  2623. top:0px;
  2624. width:153px;
  2625. height:38px;
  2626. }
  2627. #u12869 {
  2628. border-width:0px;
  2629. position:absolute;
  2630. left:612px;
  2631. top:75px;
  2632. width:153px;
  2633. height:38px;
  2634. display:flex;
  2635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2636. font-weight:400;
  2637. font-style:normal;
  2638. font-size:12px;
  2639. }
  2640. #u12869 .text {
  2641. position:absolute;
  2642. align-self:center;
  2643. padding:2px 2px 2px 0px;
  2644. box-sizing:border-box;
  2645. width:100%;
  2646. }
  2647. #u12869_text {
  2648. border-width:0px;
  2649. word-wrap:break-word;
  2650. text-transform:none;
  2651. visibility:hidden;
  2652. }
  2653. #u12870_img {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:0px;
  2657. top:0px;
  2658. width:152px;
  2659. height:38px;
  2660. }
  2661. #u12870 {
  2662. border-width:0px;
  2663. position:absolute;
  2664. left:765px;
  2665. top:75px;
  2666. width:152px;
  2667. height:38px;
  2668. display:flex;
  2669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2670. font-weight:400;
  2671. font-style:normal;
  2672. font-size:12px;
  2673. }
  2674. #u12870 .text {
  2675. position:absolute;
  2676. align-self:center;
  2677. padding:2px 2px 2px 0px;
  2678. box-sizing:border-box;
  2679. width:100%;
  2680. }
  2681. #u12870_text {
  2682. border-width:0px;
  2683. word-wrap:break-word;
  2684. text-transform:none;
  2685. visibility:hidden;
  2686. }
  2687. #u12871_img {
  2688. border-width:0px;
  2689. position:absolute;
  2690. left:0px;
  2691. top:0px;
  2692. width:153px;
  2693. height:38px;
  2694. }
  2695. #u12871 {
  2696. border-width:0px;
  2697. position:absolute;
  2698. left:917px;
  2699. top:75px;
  2700. width:153px;
  2701. height:38px;
  2702. display:flex;
  2703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2704. font-weight:400;
  2705. font-style:normal;
  2706. font-size:12px;
  2707. }
  2708. #u12871 .text {
  2709. position:absolute;
  2710. align-self:center;
  2711. padding:2px 2px 2px 0px;
  2712. box-sizing:border-box;
  2713. width:100%;
  2714. }
  2715. #u12871_text {
  2716. border-width:0px;
  2717. word-wrap:break-word;
  2718. text-transform:none;
  2719. visibility:hidden;
  2720. }
  2721. #u12872_img {
  2722. border-width:0px;
  2723. position:absolute;
  2724. left:0px;
  2725. top:0px;
  2726. width:150px;
  2727. height:38px;
  2728. }
  2729. #u12872 {
  2730. border-width:0px;
  2731. position:absolute;
  2732. left:1070px;
  2733. top:75px;
  2734. width:150px;
  2735. height:38px;
  2736. display:flex;
  2737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2738. font-weight:400;
  2739. font-style:normal;
  2740. font-size:12px;
  2741. color:#1890FF;
  2742. }
  2743. #u12872 .text {
  2744. position:absolute;
  2745. align-self:center;
  2746. padding:2px 2px 2px 0px;
  2747. box-sizing:border-box;
  2748. width:100%;
  2749. }
  2750. #u12872_text {
  2751. border-width:0px;
  2752. word-wrap:break-word;
  2753. text-transform:none;
  2754. visibility:hidden;
  2755. }
  2756. #u12873_img {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:0px;
  2760. top:0px;
  2761. width:153px;
  2762. height:38px;
  2763. }
  2764. #u12873 {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:0px;
  2768. top:113px;
  2769. width:153px;
  2770. height:38px;
  2771. display:flex;
  2772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2773. font-weight:400;
  2774. font-style:normal;
  2775. font-size:12px;
  2776. }
  2777. #u12873 .text {
  2778. position:absolute;
  2779. align-self:center;
  2780. padding:2px 2px 2px 0px;
  2781. box-sizing:border-box;
  2782. width:100%;
  2783. }
  2784. #u12873_text {
  2785. border-width:0px;
  2786. word-wrap:break-word;
  2787. text-transform:none;
  2788. visibility:hidden;
  2789. }
  2790. #u12874_img {
  2791. border-width:0px;
  2792. position:absolute;
  2793. left:0px;
  2794. top:0px;
  2795. width:153px;
  2796. height:38px;
  2797. }
  2798. #u12874 {
  2799. border-width:0px;
  2800. position:absolute;
  2801. left:153px;
  2802. top:113px;
  2803. width:153px;
  2804. height:38px;
  2805. display:flex;
  2806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2807. font-weight:400;
  2808. font-style:normal;
  2809. font-size:12px;
  2810. }
  2811. #u12874 .text {
  2812. position:absolute;
  2813. align-self:center;
  2814. padding:2px 2px 2px 0px;
  2815. box-sizing:border-box;
  2816. width:100%;
  2817. }
  2818. #u12874_text {
  2819. border-width:0px;
  2820. word-wrap:break-word;
  2821. text-transform:none;
  2822. visibility:hidden;
  2823. }
  2824. #u12875_img {
  2825. border-width:0px;
  2826. position:absolute;
  2827. left:0px;
  2828. top:0px;
  2829. width:153px;
  2830. height:38px;
  2831. }
  2832. #u12875 {
  2833. border-width:0px;
  2834. position:absolute;
  2835. left:306px;
  2836. top:113px;
  2837. width:153px;
  2838. height:38px;
  2839. display:flex;
  2840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2841. font-weight:400;
  2842. font-style:normal;
  2843. font-size:12px;
  2844. color:#333333;
  2845. }
  2846. #u12875 .text {
  2847. position:absolute;
  2848. align-self:center;
  2849. padding:2px 2px 2px 0px;
  2850. box-sizing:border-box;
  2851. width:100%;
  2852. }
  2853. #u12875_text {
  2854. border-width:0px;
  2855. word-wrap:break-word;
  2856. text-transform:none;
  2857. }
  2858. #u12876_img {
  2859. border-width:0px;
  2860. position:absolute;
  2861. left:0px;
  2862. top:0px;
  2863. width:153px;
  2864. height:38px;
  2865. }
  2866. #u12876 {
  2867. border-width:0px;
  2868. position:absolute;
  2869. left:459px;
  2870. top:113px;
  2871. width:153px;
  2872. height:38px;
  2873. display:flex;
  2874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2875. font-weight:400;
  2876. font-style:normal;
  2877. font-size:12px;
  2878. color:#333333;
  2879. }
  2880. #u12876 .text {
  2881. position:absolute;
  2882. align-self:center;
  2883. padding:2px 2px 2px 0px;
  2884. box-sizing:border-box;
  2885. width:100%;
  2886. }
  2887. #u12876_text {
  2888. border-width:0px;
  2889. word-wrap:break-word;
  2890. text-transform:none;
  2891. visibility:hidden;
  2892. }
  2893. #u12877_img {
  2894. border-width:0px;
  2895. position:absolute;
  2896. left:0px;
  2897. top:0px;
  2898. width:153px;
  2899. height:38px;
  2900. }
  2901. #u12877 {
  2902. border-width:0px;
  2903. position:absolute;
  2904. left:612px;
  2905. top:113px;
  2906. width:153px;
  2907. height:38px;
  2908. display:flex;
  2909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2910. font-weight:400;
  2911. font-style:normal;
  2912. font-size:12px;
  2913. }
  2914. #u12877 .text {
  2915. position:absolute;
  2916. align-self:center;
  2917. padding:2px 2px 2px 0px;
  2918. box-sizing:border-box;
  2919. width:100%;
  2920. }
  2921. #u12877_text {
  2922. border-width:0px;
  2923. word-wrap:break-word;
  2924. text-transform:none;
  2925. visibility:hidden;
  2926. }
  2927. #u12878_img {
  2928. border-width:0px;
  2929. position:absolute;
  2930. left:0px;
  2931. top:0px;
  2932. width:152px;
  2933. height:38px;
  2934. }
  2935. #u12878 {
  2936. border-width:0px;
  2937. position:absolute;
  2938. left:765px;
  2939. top:113px;
  2940. width:152px;
  2941. height:38px;
  2942. display:flex;
  2943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2944. font-weight:400;
  2945. font-style:normal;
  2946. font-size:12px;
  2947. }
  2948. #u12878 .text {
  2949. position:absolute;
  2950. align-self:center;
  2951. padding:2px 2px 2px 0px;
  2952. box-sizing:border-box;
  2953. width:100%;
  2954. }
  2955. #u12878_text {
  2956. border-width:0px;
  2957. word-wrap:break-word;
  2958. text-transform:none;
  2959. visibility:hidden;
  2960. }
  2961. #u12879_img {
  2962. border-width:0px;
  2963. position:absolute;
  2964. left:0px;
  2965. top:0px;
  2966. width:153px;
  2967. height:38px;
  2968. }
  2969. #u12879 {
  2970. border-width:0px;
  2971. position:absolute;
  2972. left:917px;
  2973. top:113px;
  2974. width:153px;
  2975. height:38px;
  2976. display:flex;
  2977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2978. font-weight:400;
  2979. font-style:normal;
  2980. font-size:12px;
  2981. }
  2982. #u12879 .text {
  2983. position:absolute;
  2984. align-self:center;
  2985. padding:2px 2px 2px 0px;
  2986. box-sizing:border-box;
  2987. width:100%;
  2988. }
  2989. #u12879_text {
  2990. border-width:0px;
  2991. word-wrap:break-word;
  2992. text-transform:none;
  2993. visibility:hidden;
  2994. }
  2995. #u12880_img {
  2996. border-width:0px;
  2997. position:absolute;
  2998. left:0px;
  2999. top:0px;
  3000. width:150px;
  3001. height:38px;
  3002. }
  3003. #u12880 {
  3004. border-width:0px;
  3005. position:absolute;
  3006. left:1070px;
  3007. top:113px;
  3008. width:150px;
  3009. height:38px;
  3010. display:flex;
  3011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3012. font-weight:400;
  3013. font-style:normal;
  3014. font-size:12px;
  3015. color:#1890FF;
  3016. }
  3017. #u12880 .text {
  3018. position:absolute;
  3019. align-self:center;
  3020. padding:2px 2px 2px 0px;
  3021. box-sizing:border-box;
  3022. width:100%;
  3023. }
  3024. #u12880_text {
  3025. border-width:0px;
  3026. word-wrap:break-word;
  3027. text-transform:none;
  3028. visibility:hidden;
  3029. }
  3030. #u12881_img {
  3031. border-width:0px;
  3032. position:absolute;
  3033. left:0px;
  3034. top:0px;
  3035. width:153px;
  3036. height:38px;
  3037. }
  3038. #u12881 {
  3039. border-width:0px;
  3040. position:absolute;
  3041. left:0px;
  3042. top:151px;
  3043. width:153px;
  3044. height:38px;
  3045. display:flex;
  3046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3047. font-weight:400;
  3048. font-style:normal;
  3049. font-size:12px;
  3050. }
  3051. #u12881 .text {
  3052. position:absolute;
  3053. align-self:center;
  3054. padding:2px 2px 2px 0px;
  3055. box-sizing:border-box;
  3056. width:100%;
  3057. }
  3058. #u12881_text {
  3059. border-width:0px;
  3060. word-wrap:break-word;
  3061. text-transform:none;
  3062. visibility:hidden;
  3063. }
  3064. #u12882_img {
  3065. border-width:0px;
  3066. position:absolute;
  3067. left:0px;
  3068. top:0px;
  3069. width:153px;
  3070. height:38px;
  3071. }
  3072. #u12882 {
  3073. border-width:0px;
  3074. position:absolute;
  3075. left:153px;
  3076. top:151px;
  3077. width:153px;
  3078. height:38px;
  3079. display:flex;
  3080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3081. font-weight:400;
  3082. font-style:normal;
  3083. font-size:12px;
  3084. }
  3085. #u12882 .text {
  3086. position:absolute;
  3087. align-self:center;
  3088. padding:2px 2px 2px 0px;
  3089. box-sizing:border-box;
  3090. width:100%;
  3091. }
  3092. #u12882_text {
  3093. border-width:0px;
  3094. word-wrap:break-word;
  3095. text-transform:none;
  3096. visibility:hidden;
  3097. }
  3098. #u12883_img {
  3099. border-width:0px;
  3100. position:absolute;
  3101. left:0px;
  3102. top:0px;
  3103. width:153px;
  3104. height:38px;
  3105. }
  3106. #u12883 {
  3107. border-width:0px;
  3108. position:absolute;
  3109. left:306px;
  3110. top:151px;
  3111. width:153px;
  3112. height:38px;
  3113. display:flex;
  3114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3115. font-weight:400;
  3116. font-style:normal;
  3117. font-size:12px;
  3118. color:#333333;
  3119. }
  3120. #u12883 .text {
  3121. position:absolute;
  3122. align-self:center;
  3123. padding:2px 2px 2px 0px;
  3124. box-sizing:border-box;
  3125. width:100%;
  3126. }
  3127. #u12883_text {
  3128. border-width:0px;
  3129. word-wrap:break-word;
  3130. text-transform:none;
  3131. }
  3132. #u12884_img {
  3133. border-width:0px;
  3134. position:absolute;
  3135. left:0px;
  3136. top:0px;
  3137. width:153px;
  3138. height:38px;
  3139. }
  3140. #u12884 {
  3141. border-width:0px;
  3142. position:absolute;
  3143. left:459px;
  3144. top:151px;
  3145. width:153px;
  3146. height:38px;
  3147. display:flex;
  3148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3149. font-weight:400;
  3150. font-style:normal;
  3151. font-size:12px;
  3152. color:#333333;
  3153. }
  3154. #u12884 .text {
  3155. position:absolute;
  3156. align-self:center;
  3157. padding:2px 2px 2px 0px;
  3158. box-sizing:border-box;
  3159. width:100%;
  3160. }
  3161. #u12884_text {
  3162. border-width:0px;
  3163. word-wrap:break-word;
  3164. text-transform:none;
  3165. visibility:hidden;
  3166. }
  3167. #u12885_img {
  3168. border-width:0px;
  3169. position:absolute;
  3170. left:0px;
  3171. top:0px;
  3172. width:153px;
  3173. height:38px;
  3174. }
  3175. #u12885 {
  3176. border-width:0px;
  3177. position:absolute;
  3178. left:612px;
  3179. top:151px;
  3180. width:153px;
  3181. height:38px;
  3182. display:flex;
  3183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3184. font-weight:400;
  3185. font-style:normal;
  3186. font-size:12px;
  3187. }
  3188. #u12885 .text {
  3189. position:absolute;
  3190. align-self:center;
  3191. padding:2px 2px 2px 0px;
  3192. box-sizing:border-box;
  3193. width:100%;
  3194. }
  3195. #u12885_text {
  3196. border-width:0px;
  3197. word-wrap:break-word;
  3198. text-transform:none;
  3199. visibility:hidden;
  3200. }
  3201. #u12886_img {
  3202. border-width:0px;
  3203. position:absolute;
  3204. left:0px;
  3205. top:0px;
  3206. width:152px;
  3207. height:38px;
  3208. }
  3209. #u12886 {
  3210. border-width:0px;
  3211. position:absolute;
  3212. left:765px;
  3213. top:151px;
  3214. width:152px;
  3215. height:38px;
  3216. display:flex;
  3217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3218. font-weight:400;
  3219. font-style:normal;
  3220. font-size:12px;
  3221. }
  3222. #u12886 .text {
  3223. position:absolute;
  3224. align-self:center;
  3225. padding:2px 2px 2px 0px;
  3226. box-sizing:border-box;
  3227. width:100%;
  3228. }
  3229. #u12886_text {
  3230. border-width:0px;
  3231. word-wrap:break-word;
  3232. text-transform:none;
  3233. visibility:hidden;
  3234. }
  3235. #u12887_img {
  3236. border-width:0px;
  3237. position:absolute;
  3238. left:0px;
  3239. top:0px;
  3240. width:153px;
  3241. height:38px;
  3242. }
  3243. #u12887 {
  3244. border-width:0px;
  3245. position:absolute;
  3246. left:917px;
  3247. top:151px;
  3248. width:153px;
  3249. height:38px;
  3250. display:flex;
  3251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3252. font-weight:400;
  3253. font-style:normal;
  3254. font-size:12px;
  3255. }
  3256. #u12887 .text {
  3257. position:absolute;
  3258. align-self:center;
  3259. padding:2px 2px 2px 0px;
  3260. box-sizing:border-box;
  3261. width:100%;
  3262. }
  3263. #u12887_text {
  3264. border-width:0px;
  3265. word-wrap:break-word;
  3266. text-transform:none;
  3267. visibility:hidden;
  3268. }
  3269. #u12888_img {
  3270. border-width:0px;
  3271. position:absolute;
  3272. left:0px;
  3273. top:0px;
  3274. width:150px;
  3275. height:38px;
  3276. }
  3277. #u12888 {
  3278. border-width:0px;
  3279. position:absolute;
  3280. left:1070px;
  3281. top:151px;
  3282. width:150px;
  3283. height:38px;
  3284. display:flex;
  3285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3286. font-weight:400;
  3287. font-style:normal;
  3288. font-size:12px;
  3289. color:#1890FF;
  3290. }
  3291. #u12888 .text {
  3292. position:absolute;
  3293. align-self:center;
  3294. padding:2px 2px 2px 0px;
  3295. box-sizing:border-box;
  3296. width:100%;
  3297. }
  3298. #u12888_text {
  3299. border-width:0px;
  3300. word-wrap:break-word;
  3301. text-transform:none;
  3302. visibility:hidden;
  3303. }
  3304. #u12889_img {
  3305. border-width:0px;
  3306. position:absolute;
  3307. left:0px;
  3308. top:0px;
  3309. width:153px;
  3310. height:35px;
  3311. }
  3312. #u12889 {
  3313. border-width:0px;
  3314. position:absolute;
  3315. left:0px;
  3316. top:189px;
  3317. width:153px;
  3318. height:35px;
  3319. display:flex;
  3320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3321. font-weight:400;
  3322. font-style:normal;
  3323. font-size:12px;
  3324. color:#606266;
  3325. }
  3326. #u12889 .text {
  3327. position:absolute;
  3328. align-self:center;
  3329. padding:2px 2px 2px 0px;
  3330. box-sizing:border-box;
  3331. width:100%;
  3332. }
  3333. #u12889_text {
  3334. border-width:0px;
  3335. word-wrap:break-word;
  3336. text-transform:none;
  3337. visibility:hidden;
  3338. }
  3339. #u12890_img {
  3340. border-width:0px;
  3341. position:absolute;
  3342. left:0px;
  3343. top:0px;
  3344. width:153px;
  3345. height:35px;
  3346. }
  3347. #u12890 {
  3348. border-width:0px;
  3349. position:absolute;
  3350. left:153px;
  3351. top:189px;
  3352. width:153px;
  3353. height:35px;
  3354. display:flex;
  3355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3356. font-weight:400;
  3357. font-style:normal;
  3358. font-size:12px;
  3359. color:#606266;
  3360. }
  3361. #u12890 .text {
  3362. position:absolute;
  3363. align-self:center;
  3364. padding:2px 2px 2px 0px;
  3365. box-sizing:border-box;
  3366. width:100%;
  3367. }
  3368. #u12890_text {
  3369. border-width:0px;
  3370. word-wrap:break-word;
  3371. text-transform:none;
  3372. visibility:hidden;
  3373. }
  3374. #u12891_img {
  3375. border-width:0px;
  3376. position:absolute;
  3377. left:0px;
  3378. top:0px;
  3379. width:153px;
  3380. height:35px;
  3381. }
  3382. #u12891 {
  3383. border-width:0px;
  3384. position:absolute;
  3385. left:306px;
  3386. top:189px;
  3387. width:153px;
  3388. height:35px;
  3389. display:flex;
  3390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3391. font-weight:400;
  3392. font-style:normal;
  3393. font-size:12px;
  3394. color:#333333;
  3395. }
  3396. #u12891 .text {
  3397. position:absolute;
  3398. align-self:center;
  3399. padding:2px 2px 2px 0px;
  3400. box-sizing:border-box;
  3401. width:100%;
  3402. }
  3403. #u12891_text {
  3404. border-width:0px;
  3405. word-wrap:break-word;
  3406. text-transform:none;
  3407. }
  3408. #u12892_img {
  3409. border-width:0px;
  3410. position:absolute;
  3411. left:0px;
  3412. top:0px;
  3413. width:153px;
  3414. height:35px;
  3415. }
  3416. #u12892 {
  3417. border-width:0px;
  3418. position:absolute;
  3419. left:459px;
  3420. top:189px;
  3421. width:153px;
  3422. height:35px;
  3423. display:flex;
  3424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3425. font-weight:400;
  3426. font-style:normal;
  3427. font-size:12px;
  3428. color:#333333;
  3429. }
  3430. #u12892 .text {
  3431. position:absolute;
  3432. align-self:center;
  3433. padding:2px 2px 2px 0px;
  3434. box-sizing:border-box;
  3435. width:100%;
  3436. }
  3437. #u12892_text {
  3438. border-width:0px;
  3439. word-wrap:break-word;
  3440. text-transform:none;
  3441. visibility:hidden;
  3442. }
  3443. #u12893_img {
  3444. border-width:0px;
  3445. position:absolute;
  3446. left:0px;
  3447. top:0px;
  3448. width:153px;
  3449. height:35px;
  3450. }
  3451. #u12893 {
  3452. border-width:0px;
  3453. position:absolute;
  3454. left:612px;
  3455. top:189px;
  3456. width:153px;
  3457. height:35px;
  3458. display:flex;
  3459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3460. font-weight:400;
  3461. font-style:normal;
  3462. font-size:12px;
  3463. color:#606266;
  3464. }
  3465. #u12893 .text {
  3466. position:absolute;
  3467. align-self:center;
  3468. padding:2px 2px 2px 0px;
  3469. box-sizing:border-box;
  3470. width:100%;
  3471. }
  3472. #u12893_text {
  3473. border-width:0px;
  3474. word-wrap:break-word;
  3475. text-transform:none;
  3476. visibility:hidden;
  3477. }
  3478. #u12894_img {
  3479. border-width:0px;
  3480. position:absolute;
  3481. left:0px;
  3482. top:0px;
  3483. width:152px;
  3484. height:35px;
  3485. }
  3486. #u12894 {
  3487. border-width:0px;
  3488. position:absolute;
  3489. left:765px;
  3490. top:189px;
  3491. width:152px;
  3492. height:35px;
  3493. display:flex;
  3494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3495. font-weight:400;
  3496. font-style:normal;
  3497. font-size:12px;
  3498. color:#606266;
  3499. }
  3500. #u12894 .text {
  3501. position:absolute;
  3502. align-self:center;
  3503. padding:2px 2px 2px 0px;
  3504. box-sizing:border-box;
  3505. width:100%;
  3506. }
  3507. #u12894_text {
  3508. border-width:0px;
  3509. word-wrap:break-word;
  3510. text-transform:none;
  3511. visibility:hidden;
  3512. }
  3513. #u12895_img {
  3514. border-width:0px;
  3515. position:absolute;
  3516. left:0px;
  3517. top:0px;
  3518. width:153px;
  3519. height:35px;
  3520. }
  3521. #u12895 {
  3522. border-width:0px;
  3523. position:absolute;
  3524. left:917px;
  3525. top:189px;
  3526. width:153px;
  3527. height:35px;
  3528. display:flex;
  3529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3530. font-weight:400;
  3531. font-style:normal;
  3532. font-size:12px;
  3533. color:#606266;
  3534. }
  3535. #u12895 .text {
  3536. position:absolute;
  3537. align-self:center;
  3538. padding:2px 2px 2px 0px;
  3539. box-sizing:border-box;
  3540. width:100%;
  3541. }
  3542. #u12895_text {
  3543. border-width:0px;
  3544. word-wrap:break-word;
  3545. text-transform:none;
  3546. visibility:hidden;
  3547. }
  3548. #u12896_img {
  3549. border-width:0px;
  3550. position:absolute;
  3551. left:0px;
  3552. top:0px;
  3553. width:150px;
  3554. height:35px;
  3555. }
  3556. #u12896 {
  3557. border-width:0px;
  3558. position:absolute;
  3559. left:1070px;
  3560. top:189px;
  3561. width:150px;
  3562. height:35px;
  3563. display:flex;
  3564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3565. font-weight:400;
  3566. font-style:normal;
  3567. font-size:12px;
  3568. color:#02A7F0;
  3569. }
  3570. #u12896 .text {
  3571. position:absolute;
  3572. align-self:center;
  3573. padding:2px 2px 2px 0px;
  3574. box-sizing:border-box;
  3575. width:100%;
  3576. }
  3577. #u12896_text {
  3578. border-width:0px;
  3579. word-wrap:break-word;
  3580. text-transform:none;
  3581. visibility:hidden;
  3582. }
  3583. #u12897_img {
  3584. border-width:0px;
  3585. position:absolute;
  3586. left:0px;
  3587. top:0px;
  3588. width:153px;
  3589. height:35px;
  3590. }
  3591. #u12897 {
  3592. border-width:0px;
  3593. position:absolute;
  3594. left:0px;
  3595. top:224px;
  3596. width:153px;
  3597. height:35px;
  3598. display:flex;
  3599. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3600. font-weight:400;
  3601. font-style:normal;
  3602. font-size:12px;
  3603. color:#606266;
  3604. }
  3605. #u12897 .text {
  3606. position:absolute;
  3607. align-self:center;
  3608. padding:2px 2px 2px 0px;
  3609. box-sizing:border-box;
  3610. width:100%;
  3611. }
  3612. #u12897_text {
  3613. border-width:0px;
  3614. word-wrap:break-word;
  3615. text-transform:none;
  3616. visibility:hidden;
  3617. }
  3618. #u12898_img {
  3619. border-width:0px;
  3620. position:absolute;
  3621. left:0px;
  3622. top:0px;
  3623. width:153px;
  3624. height:35px;
  3625. }
  3626. #u12898 {
  3627. border-width:0px;
  3628. position:absolute;
  3629. left:153px;
  3630. top:224px;
  3631. width:153px;
  3632. height:35px;
  3633. display:flex;
  3634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3635. font-weight:400;
  3636. font-style:normal;
  3637. font-size:12px;
  3638. color:#606266;
  3639. }
  3640. #u12898 .text {
  3641. position:absolute;
  3642. align-self:center;
  3643. padding:2px 2px 2px 0px;
  3644. box-sizing:border-box;
  3645. width:100%;
  3646. }
  3647. #u12898_text {
  3648. border-width:0px;
  3649. word-wrap:break-word;
  3650. text-transform:none;
  3651. visibility:hidden;
  3652. }
  3653. #u12899_img {
  3654. border-width:0px;
  3655. position:absolute;
  3656. left:0px;
  3657. top:0px;
  3658. width:153px;
  3659. height:35px;
  3660. }
  3661. #u12899 {
  3662. border-width:0px;
  3663. position:absolute;
  3664. left:306px;
  3665. top:224px;
  3666. width:153px;
  3667. height:35px;
  3668. display:flex;
  3669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3670. font-weight:400;
  3671. font-style:normal;
  3672. font-size:12px;
  3673. color:#606266;
  3674. }
  3675. #u12899 .text {
  3676. position:absolute;
  3677. align-self:center;
  3678. padding:2px 2px 2px 0px;
  3679. box-sizing:border-box;
  3680. width:100%;
  3681. }
  3682. #u12899_text {
  3683. border-width:0px;
  3684. word-wrap:break-word;
  3685. text-transform:none;
  3686. visibility:hidden;
  3687. }
  3688. #u12900_img {
  3689. border-width:0px;
  3690. position:absolute;
  3691. left:0px;
  3692. top:0px;
  3693. width:153px;
  3694. height:35px;
  3695. }
  3696. #u12900 {
  3697. border-width:0px;
  3698. position:absolute;
  3699. left:459px;
  3700. top:224px;
  3701. width:153px;
  3702. height:35px;
  3703. display:flex;
  3704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3705. font-weight:400;
  3706. font-style:normal;
  3707. font-size:12px;
  3708. color:#606266;
  3709. }
  3710. #u12900 .text {
  3711. position:absolute;
  3712. align-self:center;
  3713. padding:2px 2px 2px 0px;
  3714. box-sizing:border-box;
  3715. width:100%;
  3716. }
  3717. #u12900_text {
  3718. border-width:0px;
  3719. word-wrap:break-word;
  3720. text-transform:none;
  3721. visibility:hidden;
  3722. }
  3723. #u12901_img {
  3724. border-width:0px;
  3725. position:absolute;
  3726. left:0px;
  3727. top:0px;
  3728. width:153px;
  3729. height:35px;
  3730. }
  3731. #u12901 {
  3732. border-width:0px;
  3733. position:absolute;
  3734. left:612px;
  3735. top:224px;
  3736. width:153px;
  3737. height:35px;
  3738. display:flex;
  3739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3740. font-weight:400;
  3741. font-style:normal;
  3742. font-size:12px;
  3743. color:#606266;
  3744. }
  3745. #u12901 .text {
  3746. position:absolute;
  3747. align-self:center;
  3748. padding:2px 2px 2px 0px;
  3749. box-sizing:border-box;
  3750. width:100%;
  3751. }
  3752. #u12901_text {
  3753. border-width:0px;
  3754. word-wrap:break-word;
  3755. text-transform:none;
  3756. visibility:hidden;
  3757. }
  3758. #u12902_img {
  3759. border-width:0px;
  3760. position:absolute;
  3761. left:0px;
  3762. top:0px;
  3763. width:152px;
  3764. height:35px;
  3765. }
  3766. #u12902 {
  3767. border-width:0px;
  3768. position:absolute;
  3769. left:765px;
  3770. top:224px;
  3771. width:152px;
  3772. height:35px;
  3773. display:flex;
  3774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3775. font-weight:400;
  3776. font-style:normal;
  3777. font-size:12px;
  3778. color:#606266;
  3779. }
  3780. #u12902 .text {
  3781. position:absolute;
  3782. align-self:center;
  3783. padding:2px 2px 2px 0px;
  3784. box-sizing:border-box;
  3785. width:100%;
  3786. }
  3787. #u12902_text {
  3788. border-width:0px;
  3789. word-wrap:break-word;
  3790. text-transform:none;
  3791. visibility:hidden;
  3792. }
  3793. #u12903_img {
  3794. border-width:0px;
  3795. position:absolute;
  3796. left:0px;
  3797. top:0px;
  3798. width:153px;
  3799. height:35px;
  3800. }
  3801. #u12903 {
  3802. border-width:0px;
  3803. position:absolute;
  3804. left:917px;
  3805. top:224px;
  3806. width:153px;
  3807. height:35px;
  3808. display:flex;
  3809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3810. font-weight:400;
  3811. font-style:normal;
  3812. font-size:12px;
  3813. color:#606266;
  3814. }
  3815. #u12903 .text {
  3816. position:absolute;
  3817. align-self:center;
  3818. padding:2px 2px 2px 0px;
  3819. box-sizing:border-box;
  3820. width:100%;
  3821. }
  3822. #u12903_text {
  3823. border-width:0px;
  3824. word-wrap:break-word;
  3825. text-transform:none;
  3826. visibility:hidden;
  3827. }
  3828. #u12904_img {
  3829. border-width:0px;
  3830. position:absolute;
  3831. left:0px;
  3832. top:0px;
  3833. width:150px;
  3834. height:35px;
  3835. }
  3836. #u12904 {
  3837. border-width:0px;
  3838. position:absolute;
  3839. left:1070px;
  3840. top:224px;
  3841. width:150px;
  3842. height:35px;
  3843. display:flex;
  3844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3845. font-weight:400;
  3846. font-style:normal;
  3847. font-size:12px;
  3848. color:#02A7F0;
  3849. }
  3850. #u12904 .text {
  3851. position:absolute;
  3852. align-self:center;
  3853. padding:2px 2px 2px 0px;
  3854. box-sizing:border-box;
  3855. width:100%;
  3856. }
  3857. #u12904_text {
  3858. border-width:0px;
  3859. word-wrap:break-word;
  3860. text-transform:none;
  3861. visibility:hidden;
  3862. }
  3863. #u12905_img {
  3864. border-width:0px;
  3865. position:absolute;
  3866. left:0px;
  3867. top:0px;
  3868. width:153px;
  3869. height:35px;
  3870. }
  3871. #u12905 {
  3872. border-width:0px;
  3873. position:absolute;
  3874. left:0px;
  3875. top:259px;
  3876. width:153px;
  3877. height:35px;
  3878. display:flex;
  3879. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3880. font-weight:400;
  3881. font-style:normal;
  3882. font-size:12px;
  3883. color:#606266;
  3884. }
  3885. #u12905 .text {
  3886. position:absolute;
  3887. align-self:center;
  3888. padding:2px 2px 2px 0px;
  3889. box-sizing:border-box;
  3890. width:100%;
  3891. }
  3892. #u12905_text {
  3893. border-width:0px;
  3894. word-wrap:break-word;
  3895. text-transform:none;
  3896. visibility:hidden;
  3897. }
  3898. #u12906_img {
  3899. border-width:0px;
  3900. position:absolute;
  3901. left:0px;
  3902. top:0px;
  3903. width:153px;
  3904. height:35px;
  3905. }
  3906. #u12906 {
  3907. border-width:0px;
  3908. position:absolute;
  3909. left:153px;
  3910. top:259px;
  3911. width:153px;
  3912. height:35px;
  3913. display:flex;
  3914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3915. font-weight:400;
  3916. font-style:normal;
  3917. font-size:12px;
  3918. color:#606266;
  3919. }
  3920. #u12906 .text {
  3921. position:absolute;
  3922. align-self:center;
  3923. padding:2px 2px 2px 0px;
  3924. box-sizing:border-box;
  3925. width:100%;
  3926. }
  3927. #u12906_text {
  3928. border-width:0px;
  3929. word-wrap:break-word;
  3930. text-transform:none;
  3931. visibility:hidden;
  3932. }
  3933. #u12907_img {
  3934. border-width:0px;
  3935. position:absolute;
  3936. left:0px;
  3937. top:0px;
  3938. width:153px;
  3939. height:35px;
  3940. }
  3941. #u12907 {
  3942. border-width:0px;
  3943. position:absolute;
  3944. left:306px;
  3945. top:259px;
  3946. width:153px;
  3947. height:35px;
  3948. display:flex;
  3949. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3950. font-weight:400;
  3951. font-style:normal;
  3952. font-size:12px;
  3953. color:#606266;
  3954. }
  3955. #u12907 .text {
  3956. position:absolute;
  3957. align-self:center;
  3958. padding:2px 2px 2px 0px;
  3959. box-sizing:border-box;
  3960. width:100%;
  3961. }
  3962. #u12907_text {
  3963. border-width:0px;
  3964. word-wrap:break-word;
  3965. text-transform:none;
  3966. visibility:hidden;
  3967. }
  3968. #u12908_img {
  3969. border-width:0px;
  3970. position:absolute;
  3971. left:0px;
  3972. top:0px;
  3973. width:153px;
  3974. height:35px;
  3975. }
  3976. #u12908 {
  3977. border-width:0px;
  3978. position:absolute;
  3979. left:459px;
  3980. top:259px;
  3981. width:153px;
  3982. height:35px;
  3983. display:flex;
  3984. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3985. font-weight:400;
  3986. font-style:normal;
  3987. font-size:12px;
  3988. color:#606266;
  3989. }
  3990. #u12908 .text {
  3991. position:absolute;
  3992. align-self:center;
  3993. padding:2px 2px 2px 0px;
  3994. box-sizing:border-box;
  3995. width:100%;
  3996. }
  3997. #u12908_text {
  3998. border-width:0px;
  3999. word-wrap:break-word;
  4000. text-transform:none;
  4001. visibility:hidden;
  4002. }
  4003. #u12909_img {
  4004. border-width:0px;
  4005. position:absolute;
  4006. left:0px;
  4007. top:0px;
  4008. width:153px;
  4009. height:35px;
  4010. }
  4011. #u12909 {
  4012. border-width:0px;
  4013. position:absolute;
  4014. left:612px;
  4015. top:259px;
  4016. width:153px;
  4017. height:35px;
  4018. display:flex;
  4019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4020. font-weight:400;
  4021. font-style:normal;
  4022. font-size:12px;
  4023. color:#606266;
  4024. }
  4025. #u12909 .text {
  4026. position:absolute;
  4027. align-self:center;
  4028. padding:2px 2px 2px 0px;
  4029. box-sizing:border-box;
  4030. width:100%;
  4031. }
  4032. #u12909_text {
  4033. border-width:0px;
  4034. word-wrap:break-word;
  4035. text-transform:none;
  4036. visibility:hidden;
  4037. }
  4038. #u12910_img {
  4039. border-width:0px;
  4040. position:absolute;
  4041. left:0px;
  4042. top:0px;
  4043. width:152px;
  4044. height:35px;
  4045. }
  4046. #u12910 {
  4047. border-width:0px;
  4048. position:absolute;
  4049. left:765px;
  4050. top:259px;
  4051. width:152px;
  4052. height:35px;
  4053. display:flex;
  4054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4055. font-weight:400;
  4056. font-style:normal;
  4057. font-size:12px;
  4058. color:#606266;
  4059. }
  4060. #u12910 .text {
  4061. position:absolute;
  4062. align-self:center;
  4063. padding:2px 2px 2px 0px;
  4064. box-sizing:border-box;
  4065. width:100%;
  4066. }
  4067. #u12910_text {
  4068. border-width:0px;
  4069. word-wrap:break-word;
  4070. text-transform:none;
  4071. visibility:hidden;
  4072. }
  4073. #u12911_img {
  4074. border-width:0px;
  4075. position:absolute;
  4076. left:0px;
  4077. top:0px;
  4078. width:153px;
  4079. height:35px;
  4080. }
  4081. #u12911 {
  4082. border-width:0px;
  4083. position:absolute;
  4084. left:917px;
  4085. top:259px;
  4086. width:153px;
  4087. height:35px;
  4088. display:flex;
  4089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4090. font-weight:400;
  4091. font-style:normal;
  4092. font-size:12px;
  4093. color:#606266;
  4094. }
  4095. #u12911 .text {
  4096. position:absolute;
  4097. align-self:center;
  4098. padding:2px 2px 2px 0px;
  4099. box-sizing:border-box;
  4100. width:100%;
  4101. }
  4102. #u12911_text {
  4103. border-width:0px;
  4104. word-wrap:break-word;
  4105. text-transform:none;
  4106. visibility:hidden;
  4107. }
  4108. #u12912_img {
  4109. border-width:0px;
  4110. position:absolute;
  4111. left:0px;
  4112. top:0px;
  4113. width:150px;
  4114. height:35px;
  4115. }
  4116. #u12912 {
  4117. border-width:0px;
  4118. position:absolute;
  4119. left:1070px;
  4120. top:259px;
  4121. width:150px;
  4122. height:35px;
  4123. display:flex;
  4124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4125. font-weight:400;
  4126. font-style:normal;
  4127. font-size:12px;
  4128. color:#02A7F0;
  4129. }
  4130. #u12912 .text {
  4131. position:absolute;
  4132. align-self:center;
  4133. padding:2px 2px 2px 0px;
  4134. box-sizing:border-box;
  4135. width:100%;
  4136. }
  4137. #u12912_text {
  4138. border-width:0px;
  4139. word-wrap:break-word;
  4140. text-transform:none;
  4141. visibility:hidden;
  4142. }
  4143. #u12913_img {
  4144. border-width:0px;
  4145. position:absolute;
  4146. left:0px;
  4147. top:0px;
  4148. width:153px;
  4149. height:35px;
  4150. }
  4151. #u12913 {
  4152. border-width:0px;
  4153. position:absolute;
  4154. left:0px;
  4155. top:294px;
  4156. width:153px;
  4157. height:35px;
  4158. display:flex;
  4159. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4160. font-weight:400;
  4161. font-style:normal;
  4162. font-size:12px;
  4163. color:#606266;
  4164. }
  4165. #u12913 .text {
  4166. position:absolute;
  4167. align-self:center;
  4168. padding:2px 2px 2px 0px;
  4169. box-sizing:border-box;
  4170. width:100%;
  4171. }
  4172. #u12913_text {
  4173. border-width:0px;
  4174. word-wrap:break-word;
  4175. text-transform:none;
  4176. visibility:hidden;
  4177. }
  4178. #u12914_img {
  4179. border-width:0px;
  4180. position:absolute;
  4181. left:0px;
  4182. top:0px;
  4183. width:153px;
  4184. height:35px;
  4185. }
  4186. #u12914 {
  4187. border-width:0px;
  4188. position:absolute;
  4189. left:153px;
  4190. top:294px;
  4191. width:153px;
  4192. height:35px;
  4193. display:flex;
  4194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4195. font-weight:400;
  4196. font-style:normal;
  4197. font-size:12px;
  4198. color:#606266;
  4199. }
  4200. #u12914 .text {
  4201. position:absolute;
  4202. align-self:center;
  4203. padding:2px 2px 2px 0px;
  4204. box-sizing:border-box;
  4205. width:100%;
  4206. }
  4207. #u12914_text {
  4208. border-width:0px;
  4209. word-wrap:break-word;
  4210. text-transform:none;
  4211. visibility:hidden;
  4212. }
  4213. #u12915_img {
  4214. border-width:0px;
  4215. position:absolute;
  4216. left:0px;
  4217. top:0px;
  4218. width:153px;
  4219. height:35px;
  4220. }
  4221. #u12915 {
  4222. border-width:0px;
  4223. position:absolute;
  4224. left:306px;
  4225. top:294px;
  4226. width:153px;
  4227. height:35px;
  4228. display:flex;
  4229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4230. font-weight:400;
  4231. font-style:normal;
  4232. font-size:12px;
  4233. color:#606266;
  4234. }
  4235. #u12915 .text {
  4236. position:absolute;
  4237. align-self:center;
  4238. padding:2px 2px 2px 0px;
  4239. box-sizing:border-box;
  4240. width:100%;
  4241. }
  4242. #u12915_text {
  4243. border-width:0px;
  4244. word-wrap:break-word;
  4245. text-transform:none;
  4246. visibility:hidden;
  4247. }
  4248. #u12916_img {
  4249. border-width:0px;
  4250. position:absolute;
  4251. left:0px;
  4252. top:0px;
  4253. width:153px;
  4254. height:35px;
  4255. }
  4256. #u12916 {
  4257. border-width:0px;
  4258. position:absolute;
  4259. left:459px;
  4260. top:294px;
  4261. width:153px;
  4262. height:35px;
  4263. display:flex;
  4264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4265. font-weight:400;
  4266. font-style:normal;
  4267. font-size:12px;
  4268. color:#606266;
  4269. }
  4270. #u12916 .text {
  4271. position:absolute;
  4272. align-self:center;
  4273. padding:2px 2px 2px 0px;
  4274. box-sizing:border-box;
  4275. width:100%;
  4276. }
  4277. #u12916_text {
  4278. border-width:0px;
  4279. word-wrap:break-word;
  4280. text-transform:none;
  4281. visibility:hidden;
  4282. }
  4283. #u12917_img {
  4284. border-width:0px;
  4285. position:absolute;
  4286. left:0px;
  4287. top:0px;
  4288. width:153px;
  4289. height:35px;
  4290. }
  4291. #u12917 {
  4292. border-width:0px;
  4293. position:absolute;
  4294. left:612px;
  4295. top:294px;
  4296. width:153px;
  4297. height:35px;
  4298. display:flex;
  4299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4300. font-weight:400;
  4301. font-style:normal;
  4302. font-size:12px;
  4303. color:#606266;
  4304. }
  4305. #u12917 .text {
  4306. position:absolute;
  4307. align-self:center;
  4308. padding:2px 2px 2px 0px;
  4309. box-sizing:border-box;
  4310. width:100%;
  4311. }
  4312. #u12917_text {
  4313. border-width:0px;
  4314. word-wrap:break-word;
  4315. text-transform:none;
  4316. visibility:hidden;
  4317. }
  4318. #u12918_img {
  4319. border-width:0px;
  4320. position:absolute;
  4321. left:0px;
  4322. top:0px;
  4323. width:152px;
  4324. height:35px;
  4325. }
  4326. #u12918 {
  4327. border-width:0px;
  4328. position:absolute;
  4329. left:765px;
  4330. top:294px;
  4331. width:152px;
  4332. height:35px;
  4333. display:flex;
  4334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4335. font-weight:400;
  4336. font-style:normal;
  4337. font-size:12px;
  4338. color:#606266;
  4339. }
  4340. #u12918 .text {
  4341. position:absolute;
  4342. align-self:center;
  4343. padding:2px 2px 2px 0px;
  4344. box-sizing:border-box;
  4345. width:100%;
  4346. }
  4347. #u12918_text {
  4348. border-width:0px;
  4349. word-wrap:break-word;
  4350. text-transform:none;
  4351. visibility:hidden;
  4352. }
  4353. #u12919_img {
  4354. border-width:0px;
  4355. position:absolute;
  4356. left:0px;
  4357. top:0px;
  4358. width:153px;
  4359. height:35px;
  4360. }
  4361. #u12919 {
  4362. border-width:0px;
  4363. position:absolute;
  4364. left:917px;
  4365. top:294px;
  4366. width:153px;
  4367. height:35px;
  4368. display:flex;
  4369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4370. font-weight:400;
  4371. font-style:normal;
  4372. font-size:12px;
  4373. color:#606266;
  4374. }
  4375. #u12919 .text {
  4376. position:absolute;
  4377. align-self:center;
  4378. padding:2px 2px 2px 0px;
  4379. box-sizing:border-box;
  4380. width:100%;
  4381. }
  4382. #u12919_text {
  4383. border-width:0px;
  4384. word-wrap:break-word;
  4385. text-transform:none;
  4386. visibility:hidden;
  4387. }
  4388. #u12920_img {
  4389. border-width:0px;
  4390. position:absolute;
  4391. left:0px;
  4392. top:0px;
  4393. width:150px;
  4394. height:35px;
  4395. }
  4396. #u12920 {
  4397. border-width:0px;
  4398. position:absolute;
  4399. left:1070px;
  4400. top:294px;
  4401. width:150px;
  4402. height:35px;
  4403. display:flex;
  4404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4405. font-weight:400;
  4406. font-style:normal;
  4407. font-size:12px;
  4408. color:#02A7F0;
  4409. }
  4410. #u12920 .text {
  4411. position:absolute;
  4412. align-self:center;
  4413. padding:2px 2px 2px 0px;
  4414. box-sizing:border-box;
  4415. width:100%;
  4416. }
  4417. #u12920_text {
  4418. border-width:0px;
  4419. word-wrap:break-word;
  4420. text-transform:none;
  4421. visibility:hidden;
  4422. }
  4423. #u12921_img {
  4424. border-width:0px;
  4425. position:absolute;
  4426. left:0px;
  4427. top:0px;
  4428. width:153px;
  4429. height:35px;
  4430. }
  4431. #u12921 {
  4432. border-width:0px;
  4433. position:absolute;
  4434. left:0px;
  4435. top:329px;
  4436. width:153px;
  4437. height:35px;
  4438. display:flex;
  4439. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4440. font-weight:400;
  4441. font-style:normal;
  4442. font-size:12px;
  4443. color:#606266;
  4444. }
  4445. #u12921 .text {
  4446. position:absolute;
  4447. align-self:center;
  4448. padding:2px 2px 2px 0px;
  4449. box-sizing:border-box;
  4450. width:100%;
  4451. }
  4452. #u12921_text {
  4453. border-width:0px;
  4454. word-wrap:break-word;
  4455. text-transform:none;
  4456. visibility:hidden;
  4457. }
  4458. #u12922_img {
  4459. border-width:0px;
  4460. position:absolute;
  4461. left:0px;
  4462. top:0px;
  4463. width:153px;
  4464. height:35px;
  4465. }
  4466. #u12922 {
  4467. border-width:0px;
  4468. position:absolute;
  4469. left:153px;
  4470. top:329px;
  4471. width:153px;
  4472. height:35px;
  4473. display:flex;
  4474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4475. font-weight:400;
  4476. font-style:normal;
  4477. font-size:12px;
  4478. color:#606266;
  4479. }
  4480. #u12922 .text {
  4481. position:absolute;
  4482. align-self:center;
  4483. padding:2px 2px 2px 0px;
  4484. box-sizing:border-box;
  4485. width:100%;
  4486. }
  4487. #u12922_text {
  4488. border-width:0px;
  4489. word-wrap:break-word;
  4490. text-transform:none;
  4491. visibility:hidden;
  4492. }
  4493. #u12923_img {
  4494. border-width:0px;
  4495. position:absolute;
  4496. left:0px;
  4497. top:0px;
  4498. width:153px;
  4499. height:35px;
  4500. }
  4501. #u12923 {
  4502. border-width:0px;
  4503. position:absolute;
  4504. left:306px;
  4505. top:329px;
  4506. width:153px;
  4507. height:35px;
  4508. display:flex;
  4509. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4510. font-weight:400;
  4511. font-style:normal;
  4512. font-size:12px;
  4513. color:#606266;
  4514. }
  4515. #u12923 .text {
  4516. position:absolute;
  4517. align-self:center;
  4518. padding:2px 2px 2px 0px;
  4519. box-sizing:border-box;
  4520. width:100%;
  4521. }
  4522. #u12923_text {
  4523. border-width:0px;
  4524. word-wrap:break-word;
  4525. text-transform:none;
  4526. visibility:hidden;
  4527. }
  4528. #u12924_img {
  4529. border-width:0px;
  4530. position:absolute;
  4531. left:0px;
  4532. top:0px;
  4533. width:153px;
  4534. height:35px;
  4535. }
  4536. #u12924 {
  4537. border-width:0px;
  4538. position:absolute;
  4539. left:459px;
  4540. top:329px;
  4541. width:153px;
  4542. height:35px;
  4543. display:flex;
  4544. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4545. font-weight:400;
  4546. font-style:normal;
  4547. font-size:12px;
  4548. color:#606266;
  4549. }
  4550. #u12924 .text {
  4551. position:absolute;
  4552. align-self:center;
  4553. padding:2px 2px 2px 0px;
  4554. box-sizing:border-box;
  4555. width:100%;
  4556. }
  4557. #u12924_text {
  4558. border-width:0px;
  4559. word-wrap:break-word;
  4560. text-transform:none;
  4561. visibility:hidden;
  4562. }
  4563. #u12925_img {
  4564. border-width:0px;
  4565. position:absolute;
  4566. left:0px;
  4567. top:0px;
  4568. width:153px;
  4569. height:35px;
  4570. }
  4571. #u12925 {
  4572. border-width:0px;
  4573. position:absolute;
  4574. left:612px;
  4575. top:329px;
  4576. width:153px;
  4577. height:35px;
  4578. display:flex;
  4579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4580. font-weight:400;
  4581. font-style:normal;
  4582. font-size:12px;
  4583. color:#606266;
  4584. }
  4585. #u12925 .text {
  4586. position:absolute;
  4587. align-self:center;
  4588. padding:2px 2px 2px 0px;
  4589. box-sizing:border-box;
  4590. width:100%;
  4591. }
  4592. #u12925_text {
  4593. border-width:0px;
  4594. word-wrap:break-word;
  4595. text-transform:none;
  4596. visibility:hidden;
  4597. }
  4598. #u12926_img {
  4599. border-width:0px;
  4600. position:absolute;
  4601. left:0px;
  4602. top:0px;
  4603. width:152px;
  4604. height:35px;
  4605. }
  4606. #u12926 {
  4607. border-width:0px;
  4608. position:absolute;
  4609. left:765px;
  4610. top:329px;
  4611. width:152px;
  4612. height:35px;
  4613. display:flex;
  4614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4615. font-weight:400;
  4616. font-style:normal;
  4617. font-size:12px;
  4618. color:#606266;
  4619. }
  4620. #u12926 .text {
  4621. position:absolute;
  4622. align-self:center;
  4623. padding:2px 2px 2px 0px;
  4624. box-sizing:border-box;
  4625. width:100%;
  4626. }
  4627. #u12926_text {
  4628. border-width:0px;
  4629. word-wrap:break-word;
  4630. text-transform:none;
  4631. visibility:hidden;
  4632. }
  4633. #u12927_img {
  4634. border-width:0px;
  4635. position:absolute;
  4636. left:0px;
  4637. top:0px;
  4638. width:153px;
  4639. height:35px;
  4640. }
  4641. #u12927 {
  4642. border-width:0px;
  4643. position:absolute;
  4644. left:917px;
  4645. top:329px;
  4646. width:153px;
  4647. height:35px;
  4648. display:flex;
  4649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4650. font-weight:400;
  4651. font-style:normal;
  4652. font-size:12px;
  4653. color:#606266;
  4654. }
  4655. #u12927 .text {
  4656. position:absolute;
  4657. align-self:center;
  4658. padding:2px 2px 2px 0px;
  4659. box-sizing:border-box;
  4660. width:100%;
  4661. }
  4662. #u12927_text {
  4663. border-width:0px;
  4664. word-wrap:break-word;
  4665. text-transform:none;
  4666. visibility:hidden;
  4667. }
  4668. #u12928_img {
  4669. border-width:0px;
  4670. position:absolute;
  4671. left:0px;
  4672. top:0px;
  4673. width:150px;
  4674. height:35px;
  4675. }
  4676. #u12928 {
  4677. border-width:0px;
  4678. position:absolute;
  4679. left:1070px;
  4680. top:329px;
  4681. width:150px;
  4682. height:35px;
  4683. display:flex;
  4684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4685. font-weight:400;
  4686. font-style:normal;
  4687. font-size:12px;
  4688. color:#02A7F0;
  4689. }
  4690. #u12928 .text {
  4691. position:absolute;
  4692. align-self:center;
  4693. padding:2px 2px 2px 0px;
  4694. box-sizing:border-box;
  4695. width:100%;
  4696. }
  4697. #u12928_text {
  4698. border-width:0px;
  4699. word-wrap:break-word;
  4700. text-transform:none;
  4701. visibility:hidden;
  4702. }
  4703. #u12929_div {
  4704. border-width:0px;
  4705. position:absolute;
  4706. left:0px;
  4707. top:0px;
  4708. width:59px;
  4709. height:30px;
  4710. background:inherit;
  4711. background-color:rgba(41, 143, 255, 1);
  4712. border:none;
  4713. border-radius:4px;
  4714. -moz-box-shadow:none;
  4715. -webkit-box-shadow:none;
  4716. box-shadow:none;
  4717. font-family:'Microsoft YaHei', sans-serif;
  4718. font-weight:400;
  4719. font-style:normal;
  4720. font-size:14px;
  4721. color:#FFFFFF;
  4722. }
  4723. #u12929 {
  4724. border-width:0px;
  4725. position:absolute;
  4726. left:651px;
  4727. top:110px;
  4728. width:59px;
  4729. height:30px;
  4730. display:flex;
  4731. font-family:'Microsoft YaHei', sans-serif;
  4732. font-weight:400;
  4733. font-style:normal;
  4734. font-size:14px;
  4735. color:#FFFFFF;
  4736. }
  4737. #u12929 .text {
  4738. position:absolute;
  4739. align-self:center;
  4740. padding:5px 15px 5px 15px;
  4741. box-sizing:border-box;
  4742. width:100%;
  4743. }
  4744. #u12929_text {
  4745. border-width:0px;
  4746. white-space:nowrap;
  4747. text-transform:none;
  4748. }
  4749. #u12930_div {
  4750. border-width:0px;
  4751. position:absolute;
  4752. left:0px;
  4753. top:0px;
  4754. width:55px;
  4755. height:30px;
  4756. background:inherit;
  4757. background-color:rgba(255, 255, 255, 1);
  4758. box-sizing:border-box;
  4759. border-width:1px;
  4760. border-style:solid;
  4761. border-color:rgba(170, 170, 170, 1);
  4762. border-radius:4px;
  4763. -moz-box-shadow:none;
  4764. -webkit-box-shadow:none;
  4765. box-shadow:none;
  4766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4767. font-weight:400;
  4768. font-style:normal;
  4769. font-size:12px;
  4770. color:#555555;
  4771. }
  4772. #u12930 {
  4773. border-width:0px;
  4774. position:absolute;
  4775. left:720px;
  4776. top:110px;
  4777. width:55px;
  4778. height:30px;
  4779. display:flex;
  4780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4781. font-weight:400;
  4782. font-style:normal;
  4783. font-size:12px;
  4784. color:#555555;
  4785. }
  4786. #u12930 .text {
  4787. position:absolute;
  4788. align-self:center;
  4789. padding:5px 15px 5px 15px;
  4790. box-sizing:border-box;
  4791. width:100%;
  4792. }
  4793. #u12930_text {
  4794. border-width:0px;
  4795. white-space:nowrap;
  4796. text-transform:none;
  4797. }
  4798. #u12931 {
  4799. border-width:0px;
  4800. position:absolute;
  4801. left:0px;
  4802. top:0px;
  4803. width:0px;
  4804. height:0px;
  4805. }
  4806. #u12932_div {
  4807. border-width:0px;
  4808. position:absolute;
  4809. left:0px;
  4810. top:0px;
  4811. width:140px;
  4812. height:30px;
  4813. background:inherit;
  4814. background-color:rgba(255, 255, 255, 1);
  4815. box-sizing:border-box;
  4816. border-width:1px;
  4817. border-style:solid;
  4818. border-color:rgba(201, 201, 201, 1);
  4819. border-radius:4px;
  4820. -moz-box-shadow:none;
  4821. -webkit-box-shadow:none;
  4822. box-shadow:none;
  4823. font-family:'Microsoft YaHei', sans-serif;
  4824. font-weight:400;
  4825. font-style:normal;
  4826. font-size:14px;
  4827. color:#CCCCCC;
  4828. text-align:left;
  4829. }
  4830. #u12932 {
  4831. border-width:0px;
  4832. position:absolute;
  4833. left:501px;
  4834. top:110px;
  4835. width:140px;
  4836. height:30px;
  4837. display:flex;
  4838. font-family:'Microsoft YaHei', sans-serif;
  4839. font-weight:400;
  4840. font-style:normal;
  4841. font-size:14px;
  4842. color:#CCCCCC;
  4843. text-align:left;
  4844. }
  4845. #u12932 .text {
  4846. position:absolute;
  4847. align-self:center;
  4848. padding:2px 8px 2px 8px;
  4849. box-sizing:border-box;
  4850. width:100%;
  4851. }
  4852. #u12932_text {
  4853. border-width:0px;
  4854. word-wrap:break-word;
  4855. text-transform:none;
  4856. visibility:hidden;
  4857. }
  4858. #u12933_input {
  4859. position:absolute;
  4860. left:0px;
  4861. top:0px;
  4862. width:127px;
  4863. height:25px;
  4864. padding:2px 2px 2px 2px;
  4865. font-family:'Microsoft YaHei', sans-serif;
  4866. font-weight:400;
  4867. font-style:normal;
  4868. font-size:10px;
  4869. letter-spacing:normal;
  4870. color:#000000;
  4871. vertical-align:none;
  4872. text-align:left;
  4873. text-transform:none;
  4874. background-color:transparent;
  4875. border-color:transparent;
  4876. }
  4877. #u12933_input.disabled {
  4878. position:absolute;
  4879. left:0px;
  4880. top:0px;
  4881. width:127px;
  4882. height:25px;
  4883. padding:2px 2px 2px 2px;
  4884. font-family:'Microsoft YaHei', sans-serif;
  4885. font-weight:400;
  4886. font-style:normal;
  4887. font-size:10px;
  4888. letter-spacing:normal;
  4889. color:#000000;
  4890. vertical-align:none;
  4891. text-align:left;
  4892. text-transform:none;
  4893. background-color:transparent;
  4894. border-color:transparent;
  4895. }
  4896. #u12933_div {
  4897. border-width:0px;
  4898. position:absolute;
  4899. left:0px;
  4900. top:0px;
  4901. width:127px;
  4902. height:25px;
  4903. background:inherit;
  4904. background-color:rgba(255, 255, 255, 1);
  4905. border:none;
  4906. border-radius:0px;
  4907. -moz-box-shadow:none;
  4908. -webkit-box-shadow:none;
  4909. box-shadow:none;
  4910. font-family:'Microsoft YaHei', sans-serif;
  4911. font-weight:400;
  4912. font-style:normal;
  4913. font-size:10px;
  4914. }
  4915. #u12933 {
  4916. border-width:0px;
  4917. position:absolute;
  4918. left:509px;
  4919. top:111px;
  4920. width:127px;
  4921. height:25px;
  4922. display:flex;
  4923. font-family:'Microsoft YaHei', sans-serif;
  4924. font-weight:400;
  4925. font-style:normal;
  4926. font-size:10px;
  4927. }
  4928. #u12933 .text {
  4929. position:absolute;
  4930. align-self:center;
  4931. padding:2px 2px 2px 2px;
  4932. box-sizing:border-box;
  4933. width:100%;
  4934. }
  4935. #u12933_div.disabled {
  4936. border-width:0px;
  4937. position:absolute;
  4938. left:0px;
  4939. top:0px;
  4940. width:127px;
  4941. height:25px;
  4942. background:inherit;
  4943. background-color:rgba(240, 240, 240, 1);
  4944. border:none;
  4945. border-radius:0px;
  4946. -moz-box-shadow:none;
  4947. -webkit-box-shadow:none;
  4948. box-shadow:none;
  4949. font-family:'Microsoft YaHei', sans-serif;
  4950. font-weight:400;
  4951. font-style:normal;
  4952. font-size:10px;
  4953. }
  4954. #u12933.disabled {
  4955. }
  4956. #u12934 {
  4957. border-width:0px;
  4958. position:absolute;
  4959. left:0px;
  4960. top:0px;
  4961. width:0px;
  4962. height:0px;
  4963. }
  4964. #u12935_div {
  4965. border-width:0px;
  4966. position:absolute;
  4967. left:0px;
  4968. top:0px;
  4969. width:140px;
  4970. height:30px;
  4971. background:inherit;
  4972. background-color:rgba(255, 255, 255, 1);
  4973. box-sizing:border-box;
  4974. border-width:1px;
  4975. border-style:solid;
  4976. border-color:rgba(215, 215, 215, 1);
  4977. border-radius:4px;
  4978. -moz-box-shadow:none;
  4979. -webkit-box-shadow:none;
  4980. box-shadow:none;
  4981. font-size:11px;
  4982. }
  4983. #u12935 {
  4984. border-width:0px;
  4985. position:absolute;
  4986. left:351px;
  4987. top:110px;
  4988. width:140px;
  4989. height:30px;
  4990. display:flex;
  4991. font-size:11px;
  4992. }
  4993. #u12935 .text {
  4994. position:absolute;
  4995. align-self:center;
  4996. padding:2px 2px 2px 2px;
  4997. box-sizing:border-box;
  4998. width:100%;
  4999. }
  5000. #u12935_text {
  5001. border-width:0px;
  5002. word-wrap:break-word;
  5003. text-transform:none;
  5004. visibility:hidden;
  5005. }
  5006. #u12936_input {
  5007. position:absolute;
  5008. left:0px;
  5009. top:0px;
  5010. width:120px;
  5011. height:23px;
  5012. padding:2px 2px 2px 2px;
  5013. font-family:'ArialMT', 'Arial', sans-serif;
  5014. font-weight:400;
  5015. font-style:normal;
  5016. font-size:11px;
  5017. letter-spacing:normal;
  5018. color:#AAAAAA;
  5019. vertical-align:none;
  5020. text-align:left;
  5021. text-transform:none;
  5022. background-color:transparent;
  5023. border-color:transparent;
  5024. }
  5025. #u12936_input.disabled {
  5026. position:absolute;
  5027. left:0px;
  5028. top:0px;
  5029. width:120px;
  5030. height:23px;
  5031. padding:2px 2px 2px 2px;
  5032. font-family:'ArialMT', 'Arial', sans-serif;
  5033. font-weight:400;
  5034. font-style:normal;
  5035. font-size:11px;
  5036. letter-spacing:normal;
  5037. color:#AAAAAA;
  5038. vertical-align:none;
  5039. text-align:left;
  5040. text-transform:none;
  5041. background-color:transparent;
  5042. border-color:transparent;
  5043. }
  5044. #u12936_div {
  5045. border-width:0px;
  5046. position:absolute;
  5047. left:0px;
  5048. top:0px;
  5049. width:120px;
  5050. height:23px;
  5051. background:inherit;
  5052. background-color:rgba(255, 255, 255, 1);
  5053. border:none;
  5054. border-radius:0px;
  5055. -moz-box-shadow:none;
  5056. -webkit-box-shadow:none;
  5057. box-shadow:none;
  5058. font-size:11px;
  5059. color:#AAAAAA;
  5060. }
  5061. #u12936 {
  5062. border-width:0px;
  5063. position:absolute;
  5064. left:358px;
  5065. top:112px;
  5066. width:120px;
  5067. height:23px;
  5068. display:flex;
  5069. font-size:11px;
  5070. color:#AAAAAA;
  5071. }
  5072. #u12936 .text {
  5073. position:absolute;
  5074. align-self:flex-start;
  5075. padding:2px 2px 2px 2px;
  5076. box-sizing:border-box;
  5077. width:100%;
  5078. }
  5079. #u12936_div.disabled {
  5080. border-width:0px;
  5081. position:absolute;
  5082. left:0px;
  5083. top:0px;
  5084. width:120px;
  5085. height:23px;
  5086. background:inherit;
  5087. background-color:rgba(240, 240, 240, 1);
  5088. border:none;
  5089. border-radius:0px;
  5090. -moz-box-shadow:none;
  5091. -webkit-box-shadow:none;
  5092. box-shadow:none;
  5093. font-size:11px;
  5094. color:#AAAAAA;
  5095. }
  5096. #u12936.disabled {
  5097. }
  5098. .u12936_input_option {
  5099. font-size:11px;
  5100. }
  5101. #u12937_img {
  5102. border-width:0px;
  5103. position:absolute;
  5104. left:0px;
  5105. top:0px;
  5106. width:50px;
  5107. height:31px;
  5108. }
  5109. #u12937 {
  5110. border-width:0px;
  5111. position:absolute;
  5112. left:1012px;
  5113. top:254px;
  5114. width:50px;
  5115. height:31px;
  5116. display:flex;
  5117. }
  5118. #u12937 .text {
  5119. position:absolute;
  5120. align-self:center;
  5121. padding:2px 2px 2px 2px;
  5122. box-sizing:border-box;
  5123. width:100%;
  5124. }
  5125. #u12937_text {
  5126. border-width:0px;
  5127. word-wrap:break-word;
  5128. text-transform:none;
  5129. visibility:hidden;
  5130. }
  5131. #u12938_img {
  5132. border-width:0px;
  5133. position:absolute;
  5134. left:0px;
  5135. top:0px;
  5136. width:50px;
  5137. height:31px;
  5138. }
  5139. #u12938 {
  5140. border-width:0px;
  5141. position:absolute;
  5142. left:1012px;
  5143. top:292px;
  5144. width:50px;
  5145. height:31px;
  5146. display:flex;
  5147. }
  5148. #u12938 .text {
  5149. position:absolute;
  5150. align-self:center;
  5151. padding:2px 2px 2px 2px;
  5152. box-sizing:border-box;
  5153. width:100%;
  5154. }
  5155. #u12938_text {
  5156. border-width:0px;
  5157. word-wrap:break-word;
  5158. text-transform:none;
  5159. visibility:hidden;
  5160. }
  5161. #u12939_div {
  5162. border-width:0px;
  5163. position:absolute;
  5164. left:0px;
  5165. top:0px;
  5166. width:984px;
  5167. height:114px;
  5168. background:inherit;
  5169. background-color:rgba(255, 255, 255, 1);
  5170. box-sizing:border-box;
  5171. border-width:1px;
  5172. border-style:solid;
  5173. border-color:rgba(217, 0, 27, 1);
  5174. border-radius:0px;
  5175. -moz-box-shadow:none;
  5176. -webkit-box-shadow:none;
  5177. box-shadow:none;
  5178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5179. font-weight:400;
  5180. font-style:normal;
  5181. font-size:18px;
  5182. color:#D9001B;
  5183. line-height:40px;
  5184. }
  5185. #u12939 {
  5186. border-width:0px;
  5187. position:absolute;
  5188. left:1754px;
  5189. top:81px;
  5190. width:984px;
  5191. height:114px;
  5192. display:flex;
  5193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5194. font-weight:400;
  5195. font-style:normal;
  5196. font-size:18px;
  5197. color:#D9001B;
  5198. line-height:40px;
  5199. }
  5200. #u12939 .text {
  5201. position:absolute;
  5202. align-self:flex-start;
  5203. padding:10px 10px 10px 10px;
  5204. box-sizing:border-box;
  5205. width:100%;
  5206. }
  5207. #u12939_text {
  5208. border-width:0px;
  5209. word-wrap:break-word;
  5210. text-transform:none;
  5211. }
  5212. #u12940_div {
  5213. border-width:0px;
  5214. position:absolute;
  5215. left:0px;
  5216. top:0px;
  5217. width:1000px;
  5218. height:40px;
  5219. background:inherit;
  5220. background-color:rgba(217, 0, 27, 1);
  5221. border:none;
  5222. border-radius:0px;
  5223. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  5224. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  5225. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  5226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5227. font-weight:400;
  5228. font-style:normal;
  5229. font-size:14px;
  5230. color:#FFFFFF;
  5231. line-height:20px;
  5232. }
  5233. #u12940 {
  5234. border-width:0px;
  5235. position:absolute;
  5236. left:1754px;
  5237. top:584px;
  5238. width:1000px;
  5239. height:40px;
  5240. display:flex;
  5241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5242. font-weight:400;
  5243. font-style:normal;
  5244. font-size:14px;
  5245. color:#FFFFFF;
  5246. line-height:20px;
  5247. }
  5248. #u12940 .text {
  5249. position:absolute;
  5250. align-self:flex-start;
  5251. padding:10px 10px 10px 10px;
  5252. box-sizing:border-box;
  5253. width:100%;
  5254. }
  5255. #u12940_text {
  5256. border-width:0px;
  5257. word-wrap:break-word;
  5258. text-transform:none;
  5259. }
  5260. #u12941 {
  5261. border-width:0px;
  5262. position:absolute;
  5263. left:1754px;
  5264. top:634px;
  5265. width:960px;
  5266. height:240px;
  5267. }
  5268. #u12942_img {
  5269. border-width:0px;
  5270. position:absolute;
  5271. left:0px;
  5272. top:0px;
  5273. width:160px;
  5274. height:40px;
  5275. }
  5276. #u12942 {
  5277. border-width:0px;
  5278. position:absolute;
  5279. left:0px;
  5280. top:0px;
  5281. width:160px;
  5282. height:40px;
  5283. display:flex;
  5284. font-size:14px;
  5285. color:#FFFFFF;
  5286. text-align:left;
  5287. line-height:30px;
  5288. }
  5289. #u12942 .text {
  5290. position:absolute;
  5291. align-self:center;
  5292. padding:5px 10px 5px 10px;
  5293. box-sizing:border-box;
  5294. width:100%;
  5295. }
  5296. #u12942_text {
  5297. border-width:0px;
  5298. word-wrap:break-word;
  5299. text-transform:none;
  5300. }
  5301. #u12943_img {
  5302. border-width:0px;
  5303. position:absolute;
  5304. left:0px;
  5305. top:0px;
  5306. width:400px;
  5307. height:40px;
  5308. }
  5309. #u12943 {
  5310. border-width:0px;
  5311. position:absolute;
  5312. left:160px;
  5313. top:0px;
  5314. width:400px;
  5315. height:40px;
  5316. display:flex;
  5317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5318. font-weight:400;
  5319. font-style:normal;
  5320. font-size:14px;
  5321. color:#FFFFFF;
  5322. text-align:left;
  5323. line-height:30px;
  5324. }
  5325. #u12943 .text {
  5326. position:absolute;
  5327. align-self:center;
  5328. padding:5px 10px 5px 10px;
  5329. box-sizing:border-box;
  5330. width:100%;
  5331. }
  5332. #u12943_text {
  5333. border-width:0px;
  5334. word-wrap:break-word;
  5335. text-transform:none;
  5336. }
  5337. #u12944_img {
  5338. border-width:0px;
  5339. position:absolute;
  5340. left:0px;
  5341. top:0px;
  5342. width:400px;
  5343. height:40px;
  5344. }
  5345. #u12944 {
  5346. border-width:0px;
  5347. position:absolute;
  5348. left:560px;
  5349. top:0px;
  5350. width:400px;
  5351. height:40px;
  5352. display:flex;
  5353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5354. font-weight:400;
  5355. font-style:normal;
  5356. font-size:14px;
  5357. color:#FFFFFF;
  5358. text-align:left;
  5359. line-height:30px;
  5360. }
  5361. #u12944 .text {
  5362. position:absolute;
  5363. align-self:center;
  5364. padding:5px 10px 5px 10px;
  5365. box-sizing:border-box;
  5366. width:100%;
  5367. }
  5368. #u12944_text {
  5369. border-width:0px;
  5370. word-wrap:break-word;
  5371. text-transform:none;
  5372. }
  5373. #u12945_img {
  5374. border-width:0px;
  5375. position:absolute;
  5376. left:0px;
  5377. top:0px;
  5378. width:160px;
  5379. height:40px;
  5380. }
  5381. #u12945 {
  5382. border-width:0px;
  5383. position:absolute;
  5384. left:0px;
  5385. top:40px;
  5386. width:160px;
  5387. height:40px;
  5388. display:flex;
  5389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5390. font-weight:400;
  5391. font-style:normal;
  5392. font-size:14px;
  5393. text-align:left;
  5394. line-height:30px;
  5395. }
  5396. #u12945 .text {
  5397. position:absolute;
  5398. align-self:center;
  5399. padding:5px 10px 5px 10px;
  5400. box-sizing:border-box;
  5401. width:100%;
  5402. }
  5403. #u12945_text {
  5404. border-width:0px;
  5405. word-wrap:break-word;
  5406. text-transform:none;
  5407. }
  5408. #u12946_img {
  5409. border-width:0px;
  5410. position:absolute;
  5411. left:0px;
  5412. top:0px;
  5413. width:400px;
  5414. height:40px;
  5415. }
  5416. #u12946 {
  5417. border-width:0px;
  5418. position:absolute;
  5419. left:160px;
  5420. top:40px;
  5421. width:400px;
  5422. height:40px;
  5423. display:flex;
  5424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5425. font-weight:400;
  5426. font-style:normal;
  5427. font-size:14px;
  5428. text-align:left;
  5429. line-height:30px;
  5430. }
  5431. #u12946 .text {
  5432. position:absolute;
  5433. align-self:center;
  5434. padding:5px 10px 5px 10px;
  5435. box-sizing:border-box;
  5436. width:100%;
  5437. }
  5438. #u12946_text {
  5439. border-width:0px;
  5440. word-wrap:break-word;
  5441. text-transform:none;
  5442. }
  5443. #u12947_img {
  5444. border-width:0px;
  5445. position:absolute;
  5446. left:0px;
  5447. top:0px;
  5448. width:400px;
  5449. height:40px;
  5450. }
  5451. #u12947 {
  5452. border-width:0px;
  5453. position:absolute;
  5454. left:560px;
  5455. top:40px;
  5456. width:400px;
  5457. height:40px;
  5458. display:flex;
  5459. font-size:14px;
  5460. text-align:left;
  5461. line-height:30px;
  5462. }
  5463. #u12947 .text {
  5464. position:absolute;
  5465. align-self:center;
  5466. padding:5px 10px 5px 10px;
  5467. box-sizing:border-box;
  5468. width:100%;
  5469. }
  5470. #u12947_text {
  5471. border-width:0px;
  5472. word-wrap:break-word;
  5473. text-transform:none;
  5474. visibility:hidden;
  5475. }
  5476. #u12948_img {
  5477. border-width:0px;
  5478. position:absolute;
  5479. left:0px;
  5480. top:0px;
  5481. width:160px;
  5482. height:40px;
  5483. }
  5484. #u12948 {
  5485. border-width:0px;
  5486. position:absolute;
  5487. left:0px;
  5488. top:80px;
  5489. width:160px;
  5490. height:40px;
  5491. display:flex;
  5492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5493. font-weight:400;
  5494. font-style:normal;
  5495. font-size:14px;
  5496. text-align:left;
  5497. line-height:30px;
  5498. }
  5499. #u12948 .text {
  5500. position:absolute;
  5501. align-self:center;
  5502. padding:5px 10px 5px 10px;
  5503. box-sizing:border-box;
  5504. width:100%;
  5505. }
  5506. #u12948_text {
  5507. border-width:0px;
  5508. word-wrap:break-word;
  5509. text-transform:none;
  5510. }
  5511. #u12949_img {
  5512. border-width:0px;
  5513. position:absolute;
  5514. left:0px;
  5515. top:0px;
  5516. width:400px;
  5517. height:40px;
  5518. }
  5519. #u12949 {
  5520. border-width:0px;
  5521. position:absolute;
  5522. left:160px;
  5523. top:80px;
  5524. width:400px;
  5525. height:40px;
  5526. display:flex;
  5527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5528. font-weight:400;
  5529. font-style:normal;
  5530. font-size:14px;
  5531. text-align:left;
  5532. line-height:30px;
  5533. }
  5534. #u12949 .text {
  5535. position:absolute;
  5536. align-self:center;
  5537. padding:5px 10px 5px 10px;
  5538. box-sizing:border-box;
  5539. width:100%;
  5540. }
  5541. #u12949_text {
  5542. border-width:0px;
  5543. word-wrap:break-word;
  5544. text-transform:none;
  5545. }
  5546. #u12950_img {
  5547. border-width:0px;
  5548. position:absolute;
  5549. left:0px;
  5550. top:0px;
  5551. width:400px;
  5552. height:40px;
  5553. }
  5554. #u12950 {
  5555. border-width:0px;
  5556. position:absolute;
  5557. left:560px;
  5558. top:80px;
  5559. width:400px;
  5560. height:40px;
  5561. display:flex;
  5562. font-size:14px;
  5563. text-align:left;
  5564. line-height:30px;
  5565. }
  5566. #u12950 .text {
  5567. position:absolute;
  5568. align-self:center;
  5569. padding:5px 10px 5px 10px;
  5570. box-sizing:border-box;
  5571. width:100%;
  5572. }
  5573. #u12950_text {
  5574. border-width:0px;
  5575. word-wrap:break-word;
  5576. text-transform:none;
  5577. visibility:hidden;
  5578. }
  5579. #u12951_img {
  5580. border-width:0px;
  5581. position:absolute;
  5582. left:0px;
  5583. top:0px;
  5584. width:160px;
  5585. height:40px;
  5586. }
  5587. #u12951 {
  5588. border-width:0px;
  5589. position:absolute;
  5590. left:0px;
  5591. top:120px;
  5592. width:160px;
  5593. height:40px;
  5594. display:flex;
  5595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5596. font-weight:400;
  5597. font-style:normal;
  5598. font-size:14px;
  5599. text-align:left;
  5600. line-height:30px;
  5601. }
  5602. #u12951 .text {
  5603. position:absolute;
  5604. align-self:center;
  5605. padding:5px 10px 5px 10px;
  5606. box-sizing:border-box;
  5607. width:100%;
  5608. }
  5609. #u12951_text {
  5610. border-width:0px;
  5611. word-wrap:break-word;
  5612. text-transform:none;
  5613. }
  5614. #u12952_img {
  5615. border-width:0px;
  5616. position:absolute;
  5617. left:0px;
  5618. top:0px;
  5619. width:400px;
  5620. height:40px;
  5621. }
  5622. #u12952 {
  5623. border-width:0px;
  5624. position:absolute;
  5625. left:160px;
  5626. top:120px;
  5627. width:400px;
  5628. height:40px;
  5629. display:flex;
  5630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5631. font-weight:400;
  5632. font-style:normal;
  5633. font-size:12px;
  5634. text-align:left;
  5635. line-height:20px;
  5636. }
  5637. #u12952 .text {
  5638. position:absolute;
  5639. align-self:center;
  5640. padding:5px 10px 5px 10px;
  5641. box-sizing:border-box;
  5642. width:100%;
  5643. }
  5644. #u12952_text {
  5645. border-width:0px;
  5646. word-wrap:break-word;
  5647. text-transform:none;
  5648. }
  5649. #u12953_img {
  5650. border-width:0px;
  5651. position:absolute;
  5652. left:0px;
  5653. top:0px;
  5654. width:400px;
  5655. height:40px;
  5656. }
  5657. #u12953 {
  5658. border-width:0px;
  5659. position:absolute;
  5660. left:560px;
  5661. top:120px;
  5662. width:400px;
  5663. height:40px;
  5664. display:flex;
  5665. font-size:14px;
  5666. text-align:left;
  5667. line-height:30px;
  5668. }
  5669. #u12953 .text {
  5670. position:absolute;
  5671. align-self:center;
  5672. padding:5px 10px 5px 10px;
  5673. box-sizing:border-box;
  5674. width:100%;
  5675. }
  5676. #u12953_text {
  5677. border-width:0px;
  5678. word-wrap:break-word;
  5679. text-transform:none;
  5680. visibility:hidden;
  5681. }
  5682. #u12954_img {
  5683. border-width:0px;
  5684. position:absolute;
  5685. left:0px;
  5686. top:0px;
  5687. width:160px;
  5688. height:40px;
  5689. }
  5690. #u12954 {
  5691. border-width:0px;
  5692. position:absolute;
  5693. left:0px;
  5694. top:160px;
  5695. width:160px;
  5696. height:40px;
  5697. display:flex;
  5698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5699. font-weight:400;
  5700. font-style:normal;
  5701. font-size:14px;
  5702. text-align:left;
  5703. line-height:30px;
  5704. }
  5705. #u12954 .text {
  5706. position:absolute;
  5707. align-self:center;
  5708. padding:5px 10px 5px 10px;
  5709. box-sizing:border-box;
  5710. width:100%;
  5711. }
  5712. #u12954_text {
  5713. border-width:0px;
  5714. word-wrap:break-word;
  5715. text-transform:none;
  5716. }
  5717. #u12955_img {
  5718. border-width:0px;
  5719. position:absolute;
  5720. left:0px;
  5721. top:0px;
  5722. width:400px;
  5723. height:40px;
  5724. }
  5725. #u12955 {
  5726. border-width:0px;
  5727. position:absolute;
  5728. left:160px;
  5729. top:160px;
  5730. width:400px;
  5731. height:40px;
  5732. display:flex;
  5733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5734. font-weight:400;
  5735. font-style:normal;
  5736. font-size:12px;
  5737. text-align:left;
  5738. line-height:20px;
  5739. }
  5740. #u12955 .text {
  5741. position:absolute;
  5742. align-self:center;
  5743. padding:5px 10px 5px 10px;
  5744. box-sizing:border-box;
  5745. width:100%;
  5746. }
  5747. #u12955_text {
  5748. border-width:0px;
  5749. word-wrap:break-word;
  5750. text-transform:none;
  5751. }
  5752. #u12956_img {
  5753. border-width:0px;
  5754. position:absolute;
  5755. left:0px;
  5756. top:0px;
  5757. width:400px;
  5758. height:40px;
  5759. }
  5760. #u12956 {
  5761. border-width:0px;
  5762. position:absolute;
  5763. left:560px;
  5764. top:160px;
  5765. width:400px;
  5766. height:40px;
  5767. display:flex;
  5768. font-size:14px;
  5769. text-align:left;
  5770. line-height:30px;
  5771. }
  5772. #u12956 .text {
  5773. position:absolute;
  5774. align-self:center;
  5775. padding:5px 10px 5px 10px;
  5776. box-sizing:border-box;
  5777. width:100%;
  5778. }
  5779. #u12956_text {
  5780. border-width:0px;
  5781. word-wrap:break-word;
  5782. text-transform:none;
  5783. visibility:hidden;
  5784. }
  5785. #u12957_img {
  5786. border-width:0px;
  5787. position:absolute;
  5788. left:0px;
  5789. top:0px;
  5790. width:160px;
  5791. height:40px;
  5792. }
  5793. #u12957 {
  5794. border-width:0px;
  5795. position:absolute;
  5796. left:0px;
  5797. top:200px;
  5798. width:160px;
  5799. height:40px;
  5800. display:flex;
  5801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5802. font-weight:400;
  5803. font-style:normal;
  5804. font-size:14px;
  5805. text-align:left;
  5806. line-height:30px;
  5807. }
  5808. #u12957 .text {
  5809. position:absolute;
  5810. align-self:center;
  5811. padding:5px 10px 5px 10px;
  5812. box-sizing:border-box;
  5813. width:100%;
  5814. }
  5815. #u12957_text {
  5816. border-width:0px;
  5817. word-wrap:break-word;
  5818. text-transform:none;
  5819. }
  5820. #u12958_img {
  5821. border-width:0px;
  5822. position:absolute;
  5823. left:0px;
  5824. top:0px;
  5825. width:400px;
  5826. height:40px;
  5827. }
  5828. #u12958 {
  5829. border-width:0px;
  5830. position:absolute;
  5831. left:160px;
  5832. top:200px;
  5833. width:400px;
  5834. height:40px;
  5835. display:flex;
  5836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5837. font-weight:400;
  5838. font-style:normal;
  5839. font-size:12px;
  5840. text-align:left;
  5841. line-height:20px;
  5842. }
  5843. #u12958 .text {
  5844. position:absolute;
  5845. align-self:center;
  5846. padding:5px 10px 5px 10px;
  5847. box-sizing:border-box;
  5848. width:100%;
  5849. }
  5850. #u12958_text {
  5851. border-width:0px;
  5852. word-wrap:break-word;
  5853. text-transform:none;
  5854. }
  5855. #u12959_img {
  5856. border-width:0px;
  5857. position:absolute;
  5858. left:0px;
  5859. top:0px;
  5860. width:400px;
  5861. height:40px;
  5862. }
  5863. #u12959 {
  5864. border-width:0px;
  5865. position:absolute;
  5866. left:560px;
  5867. top:200px;
  5868. width:400px;
  5869. height:40px;
  5870. display:flex;
  5871. font-size:14px;
  5872. text-align:left;
  5873. line-height:30px;
  5874. }
  5875. #u12959 .text {
  5876. position:absolute;
  5877. align-self:center;
  5878. padding:5px 10px 5px 10px;
  5879. box-sizing:border-box;
  5880. width:100%;
  5881. }
  5882. #u12959_text {
  5883. border-width:0px;
  5884. word-wrap:break-word;
  5885. text-transform:none;
  5886. visibility:hidden;
  5887. }
  5888. #u12960_div {
  5889. border-width:0px;
  5890. position:absolute;
  5891. left:0px;
  5892. top:0px;
  5893. width:1000px;
  5894. height:40px;
  5895. background:inherit;
  5896. background-color:rgba(217, 0, 27, 1);
  5897. border:none;
  5898. border-radius:0px;
  5899. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  5900. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  5901. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  5902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5903. font-weight:400;
  5904. font-style:normal;
  5905. font-size:14px;
  5906. color:#FFFFFF;
  5907. line-height:20px;
  5908. }
  5909. #u12960 {
  5910. border-width:0px;
  5911. position:absolute;
  5912. left:1754px;
  5913. top:31px;
  5914. width:1000px;
  5915. height:40px;
  5916. display:flex;
  5917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5918. font-weight:400;
  5919. font-style:normal;
  5920. font-size:14px;
  5921. color:#FFFFFF;
  5922. line-height:20px;
  5923. }
  5924. #u12960 .text {
  5925. position:absolute;
  5926. align-self:flex-start;
  5927. padding:10px 10px 10px 10px;
  5928. box-sizing:border-box;
  5929. width:100%;
  5930. }
  5931. #u12960_text {
  5932. border-width:0px;
  5933. word-wrap:break-word;
  5934. text-transform:none;
  5935. }
  5936. #u12961_div {
  5937. border-width:0px;
  5938. position:absolute;
  5939. left:0px;
  5940. top:0px;
  5941. width:1000px;
  5942. height:40px;
  5943. background:inherit;
  5944. background-color:rgba(217, 0, 27, 1);
  5945. border:none;
  5946. border-radius:0px;
  5947. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  5948. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  5949. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  5950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5951. font-weight:400;
  5952. font-style:normal;
  5953. font-size:14px;
  5954. color:#FFFFFF;
  5955. line-height:20px;
  5956. }
  5957. #u12961 {
  5958. border-width:0px;
  5959. position:absolute;
  5960. left:1754px;
  5961. top:914px;
  5962. width:1000px;
  5963. height:40px;
  5964. display:flex;
  5965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5966. font-weight:400;
  5967. font-style:normal;
  5968. font-size:14px;
  5969. color:#FFFFFF;
  5970. line-height:20px;
  5971. }
  5972. #u12961 .text {
  5973. position:absolute;
  5974. align-self:flex-start;
  5975. padding:10px 10px 10px 10px;
  5976. box-sizing:border-box;
  5977. width:100%;
  5978. }
  5979. #u12961_text {
  5980. border-width:0px;
  5981. word-wrap:break-word;
  5982. text-transform:none;
  5983. }
  5984. #u12962 {
  5985. border-width:0px;
  5986. position:absolute;
  5987. left:1754px;
  5988. top:964px;
  5989. width:960px;
  5990. height:320px;
  5991. }
  5992. #u12963_img {
  5993. border-width:0px;
  5994. position:absolute;
  5995. left:0px;
  5996. top:0px;
  5997. width:160px;
  5998. height:40px;
  5999. }
  6000. #u12963 {
  6001. border-width:0px;
  6002. position:absolute;
  6003. left:0px;
  6004. top:0px;
  6005. width:160px;
  6006. height:40px;
  6007. display:flex;
  6008. font-size:14px;
  6009. color:#FFFFFF;
  6010. text-align:left;
  6011. line-height:30px;
  6012. }
  6013. #u12963 .text {
  6014. position:absolute;
  6015. align-self:center;
  6016. padding:5px 10px 5px 10px;
  6017. box-sizing:border-box;
  6018. width:100%;
  6019. }
  6020. #u12963_text {
  6021. border-width:0px;
  6022. word-wrap:break-word;
  6023. text-transform:none;
  6024. }
  6025. #u12964_img {
  6026. border-width:0px;
  6027. position:absolute;
  6028. left:0px;
  6029. top:0px;
  6030. width:400px;
  6031. height:40px;
  6032. }
  6033. #u12964 {
  6034. border-width:0px;
  6035. position:absolute;
  6036. left:160px;
  6037. top:0px;
  6038. width:400px;
  6039. height:40px;
  6040. display:flex;
  6041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6042. font-weight:400;
  6043. font-style:normal;
  6044. font-size:14px;
  6045. color:#FFFFFF;
  6046. text-align:left;
  6047. line-height:30px;
  6048. }
  6049. #u12964 .text {
  6050. position:absolute;
  6051. align-self:center;
  6052. padding:5px 10px 5px 10px;
  6053. box-sizing:border-box;
  6054. width:100%;
  6055. }
  6056. #u12964_text {
  6057. border-width:0px;
  6058. word-wrap:break-word;
  6059. text-transform:none;
  6060. }
  6061. #u12965_img {
  6062. border-width:0px;
  6063. position:absolute;
  6064. left:0px;
  6065. top:0px;
  6066. width:400px;
  6067. height:40px;
  6068. }
  6069. #u12965 {
  6070. border-width:0px;
  6071. position:absolute;
  6072. left:560px;
  6073. top:0px;
  6074. width:400px;
  6075. height:40px;
  6076. display:flex;
  6077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6078. font-weight:400;
  6079. font-style:normal;
  6080. font-size:14px;
  6081. color:#FFFFFF;
  6082. text-align:left;
  6083. line-height:30px;
  6084. }
  6085. #u12965 .text {
  6086. position:absolute;
  6087. align-self:center;
  6088. padding:5px 10px 5px 10px;
  6089. box-sizing:border-box;
  6090. width:100%;
  6091. }
  6092. #u12965_text {
  6093. border-width:0px;
  6094. word-wrap:break-word;
  6095. text-transform:none;
  6096. }
  6097. #u12966_img {
  6098. border-width:0px;
  6099. position:absolute;
  6100. left:0px;
  6101. top:0px;
  6102. width:160px;
  6103. height:40px;
  6104. }
  6105. #u12966 {
  6106. border-width:0px;
  6107. position:absolute;
  6108. left:0px;
  6109. top:40px;
  6110. width:160px;
  6111. height:40px;
  6112. display:flex;
  6113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6114. font-weight:400;
  6115. font-style:normal;
  6116. font-size:14px;
  6117. text-align:left;
  6118. line-height:30px;
  6119. }
  6120. #u12966 .text {
  6121. position:absolute;
  6122. align-self:center;
  6123. padding:5px 10px 5px 10px;
  6124. box-sizing:border-box;
  6125. width:100%;
  6126. }
  6127. #u12966_text {
  6128. border-width:0px;
  6129. word-wrap:break-word;
  6130. text-transform:none;
  6131. }
  6132. #u12967_img {
  6133. border-width:0px;
  6134. position:absolute;
  6135. left:0px;
  6136. top:0px;
  6137. width:400px;
  6138. height:40px;
  6139. }
  6140. #u12967 {
  6141. border-width:0px;
  6142. position:absolute;
  6143. left:160px;
  6144. top:40px;
  6145. width:400px;
  6146. height:40px;
  6147. display:flex;
  6148. font-size:14px;
  6149. text-align:left;
  6150. line-height:30px;
  6151. }
  6152. #u12967 .text {
  6153. position:absolute;
  6154. align-self:center;
  6155. padding:5px 10px 5px 10px;
  6156. box-sizing:border-box;
  6157. width:100%;
  6158. }
  6159. #u12967_text {
  6160. border-width:0px;
  6161. word-wrap:break-word;
  6162. text-transform:none;
  6163. visibility:hidden;
  6164. }
  6165. #u12968_img {
  6166. border-width:0px;
  6167. position:absolute;
  6168. left:0px;
  6169. top:0px;
  6170. width:400px;
  6171. height:40px;
  6172. }
  6173. #u12968 {
  6174. border-width:0px;
  6175. position:absolute;
  6176. left:560px;
  6177. top:40px;
  6178. width:400px;
  6179. height:40px;
  6180. display:flex;
  6181. font-size:14px;
  6182. text-align:left;
  6183. line-height:30px;
  6184. }
  6185. #u12968 .text {
  6186. position:absolute;
  6187. align-self:center;
  6188. padding:5px 10px 5px 10px;
  6189. box-sizing:border-box;
  6190. width:100%;
  6191. }
  6192. #u12968_text {
  6193. border-width:0px;
  6194. word-wrap:break-word;
  6195. text-transform:none;
  6196. visibility:hidden;
  6197. }
  6198. #u12969_img {
  6199. border-width:0px;
  6200. position:absolute;
  6201. left:0px;
  6202. top:0px;
  6203. width:160px;
  6204. height:40px;
  6205. }
  6206. #u12969 {
  6207. border-width:0px;
  6208. position:absolute;
  6209. left:0px;
  6210. top:80px;
  6211. width:160px;
  6212. height:40px;
  6213. display:flex;
  6214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6215. font-weight:400;
  6216. font-style:normal;
  6217. font-size:14px;
  6218. text-align:left;
  6219. line-height:30px;
  6220. }
  6221. #u12969 .text {
  6222. position:absolute;
  6223. align-self:center;
  6224. padding:5px 10px 5px 10px;
  6225. box-sizing:border-box;
  6226. width:100%;
  6227. }
  6228. #u12969_text {
  6229. border-width:0px;
  6230. word-wrap:break-word;
  6231. text-transform:none;
  6232. }
  6233. #u12970_img {
  6234. border-width:0px;
  6235. position:absolute;
  6236. left:0px;
  6237. top:0px;
  6238. width:400px;
  6239. height:40px;
  6240. }
  6241. #u12970 {
  6242. border-width:0px;
  6243. position:absolute;
  6244. left:160px;
  6245. top:80px;
  6246. width:400px;
  6247. height:40px;
  6248. display:flex;
  6249. font-size:14px;
  6250. text-align:left;
  6251. line-height:30px;
  6252. }
  6253. #u12970 .text {
  6254. position:absolute;
  6255. align-self:center;
  6256. padding:5px 10px 5px 10px;
  6257. box-sizing:border-box;
  6258. width:100%;
  6259. }
  6260. #u12970_text {
  6261. border-width:0px;
  6262. word-wrap:break-word;
  6263. text-transform:none;
  6264. visibility:hidden;
  6265. }
  6266. #u12971_img {
  6267. border-width:0px;
  6268. position:absolute;
  6269. left:0px;
  6270. top:0px;
  6271. width:400px;
  6272. height:40px;
  6273. }
  6274. #u12971 {
  6275. border-width:0px;
  6276. position:absolute;
  6277. left:560px;
  6278. top:80px;
  6279. width:400px;
  6280. height:40px;
  6281. display:flex;
  6282. font-size:14px;
  6283. text-align:left;
  6284. line-height:30px;
  6285. }
  6286. #u12971 .text {
  6287. position:absolute;
  6288. align-self:center;
  6289. padding:5px 10px 5px 10px;
  6290. box-sizing:border-box;
  6291. width:100%;
  6292. }
  6293. #u12971_text {
  6294. border-width:0px;
  6295. word-wrap:break-word;
  6296. text-transform:none;
  6297. visibility:hidden;
  6298. }
  6299. #u12972_img {
  6300. border-width:0px;
  6301. position:absolute;
  6302. left:0px;
  6303. top:0px;
  6304. width:160px;
  6305. height:40px;
  6306. }
  6307. #u12972 {
  6308. border-width:0px;
  6309. position:absolute;
  6310. left:0px;
  6311. top:120px;
  6312. width:160px;
  6313. height:40px;
  6314. display:flex;
  6315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6316. font-weight:400;
  6317. font-style:normal;
  6318. font-size:14px;
  6319. text-align:left;
  6320. line-height:30px;
  6321. }
  6322. #u12972 .text {
  6323. position:absolute;
  6324. align-self:center;
  6325. padding:5px 10px 5px 10px;
  6326. box-sizing:border-box;
  6327. width:100%;
  6328. }
  6329. #u12972_text {
  6330. border-width:0px;
  6331. word-wrap:break-word;
  6332. text-transform:none;
  6333. }
  6334. #u12973_img {
  6335. border-width:0px;
  6336. position:absolute;
  6337. left:0px;
  6338. top:0px;
  6339. width:400px;
  6340. height:40px;
  6341. }
  6342. #u12973 {
  6343. border-width:0px;
  6344. position:absolute;
  6345. left:160px;
  6346. top:120px;
  6347. width:400px;
  6348. height:40px;
  6349. display:flex;
  6350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6351. font-weight:400;
  6352. font-style:normal;
  6353. font-size:12px;
  6354. text-align:left;
  6355. line-height:20px;
  6356. }
  6357. #u12973 .text {
  6358. position:absolute;
  6359. align-self:center;
  6360. padding:5px 10px 5px 10px;
  6361. box-sizing:border-box;
  6362. width:100%;
  6363. }
  6364. #u12973_text {
  6365. border-width:0px;
  6366. word-wrap:break-word;
  6367. text-transform:none;
  6368. visibility:hidden;
  6369. }
  6370. #u12974_img {
  6371. border-width:0px;
  6372. position:absolute;
  6373. left:0px;
  6374. top:0px;
  6375. width:400px;
  6376. height:40px;
  6377. }
  6378. #u12974 {
  6379. border-width:0px;
  6380. position:absolute;
  6381. left:560px;
  6382. top:120px;
  6383. width:400px;
  6384. height:40px;
  6385. display:flex;
  6386. font-size:14px;
  6387. text-align:left;
  6388. line-height:30px;
  6389. }
  6390. #u12974 .text {
  6391. position:absolute;
  6392. align-self:center;
  6393. padding:5px 10px 5px 10px;
  6394. box-sizing:border-box;
  6395. width:100%;
  6396. }
  6397. #u12974_text {
  6398. border-width:0px;
  6399. word-wrap:break-word;
  6400. text-transform:none;
  6401. visibility:hidden;
  6402. }
  6403. #u12975_img {
  6404. border-width:0px;
  6405. position:absolute;
  6406. left:0px;
  6407. top:0px;
  6408. width:160px;
  6409. height:40px;
  6410. }
  6411. #u12975 {
  6412. border-width:0px;
  6413. position:absolute;
  6414. left:0px;
  6415. top:160px;
  6416. width:160px;
  6417. height:40px;
  6418. display:flex;
  6419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6420. font-weight:400;
  6421. font-style:normal;
  6422. font-size:14px;
  6423. text-align:left;
  6424. line-height:30px;
  6425. }
  6426. #u12975 .text {
  6427. position:absolute;
  6428. align-self:center;
  6429. padding:5px 10px 5px 10px;
  6430. box-sizing:border-box;
  6431. width:100%;
  6432. }
  6433. #u12975_text {
  6434. border-width:0px;
  6435. word-wrap:break-word;
  6436. text-transform:none;
  6437. }
  6438. #u12976_img {
  6439. border-width:0px;
  6440. position:absolute;
  6441. left:0px;
  6442. top:0px;
  6443. width:400px;
  6444. height:40px;
  6445. }
  6446. #u12976 {
  6447. border-width:0px;
  6448. position:absolute;
  6449. left:160px;
  6450. top:160px;
  6451. width:400px;
  6452. height:40px;
  6453. display:flex;
  6454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6455. font-weight:400;
  6456. font-style:normal;
  6457. font-size:12px;
  6458. text-align:left;
  6459. line-height:20px;
  6460. }
  6461. #u12976 .text {
  6462. position:absolute;
  6463. align-self:center;
  6464. padding:5px 10px 5px 10px;
  6465. box-sizing:border-box;
  6466. width:100%;
  6467. }
  6468. #u12976_text {
  6469. border-width:0px;
  6470. word-wrap:break-word;
  6471. text-transform:none;
  6472. visibility:hidden;
  6473. }
  6474. #u12977_img {
  6475. border-width:0px;
  6476. position:absolute;
  6477. left:0px;
  6478. top:0px;
  6479. width:400px;
  6480. height:40px;
  6481. }
  6482. #u12977 {
  6483. border-width:0px;
  6484. position:absolute;
  6485. left:560px;
  6486. top:160px;
  6487. width:400px;
  6488. height:40px;
  6489. display:flex;
  6490. font-size:14px;
  6491. text-align:left;
  6492. line-height:30px;
  6493. }
  6494. #u12977 .text {
  6495. position:absolute;
  6496. align-self:center;
  6497. padding:5px 10px 5px 10px;
  6498. box-sizing:border-box;
  6499. width:100%;
  6500. }
  6501. #u12977_text {
  6502. border-width:0px;
  6503. word-wrap:break-word;
  6504. text-transform:none;
  6505. visibility:hidden;
  6506. }
  6507. #u12978_img {
  6508. border-width:0px;
  6509. position:absolute;
  6510. left:0px;
  6511. top:0px;
  6512. width:160px;
  6513. height:40px;
  6514. }
  6515. #u12978 {
  6516. border-width:0px;
  6517. position:absolute;
  6518. left:0px;
  6519. top:200px;
  6520. width:160px;
  6521. height:40px;
  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. text-align:left;
  6528. line-height:30px;
  6529. }
  6530. #u12978 .text {
  6531. position:absolute;
  6532. align-self:center;
  6533. padding:5px 10px 5px 10px;
  6534. box-sizing:border-box;
  6535. width:100%;
  6536. }
  6537. #u12978_text {
  6538. border-width:0px;
  6539. word-wrap:break-word;
  6540. text-transform:none;
  6541. }
  6542. #u12979_img {
  6543. border-width:0px;
  6544. position:absolute;
  6545. left:0px;
  6546. top:0px;
  6547. width:400px;
  6548. height:40px;
  6549. }
  6550. #u12979 {
  6551. border-width:0px;
  6552. position:absolute;
  6553. left:160px;
  6554. top:200px;
  6555. width:400px;
  6556. height:40px;
  6557. display:flex;
  6558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6559. font-weight:400;
  6560. font-style:normal;
  6561. font-size:12px;
  6562. text-align:left;
  6563. line-height:20px;
  6564. }
  6565. #u12979 .text {
  6566. position:absolute;
  6567. align-self:center;
  6568. padding:5px 10px 5px 10px;
  6569. box-sizing:border-box;
  6570. width:100%;
  6571. }
  6572. #u12979_text {
  6573. border-width:0px;
  6574. word-wrap:break-word;
  6575. text-transform:none;
  6576. visibility:hidden;
  6577. }
  6578. #u12980_img {
  6579. border-width:0px;
  6580. position:absolute;
  6581. left:0px;
  6582. top:0px;
  6583. width:400px;
  6584. height:40px;
  6585. }
  6586. #u12980 {
  6587. border-width:0px;
  6588. position:absolute;
  6589. left:560px;
  6590. top:200px;
  6591. width:400px;
  6592. height:40px;
  6593. display:flex;
  6594. font-size:14px;
  6595. text-align:left;
  6596. line-height:30px;
  6597. }
  6598. #u12980 .text {
  6599. position:absolute;
  6600. align-self:center;
  6601. padding:5px 10px 5px 10px;
  6602. box-sizing:border-box;
  6603. width:100%;
  6604. }
  6605. #u12980_text {
  6606. border-width:0px;
  6607. word-wrap:break-word;
  6608. text-transform:none;
  6609. visibility:hidden;
  6610. }
  6611. #u12981_img {
  6612. border-width:0px;
  6613. position:absolute;
  6614. left:0px;
  6615. top:0px;
  6616. width:160px;
  6617. height:40px;
  6618. }
  6619. #u12981 {
  6620. border-width:0px;
  6621. position:absolute;
  6622. left:0px;
  6623. top:240px;
  6624. width:160px;
  6625. height:40px;
  6626. display:flex;
  6627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6628. font-weight:400;
  6629. font-style:normal;
  6630. font-size:14px;
  6631. text-align:left;
  6632. line-height:30px;
  6633. }
  6634. #u12981 .text {
  6635. position:absolute;
  6636. align-self:center;
  6637. padding:5px 10px 5px 10px;
  6638. box-sizing:border-box;
  6639. width:100%;
  6640. }
  6641. #u12981_text {
  6642. border-width:0px;
  6643. word-wrap:break-word;
  6644. text-transform:none;
  6645. }
  6646. #u12982_img {
  6647. border-width:0px;
  6648. position:absolute;
  6649. left:0px;
  6650. top:0px;
  6651. width:400px;
  6652. height:40px;
  6653. }
  6654. #u12982 {
  6655. border-width:0px;
  6656. position:absolute;
  6657. left:160px;
  6658. top:240px;
  6659. width:400px;
  6660. height:40px;
  6661. display:flex;
  6662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6663. font-weight:400;
  6664. font-style:normal;
  6665. font-size:12px;
  6666. text-align:left;
  6667. line-height:20px;
  6668. }
  6669. #u12982 .text {
  6670. position:absolute;
  6671. align-self:center;
  6672. padding:5px 10px 5px 10px;
  6673. box-sizing:border-box;
  6674. width:100%;
  6675. }
  6676. #u12982_text {
  6677. border-width:0px;
  6678. word-wrap:break-word;
  6679. text-transform:none;
  6680. }
  6681. #u12983_img {
  6682. border-width:0px;
  6683. position:absolute;
  6684. left:0px;
  6685. top:0px;
  6686. width:400px;
  6687. height:40px;
  6688. }
  6689. #u12983 {
  6690. border-width:0px;
  6691. position:absolute;
  6692. left:560px;
  6693. top:240px;
  6694. width:400px;
  6695. height:40px;
  6696. display:flex;
  6697. font-size:14px;
  6698. text-align:left;
  6699. line-height:30px;
  6700. }
  6701. #u12983 .text {
  6702. position:absolute;
  6703. align-self:center;
  6704. padding:5px 10px 5px 10px;
  6705. box-sizing:border-box;
  6706. width:100%;
  6707. }
  6708. #u12983_text {
  6709. border-width:0px;
  6710. word-wrap:break-word;
  6711. text-transform:none;
  6712. visibility:hidden;
  6713. }
  6714. #u12984_img {
  6715. border-width:0px;
  6716. position:absolute;
  6717. left:0px;
  6718. top:0px;
  6719. width:160px;
  6720. height:40px;
  6721. }
  6722. #u12984 {
  6723. border-width:0px;
  6724. position:absolute;
  6725. left:0px;
  6726. top:280px;
  6727. width:160px;
  6728. height:40px;
  6729. display:flex;
  6730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6731. font-weight:400;
  6732. font-style:normal;
  6733. font-size:14px;
  6734. text-align:left;
  6735. line-height:30px;
  6736. }
  6737. #u12984 .text {
  6738. position:absolute;
  6739. align-self:center;
  6740. padding:5px 10px 5px 10px;
  6741. box-sizing:border-box;
  6742. width:100%;
  6743. }
  6744. #u12984_text {
  6745. border-width:0px;
  6746. word-wrap:break-word;
  6747. text-transform:none;
  6748. }
  6749. #u12985_img {
  6750. border-width:0px;
  6751. position:absolute;
  6752. left:0px;
  6753. top:0px;
  6754. width:400px;
  6755. height:40px;
  6756. }
  6757. #u12985 {
  6758. border-width:0px;
  6759. position:absolute;
  6760. left:160px;
  6761. top:280px;
  6762. width:400px;
  6763. height:40px;
  6764. display:flex;
  6765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6766. font-weight:400;
  6767. font-style:normal;
  6768. font-size:12px;
  6769. text-align:left;
  6770. line-height:20px;
  6771. }
  6772. #u12985 .text {
  6773. position:absolute;
  6774. align-self:center;
  6775. padding:5px 10px 5px 10px;
  6776. box-sizing:border-box;
  6777. width:100%;
  6778. }
  6779. #u12985_text {
  6780. border-width:0px;
  6781. word-wrap:break-word;
  6782. text-transform:none;
  6783. }
  6784. #u12986_img {
  6785. border-width:0px;
  6786. position:absolute;
  6787. left:0px;
  6788. top:0px;
  6789. width:400px;
  6790. height:40px;
  6791. }
  6792. #u12986 {
  6793. border-width:0px;
  6794. position:absolute;
  6795. left:560px;
  6796. top:280px;
  6797. width:400px;
  6798. height:40px;
  6799. display:flex;
  6800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6801. font-weight:400;
  6802. font-style:normal;
  6803. font-size:14px;
  6804. text-align:left;
  6805. line-height:30px;
  6806. }
  6807. #u12986 .text {
  6808. position:absolute;
  6809. align-self:center;
  6810. padding:5px 10px 5px 10px;
  6811. box-sizing:border-box;
  6812. width:100%;
  6813. }
  6814. #u12986_text {
  6815. border-width:0px;
  6816. word-wrap:break-word;
  6817. text-transform:none;
  6818. visibility:hidden;
  6819. }
  6820. #u12987_div {
  6821. border-width:0px;
  6822. position:absolute;
  6823. left:0px;
  6824. top:0px;
  6825. width:1000px;
  6826. height:40px;
  6827. background:inherit;
  6828. background-color:rgba(217, 0, 27, 1);
  6829. border:none;
  6830. border-radius:0px;
  6831. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  6832. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  6833. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  6834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6835. font-weight:400;
  6836. font-style:normal;
  6837. font-size:14px;
  6838. color:#FFFFFF;
  6839. line-height:20px;
  6840. }
  6841. #u12987 {
  6842. border-width:0px;
  6843. position:absolute;
  6844. left:1754px;
  6845. top:234px;
  6846. width:1000px;
  6847. height:40px;
  6848. display:flex;
  6849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6850. font-weight:400;
  6851. font-style:normal;
  6852. font-size:14px;
  6853. color:#FFFFFF;
  6854. line-height:20px;
  6855. }
  6856. #u12987 .text {
  6857. position:absolute;
  6858. align-self:flex-start;
  6859. padding:10px 10px 10px 10px;
  6860. box-sizing:border-box;
  6861. width:100%;
  6862. }
  6863. #u12987_text {
  6864. border-width:0px;
  6865. word-wrap:break-word;
  6866. text-transform:none;
  6867. }
  6868. #u12988 {
  6869. border-width:0px;
  6870. position:absolute;
  6871. left:1754px;
  6872. top:284px;
  6873. width:960px;
  6874. height:280px;
  6875. }
  6876. #u12989_img {
  6877. border-width:0px;
  6878. position:absolute;
  6879. left:0px;
  6880. top:0px;
  6881. width:160px;
  6882. height:40px;
  6883. }
  6884. #u12989 {
  6885. border-width:0px;
  6886. position:absolute;
  6887. left:0px;
  6888. top:0px;
  6889. width:160px;
  6890. height:40px;
  6891. display:flex;
  6892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6893. font-weight:400;
  6894. font-style:normal;
  6895. font-size:14px;
  6896. color:#FFFFFF;
  6897. text-align:left;
  6898. line-height:30px;
  6899. }
  6900. #u12989 .text {
  6901. position:absolute;
  6902. align-self:center;
  6903. padding:5px 10px 5px 10px;
  6904. box-sizing:border-box;
  6905. width:100%;
  6906. }
  6907. #u12989_text {
  6908. border-width:0px;
  6909. word-wrap:break-word;
  6910. text-transform:none;
  6911. }
  6912. #u12990_img {
  6913. border-width:0px;
  6914. position:absolute;
  6915. left:0px;
  6916. top:0px;
  6917. width:400px;
  6918. height:40px;
  6919. }
  6920. #u12990 {
  6921. border-width:0px;
  6922. position:absolute;
  6923. left:160px;
  6924. top:0px;
  6925. width:400px;
  6926. height:40px;
  6927. display:flex;
  6928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6929. font-weight:400;
  6930. font-style:normal;
  6931. font-size:14px;
  6932. color:#FFFFFF;
  6933. text-align:left;
  6934. line-height:30px;
  6935. }
  6936. #u12990 .text {
  6937. position:absolute;
  6938. align-self:center;
  6939. padding:5px 10px 5px 10px;
  6940. box-sizing:border-box;
  6941. width:100%;
  6942. }
  6943. #u12990_text {
  6944. border-width:0px;
  6945. word-wrap:break-word;
  6946. text-transform:none;
  6947. }
  6948. #u12991_img {
  6949. border-width:0px;
  6950. position:absolute;
  6951. left:0px;
  6952. top:0px;
  6953. width:400px;
  6954. height:40px;
  6955. }
  6956. #u12991 {
  6957. border-width:0px;
  6958. position:absolute;
  6959. left:560px;
  6960. top:0px;
  6961. width:400px;
  6962. height:40px;
  6963. display:flex;
  6964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6965. font-weight:400;
  6966. font-style:normal;
  6967. font-size:14px;
  6968. color:#FFFFFF;
  6969. text-align:left;
  6970. line-height:30px;
  6971. }
  6972. #u12991 .text {
  6973. position:absolute;
  6974. align-self:center;
  6975. padding:5px 10px 5px 10px;
  6976. box-sizing:border-box;
  6977. width:100%;
  6978. }
  6979. #u12991_text {
  6980. border-width:0px;
  6981. word-wrap:break-word;
  6982. text-transform:none;
  6983. }
  6984. #u12992_img {
  6985. border-width:0px;
  6986. position:absolute;
  6987. left:0px;
  6988. top:0px;
  6989. width:160px;
  6990. height:40px;
  6991. }
  6992. #u12992 {
  6993. border-width:0px;
  6994. position:absolute;
  6995. left:0px;
  6996. top:40px;
  6997. width:160px;
  6998. height:40px;
  6999. display:flex;
  7000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7001. font-weight:400;
  7002. font-style:normal;
  7003. font-size:14px;
  7004. text-align:left;
  7005. line-height:30px;
  7006. }
  7007. #u12992 .text {
  7008. position:absolute;
  7009. align-self:center;
  7010. padding:5px 10px 5px 10px;
  7011. box-sizing:border-box;
  7012. width:100%;
  7013. }
  7014. #u12992_text {
  7015. border-width:0px;
  7016. word-wrap:break-word;
  7017. text-transform:none;
  7018. }
  7019. #u12993_img {
  7020. border-width:0px;
  7021. position:absolute;
  7022. left:0px;
  7023. top:0px;
  7024. width:400px;
  7025. height:40px;
  7026. }
  7027. #u12993 {
  7028. border-width:0px;
  7029. position:absolute;
  7030. left:160px;
  7031. top:40px;
  7032. width:400px;
  7033. height:40px;
  7034. display:flex;
  7035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7036. font-weight:400;
  7037. font-style:normal;
  7038. font-size:14px;
  7039. text-align:left;
  7040. line-height:30px;
  7041. }
  7042. #u12993 .text {
  7043. position:absolute;
  7044. align-self:center;
  7045. padding:5px 10px 5px 10px;
  7046. box-sizing:border-box;
  7047. width:100%;
  7048. }
  7049. #u12993_text {
  7050. border-width:0px;
  7051. word-wrap:break-word;
  7052. text-transform:none;
  7053. visibility:hidden;
  7054. }
  7055. #u12994_img {
  7056. border-width:0px;
  7057. position:absolute;
  7058. left:0px;
  7059. top:0px;
  7060. width:400px;
  7061. height:40px;
  7062. }
  7063. #u12994 {
  7064. border-width:0px;
  7065. position:absolute;
  7066. left:560px;
  7067. top:40px;
  7068. width:400px;
  7069. height:40px;
  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. text-align:left;
  7076. line-height:30px;
  7077. }
  7078. #u12994 .text {
  7079. position:absolute;
  7080. align-self:center;
  7081. padding:5px 10px 5px 10px;
  7082. box-sizing:border-box;
  7083. width:100%;
  7084. }
  7085. #u12994_text {
  7086. border-width:0px;
  7087. word-wrap:break-word;
  7088. text-transform:none;
  7089. }
  7090. #u12995_img {
  7091. border-width:0px;
  7092. position:absolute;
  7093. left:0px;
  7094. top:0px;
  7095. width:160px;
  7096. height:40px;
  7097. }
  7098. #u12995 {
  7099. border-width:0px;
  7100. position:absolute;
  7101. left:0px;
  7102. top:80px;
  7103. width:160px;
  7104. height:40px;
  7105. display:flex;
  7106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7107. font-weight:400;
  7108. font-style:normal;
  7109. font-size:14px;
  7110. text-align:left;
  7111. line-height:30px;
  7112. }
  7113. #u12995 .text {
  7114. position:absolute;
  7115. align-self:center;
  7116. padding:5px 10px 5px 10px;
  7117. box-sizing:border-box;
  7118. width:100%;
  7119. }
  7120. #u12995_text {
  7121. border-width:0px;
  7122. word-wrap:break-word;
  7123. text-transform:none;
  7124. }
  7125. #u12996_img {
  7126. border-width:0px;
  7127. position:absolute;
  7128. left:0px;
  7129. top:0px;
  7130. width:400px;
  7131. height:40px;
  7132. }
  7133. #u12996 {
  7134. border-width:0px;
  7135. position:absolute;
  7136. left:160px;
  7137. top:80px;
  7138. width:400px;
  7139. height:40px;
  7140. display:flex;
  7141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7142. font-weight:400;
  7143. font-style:normal;
  7144. font-size:14px;
  7145. text-align:left;
  7146. line-height:30px;
  7147. }
  7148. #u12996 .text {
  7149. position:absolute;
  7150. align-self:center;
  7151. padding:5px 10px 5px 10px;
  7152. box-sizing:border-box;
  7153. width:100%;
  7154. }
  7155. #u12996_text {
  7156. border-width:0px;
  7157. word-wrap:break-word;
  7158. text-transform:none;
  7159. visibility:hidden;
  7160. }
  7161. #u12997_img {
  7162. border-width:0px;
  7163. position:absolute;
  7164. left:0px;
  7165. top:0px;
  7166. width:400px;
  7167. height:40px;
  7168. }
  7169. #u12997 {
  7170. border-width:0px;
  7171. position:absolute;
  7172. left:560px;
  7173. top:80px;
  7174. width:400px;
  7175. height:40px;
  7176. display:flex;
  7177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7178. font-weight:400;
  7179. font-style:normal;
  7180. font-size:14px;
  7181. text-align:left;
  7182. line-height:30px;
  7183. }
  7184. #u12997 .text {
  7185. position:absolute;
  7186. align-self:center;
  7187. padding:5px 10px 5px 10px;
  7188. box-sizing:border-box;
  7189. width:100%;
  7190. }
  7191. #u12997_text {
  7192. border-width:0px;
  7193. word-wrap:break-word;
  7194. text-transform:none;
  7195. }
  7196. #u12998_img {
  7197. border-width:0px;
  7198. position:absolute;
  7199. left:0px;
  7200. top:0px;
  7201. width:160px;
  7202. height:40px;
  7203. }
  7204. #u12998 {
  7205. border-width:0px;
  7206. position:absolute;
  7207. left:0px;
  7208. top:120px;
  7209. width:160px;
  7210. height:40px;
  7211. display:flex;
  7212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7213. font-weight:400;
  7214. font-style:normal;
  7215. font-size:14px;
  7216. text-align:left;
  7217. line-height:30px;
  7218. }
  7219. #u12998 .text {
  7220. position:absolute;
  7221. align-self:center;
  7222. padding:5px 10px 5px 10px;
  7223. box-sizing:border-box;
  7224. width:100%;
  7225. }
  7226. #u12998_text {
  7227. border-width:0px;
  7228. word-wrap:break-word;
  7229. text-transform:none;
  7230. }
  7231. #u12999_img {
  7232. border-width:0px;
  7233. position:absolute;
  7234. left:0px;
  7235. top:0px;
  7236. width:400px;
  7237. height:40px;
  7238. }
  7239. #u12999 {
  7240. border-width:0px;
  7241. position:absolute;
  7242. left:160px;
  7243. top:120px;
  7244. width:400px;
  7245. height:40px;
  7246. display:flex;
  7247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7248. font-weight:400;
  7249. font-style:normal;
  7250. font-size:14px;
  7251. text-align:left;
  7252. line-height:30px;
  7253. }
  7254. #u12999 .text {
  7255. position:absolute;
  7256. align-self:center;
  7257. padding:5px 10px 5px 10px;
  7258. box-sizing:border-box;
  7259. width:100%;
  7260. }
  7261. #u12999_text {
  7262. border-width:0px;
  7263. word-wrap:break-word;
  7264. text-transform:none;
  7265. }
  7266. #u13000_img {
  7267. border-width:0px;
  7268. position:absolute;
  7269. left:0px;
  7270. top:0px;
  7271. width:400px;
  7272. height:40px;
  7273. }
  7274. #u13000 {
  7275. border-width:0px;
  7276. position:absolute;
  7277. left:560px;
  7278. top:120px;
  7279. width:400px;
  7280. height:40px;
  7281. display:flex;
  7282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7283. font-weight:400;
  7284. font-style:normal;
  7285. font-size:14px;
  7286. text-align:left;
  7287. line-height:30px;
  7288. }
  7289. #u13000 .text {
  7290. position:absolute;
  7291. align-self:center;
  7292. padding:5px 10px 5px 10px;
  7293. box-sizing:border-box;
  7294. width:100%;
  7295. }
  7296. #u13000_text {
  7297. border-width:0px;
  7298. word-wrap:break-word;
  7299. text-transform:none;
  7300. visibility:hidden;
  7301. }
  7302. #u13001_img {
  7303. border-width:0px;
  7304. position:absolute;
  7305. left:0px;
  7306. top:0px;
  7307. width:160px;
  7308. height:40px;
  7309. }
  7310. #u13001 {
  7311. border-width:0px;
  7312. position:absolute;
  7313. left:0px;
  7314. top:160px;
  7315. width:160px;
  7316. height:40px;
  7317. display:flex;
  7318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7319. font-weight:400;
  7320. font-style:normal;
  7321. font-size:14px;
  7322. text-align:left;
  7323. line-height:30px;
  7324. }
  7325. #u13001 .text {
  7326. position:absolute;
  7327. align-self:center;
  7328. padding:5px 10px 5px 10px;
  7329. box-sizing:border-box;
  7330. width:100%;
  7331. }
  7332. #u13001_text {
  7333. border-width:0px;
  7334. word-wrap:break-word;
  7335. text-transform:none;
  7336. }
  7337. #u13002_img {
  7338. border-width:0px;
  7339. position:absolute;
  7340. left:0px;
  7341. top:0px;
  7342. width:400px;
  7343. height:40px;
  7344. }
  7345. #u13002 {
  7346. border-width:0px;
  7347. position:absolute;
  7348. left:160px;
  7349. top:160px;
  7350. width:400px;
  7351. height:40px;
  7352. display:flex;
  7353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7354. font-weight:400;
  7355. font-style:normal;
  7356. font-size:14px;
  7357. text-align:left;
  7358. line-height:30px;
  7359. }
  7360. #u13002 .text {
  7361. position:absolute;
  7362. align-self:center;
  7363. padding:5px 10px 5px 10px;
  7364. box-sizing:border-box;
  7365. width:100%;
  7366. }
  7367. #u13002_text {
  7368. border-width:0px;
  7369. word-wrap:break-word;
  7370. text-transform:none;
  7371. }
  7372. #u13003_img {
  7373. border-width:0px;
  7374. position:absolute;
  7375. left:0px;
  7376. top:0px;
  7377. width:400px;
  7378. height:40px;
  7379. }
  7380. #u13003 {
  7381. border-width:0px;
  7382. position:absolute;
  7383. left:560px;
  7384. top:160px;
  7385. width:400px;
  7386. height:40px;
  7387. display:flex;
  7388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7389. font-weight:400;
  7390. font-style:normal;
  7391. font-size:14px;
  7392. text-align:left;
  7393. line-height:30px;
  7394. }
  7395. #u13003 .text {
  7396. position:absolute;
  7397. align-self:center;
  7398. padding:5px 10px 5px 10px;
  7399. box-sizing:border-box;
  7400. width:100%;
  7401. }
  7402. #u13003_text {
  7403. border-width:0px;
  7404. word-wrap:break-word;
  7405. text-transform:none;
  7406. visibility:hidden;
  7407. }
  7408. #u13004_img {
  7409. border-width:0px;
  7410. position:absolute;
  7411. left:0px;
  7412. top:0px;
  7413. width:160px;
  7414. height:40px;
  7415. }
  7416. #u13004 {
  7417. border-width:0px;
  7418. position:absolute;
  7419. left:0px;
  7420. top:200px;
  7421. width:160px;
  7422. height:40px;
  7423. display:flex;
  7424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7425. font-weight:400;
  7426. font-style:normal;
  7427. font-size:14px;
  7428. text-align:left;
  7429. line-height:30px;
  7430. }
  7431. #u13004 .text {
  7432. position:absolute;
  7433. align-self:center;
  7434. padding:5px 10px 5px 10px;
  7435. box-sizing:border-box;
  7436. width:100%;
  7437. }
  7438. #u13004_text {
  7439. border-width:0px;
  7440. word-wrap:break-word;
  7441. text-transform:none;
  7442. }
  7443. #u13005_img {
  7444. border-width:0px;
  7445. position:absolute;
  7446. left:0px;
  7447. top:0px;
  7448. width:400px;
  7449. height:40px;
  7450. }
  7451. #u13005 {
  7452. border-width:0px;
  7453. position:absolute;
  7454. left:160px;
  7455. top:200px;
  7456. width:400px;
  7457. height:40px;
  7458. display:flex;
  7459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7460. font-weight:400;
  7461. font-style:normal;
  7462. font-size:14px;
  7463. text-align:left;
  7464. line-height:30px;
  7465. }
  7466. #u13005 .text {
  7467. position:absolute;
  7468. align-self:center;
  7469. padding:5px 10px 5px 10px;
  7470. box-sizing:border-box;
  7471. width:100%;
  7472. }
  7473. #u13005_text {
  7474. border-width:0px;
  7475. word-wrap:break-word;
  7476. text-transform:none;
  7477. visibility:hidden;
  7478. }
  7479. #u13006_img {
  7480. border-width:0px;
  7481. position:absolute;
  7482. left:0px;
  7483. top:0px;
  7484. width:400px;
  7485. height:40px;
  7486. }
  7487. #u13006 {
  7488. border-width:0px;
  7489. position:absolute;
  7490. left:560px;
  7491. top:200px;
  7492. width:400px;
  7493. height:40px;
  7494. display:flex;
  7495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7496. font-weight:400;
  7497. font-style:normal;
  7498. font-size:14px;
  7499. text-align:left;
  7500. line-height:30px;
  7501. }
  7502. #u13006 .text {
  7503. position:absolute;
  7504. align-self:center;
  7505. padding:5px 10px 5px 10px;
  7506. box-sizing:border-box;
  7507. width:100%;
  7508. }
  7509. #u13006_text {
  7510. border-width:0px;
  7511. word-wrap:break-word;
  7512. text-transform:none;
  7513. visibility:hidden;
  7514. }
  7515. #u13007_img {
  7516. border-width:0px;
  7517. position:absolute;
  7518. left:0px;
  7519. top:0px;
  7520. width:160px;
  7521. height:40px;
  7522. }
  7523. #u13007 {
  7524. border-width:0px;
  7525. position:absolute;
  7526. left:0px;
  7527. top:240px;
  7528. width:160px;
  7529. height:40px;
  7530. display:flex;
  7531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7532. font-weight:400;
  7533. font-style:normal;
  7534. font-size:14px;
  7535. text-align:left;
  7536. line-height:30px;
  7537. }
  7538. #u13007 .text {
  7539. position:absolute;
  7540. align-self:center;
  7541. padding:5px 10px 5px 10px;
  7542. box-sizing:border-box;
  7543. width:100%;
  7544. }
  7545. #u13007_text {
  7546. border-width:0px;
  7547. word-wrap:break-word;
  7548. text-transform:none;
  7549. }
  7550. #u13008_img {
  7551. border-width:0px;
  7552. position:absolute;
  7553. left:0px;
  7554. top:0px;
  7555. width:400px;
  7556. height:40px;
  7557. }
  7558. #u13008 {
  7559. border-width:0px;
  7560. position:absolute;
  7561. left:160px;
  7562. top:240px;
  7563. width:400px;
  7564. height:40px;
  7565. display:flex;
  7566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7567. font-weight:400;
  7568. font-style:normal;
  7569. font-size:14px;
  7570. text-align:left;
  7571. line-height:30px;
  7572. }
  7573. #u13008 .text {
  7574. position:absolute;
  7575. align-self:center;
  7576. padding:5px 10px 5px 10px;
  7577. box-sizing:border-box;
  7578. width:100%;
  7579. }
  7580. #u13008_text {
  7581. border-width:0px;
  7582. word-wrap:break-word;
  7583. text-transform:none;
  7584. }
  7585. #u13009_img {
  7586. border-width:0px;
  7587. position:absolute;
  7588. left:0px;
  7589. top:0px;
  7590. width:400px;
  7591. height:40px;
  7592. }
  7593. #u13009 {
  7594. border-width:0px;
  7595. position:absolute;
  7596. left:560px;
  7597. top:240px;
  7598. width:400px;
  7599. height:40px;
  7600. display:flex;
  7601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7602. font-weight:400;
  7603. font-style:normal;
  7604. font-size:14px;
  7605. text-align:left;
  7606. line-height:30px;
  7607. }
  7608. #u13009 .text {
  7609. position:absolute;
  7610. align-self:center;
  7611. padding:5px 10px 5px 10px;
  7612. box-sizing:border-box;
  7613. width:100%;
  7614. }
  7615. #u13009_text {
  7616. border-width:0px;
  7617. word-wrap:break-word;
  7618. text-transform:none;
  7619. visibility:hidden;
  7620. }
  7621. #u13010_div {
  7622. border-width:0px;
  7623. position:absolute;
  7624. left:0px;
  7625. top:0px;
  7626. width:59px;
  7627. height:30px;
  7628. background:inherit;
  7629. background-color:rgba(41, 143, 255, 1);
  7630. border:none;
  7631. border-radius:4px;
  7632. -moz-box-shadow:none;
  7633. -webkit-box-shadow:none;
  7634. box-shadow:none;
  7635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7636. font-weight:400;
  7637. font-style:normal;
  7638. font-size:14px;
  7639. color:#FFFFFF;
  7640. }
  7641. #u13010 {
  7642. border-width:0px;
  7643. position:absolute;
  7644. left:351px;
  7645. top:160px;
  7646. width:59px;
  7647. height:30px;
  7648. display:flex;
  7649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7650. font-weight:400;
  7651. font-style:normal;
  7652. font-size:14px;
  7653. color:#FFFFFF;
  7654. }
  7655. #u13010 .text {
  7656. position:absolute;
  7657. align-self:center;
  7658. padding:5px 15px 5px 15px;
  7659. box-sizing:border-box;
  7660. width:100%;
  7661. }
  7662. #u13010_text {
  7663. border-width:0px;
  7664. white-space:nowrap;
  7665. text-transform:none;
  7666. }
  7667. #u13011 {
  7668. border-width:0px;
  7669. position:absolute;
  7670. left:0px;
  7671. top:0px;
  7672. width:0px;
  7673. height:0px;
  7674. }
  7675. #u13012_div {
  7676. border-width:0px;
  7677. position:absolute;
  7678. left:0px;
  7679. top:0px;
  7680. width:105px;
  7681. height:100px;
  7682. background:inherit;
  7683. background-color:rgba(255, 255, 255, 1);
  7684. box-sizing:border-box;
  7685. border-width:1px;
  7686. border-style:solid;
  7687. border-color:rgba(242, 242, 242, 1);
  7688. border-left:0px;
  7689. border-right:0px;
  7690. border-radius:3px;
  7691. border-top-left-radius:0px;
  7692. border-top-right-radius:0px;
  7693. border-bottom-right-radius:0px;
  7694. border-bottom-left-radius:0px;
  7695. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  7696. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  7697. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  7698. }
  7699. #u13012 {
  7700. border-width:0px;
  7701. position:absolute;
  7702. left:1434px;
  7703. top:277px;
  7704. width:105px;
  7705. height:100px;
  7706. display:flex;
  7707. }
  7708. #u13012 .text {
  7709. position:absolute;
  7710. align-self:center;
  7711. padding:2px 2px 2px 2px;
  7712. box-sizing:border-box;
  7713. width:100%;
  7714. }
  7715. #u13012_text {
  7716. border-width:0px;
  7717. word-wrap:break-word;
  7718. text-transform:none;
  7719. visibility:hidden;
  7720. }
  7721. #u13013_div {
  7722. border-width:0px;
  7723. position:absolute;
  7724. left:0px;
  7725. top:0px;
  7726. width:87px;
  7727. height:40px;
  7728. background:inherit;
  7729. background-color:rgba(255, 255, 255, 1);
  7730. border:none;
  7731. border-left:0px;
  7732. border-top:0px;
  7733. border-right:0px;
  7734. border-radius:3px;
  7735. border-bottom-right-radius:0px;
  7736. border-bottom-left-radius:0px;
  7737. -moz-box-shadow:none;
  7738. -webkit-box-shadow:none;
  7739. box-shadow:none;
  7740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7741. font-weight:400;
  7742. font-style:normal;
  7743. font-size:14px;
  7744. }
  7745. #u13013 {
  7746. border-width:0px;
  7747. position:absolute;
  7748. left:1443px;
  7749. top:327px;
  7750. width:87px;
  7751. height:40px;
  7752. display:flex;
  7753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7754. font-weight:400;
  7755. font-style:normal;
  7756. font-size:14px;
  7757. }
  7758. #u13013 .text {
  7759. position:absolute;
  7760. align-self:center;
  7761. padding:5px 0px 5px 0px;
  7762. box-sizing:border-box;
  7763. width:100%;
  7764. }
  7765. #u13013_text {
  7766. border-width:0px;
  7767. word-wrap:break-word;
  7768. text-transform:none;
  7769. }
  7770. #u13014_div {
  7771. border-width:0px;
  7772. position:absolute;
  7773. left:0px;
  7774. top:0px;
  7775. width:87px;
  7776. height:40px;
  7777. background:inherit;
  7778. background-color:rgba(255, 255, 255, 1);
  7779. box-sizing:border-box;
  7780. border-width:1px;
  7781. border-style:solid;
  7782. border-color:rgba(242, 242, 242, 1);
  7783. border-left:0px;
  7784. border-top:0px;
  7785. border-right:0px;
  7786. border-radius:3px;
  7787. border-bottom-right-radius:0px;
  7788. border-bottom-left-radius:0px;
  7789. -moz-box-shadow:none;
  7790. -webkit-box-shadow:none;
  7791. box-shadow:none;
  7792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7793. font-weight:400;
  7794. font-style:normal;
  7795. font-size:14px;
  7796. }
  7797. #u13014 {
  7798. border-width:0px;
  7799. position:absolute;
  7800. left:1443px;
  7801. top:287px;
  7802. width:87px;
  7803. height:40px;
  7804. display:flex;
  7805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7806. font-weight:400;
  7807. font-style:normal;
  7808. font-size:14px;
  7809. }
  7810. #u13014 .text {
  7811. position:absolute;
  7812. align-self:center;
  7813. padding:5px 0px 5px 0px;
  7814. box-sizing:border-box;
  7815. width:100%;
  7816. }
  7817. #u13014_text {
  7818. border-width:0px;
  7819. word-wrap:break-word;
  7820. text-transform:none;
  7821. }
  7822. #u13015 {
  7823. border-width:0px;
  7824. position:absolute;
  7825. left:2814px;
  7826. top:399px;
  7827. width:728px;
  7828. height:231px;
  7829. }
  7830. #u13016_img {
  7831. border-width:0px;
  7832. position:absolute;
  7833. left:0px;
  7834. top:0px;
  7835. width:112px;
  7836. height:40px;
  7837. }
  7838. #u13016 {
  7839. border-width:0px;
  7840. position:absolute;
  7841. left:0px;
  7842. top:0px;
  7843. width:112px;
  7844. height:40px;
  7845. display:flex;
  7846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7847. font-weight:400;
  7848. font-style:normal;
  7849. font-size:14px;
  7850. color:#FFFFFF;
  7851. text-align:left;
  7852. line-height:30px;
  7853. }
  7854. #u13016 .text {
  7855. position:absolute;
  7856. align-self:center;
  7857. padding:5px 10px 5px 10px;
  7858. box-sizing:border-box;
  7859. width:100%;
  7860. }
  7861. #u13016_text {
  7862. border-width:0px;
  7863. word-wrap:break-word;
  7864. text-transform:none;
  7865. }
  7866. #u13017_img {
  7867. border-width:0px;
  7868. position:absolute;
  7869. left:0px;
  7870. top:0px;
  7871. width:131px;
  7872. height:40px;
  7873. }
  7874. #u13017 {
  7875. border-width:0px;
  7876. position:absolute;
  7877. left:112px;
  7878. top:0px;
  7879. width:131px;
  7880. height:40px;
  7881. display:flex;
  7882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7883. font-weight:400;
  7884. font-style:normal;
  7885. font-size:14px;
  7886. color:#FFFFFF;
  7887. text-align:left;
  7888. line-height:30px;
  7889. }
  7890. #u13017 .text {
  7891. position:absolute;
  7892. align-self:center;
  7893. padding:5px 10px 5px 10px;
  7894. box-sizing:border-box;
  7895. width:100%;
  7896. }
  7897. #u13017_text {
  7898. border-width:0px;
  7899. word-wrap:break-word;
  7900. text-transform:none;
  7901. }
  7902. #u13018_img {
  7903. border-width:0px;
  7904. position:absolute;
  7905. left:0px;
  7906. top:0px;
  7907. width:115px;
  7908. height:40px;
  7909. }
  7910. #u13018 {
  7911. border-width:0px;
  7912. position:absolute;
  7913. left:243px;
  7914. top:0px;
  7915. width:115px;
  7916. height:40px;
  7917. display:flex;
  7918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7919. font-weight:400;
  7920. font-style:normal;
  7921. font-size:14px;
  7922. color:#FFFFFF;
  7923. text-align:left;
  7924. line-height:30px;
  7925. }
  7926. #u13018 .text {
  7927. position:absolute;
  7928. align-self:center;
  7929. padding:5px 10px 5px 10px;
  7930. box-sizing:border-box;
  7931. width:100%;
  7932. }
  7933. #u13018_text {
  7934. border-width:0px;
  7935. word-wrap:break-word;
  7936. text-transform:none;
  7937. }
  7938. #u13019_img {
  7939. border-width:0px;
  7940. position:absolute;
  7941. left:0px;
  7942. top:0px;
  7943. width:283px;
  7944. height:40px;
  7945. }
  7946. #u13019 {
  7947. border-width:0px;
  7948. position:absolute;
  7949. left:358px;
  7950. top:0px;
  7951. width:283px;
  7952. height:40px;
  7953. display:flex;
  7954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7955. font-weight:400;
  7956. font-style:normal;
  7957. font-size:14px;
  7958. color:#FFFFFF;
  7959. text-align:left;
  7960. line-height:30px;
  7961. }
  7962. #u13019 .text {
  7963. position:absolute;
  7964. align-self:center;
  7965. padding:5px 10px 5px 10px;
  7966. box-sizing:border-box;
  7967. width:100%;
  7968. }
  7969. #u13019_text {
  7970. border-width:0px;
  7971. word-wrap:break-word;
  7972. text-transform:none;
  7973. }
  7974. #u13020_img {
  7975. border-width:0px;
  7976. position:absolute;
  7977. left:0px;
  7978. top:0px;
  7979. width:87px;
  7980. height:40px;
  7981. }
  7982. #u13020 {
  7983. border-width:0px;
  7984. position:absolute;
  7985. left:641px;
  7986. top:0px;
  7987. width:87px;
  7988. height:40px;
  7989. display:flex;
  7990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7991. font-weight:400;
  7992. font-style:normal;
  7993. font-size:14px;
  7994. color:#FFFFFF;
  7995. text-align:left;
  7996. line-height:30px;
  7997. }
  7998. #u13020 .text {
  7999. position:absolute;
  8000. align-self:center;
  8001. padding:5px 10px 5px 10px;
  8002. box-sizing:border-box;
  8003. width:100%;
  8004. }
  8005. #u13020_text {
  8006. border-width:0px;
  8007. word-wrap:break-word;
  8008. text-transform:none;
  8009. }
  8010. #u13021_img {
  8011. border-width:0px;
  8012. position:absolute;
  8013. left:0px;
  8014. top:0px;
  8015. width:112px;
  8016. height:40px;
  8017. }
  8018. #u13021 {
  8019. border-width:0px;
  8020. position:absolute;
  8021. left:0px;
  8022. top:40px;
  8023. width:112px;
  8024. height:40px;
  8025. display:flex;
  8026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8027. font-weight:400;
  8028. font-style:normal;
  8029. font-size:14px;
  8030. text-align:left;
  8031. line-height:30px;
  8032. }
  8033. #u13021 .text {
  8034. position:absolute;
  8035. align-self:center;
  8036. padding:5px 10px 5px 10px;
  8037. box-sizing:border-box;
  8038. width:100%;
  8039. }
  8040. #u13021_text {
  8041. border-width:0px;
  8042. word-wrap:break-word;
  8043. text-transform:none;
  8044. }
  8045. #u13022_img {
  8046. border-width:0px;
  8047. position:absolute;
  8048. left:0px;
  8049. top:0px;
  8050. width:131px;
  8051. height:40px;
  8052. }
  8053. #u13022 {
  8054. border-width:0px;
  8055. position:absolute;
  8056. left:112px;
  8057. top:40px;
  8058. width:131px;
  8059. height:40px;
  8060. display:flex;
  8061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8062. font-weight:400;
  8063. font-style:normal;
  8064. font-size:14px;
  8065. text-align:left;
  8066. line-height:30px;
  8067. }
  8068. #u13022 .text {
  8069. position:absolute;
  8070. align-self:center;
  8071. padding:5px 10px 5px 10px;
  8072. box-sizing:border-box;
  8073. width:100%;
  8074. }
  8075. #u13022_text {
  8076. border-width:0px;
  8077. word-wrap:break-word;
  8078. text-transform:none;
  8079. }
  8080. #u13023_img {
  8081. border-width:0px;
  8082. position:absolute;
  8083. left:0px;
  8084. top:0px;
  8085. width:115px;
  8086. height:40px;
  8087. }
  8088. #u13023 {
  8089. border-width:0px;
  8090. position:absolute;
  8091. left:243px;
  8092. top:40px;
  8093. width:115px;
  8094. height:40px;
  8095. display:flex;
  8096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8097. font-weight:400;
  8098. font-style:normal;
  8099. font-size:14px;
  8100. text-align:left;
  8101. line-height:30px;
  8102. }
  8103. #u13023 .text {
  8104. position:absolute;
  8105. align-self:center;
  8106. padding:5px 10px 5px 10px;
  8107. box-sizing:border-box;
  8108. width:100%;
  8109. }
  8110. #u13023_text {
  8111. border-width:0px;
  8112. word-wrap:break-word;
  8113. text-transform:none;
  8114. }
  8115. #u13024_img {
  8116. border-width:0px;
  8117. position:absolute;
  8118. left:0px;
  8119. top:0px;
  8120. width:283px;
  8121. height:40px;
  8122. }
  8123. #u13024 {
  8124. border-width:0px;
  8125. position:absolute;
  8126. left:358px;
  8127. top:40px;
  8128. width:283px;
  8129. height:40px;
  8130. display:flex;
  8131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8132. font-weight:400;
  8133. font-style:normal;
  8134. font-size:14px;
  8135. text-align:left;
  8136. line-height:30px;
  8137. }
  8138. #u13024 .text {
  8139. position:absolute;
  8140. align-self:center;
  8141. padding:5px 10px 5px 10px;
  8142. box-sizing:border-box;
  8143. width:100%;
  8144. }
  8145. #u13024_text {
  8146. border-width:0px;
  8147. word-wrap:break-word;
  8148. text-transform:none;
  8149. visibility:hidden;
  8150. }
  8151. #u13025_img {
  8152. border-width:0px;
  8153. position:absolute;
  8154. left:0px;
  8155. top:0px;
  8156. width:87px;
  8157. height:40px;
  8158. }
  8159. #u13025 {
  8160. border-width:0px;
  8161. position:absolute;
  8162. left:641px;
  8163. top:40px;
  8164. width:87px;
  8165. height:40px;
  8166. display:flex;
  8167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8168. font-weight:400;
  8169. font-style:normal;
  8170. font-size:14px;
  8171. text-align:left;
  8172. line-height:30px;
  8173. }
  8174. #u13025 .text {
  8175. position:absolute;
  8176. align-self:center;
  8177. padding:5px 10px 5px 10px;
  8178. box-sizing:border-box;
  8179. width:100%;
  8180. }
  8181. #u13025_text {
  8182. border-width:0px;
  8183. word-wrap:break-word;
  8184. text-transform:none;
  8185. }
  8186. #u13026_img {
  8187. border-width:0px;
  8188. position:absolute;
  8189. left:0px;
  8190. top:0px;
  8191. width:112px;
  8192. height:40px;
  8193. }
  8194. #u13026 {
  8195. border-width:0px;
  8196. position:absolute;
  8197. left:0px;
  8198. top:80px;
  8199. width:112px;
  8200. height:40px;
  8201. display:flex;
  8202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8203. font-weight:400;
  8204. font-style:normal;
  8205. font-size:14px;
  8206. text-align:left;
  8207. line-height:30px;
  8208. }
  8209. #u13026 .text {
  8210. position:absolute;
  8211. align-self:center;
  8212. padding:5px 10px 5px 10px;
  8213. box-sizing:border-box;
  8214. width:100%;
  8215. }
  8216. #u13026_text {
  8217. border-width:0px;
  8218. word-wrap:break-word;
  8219. text-transform:none;
  8220. }
  8221. #u13027_img {
  8222. border-width:0px;
  8223. position:absolute;
  8224. left:0px;
  8225. top:0px;
  8226. width:131px;
  8227. height:40px;
  8228. }
  8229. #u13027 {
  8230. border-width:0px;
  8231. position:absolute;
  8232. left:112px;
  8233. top:80px;
  8234. width:131px;
  8235. height:40px;
  8236. display:flex;
  8237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8238. font-weight:400;
  8239. font-style:normal;
  8240. font-size:14px;
  8241. text-align:left;
  8242. line-height:30px;
  8243. }
  8244. #u13027 .text {
  8245. position:absolute;
  8246. align-self:center;
  8247. padding:5px 10px 5px 10px;
  8248. box-sizing:border-box;
  8249. width:100%;
  8250. }
  8251. #u13027_text {
  8252. border-width:0px;
  8253. word-wrap:break-word;
  8254. text-transform:none;
  8255. }
  8256. #u13028_img {
  8257. border-width:0px;
  8258. position:absolute;
  8259. left:0px;
  8260. top:0px;
  8261. width:115px;
  8262. height:40px;
  8263. }
  8264. #u13028 {
  8265. border-width:0px;
  8266. position:absolute;
  8267. left:243px;
  8268. top:80px;
  8269. width:115px;
  8270. height:40px;
  8271. display:flex;
  8272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8273. font-weight:400;
  8274. font-style:normal;
  8275. font-size:14px;
  8276. text-align:left;
  8277. line-height:30px;
  8278. }
  8279. #u13028 .text {
  8280. position:absolute;
  8281. align-self:center;
  8282. padding:5px 10px 5px 10px;
  8283. box-sizing:border-box;
  8284. width:100%;
  8285. }
  8286. #u13028_text {
  8287. border-width:0px;
  8288. word-wrap:break-word;
  8289. text-transform:none;
  8290. }
  8291. #u13029_img {
  8292. border-width:0px;
  8293. position:absolute;
  8294. left:0px;
  8295. top:0px;
  8296. width:283px;
  8297. height:40px;
  8298. }
  8299. #u13029 {
  8300. border-width:0px;
  8301. position:absolute;
  8302. left:358px;
  8303. top:80px;
  8304. width:283px;
  8305. height:40px;
  8306. display:flex;
  8307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8308. font-weight:400;
  8309. font-style:normal;
  8310. font-size:14px;
  8311. text-align:left;
  8312. line-height:30px;
  8313. }
  8314. #u13029 .text {
  8315. position:absolute;
  8316. align-self:center;
  8317. padding:5px 10px 5px 10px;
  8318. box-sizing:border-box;
  8319. width:100%;
  8320. }
  8321. #u13029_text {
  8322. border-width:0px;
  8323. word-wrap:break-word;
  8324. text-transform:none;
  8325. visibility:hidden;
  8326. }
  8327. #u13030_img {
  8328. border-width:0px;
  8329. position:absolute;
  8330. left:0px;
  8331. top:0px;
  8332. width:87px;
  8333. height:40px;
  8334. }
  8335. #u13030 {
  8336. border-width:0px;
  8337. position:absolute;
  8338. left:641px;
  8339. top:80px;
  8340. width:87px;
  8341. height:40px;
  8342. display:flex;
  8343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8344. font-weight:400;
  8345. font-style:normal;
  8346. font-size:14px;
  8347. text-align:left;
  8348. line-height:30px;
  8349. }
  8350. #u13030 .text {
  8351. position:absolute;
  8352. align-self:center;
  8353. padding:5px 10px 5px 10px;
  8354. box-sizing:border-box;
  8355. width:100%;
  8356. }
  8357. #u13030_text {
  8358. border-width:0px;
  8359. word-wrap:break-word;
  8360. text-transform:none;
  8361. visibility:hidden;
  8362. }
  8363. #u13031_img {
  8364. border-width:0px;
  8365. position:absolute;
  8366. left:0px;
  8367. top:0px;
  8368. width:112px;
  8369. height:70px;
  8370. }
  8371. #u13031 {
  8372. border-width:0px;
  8373. position:absolute;
  8374. left:0px;
  8375. top:120px;
  8376. width:112px;
  8377. height:70px;
  8378. display:flex;
  8379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8380. font-weight:400;
  8381. font-style:normal;
  8382. font-size:14px;
  8383. text-align:left;
  8384. line-height:30px;
  8385. }
  8386. #u13031 .text {
  8387. position:absolute;
  8388. align-self:center;
  8389. padding:5px 10px 5px 10px;
  8390. box-sizing:border-box;
  8391. width:100%;
  8392. }
  8393. #u13031_text {
  8394. border-width:0px;
  8395. word-wrap:break-word;
  8396. text-transform:none;
  8397. }
  8398. #u13032_img {
  8399. border-width:0px;
  8400. position:absolute;
  8401. left:0px;
  8402. top:0px;
  8403. width:131px;
  8404. height:70px;
  8405. }
  8406. #u13032 {
  8407. border-width:0px;
  8408. position:absolute;
  8409. left:112px;
  8410. top:120px;
  8411. width:131px;
  8412. height:70px;
  8413. display:flex;
  8414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8415. font-weight:400;
  8416. font-style:normal;
  8417. font-size:14px;
  8418. text-align:left;
  8419. line-height:30px;
  8420. }
  8421. #u13032 .text {
  8422. position:absolute;
  8423. align-self:center;
  8424. padding:5px 10px 5px 10px;
  8425. box-sizing:border-box;
  8426. width:100%;
  8427. }
  8428. #u13032_text {
  8429. border-width:0px;
  8430. word-wrap:break-word;
  8431. text-transform:none;
  8432. }
  8433. #u13033_img {
  8434. border-width:0px;
  8435. position:absolute;
  8436. left:0px;
  8437. top:0px;
  8438. width:115px;
  8439. height:70px;
  8440. }
  8441. #u13033 {
  8442. border-width:0px;
  8443. position:absolute;
  8444. left:243px;
  8445. top:120px;
  8446. width:115px;
  8447. height:70px;
  8448. display:flex;
  8449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8450. font-weight:400;
  8451. font-style:normal;
  8452. font-size:14px;
  8453. text-align:left;
  8454. line-height:30px;
  8455. }
  8456. #u13033 .text {
  8457. position:absolute;
  8458. align-self:center;
  8459. padding:5px 10px 5px 10px;
  8460. box-sizing:border-box;
  8461. width:100%;
  8462. }
  8463. #u13033_text {
  8464. border-width:0px;
  8465. word-wrap:break-word;
  8466. text-transform:none;
  8467. }
  8468. #u13034_img {
  8469. border-width:0px;
  8470. position:absolute;
  8471. left:0px;
  8472. top:0px;
  8473. width:283px;
  8474. height:70px;
  8475. }
  8476. #u13034 {
  8477. border-width:0px;
  8478. position:absolute;
  8479. left:358px;
  8480. top:120px;
  8481. width:283px;
  8482. height:70px;
  8483. display:flex;
  8484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8485. font-weight:400;
  8486. font-style:normal;
  8487. font-size:14px;
  8488. text-align:left;
  8489. line-height:30px;
  8490. }
  8491. #u13034 .text {
  8492. position:absolute;
  8493. align-self:center;
  8494. padding:5px 10px 5px 10px;
  8495. box-sizing:border-box;
  8496. width:100%;
  8497. }
  8498. #u13034_text {
  8499. border-width:0px;
  8500. word-wrap:break-word;
  8501. text-transform:none;
  8502. }
  8503. #u13035_img {
  8504. border-width:0px;
  8505. position:absolute;
  8506. left:0px;
  8507. top:0px;
  8508. width:87px;
  8509. height:70px;
  8510. }
  8511. #u13035 {
  8512. border-width:0px;
  8513. position:absolute;
  8514. left:641px;
  8515. top:120px;
  8516. width:87px;
  8517. height:70px;
  8518. display:flex;
  8519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8520. font-weight:400;
  8521. font-style:normal;
  8522. font-size:14px;
  8523. text-align:left;
  8524. line-height:30px;
  8525. }
  8526. #u13035 .text {
  8527. position:absolute;
  8528. align-self:center;
  8529. padding:5px 10px 5px 10px;
  8530. box-sizing:border-box;
  8531. width:100%;
  8532. }
  8533. #u13035_text {
  8534. border-width:0px;
  8535. word-wrap:break-word;
  8536. text-transform:none;
  8537. }
  8538. #u13036_img {
  8539. border-width:0px;
  8540. position:absolute;
  8541. left:0px;
  8542. top:0px;
  8543. width:112px;
  8544. height:40px;
  8545. }
  8546. #u13036 {
  8547. border-width:0px;
  8548. position:absolute;
  8549. left:0px;
  8550. top:190px;
  8551. width:112px;
  8552. height:40px;
  8553. display:flex;
  8554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8555. font-weight:400;
  8556. font-style:normal;
  8557. font-size:14px;
  8558. text-align:left;
  8559. line-height:30px;
  8560. }
  8561. #u13036 .text {
  8562. position:absolute;
  8563. align-self:center;
  8564. padding:5px 10px 5px 10px;
  8565. box-sizing:border-box;
  8566. width:100%;
  8567. }
  8568. #u13036_text {
  8569. border-width:0px;
  8570. word-wrap:break-word;
  8571. text-transform:none;
  8572. }
  8573. #u13037_img {
  8574. border-width:0px;
  8575. position:absolute;
  8576. left:0px;
  8577. top:0px;
  8578. width:131px;
  8579. height:40px;
  8580. }
  8581. #u13037 {
  8582. border-width:0px;
  8583. position:absolute;
  8584. left:112px;
  8585. top:190px;
  8586. width:131px;
  8587. height:40px;
  8588. display:flex;
  8589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8590. font-weight:400;
  8591. font-style:normal;
  8592. font-size:14px;
  8593. text-align:left;
  8594. line-height:20px;
  8595. }
  8596. #u13037 .text {
  8597. position:absolute;
  8598. align-self:center;
  8599. padding:5px 10px 5px 10px;
  8600. box-sizing:border-box;
  8601. width:100%;
  8602. }
  8603. #u13037_text {
  8604. border-width:0px;
  8605. word-wrap:break-word;
  8606. text-transform:none;
  8607. }
  8608. #u13038_img {
  8609. border-width:0px;
  8610. position:absolute;
  8611. left:0px;
  8612. top:0px;
  8613. width:115px;
  8614. height:40px;
  8615. }
  8616. #u13038 {
  8617. border-width:0px;
  8618. position:absolute;
  8619. left:243px;
  8620. top:190px;
  8621. width:115px;
  8622. height:40px;
  8623. display:flex;
  8624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8625. font-weight:400;
  8626. font-style:normal;
  8627. font-size:14px;
  8628. text-align:left;
  8629. line-height:20px;
  8630. }
  8631. #u13038 .text {
  8632. position:absolute;
  8633. align-self:center;
  8634. padding:5px 10px 5px 10px;
  8635. box-sizing:border-box;
  8636. width:100%;
  8637. }
  8638. #u13038_text {
  8639. border-width:0px;
  8640. word-wrap:break-word;
  8641. text-transform:none;
  8642. }
  8643. #u13039_img {
  8644. border-width:0px;
  8645. position:absolute;
  8646. left:0px;
  8647. top:0px;
  8648. width:283px;
  8649. height:40px;
  8650. }
  8651. #u13039 {
  8652. border-width:0px;
  8653. position:absolute;
  8654. left:358px;
  8655. top:190px;
  8656. width:283px;
  8657. height:40px;
  8658. display:flex;
  8659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8660. font-weight:400;
  8661. font-style:normal;
  8662. font-size:14px;
  8663. text-align:left;
  8664. line-height:30px;
  8665. }
  8666. #u13039 .text {
  8667. position:absolute;
  8668. align-self:center;
  8669. padding:5px 10px 5px 10px;
  8670. box-sizing:border-box;
  8671. width:100%;
  8672. }
  8673. #u13039_text {
  8674. border-width:0px;
  8675. word-wrap:break-word;
  8676. text-transform:none;
  8677. visibility:hidden;
  8678. }
  8679. #u13040_img {
  8680. border-width:0px;
  8681. position:absolute;
  8682. left:0px;
  8683. top:0px;
  8684. width:87px;
  8685. height:40px;
  8686. }
  8687. #u13040 {
  8688. border-width:0px;
  8689. position:absolute;
  8690. left:641px;
  8691. top:190px;
  8692. width:87px;
  8693. height:40px;
  8694. display:flex;
  8695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8696. font-weight:400;
  8697. font-style:normal;
  8698. font-size:14px;
  8699. text-align:left;
  8700. line-height:30px;
  8701. }
  8702. #u13040 .text {
  8703. position:absolute;
  8704. align-self:center;
  8705. padding:5px 10px 5px 10px;
  8706. box-sizing:border-box;
  8707. width:100%;
  8708. }
  8709. #u13040_text {
  8710. border-width:0px;
  8711. word-wrap:break-word;
  8712. text-transform:none;
  8713. visibility:hidden;
  8714. }
  8715. #u13041_div {
  8716. border-width:0px;
  8717. position:absolute;
  8718. left:0px;
  8719. top:0px;
  8720. width:729px;
  8721. height:40px;
  8722. background:inherit;
  8723. background-color:rgba(127, 127, 127, 1);
  8724. border:none;
  8725. border-radius:0px;
  8726. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  8727. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  8728. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  8729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8730. font-weight:400;
  8731. font-style:normal;
  8732. font-size:14px;
  8733. color:#FFFFFF;
  8734. line-height:20px;
  8735. }
  8736. #u13041 {
  8737. border-width:0px;
  8738. position:absolute;
  8739. left:2814px;
  8740. top:353px;
  8741. width:729px;
  8742. height:40px;
  8743. display:flex;
  8744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8745. font-weight:400;
  8746. font-style:normal;
  8747. font-size:14px;
  8748. color:#FFFFFF;
  8749. line-height:20px;
  8750. }
  8751. #u13041 .text {
  8752. position:absolute;
  8753. align-self:flex-start;
  8754. padding:10px 10px 10px 10px;
  8755. box-sizing:border-box;
  8756. width:100%;
  8757. }
  8758. #u13041_text {
  8759. border-width:0px;
  8760. word-wrap:break-word;
  8761. text-transform:none;
  8762. }
  8763. #u13042 {
  8764. border-width:0px;
  8765. position:absolute;
  8766. left:0px;
  8767. top:0px;
  8768. width:0px;
  8769. height:0px;
  8770. }
  8771. #u13043_div {
  8772. border-width:0px;
  8773. position:absolute;
  8774. left:0px;
  8775. top:0px;
  8776. width:1381px;
  8777. height:40px;
  8778. background:inherit;
  8779. background-color:rgba(127, 127, 127, 1);
  8780. border:none;
  8781. border-radius:0px;
  8782. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  8783. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  8784. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  8785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8786. font-weight:400;
  8787. font-style:normal;
  8788. font-size:14px;
  8789. color:#FFFFFF;
  8790. line-height:20px;
  8791. }
  8792. #u13043 {
  8793. border-width:0px;
  8794. position:absolute;
  8795. left:2814px;
  8796. top:680px;
  8797. width:1381px;
  8798. height:40px;
  8799. display:flex;
  8800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8801. font-weight:400;
  8802. font-style:normal;
  8803. font-size:14px;
  8804. color:#FFFFFF;
  8805. line-height:20px;
  8806. }
  8807. #u13043 .text {
  8808. position:absolute;
  8809. align-self:flex-start;
  8810. padding:10px 10px 10px 10px;
  8811. box-sizing:border-box;
  8812. width:100%;
  8813. }
  8814. #u13043_text {
  8815. border-width:0px;
  8816. word-wrap:break-word;
  8817. text-transform:none;
  8818. }
  8819. #u13044_div {
  8820. border-width:0px;
  8821. position:absolute;
  8822. left:0px;
  8823. top:0px;
  8824. width:1381px;
  8825. height:1092px;
  8826. background:inherit;
  8827. background-color:rgba(255, 255, 255, 1);
  8828. box-sizing:border-box;
  8829. border-width:1px;
  8830. border-style:solid;
  8831. border-color:rgba(121, 121, 121, 1);
  8832. border-radius:0px;
  8833. -moz-box-shadow:none;
  8834. -webkit-box-shadow:none;
  8835. box-shadow:none;
  8836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8837. font-weight:400;
  8838. font-style:normal;
  8839. font-size:12px;
  8840. color:#FFFFFF;
  8841. text-align:left;
  8842. }
  8843. #u13044 {
  8844. border-width:0px;
  8845. position:absolute;
  8846. left:2814px;
  8847. top:750px;
  8848. width:1381px;
  8849. height:1092px;
  8850. display:flex;
  8851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8852. font-weight:400;
  8853. font-style:normal;
  8854. font-size:12px;
  8855. color:#FFFFFF;
  8856. text-align:left;
  8857. }
  8858. #u13044 .text {
  8859. position:absolute;
  8860. align-self:center;
  8861. padding:2px 2px 2px 50px;
  8862. box-sizing:border-box;
  8863. width:100%;
  8864. }
  8865. #u13044_text {
  8866. border-width:0px;
  8867. word-wrap:break-word;
  8868. text-transform:none;
  8869. visibility:hidden;
  8870. }
  8871. #u13045_div {
  8872. border-width:0px;
  8873. position:absolute;
  8874. left:0px;
  8875. top:0px;
  8876. width:121px;
  8877. height:50px;
  8878. background:inherit;
  8879. background-color:rgba(255, 255, 255, 0);
  8880. border:none;
  8881. border-left:0px;
  8882. border-top:0px;
  8883. border-right:0px;
  8884. border-radius:0px;
  8885. border-bottom-right-radius:0px;
  8886. border-bottom-left-radius:0px;
  8887. -moz-box-shadow:none;
  8888. -webkit-box-shadow:none;
  8889. box-shadow:none;
  8890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8891. font-style:normal;
  8892. }
  8893. #u13045 {
  8894. border-width:0px;
  8895. position:absolute;
  8896. left:2833px;
  8897. top:750px;
  8898. width:121px;
  8899. height:50px;
  8900. display:flex;
  8901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8902. font-style:normal;
  8903. }
  8904. #u13045 .text {
  8905. position:absolute;
  8906. align-self:center;
  8907. padding:0px 0px 0px 0px;
  8908. box-sizing:border-box;
  8909. width:100%;
  8910. }
  8911. #u13045_text {
  8912. border-width:0px;
  8913. white-space:nowrap;
  8914. text-transform:none;
  8915. }
  8916. #u13046_div {
  8917. border-width:0px;
  8918. position:absolute;
  8919. left:0px;
  8920. top:0px;
  8921. width:1299px;
  8922. height:50px;
  8923. background:inherit;
  8924. background-color:rgba(242, 242, 242, 1);
  8925. border:none;
  8926. border-left:0px;
  8927. border-top:0px;
  8928. border-right:0px;
  8929. border-radius:0px;
  8930. border-bottom-right-radius:0px;
  8931. border-bottom-left-radius:0px;
  8932. -moz-box-shadow:none;
  8933. -webkit-box-shadow:none;
  8934. box-shadow:none;
  8935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8936. font-style:normal;
  8937. }
  8938. #u13046 {
  8939. border-width:0px;
  8940. position:absolute;
  8941. left:2843px;
  8942. top:810px;
  8943. width:1299px;
  8944. height:50px;
  8945. display:flex;
  8946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8947. font-style:normal;
  8948. }
  8949. #u13046 .text {
  8950. position:absolute;
  8951. align-self:center;
  8952. padding:0px 0px 0px 20px;
  8953. box-sizing:border-box;
  8954. width:100%;
  8955. }
  8956. #u13046_text {
  8957. border-width:0px;
  8958. word-wrap:break-word;
  8959. text-transform:none;
  8960. }
  8961. #u13047_div {
  8962. border-width:0px;
  8963. position:absolute;
  8964. left:0px;
  8965. top:0px;
  8966. width:451px;
  8967. height:828px;
  8968. background:inherit;
  8969. background-color:rgba(242, 242, 242, 1);
  8970. border:none;
  8971. border-radius:0px;
  8972. -moz-box-shadow:none;
  8973. -webkit-box-shadow:none;
  8974. box-shadow:none;
  8975. }
  8976. #u13047 {
  8977. border-width:0px;
  8978. position:absolute;
  8979. left:2843px;
  8980. top:924px;
  8981. width:451px;
  8982. height:828px;
  8983. display:flex;
  8984. }
  8985. #u13047 .text {
  8986. position:absolute;
  8987. align-self:center;
  8988. padding:2px 2px 2px 2px;
  8989. box-sizing:border-box;
  8990. width:100%;
  8991. }
  8992. #u13047_text {
  8993. border-width:0px;
  8994. word-wrap:break-word;
  8995. text-transform:none;
  8996. visibility:hidden;
  8997. }
  8998. #u13048_div {
  8999. border-width:0px;
  9000. position:absolute;
  9001. left:0px;
  9002. top:0px;
  9003. width:73px;
  9004. height:25px;
  9005. background:inherit;
  9006. background-color:rgba(242, 242, 242, 0);
  9007. border:none;
  9008. border-left:0px;
  9009. border-top:0px;
  9010. border-right:0px;
  9011. border-radius:0px;
  9012. border-bottom-right-radius:0px;
  9013. border-bottom-left-radius:0px;
  9014. -moz-box-shadow:none;
  9015. -webkit-box-shadow:none;
  9016. box-shadow:none;
  9017. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9018. font-weight:500;
  9019. font-style:normal;
  9020. font-size:18px;
  9021. }
  9022. #u13048 {
  9023. border-width:0px;
  9024. position:absolute;
  9025. left:2848px;
  9026. top:884px;
  9027. width:73px;
  9028. height:25px;
  9029. display:flex;
  9030. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9031. font-weight:500;
  9032. font-style:normal;
  9033. font-size:18px;
  9034. }
  9035. #u13048 .text {
  9036. position:absolute;
  9037. align-self:center;
  9038. padding:0px 0px 0px 0px;
  9039. box-sizing:border-box;
  9040. width:100%;
  9041. }
  9042. #u13048_text {
  9043. border-width:0px;
  9044. white-space:nowrap;
  9045. text-transform:none;
  9046. }
  9047. #u13049_div {
  9048. border-width:0px;
  9049. position:absolute;
  9050. left:0px;
  9051. top:0px;
  9052. width:1381px;
  9053. height:50px;
  9054. background:inherit;
  9055. background-color:rgba(255, 255, 255, 1);
  9056. box-sizing:border-box;
  9057. border-width:1px;
  9058. border-style:solid;
  9059. border-color:rgba(121, 121, 121, 1);
  9060. border-radius:0px;
  9061. -moz-box-shadow:none;
  9062. -webkit-box-shadow:none;
  9063. box-shadow:none;
  9064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9065. font-weight:400;
  9066. font-style:normal;
  9067. font-size:12px;
  9068. color:#FFFFFF;
  9069. text-align:left;
  9070. }
  9071. #u13049 {
  9072. border-width:0px;
  9073. position:absolute;
  9074. left:2814px;
  9075. top:1792px;
  9076. width:1381px;
  9077. height:50px;
  9078. display:flex;
  9079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9080. font-weight:400;
  9081. font-style:normal;
  9082. font-size:12px;
  9083. color:#FFFFFF;
  9084. text-align:left;
  9085. }
  9086. #u13049 .text {
  9087. position:absolute;
  9088. align-self:center;
  9089. padding:2px 2px 2px 50px;
  9090. box-sizing:border-box;
  9091. width:100%;
  9092. }
  9093. #u13049_text {
  9094. border-width:0px;
  9095. word-wrap:break-word;
  9096. text-transform:none;
  9097. visibility:hidden;
  9098. }
  9099. #u13050_div {
  9100. border-width:0px;
  9101. position:absolute;
  9102. left:0px;
  9103. top:0px;
  9104. width:61px;
  9105. height:32px;
  9106. background:inherit;
  9107. background-color:rgba(24, 144, 255, 1);
  9108. border:none;
  9109. border-radius:4px;
  9110. -moz-box-shadow:none;
  9111. -webkit-box-shadow:none;
  9112. box-shadow:none;
  9113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9114. font-weight:400;
  9115. font-style:normal;
  9116. font-size:14px;
  9117. color:#FFFFFF;
  9118. }
  9119. #u13050 {
  9120. border-width:0px;
  9121. position:absolute;
  9122. left:4093px;
  9123. top:1801px;
  9124. width:61px;
  9125. height:32px;
  9126. display:flex;
  9127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9128. font-weight:400;
  9129. font-style:normal;
  9130. font-size:14px;
  9131. color:#FFFFFF;
  9132. }
  9133. #u13050 .text {
  9134. position:absolute;
  9135. align-self:center;
  9136. padding:2px 16px 2px 16px;
  9137. box-sizing:border-box;
  9138. width:100%;
  9139. }
  9140. #u13050_text {
  9141. border-width:0px;
  9142. white-space:nowrap;
  9143. text-transform:none;
  9144. }
  9145. #u13051_div {
  9146. border-width:0px;
  9147. position:absolute;
  9148. left:0px;
  9149. top:0px;
  9150. width:61px;
  9151. height:32px;
  9152. background:inherit;
  9153. background-color:rgba(255, 255, 255, 1);
  9154. box-sizing:border-box;
  9155. border-width:1px;
  9156. border-style:solid;
  9157. border-color:rgba(217, 217, 217, 1);
  9158. border-radius:4px;
  9159. -moz-box-shadow:none;
  9160. -webkit-box-shadow:none;
  9161. box-shadow:none;
  9162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9163. font-weight:400;
  9164. font-style:normal;
  9165. font-size:14px;
  9166. color:rgba(0, 0, 0, 0.647058823529412);
  9167. line-height:21px;
  9168. }
  9169. #u13051 {
  9170. border-width:0px;
  9171. position:absolute;
  9172. left:4019px;
  9173. top:1801px;
  9174. width:61px;
  9175. height:32px;
  9176. display:flex;
  9177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9178. font-weight:400;
  9179. font-style:normal;
  9180. font-size:14px;
  9181. color:rgba(0, 0, 0, 0.647058823529412);
  9182. line-height:21px;
  9183. }
  9184. #u13051 .text {
  9185. position:absolute;
  9186. align-self:center;
  9187. padding:2px 16px 2px 16px;
  9188. box-sizing:border-box;
  9189. width:100%;
  9190. }
  9191. #u13051_text {
  9192. border-width:0px;
  9193. white-space:nowrap;
  9194. text-transform:none;
  9195. }
  9196. #u13052_div {
  9197. border-width:0px;
  9198. position:absolute;
  9199. left:0px;
  9200. top:0px;
  9201. width:876px;
  9202. height:50px;
  9203. background:inherit;
  9204. background-color:rgba(242, 242, 242, 1);
  9205. border:none;
  9206. border-left:0px;
  9207. border-top:0px;
  9208. border-right:0px;
  9209. border-radius:0px;
  9210. border-bottom-right-radius:0px;
  9211. border-bottom-left-radius:0px;
  9212. -moz-box-shadow:none;
  9213. -webkit-box-shadow:none;
  9214. box-shadow:none;
  9215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9216. font-style:normal;
  9217. }
  9218. #u13052 {
  9219. border-width:0px;
  9220. position:absolute;
  9221. left:3266px;
  9222. top:810px;
  9223. width:876px;
  9224. height:50px;
  9225. display:flex;
  9226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9227. font-style:normal;
  9228. }
  9229. #u13052 .text {
  9230. position:absolute;
  9231. align-self:center;
  9232. padding:0px 0px 0px 20px;
  9233. box-sizing:border-box;
  9234. width:100%;
  9235. }
  9236. #u13052_text {
  9237. border-width:0px;
  9238. word-wrap:break-word;
  9239. text-transform:none;
  9240. }
  9241. #u13053 {
  9242. border-width:0px;
  9243. position:absolute;
  9244. left:2868px;
  9245. top:950px;
  9246. width:146px;
  9247. height:160px;
  9248. }
  9249. #u13053_children {
  9250. border-width:0px;
  9251. position:absolute;
  9252. left:0px;
  9253. top:0px;
  9254. width:0px;
  9255. height:0px;
  9256. }
  9257. #u13054 {
  9258. border-width:0px;
  9259. position:absolute;
  9260. left:0px;
  9261. top:0px;
  9262. width:106px;
  9263. height:20px;
  9264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9265. font-weight:400;
  9266. font-style:normal;
  9267. }
  9268. #u13055_img {
  9269. border-width:0px;
  9270. position:absolute;
  9271. left:0px;
  9272. top:0px;
  9273. width:9px;
  9274. height:9px;
  9275. }
  9276. #u13055 {
  9277. border-width:0px;
  9278. position:absolute;
  9279. left:6px;
  9280. top:6px;
  9281. width:9px;
  9282. height:9px;
  9283. display:flex;
  9284. }
  9285. #u13055 .text {
  9286. position:absolute;
  9287. align-self:center;
  9288. padding:2px 2px 2px 2px;
  9289. box-sizing:border-box;
  9290. width:100%;
  9291. }
  9292. #u13055_img.selected {
  9293. }
  9294. #u13055.selected {
  9295. }
  9296. #u13055_text {
  9297. border-width:0px;
  9298. word-wrap:break-word;
  9299. text-transform:none;
  9300. visibility:hidden;
  9301. }
  9302. #u13056_div {
  9303. border-width:0px;
  9304. position:absolute;
  9305. left:0px;
  9306. top:0px;
  9307. width:84px;
  9308. height:20px;
  9309. background:inherit;
  9310. background-color:rgba(255, 255, 255, 0);
  9311. border:none;
  9312. border-radius:0px;
  9313. -moz-box-shadow:none;
  9314. -webkit-box-shadow:none;
  9315. box-shadow:none;
  9316. }
  9317. #u13056 {
  9318. border-width:0px;
  9319. position:absolute;
  9320. left:22px;
  9321. top:0px;
  9322. width:84px;
  9323. height:20px;
  9324. display:flex;
  9325. }
  9326. #u13056 .text {
  9327. position:absolute;
  9328. align-self:center;
  9329. padding:2px 2px 2px 3px;
  9330. box-sizing:border-box;
  9331. width:100%;
  9332. }
  9333. #u13056_text {
  9334. border-width:0px;
  9335. white-space:nowrap;
  9336. text-transform:none;
  9337. }
  9338. #u13054_children {
  9339. border-width:0px;
  9340. position:absolute;
  9341. left:0px;
  9342. top:0px;
  9343. width:0px;
  9344. height:0px;
  9345. }
  9346. #u13057 {
  9347. border-width:0px;
  9348. position:absolute;
  9349. left:20px;
  9350. top:20px;
  9351. width:106px;
  9352. height:20px;
  9353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9354. font-weight:400;
  9355. font-style:normal;
  9356. }
  9357. #u13058_img {
  9358. border-width:0px;
  9359. position:absolute;
  9360. left:0px;
  9361. top:0px;
  9362. width:9px;
  9363. height:9px;
  9364. }
  9365. #u13058 {
  9366. border-width:0px;
  9367. position:absolute;
  9368. left:6px;
  9369. top:6px;
  9370. width:9px;
  9371. height:9px;
  9372. display:flex;
  9373. }
  9374. #u13058 .text {
  9375. position:absolute;
  9376. align-self:center;
  9377. padding:2px 2px 2px 2px;
  9378. box-sizing:border-box;
  9379. width:100%;
  9380. }
  9381. #u13058_img.selected {
  9382. }
  9383. #u13058.selected {
  9384. }
  9385. #u13058_text {
  9386. border-width:0px;
  9387. word-wrap:break-word;
  9388. text-transform:none;
  9389. visibility:hidden;
  9390. }
  9391. #u13059_div {
  9392. border-width:0px;
  9393. position:absolute;
  9394. left:0px;
  9395. top:0px;
  9396. width:84px;
  9397. height:20px;
  9398. background:inherit;
  9399. background-color:rgba(255, 255, 255, 0);
  9400. border:none;
  9401. border-radius:0px;
  9402. -moz-box-shadow:none;
  9403. -webkit-box-shadow:none;
  9404. box-shadow:none;
  9405. }
  9406. #u13059 {
  9407. border-width:0px;
  9408. position:absolute;
  9409. left:22px;
  9410. top:0px;
  9411. width:84px;
  9412. height:20px;
  9413. display:flex;
  9414. }
  9415. #u13059 .text {
  9416. position:absolute;
  9417. align-self:center;
  9418. padding:2px 2px 2px 3px;
  9419. box-sizing:border-box;
  9420. width:100%;
  9421. }
  9422. #u13059_text {
  9423. border-width:0px;
  9424. white-space:nowrap;
  9425. text-transform:none;
  9426. }
  9427. #u13057_children {
  9428. border-width:0px;
  9429. position:absolute;
  9430. left:0px;
  9431. top:0px;
  9432. width:0px;
  9433. height:0px;
  9434. }
  9435. #u13060 {
  9436. border-width:0px;
  9437. position:absolute;
  9438. left:20px;
  9439. top:20px;
  9440. width:106px;
  9441. height:20px;
  9442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9443. font-weight:400;
  9444. font-style:normal;
  9445. }
  9446. #u13061_div {
  9447. border-width:0px;
  9448. position:absolute;
  9449. left:0px;
  9450. top:0px;
  9451. width:84px;
  9452. height:20px;
  9453. background:inherit;
  9454. background-color:rgba(255, 255, 255, 0);
  9455. border:none;
  9456. border-radius:0px;
  9457. -moz-box-shadow:none;
  9458. -webkit-box-shadow:none;
  9459. box-shadow:none;
  9460. }
  9461. #u13061 {
  9462. border-width:0px;
  9463. position:absolute;
  9464. left:22px;
  9465. top:0px;
  9466. width:84px;
  9467. height:20px;
  9468. display:flex;
  9469. }
  9470. #u13061 .text {
  9471. position:absolute;
  9472. align-self:center;
  9473. padding:2px 2px 2px 3px;
  9474. box-sizing:border-box;
  9475. width:100%;
  9476. }
  9477. #u13061_text {
  9478. border-width:0px;
  9479. white-space:nowrap;
  9480. text-transform:none;
  9481. }
  9482. #u13062 {
  9483. border-width:0px;
  9484. position:absolute;
  9485. left:20px;
  9486. top:40px;
  9487. width:106px;
  9488. height:20px;
  9489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9490. font-weight:400;
  9491. font-style:normal;
  9492. }
  9493. #u13063_div {
  9494. border-width:0px;
  9495. position:absolute;
  9496. left:0px;
  9497. top:0px;
  9498. width:84px;
  9499. height:20px;
  9500. background:inherit;
  9501. background-color:rgba(255, 255, 255, 0);
  9502. border:none;
  9503. border-radius:0px;
  9504. -moz-box-shadow:none;
  9505. -webkit-box-shadow:none;
  9506. box-shadow:none;
  9507. }
  9508. #u13063 {
  9509. border-width:0px;
  9510. position:absolute;
  9511. left:22px;
  9512. top:0px;
  9513. width:84px;
  9514. height:20px;
  9515. display:flex;
  9516. }
  9517. #u13063 .text {
  9518. position:absolute;
  9519. align-self:center;
  9520. padding:2px 2px 2px 3px;
  9521. box-sizing:border-box;
  9522. width:100%;
  9523. }
  9524. #u13063_text {
  9525. border-width:0px;
  9526. white-space:nowrap;
  9527. text-transform:none;
  9528. }
  9529. #u13064 {
  9530. border-width:0px;
  9531. position:absolute;
  9532. left:20px;
  9533. top:80px;
  9534. width:106px;
  9535. height:20px;
  9536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9537. font-weight:400;
  9538. font-style:normal;
  9539. }
  9540. #u13065_div {
  9541. border-width:0px;
  9542. position:absolute;
  9543. left:0px;
  9544. top:0px;
  9545. width:84px;
  9546. height:20px;
  9547. background:inherit;
  9548. background-color:rgba(255, 255, 255, 0);
  9549. border:none;
  9550. border-radius:0px;
  9551. -moz-box-shadow:none;
  9552. -webkit-box-shadow:none;
  9553. box-shadow:none;
  9554. }
  9555. #u13065 {
  9556. border-width:0px;
  9557. position:absolute;
  9558. left:22px;
  9559. top:0px;
  9560. width:84px;
  9561. height:20px;
  9562. display:flex;
  9563. }
  9564. #u13065 .text {
  9565. position:absolute;
  9566. align-self:center;
  9567. padding:2px 2px 2px 3px;
  9568. box-sizing:border-box;
  9569. width:100%;
  9570. }
  9571. #u13065_text {
  9572. border-width:0px;
  9573. white-space:nowrap;
  9574. text-transform:none;
  9575. }
  9576. #u13066 {
  9577. border-width:0px;
  9578. position:absolute;
  9579. left:20px;
  9580. top:100px;
  9581. width:106px;
  9582. height:20px;
  9583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9584. font-weight:400;
  9585. font-style:normal;
  9586. }
  9587. #u13067_div {
  9588. border-width:0px;
  9589. position:absolute;
  9590. left:0px;
  9591. top:0px;
  9592. width:84px;
  9593. height:20px;
  9594. background:inherit;
  9595. background-color:rgba(255, 255, 255, 0);
  9596. border:none;
  9597. border-radius:0px;
  9598. -moz-box-shadow:none;
  9599. -webkit-box-shadow:none;
  9600. box-shadow:none;
  9601. }
  9602. #u13067 {
  9603. border-width:0px;
  9604. position:absolute;
  9605. left:22px;
  9606. top:0px;
  9607. width:84px;
  9608. height:20px;
  9609. display:flex;
  9610. }
  9611. #u13067 .text {
  9612. position:absolute;
  9613. align-self:center;
  9614. padding:2px 2px 2px 3px;
  9615. box-sizing:border-box;
  9616. width:100%;
  9617. }
  9618. #u13067_text {
  9619. border-width:0px;
  9620. white-space:nowrap;
  9621. text-transform:none;
  9622. }
  9623. #u13068 {
  9624. border-width:0px;
  9625. position:absolute;
  9626. left:0px;
  9627. top:120px;
  9628. width:106px;
  9629. height:20px;
  9630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9631. font-weight:400;
  9632. font-style:normal;
  9633. }
  9634. #u13069_img {
  9635. border-width:0px;
  9636. position:absolute;
  9637. left:0px;
  9638. top:0px;
  9639. width:9px;
  9640. height:9px;
  9641. }
  9642. #u13069 {
  9643. border-width:0px;
  9644. position:absolute;
  9645. left:6px;
  9646. top:6px;
  9647. width:9px;
  9648. height:9px;
  9649. display:flex;
  9650. }
  9651. #u13069 .text {
  9652. position:absolute;
  9653. align-self:center;
  9654. padding:2px 2px 2px 2px;
  9655. box-sizing:border-box;
  9656. width:100%;
  9657. }
  9658. #u13069_img.selected {
  9659. }
  9660. #u13069.selected {
  9661. }
  9662. #u13069_text {
  9663. border-width:0px;
  9664. word-wrap:break-word;
  9665. text-transform:none;
  9666. visibility:hidden;
  9667. }
  9668. #u13070_div {
  9669. border-width:0px;
  9670. position:absolute;
  9671. left:0px;
  9672. top:0px;
  9673. width:84px;
  9674. height:20px;
  9675. background:inherit;
  9676. background-color:rgba(255, 255, 255, 0);
  9677. border:none;
  9678. border-radius:0px;
  9679. -moz-box-shadow:none;
  9680. -webkit-box-shadow:none;
  9681. box-shadow:none;
  9682. }
  9683. #u13070 {
  9684. border-width:0px;
  9685. position:absolute;
  9686. left:22px;
  9687. top:0px;
  9688. width:84px;
  9689. height:20px;
  9690. display:flex;
  9691. }
  9692. #u13070 .text {
  9693. position:absolute;
  9694. align-self:center;
  9695. padding:2px 2px 2px 3px;
  9696. box-sizing:border-box;
  9697. width:100%;
  9698. }
  9699. #u13070_text {
  9700. border-width:0px;
  9701. white-space:nowrap;
  9702. text-transform:none;
  9703. }
  9704. #u13068_children {
  9705. border-width:0px;
  9706. position:absolute;
  9707. left:0px;
  9708. top:0px;
  9709. width:0px;
  9710. height:0px;
  9711. }
  9712. #u13071 {
  9713. border-width:0px;
  9714. position:absolute;
  9715. left:20px;
  9716. top:20px;
  9717. width:97px;
  9718. height:20px;
  9719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9720. font-weight:400;
  9721. font-style:normal;
  9722. }
  9723. #u13072_div {
  9724. border-width:0px;
  9725. position:absolute;
  9726. left:0px;
  9727. top:0px;
  9728. width:75px;
  9729. height:20px;
  9730. background:inherit;
  9731. background-color:rgba(255, 255, 255, 0);
  9732. border:none;
  9733. border-radius:0px;
  9734. -moz-box-shadow:none;
  9735. -webkit-box-shadow:none;
  9736. box-shadow:none;
  9737. }
  9738. #u13072 {
  9739. border-width:0px;
  9740. position:absolute;
  9741. left:22px;
  9742. top:0px;
  9743. width:75px;
  9744. height:20px;
  9745. display:flex;
  9746. }
  9747. #u13072 .text {
  9748. position:absolute;
  9749. align-self:center;
  9750. padding:2px 2px 2px 3px;
  9751. box-sizing:border-box;
  9752. width:100%;
  9753. }
  9754. #u13072_text {
  9755. border-width:0px;
  9756. white-space:nowrap;
  9757. text-transform:none;
  9758. }
  9759. #u13073 label {
  9760. left:0px;
  9761. width:100%;
  9762. }
  9763. #u13073_img {
  9764. border-width:0px;
  9765. position:absolute;
  9766. left:0px;
  9767. top:3px;
  9768. width:12px;
  9769. height:12px;
  9770. }
  9771. #u13073 {
  9772. border-width:0px;
  9773. position:absolute;
  9774. left:3112px;
  9775. top:954px;
  9776. width:100px;
  9777. height:18px;
  9778. display:flex;
  9779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9780. font-weight:400;
  9781. font-style:normal;
  9782. }
  9783. #u13073 .text {
  9784. position:absolute;
  9785. align-self:center;
  9786. padding:0px 2px 0px 2px;
  9787. box-sizing:border-box;
  9788. }
  9789. #u13073_img.selected {
  9790. }
  9791. #u13073.selected {
  9792. }
  9793. #u13073_img.disabled {
  9794. }
  9795. #u13073.disabled {
  9796. }
  9797. #u13073_img.selectedDisabled {
  9798. }
  9799. #u13073.selectedDisabled {
  9800. }
  9801. #u13073_text {
  9802. border-width:0px;
  9803. position:absolute;
  9804. left:14px;
  9805. top:0px;
  9806. width:84px;
  9807. word-wrap:break-word;
  9808. text-transform:none;
  9809. }
  9810. #u13073_input {
  9811. border-width:0px;
  9812. position:absolute;
  9813. left:0px;
  9814. top:0px;
  9815. width:0px;
  9816. height:0px;
  9817. opacity:0;
  9818. }
  9819. #u13074 label {
  9820. left:0px;
  9821. width:100%;
  9822. }
  9823. #u13074_img {
  9824. border-width:0px;
  9825. position:absolute;
  9826. left:0px;
  9827. top:3px;
  9828. width:12px;
  9829. height:12px;
  9830. }
  9831. #u13074 {
  9832. border-width:0px;
  9833. position:absolute;
  9834. left:3128px;
  9835. top:989px;
  9836. width:100px;
  9837. height:18px;
  9838. display:flex;
  9839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9840. font-weight:400;
  9841. font-style:normal;
  9842. }
  9843. #u13074 .text {
  9844. position:absolute;
  9845. align-self:center;
  9846. padding:0px 2px 0px 2px;
  9847. box-sizing:border-box;
  9848. }
  9849. #u13074_img.selected {
  9850. }
  9851. #u13074.selected {
  9852. }
  9853. #u13074_img.disabled {
  9854. }
  9855. #u13074.disabled {
  9856. }
  9857. #u13074_img.selectedDisabled {
  9858. }
  9859. #u13074.selectedDisabled {
  9860. }
  9861. #u13074_text {
  9862. border-width:0px;
  9863. position:absolute;
  9864. left:14px;
  9865. top:0px;
  9866. width:84px;
  9867. word-wrap:break-word;
  9868. text-transform:none;
  9869. }
  9870. #u13074_input {
  9871. border-width:0px;
  9872. position:absolute;
  9873. left:0px;
  9874. top:0px;
  9875. width:0px;
  9876. height:0px;
  9877. opacity:0;
  9878. }
  9879. #u13075 label {
  9880. left:0px;
  9881. width:100%;
  9882. }
  9883. #u13075_img {
  9884. border-width:0px;
  9885. position:absolute;
  9886. left:0px;
  9887. top:3px;
  9888. width:12px;
  9889. height:12px;
  9890. }
  9891. #u13075 {
  9892. border-width:0px;
  9893. position:absolute;
  9894. left:3145px;
  9895. top:1021px;
  9896. width:100px;
  9897. height:18px;
  9898. display:flex;
  9899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9900. font-weight:400;
  9901. font-style:normal;
  9902. }
  9903. #u13075 .text {
  9904. position:absolute;
  9905. align-self:center;
  9906. padding:0px 2px 0px 2px;
  9907. box-sizing:border-box;
  9908. }
  9909. #u13075_img.selected {
  9910. }
  9911. #u13075.selected {
  9912. }
  9913. #u13075_img.disabled {
  9914. }
  9915. #u13075.disabled {
  9916. }
  9917. #u13075_img.selectedDisabled {
  9918. }
  9919. #u13075.selectedDisabled {
  9920. }
  9921. #u13075_text {
  9922. border-width:0px;
  9923. position:absolute;
  9924. left:14px;
  9925. top:0px;
  9926. width:84px;
  9927. word-wrap:break-word;
  9928. text-transform:none;
  9929. }
  9930. #u13075_input {
  9931. border-width:0px;
  9932. position:absolute;
  9933. left:0px;
  9934. top:0px;
  9935. width:0px;
  9936. height:0px;
  9937. opacity:0;
  9938. }
  9939. #u13076 label {
  9940. left:0px;
  9941. width:100%;
  9942. }
  9943. #u13076_img {
  9944. border-width:0px;
  9945. position:absolute;
  9946. left:0px;
  9947. top:3px;
  9948. width:12px;
  9949. height:12px;
  9950. }
  9951. #u13076 {
  9952. border-width:0px;
  9953. position:absolute;
  9954. left:3145px;
  9955. top:1051px;
  9956. width:100px;
  9957. height:18px;
  9958. display:flex;
  9959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9960. font-weight:400;
  9961. font-style:normal;
  9962. }
  9963. #u13076 .text {
  9964. position:absolute;
  9965. align-self:center;
  9966. padding:0px 2px 0px 2px;
  9967. box-sizing:border-box;
  9968. }
  9969. #u13076_img.selected {
  9970. }
  9971. #u13076.selected {
  9972. }
  9973. #u13076_img.disabled {
  9974. }
  9975. #u13076.disabled {
  9976. }
  9977. #u13076_img.selectedDisabled {
  9978. }
  9979. #u13076.selectedDisabled {
  9980. }
  9981. #u13076_text {
  9982. border-width:0px;
  9983. position:absolute;
  9984. left:14px;
  9985. top:0px;
  9986. width:84px;
  9987. word-wrap:break-word;
  9988. text-transform:none;
  9989. }
  9990. #u13076_input {
  9991. border-width:0px;
  9992. position:absolute;
  9993. left:0px;
  9994. top:0px;
  9995. width:0px;
  9996. height:0px;
  9997. opacity:0;
  9998. }
  9999. #u13077 label {
  10000. left:0px;
  10001. width:100%;
  10002. }
  10003. #u13077_img {
  10004. border-width:0px;
  10005. position:absolute;
  10006. left:0px;
  10007. top:3px;
  10008. width:12px;
  10009. height:12px;
  10010. }
  10011. #u13077 {
  10012. border-width:0px;
  10013. position:absolute;
  10014. left:3145px;
  10015. top:1083px;
  10016. width:100px;
  10017. height:18px;
  10018. display:flex;
  10019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10020. font-weight:400;
  10021. font-style:normal;
  10022. }
  10023. #u13077 .text {
  10024. position:absolute;
  10025. align-self:center;
  10026. padding:0px 2px 0px 2px;
  10027. box-sizing:border-box;
  10028. }
  10029. #u13077_img.selected {
  10030. }
  10031. #u13077.selected {
  10032. }
  10033. #u13077_img.disabled {
  10034. }
  10035. #u13077.disabled {
  10036. }
  10037. #u13077_img.selectedDisabled {
  10038. }
  10039. #u13077.selectedDisabled {
  10040. }
  10041. #u13077_text {
  10042. border-width:0px;
  10043. position:absolute;
  10044. left:14px;
  10045. top:0px;
  10046. width:84px;
  10047. word-wrap:break-word;
  10048. text-transform:none;
  10049. }
  10050. #u13077_input {
  10051. border-width:0px;
  10052. position:absolute;
  10053. left:0px;
  10054. top:0px;
  10055. width:0px;
  10056. height:0px;
  10057. opacity:0;
  10058. }
  10059. #u13078 label {
  10060. left:0px;
  10061. width:100%;
  10062. }
  10063. #u13078_img {
  10064. border-width:0px;
  10065. position:absolute;
  10066. left:0px;
  10067. top:3px;
  10068. width:12px;
  10069. height:12px;
  10070. }
  10071. #u13078 {
  10072. border-width:0px;
  10073. position:absolute;
  10074. left:3128px;
  10075. top:1117px;
  10076. width:100px;
  10077. height:18px;
  10078. display:flex;
  10079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10080. font-weight:400;
  10081. font-style:normal;
  10082. }
  10083. #u13078 .text {
  10084. position:absolute;
  10085. align-self:center;
  10086. padding:0px 2px 0px 2px;
  10087. box-sizing:border-box;
  10088. }
  10089. #u13078_img.selected {
  10090. }
  10091. #u13078.selected {
  10092. }
  10093. #u13078_img.disabled {
  10094. }
  10095. #u13078.disabled {
  10096. }
  10097. #u13078_img.selectedDisabled {
  10098. }
  10099. #u13078.selectedDisabled {
  10100. }
  10101. #u13078_text {
  10102. border-width:0px;
  10103. position:absolute;
  10104. left:14px;
  10105. top:0px;
  10106. width:84px;
  10107. word-wrap:break-word;
  10108. text-transform:none;
  10109. }
  10110. #u13078_input {
  10111. border-width:0px;
  10112. position:absolute;
  10113. left:0px;
  10114. top:0px;
  10115. width:0px;
  10116. height:0px;
  10117. opacity:0;
  10118. }
  10119. #u13079 label {
  10120. left:0px;
  10121. width:100%;
  10122. }
  10123. #u13079_img {
  10124. border-width:0px;
  10125. position:absolute;
  10126. left:0px;
  10127. top:3px;
  10128. width:12px;
  10129. height:12px;
  10130. }
  10131. #u13079 {
  10132. border-width:0px;
  10133. position:absolute;
  10134. left:3145px;
  10135. top:1149px;
  10136. width:100px;
  10137. height:18px;
  10138. display:flex;
  10139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10140. font-weight:400;
  10141. font-style:normal;
  10142. }
  10143. #u13079 .text {
  10144. position:absolute;
  10145. align-self:center;
  10146. padding:0px 2px 0px 2px;
  10147. box-sizing:border-box;
  10148. }
  10149. #u13079_img.selected {
  10150. }
  10151. #u13079.selected {
  10152. }
  10153. #u13079_img.disabled {
  10154. }
  10155. #u13079.disabled {
  10156. }
  10157. #u13079_img.selectedDisabled {
  10158. }
  10159. #u13079.selectedDisabled {
  10160. }
  10161. #u13079_text {
  10162. border-width:0px;
  10163. position:absolute;
  10164. left:14px;
  10165. top:0px;
  10166. width:84px;
  10167. word-wrap:break-word;
  10168. text-transform:none;
  10169. }
  10170. #u13079_input {
  10171. border-width:0px;
  10172. position:absolute;
  10173. left:0px;
  10174. top:0px;
  10175. width:0px;
  10176. height:0px;
  10177. opacity:0;
  10178. }
  10179. #u13080 label {
  10180. left:0px;
  10181. width:100%;
  10182. }
  10183. #u13080_img {
  10184. border-width:0px;
  10185. position:absolute;
  10186. left:0px;
  10187. top:3px;
  10188. width:12px;
  10189. height:12px;
  10190. }
  10191. #u13080 {
  10192. border-width:0px;
  10193. position:absolute;
  10194. left:3145px;
  10195. top:1179px;
  10196. width:100px;
  10197. height:18px;
  10198. display:flex;
  10199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10200. font-weight:400;
  10201. font-style:normal;
  10202. }
  10203. #u13080 .text {
  10204. position:absolute;
  10205. align-self:center;
  10206. padding:0px 2px 0px 2px;
  10207. box-sizing:border-box;
  10208. }
  10209. #u13080_img.selected {
  10210. }
  10211. #u13080.selected {
  10212. }
  10213. #u13080_img.disabled {
  10214. }
  10215. #u13080.disabled {
  10216. }
  10217. #u13080_img.selectedDisabled {
  10218. }
  10219. #u13080.selectedDisabled {
  10220. }
  10221. #u13080_text {
  10222. border-width:0px;
  10223. position:absolute;
  10224. left:14px;
  10225. top:0px;
  10226. width:84px;
  10227. word-wrap:break-word;
  10228. text-transform:none;
  10229. }
  10230. #u13080_input {
  10231. border-width:0px;
  10232. position:absolute;
  10233. left:0px;
  10234. top:0px;
  10235. width:0px;
  10236. height:0px;
  10237. opacity:0;
  10238. }
  10239. #u13081 label {
  10240. left:0px;
  10241. width:100%;
  10242. }
  10243. #u13081_img {
  10244. border-width:0px;
  10245. position:absolute;
  10246. left:0px;
  10247. top:3px;
  10248. width:12px;
  10249. height:12px;
  10250. }
  10251. #u13081 {
  10252. border-width:0px;
  10253. position:absolute;
  10254. left:3145px;
  10255. top:1211px;
  10256. width:100px;
  10257. height:18px;
  10258. display:flex;
  10259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10260. font-weight:400;
  10261. font-style:normal;
  10262. }
  10263. #u13081 .text {
  10264. position:absolute;
  10265. align-self:center;
  10266. padding:0px 2px 0px 2px;
  10267. box-sizing:border-box;
  10268. }
  10269. #u13081_img.selected {
  10270. }
  10271. #u13081.selected {
  10272. }
  10273. #u13081_img.disabled {
  10274. }
  10275. #u13081.disabled {
  10276. }
  10277. #u13081_img.selectedDisabled {
  10278. }
  10279. #u13081.selectedDisabled {
  10280. }
  10281. #u13081_text {
  10282. border-width:0px;
  10283. position:absolute;
  10284. left:14px;
  10285. top:0px;
  10286. width:84px;
  10287. word-wrap:break-word;
  10288. text-transform:none;
  10289. }
  10290. #u13081_input {
  10291. border-width:0px;
  10292. position:absolute;
  10293. left:0px;
  10294. top:0px;
  10295. width:0px;
  10296. height:0px;
  10297. opacity:0;
  10298. }
  10299. #u13082 label {
  10300. left:0px;
  10301. width:100%;
  10302. }
  10303. #u13082_img {
  10304. border-width:0px;
  10305. position:absolute;
  10306. left:0px;
  10307. top:3px;
  10308. width:12px;
  10309. height:12px;
  10310. }
  10311. #u13082 {
  10312. border-width:0px;
  10313. position:absolute;
  10314. left:3112px;
  10315. top:1240px;
  10316. width:100px;
  10317. height:18px;
  10318. display:flex;
  10319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10320. font-weight:400;
  10321. font-style:normal;
  10322. }
  10323. #u13082 .text {
  10324. position:absolute;
  10325. align-self:center;
  10326. padding:0px 2px 0px 2px;
  10327. box-sizing:border-box;
  10328. }
  10329. #u13082_img.selected {
  10330. }
  10331. #u13082.selected {
  10332. }
  10333. #u13082_img.disabled {
  10334. }
  10335. #u13082.disabled {
  10336. }
  10337. #u13082_img.selectedDisabled {
  10338. }
  10339. #u13082.selectedDisabled {
  10340. }
  10341. #u13082_text {
  10342. border-width:0px;
  10343. position:absolute;
  10344. left:14px;
  10345. top:0px;
  10346. width:84px;
  10347. word-wrap:break-word;
  10348. text-transform:none;
  10349. }
  10350. #u13082_input {
  10351. border-width:0px;
  10352. position:absolute;
  10353. left:0px;
  10354. top:0px;
  10355. width:0px;
  10356. height:0px;
  10357. opacity:0;
  10358. }
  10359. #u13083 label {
  10360. left:0px;
  10361. width:100%;
  10362. }
  10363. #u13083_img {
  10364. border-width:0px;
  10365. position:absolute;
  10366. left:0px;
  10367. top:3px;
  10368. width:12px;
  10369. height:12px;
  10370. }
  10371. #u13083 {
  10372. border-width:0px;
  10373. position:absolute;
  10374. left:3112px;
  10375. top:1271px;
  10376. width:100px;
  10377. height:18px;
  10378. display:flex;
  10379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10380. font-weight:400;
  10381. font-style:normal;
  10382. }
  10383. #u13083 .text {
  10384. position:absolute;
  10385. align-self:center;
  10386. padding:0px 2px 0px 2px;
  10387. box-sizing:border-box;
  10388. }
  10389. #u13083_img.selected {
  10390. }
  10391. #u13083.selected {
  10392. }
  10393. #u13083_img.disabled {
  10394. }
  10395. #u13083.disabled {
  10396. }
  10397. #u13083_img.selectedDisabled {
  10398. }
  10399. #u13083.selectedDisabled {
  10400. }
  10401. #u13083_text {
  10402. border-width:0px;
  10403. position:absolute;
  10404. left:14px;
  10405. top:0px;
  10406. width:84px;
  10407. word-wrap:break-word;
  10408. text-transform:none;
  10409. }
  10410. #u13083_input {
  10411. border-width:0px;
  10412. position:absolute;
  10413. left:0px;
  10414. top:0px;
  10415. width:0px;
  10416. height:0px;
  10417. opacity:0;
  10418. }
  10419. #u13084_img {
  10420. border-width:0px;
  10421. position:absolute;
  10422. left:0px;
  10423. top:0px;
  10424. width:2px;
  10425. height:761px;
  10426. }
  10427. #u13084 {
  10428. border-width:0px;
  10429. position:absolute;
  10430. left:3073px;
  10431. top:958px;
  10432. width:1px;
  10433. height:760px;
  10434. display:flex;
  10435. }
  10436. #u13084 .text {
  10437. position:absolute;
  10438. align-self:center;
  10439. padding:2px 2px 2px 2px;
  10440. box-sizing:border-box;
  10441. width:100%;
  10442. }
  10443. #u13084_text {
  10444. border-width:0px;
  10445. word-wrap:break-word;
  10446. text-transform:none;
  10447. visibility:hidden;
  10448. }
  10449. #u13085_div {
  10450. border-width:0px;
  10451. position:absolute;
  10452. left:0px;
  10453. top:0px;
  10454. width:91px;
  10455. height:25px;
  10456. background:inherit;
  10457. background-color:rgba(242, 242, 242, 0);
  10458. border:none;
  10459. border-left:0px;
  10460. border-top:0px;
  10461. border-right:0px;
  10462. border-radius:0px;
  10463. border-bottom-right-radius:0px;
  10464. border-bottom-left-radius:0px;
  10465. -moz-box-shadow:none;
  10466. -webkit-box-shadow:none;
  10467. box-shadow:none;
  10468. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10469. font-weight:500;
  10470. font-style:normal;
  10471. font-size:18px;
  10472. }
  10473. #u13085 {
  10474. border-width:0px;
  10475. position:absolute;
  10476. left:3352px;
  10477. top:884px;
  10478. width:91px;
  10479. height:25px;
  10480. display:flex;
  10481. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10482. font-weight:500;
  10483. font-style:normal;
  10484. font-size:18px;
  10485. }
  10486. #u13085 .text {
  10487. position:absolute;
  10488. align-self:center;
  10489. padding:0px 0px 0px 0px;
  10490. box-sizing:border-box;
  10491. width:100%;
  10492. }
  10493. #u13085_text {
  10494. border-width:0px;
  10495. white-space:nowrap;
  10496. text-transform:none;
  10497. }
  10498. #u13086 {
  10499. border-width:0px;
  10500. position:absolute;
  10501. left:0px;
  10502. top:0px;
  10503. width:0px;
  10504. height:0px;
  10505. }
  10506. #u13087_div {
  10507. border-width:0px;
  10508. position:absolute;
  10509. left:0px;
  10510. top:0px;
  10511. width:790px;
  10512. height:48px;
  10513. background:inherit;
  10514. background-color:rgba(242, 242, 242, 1);
  10515. border:none;
  10516. border-radius:0px;
  10517. -moz-box-shadow:none;
  10518. -webkit-box-shadow:none;
  10519. box-shadow:none;
  10520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10521. font-weight:400;
  10522. font-style:normal;
  10523. text-align:left;
  10524. }
  10525. #u13087 {
  10526. border-width:0px;
  10527. position:absolute;
  10528. left:3352px;
  10529. top:924px;
  10530. width:790px;
  10531. height:48px;
  10532. display:flex;
  10533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10534. font-weight:400;
  10535. font-style:normal;
  10536. text-align:left;
  10537. }
  10538. #u13087 .text {
  10539. position:absolute;
  10540. align-self:center;
  10541. padding:2px 2px 2px 30px;
  10542. box-sizing:border-box;
  10543. width:100%;
  10544. }
  10545. #u13087_text {
  10546. border-width:0px;
  10547. word-wrap:break-word;
  10548. text-transform:none;
  10549. }
  10550. #u13088_div {
  10551. border-width:0px;
  10552. position:absolute;
  10553. left:0px;
  10554. top:0px;
  10555. width:79px;
  10556. height:17px;
  10557. background:inherit;
  10558. background-color:rgba(242, 242, 242, 0);
  10559. border:none;
  10560. border-left:0px;
  10561. border-top:0px;
  10562. border-right:0px;
  10563. border-radius:0px;
  10564. border-bottom-right-radius:0px;
  10565. border-bottom-left-radius:0px;
  10566. -moz-box-shadow:none;
  10567. -webkit-box-shadow:none;
  10568. box-shadow:none;
  10569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10570. font-weight:400;
  10571. font-style:normal;
  10572. font-size:12px;
  10573. }
  10574. #u13088 {
  10575. border-width:0px;
  10576. position:absolute;
  10577. left:4045px;
  10578. top:940px;
  10579. width:79px;
  10580. height:17px;
  10581. display:flex;
  10582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10583. font-weight:400;
  10584. font-style:normal;
  10585. font-size:12px;
  10586. }
  10587. #u13088 .text {
  10588. position:absolute;
  10589. align-self:center;
  10590. padding:0px 0px 0px 30px;
  10591. box-sizing:border-box;
  10592. width:100%;
  10593. }
  10594. #u13088_text {
  10595. border-width:0px;
  10596. white-space:nowrap;
  10597. text-transform:none;
  10598. }
  10599. #u13089 {
  10600. border-width:0px;
  10601. position:absolute;
  10602. left:0px;
  10603. top:0px;
  10604. width:0px;
  10605. height:0px;
  10606. }
  10607. #u13090_div {
  10608. border-width:0px;
  10609. position:absolute;
  10610. left:0px;
  10611. top:0px;
  10612. width:790px;
  10613. height:48px;
  10614. background:inherit;
  10615. background-color:rgba(255, 255, 255, 1);
  10616. border:none;
  10617. border-radius:0px;
  10618. -moz-box-shadow:none;
  10619. -webkit-box-shadow:none;
  10620. box-shadow:none;
  10621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10622. font-weight:400;
  10623. font-style:normal;
  10624. text-align:left;
  10625. }
  10626. #u13090 {
  10627. border-width:0px;
  10628. position:absolute;
  10629. left:3352px;
  10630. top:973px;
  10631. width:790px;
  10632. height:48px;
  10633. display:flex;
  10634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10635. font-weight:400;
  10636. font-style:normal;
  10637. text-align:left;
  10638. }
  10639. #u13090 .text {
  10640. position:absolute;
  10641. align-self:center;
  10642. padding:2px 2px 2px 30px;
  10643. box-sizing:border-box;
  10644. width:100%;
  10645. }
  10646. #u13090_text {
  10647. border-width:0px;
  10648. word-wrap:break-word;
  10649. text-transform:none;
  10650. }
  10651. #u13091_div {
  10652. border-width:0px;
  10653. position:absolute;
  10654. left:0px;
  10655. top:0px;
  10656. width:79px;
  10657. height:17px;
  10658. background:inherit;
  10659. background-color:rgba(242, 242, 242, 0);
  10660. border:none;
  10661. border-left:0px;
  10662. border-top:0px;
  10663. border-right:0px;
  10664. border-radius:0px;
  10665. border-bottom-right-radius:0px;
  10666. border-bottom-left-radius:0px;
  10667. -moz-box-shadow:none;
  10668. -webkit-box-shadow:none;
  10669. box-shadow:none;
  10670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10671. font-weight:400;
  10672. font-style:normal;
  10673. font-size:12px;
  10674. }
  10675. #u13091 {
  10676. border-width:0px;
  10677. position:absolute;
  10678. left:4045px;
  10679. top:989px;
  10680. width:79px;
  10681. height:17px;
  10682. display:flex;
  10683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10684. font-weight:400;
  10685. font-style:normal;
  10686. font-size:12px;
  10687. }
  10688. #u13091 .text {
  10689. position:absolute;
  10690. align-self:center;
  10691. padding:0px 0px 0px 30px;
  10692. box-sizing:border-box;
  10693. width:100%;
  10694. }
  10695. #u13091_text {
  10696. border-width:0px;
  10697. white-space:nowrap;
  10698. text-transform:none;
  10699. }
  10700. #u13092 {
  10701. border-width:0px;
  10702. position:absolute;
  10703. left:0px;
  10704. top:0px;
  10705. width:0px;
  10706. height:0px;
  10707. }
  10708. #u13093_div {
  10709. border-width:0px;
  10710. position:absolute;
  10711. left:0px;
  10712. top:0px;
  10713. width:790px;
  10714. height:48px;
  10715. background:inherit;
  10716. background-color:rgba(255, 255, 255, 1);
  10717. border:none;
  10718. border-radius:0px;
  10719. -moz-box-shadow:none;
  10720. -webkit-box-shadow:none;
  10721. box-shadow:none;
  10722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10723. font-weight:400;
  10724. font-style:normal;
  10725. text-align:left;
  10726. }
  10727. #u13093 {
  10728. border-width:0px;
  10729. position:absolute;
  10730. left:3352px;
  10731. top:1022px;
  10732. width:790px;
  10733. height:48px;
  10734. display:flex;
  10735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10736. font-weight:400;
  10737. font-style:normal;
  10738. text-align:left;
  10739. }
  10740. #u13093 .text {
  10741. position:absolute;
  10742. align-self:center;
  10743. padding:2px 2px 2px 30px;
  10744. box-sizing:border-box;
  10745. width:100%;
  10746. }
  10747. #u13093_text {
  10748. border-width:0px;
  10749. word-wrap:break-word;
  10750. text-transform:none;
  10751. }
  10752. #u13094_div {
  10753. border-width:0px;
  10754. position:absolute;
  10755. left:0px;
  10756. top:0px;
  10757. width:79px;
  10758. height:17px;
  10759. background:inherit;
  10760. background-color:rgba(242, 242, 242, 0);
  10761. border:none;
  10762. border-left:0px;
  10763. border-top:0px;
  10764. border-right:0px;
  10765. border-radius:0px;
  10766. border-bottom-right-radius:0px;
  10767. border-bottom-left-radius:0px;
  10768. -moz-box-shadow:none;
  10769. -webkit-box-shadow:none;
  10770. box-shadow:none;
  10771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10772. font-weight:400;
  10773. font-style:normal;
  10774. font-size:12px;
  10775. }
  10776. #u13094 {
  10777. border-width:0px;
  10778. position:absolute;
  10779. left:4045px;
  10780. top:1038px;
  10781. width:79px;
  10782. height:17px;
  10783. display:flex;
  10784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10785. font-weight:400;
  10786. font-style:normal;
  10787. font-size:12px;
  10788. }
  10789. #u13094 .text {
  10790. position:absolute;
  10791. align-self:center;
  10792. padding:0px 0px 0px 30px;
  10793. box-sizing:border-box;
  10794. width:100%;
  10795. }
  10796. #u13094_text {
  10797. border-width:0px;
  10798. white-space:nowrap;
  10799. text-transform:none;
  10800. }
  10801. #u13095 {
  10802. border-width:0px;
  10803. position:absolute;
  10804. left:0px;
  10805. top:0px;
  10806. width:0px;
  10807. height:0px;
  10808. }
  10809. #u13096_div {
  10810. border-width:0px;
  10811. position:absolute;
  10812. left:0px;
  10813. top:0px;
  10814. width:790px;
  10815. height:48px;
  10816. background:inherit;
  10817. background-color:rgba(255, 255, 255, 1);
  10818. border:none;
  10819. border-radius:0px;
  10820. -moz-box-shadow:none;
  10821. -webkit-box-shadow:none;
  10822. box-shadow:none;
  10823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10824. font-weight:400;
  10825. font-style:normal;
  10826. text-align:left;
  10827. }
  10828. #u13096 {
  10829. border-width:0px;
  10830. position:absolute;
  10831. left:3352px;
  10832. top:1071px;
  10833. width:790px;
  10834. height:48px;
  10835. display:flex;
  10836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10837. font-weight:400;
  10838. font-style:normal;
  10839. text-align:left;
  10840. }
  10841. #u13096 .text {
  10842. position:absolute;
  10843. align-self:center;
  10844. padding:2px 2px 2px 30px;
  10845. box-sizing:border-box;
  10846. width:100%;
  10847. }
  10848. #u13096_text {
  10849. border-width:0px;
  10850. word-wrap:break-word;
  10851. text-transform:none;
  10852. }
  10853. #u13097_div {
  10854. border-width:0px;
  10855. position:absolute;
  10856. left:0px;
  10857. top:0px;
  10858. width:79px;
  10859. height:17px;
  10860. background:inherit;
  10861. background-color:rgba(242, 242, 242, 0);
  10862. border:none;
  10863. border-left:0px;
  10864. border-top:0px;
  10865. border-right:0px;
  10866. border-radius:0px;
  10867. border-bottom-right-radius:0px;
  10868. border-bottom-left-radius:0px;
  10869. -moz-box-shadow:none;
  10870. -webkit-box-shadow:none;
  10871. box-shadow:none;
  10872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10873. font-weight:400;
  10874. font-style:normal;
  10875. font-size:12px;
  10876. }
  10877. #u13097 {
  10878. border-width:0px;
  10879. position:absolute;
  10880. left:4045px;
  10881. top:1087px;
  10882. width:79px;
  10883. height:17px;
  10884. display:flex;
  10885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10886. font-weight:400;
  10887. font-style:normal;
  10888. font-size:12px;
  10889. }
  10890. #u13097 .text {
  10891. position:absolute;
  10892. align-self:center;
  10893. padding:0px 0px 0px 30px;
  10894. box-sizing:border-box;
  10895. width:100%;
  10896. }
  10897. #u13097_text {
  10898. border-width:0px;
  10899. white-space:nowrap;
  10900. text-transform:none;
  10901. }
  10902. #u13098_img {
  10903. border-width:0px;
  10904. position:absolute;
  10905. left:0px;
  10906. top:0px;
  10907. width:10px;
  10908. height:7px;
  10909. }
  10910. #u13098 {
  10911. border-width:0px;
  10912. position:absolute;
  10913. left:3366px;
  10914. top:945px;
  10915. width:10px;
  10916. height:7px;
  10917. display:flex;
  10918. -webkit-transform:rotate(270deg);
  10919. -moz-transform:rotate(270deg);
  10920. -ms-transform:rotate(270deg);
  10921. transform:rotate(270deg);
  10922. }
  10923. #u13098 .text {
  10924. position:absolute;
  10925. align-self:center;
  10926. padding:2px 2px 2px 2px;
  10927. box-sizing:border-box;
  10928. width:100%;
  10929. }
  10930. #u13098_text {
  10931. border-width:0px;
  10932. word-wrap:break-word;
  10933. text-transform:none;
  10934. visibility:hidden;
  10935. }
  10936. #u13099_img {
  10937. border-width:0px;
  10938. position:absolute;
  10939. left:0px;
  10940. top:0px;
  10941. width:10px;
  10942. height:7px;
  10943. }
  10944. #u13099 {
  10945. border-width:0px;
  10946. position:absolute;
  10947. left:3366px;
  10948. top:994px;
  10949. width:10px;
  10950. height:7px;
  10951. display:flex;
  10952. -webkit-transform:rotate(270deg);
  10953. -moz-transform:rotate(270deg);
  10954. -ms-transform:rotate(270deg);
  10955. transform:rotate(270deg);
  10956. }
  10957. #u13099 .text {
  10958. position:absolute;
  10959. align-self:center;
  10960. padding:2px 2px 2px 2px;
  10961. box-sizing:border-box;
  10962. width:100%;
  10963. }
  10964. #u13099_text {
  10965. border-width:0px;
  10966. word-wrap:break-word;
  10967. text-transform:none;
  10968. visibility:hidden;
  10969. }
  10970. #u13100_img {
  10971. border-width:0px;
  10972. position:absolute;
  10973. left:0px;
  10974. top:0px;
  10975. width:10px;
  10976. height:7px;
  10977. }
  10978. #u13100 {
  10979. border-width:0px;
  10980. position:absolute;
  10981. left:3366px;
  10982. top:1043px;
  10983. width:10px;
  10984. height:7px;
  10985. display:flex;
  10986. -webkit-transform:rotate(270deg);
  10987. -moz-transform:rotate(270deg);
  10988. -ms-transform:rotate(270deg);
  10989. transform:rotate(270deg);
  10990. }
  10991. #u13100 .text {
  10992. position:absolute;
  10993. align-self:center;
  10994. padding:2px 2px 2px 2px;
  10995. box-sizing:border-box;
  10996. width:100%;
  10997. }
  10998. #u13100_text {
  10999. border-width:0px;
  11000. word-wrap:break-word;
  11001. text-transform:none;
  11002. visibility:hidden;
  11003. }
  11004. #u13101_img {
  11005. border-width:0px;
  11006. position:absolute;
  11007. left:0px;
  11008. top:0px;
  11009. width:10px;
  11010. height:7px;
  11011. }
  11012. #u13101 {
  11013. border-width:0px;
  11014. position:absolute;
  11015. left:3366px;
  11016. top:1092px;
  11017. width:10px;
  11018. height:7px;
  11019. display:flex;
  11020. -webkit-transform:rotate(270deg);
  11021. -moz-transform:rotate(270deg);
  11022. -ms-transform:rotate(270deg);
  11023. transform:rotate(270deg);
  11024. }
  11025. #u13101 .text {
  11026. position:absolute;
  11027. align-self:center;
  11028. padding:2px 2px 2px 2px;
  11029. box-sizing:border-box;
  11030. width:100%;
  11031. }
  11032. #u13101_text {
  11033. border-width:0px;
  11034. word-wrap:break-word;
  11035. text-transform:none;
  11036. visibility:hidden;
  11037. }
  11038. #u13102_div {
  11039. border-width:0px;
  11040. position:absolute;
  11041. left:0px;
  11042. top:0px;
  11043. width:139px;
  11044. height:17px;
  11045. background:inherit;
  11046. background-color:rgba(242, 242, 242, 0);
  11047. border:none;
  11048. border-left:0px;
  11049. border-top:0px;
  11050. border-right:0px;
  11051. border-radius:0px;
  11052. border-bottom-right-radius:0px;
  11053. border-bottom-left-radius:0px;
  11054. -moz-box-shadow:none;
  11055. -webkit-box-shadow:none;
  11056. box-shadow:none;
  11057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11058. font-weight:400;
  11059. font-style:normal;
  11060. font-size:12px;
  11061. color:#D9001B;
  11062. }
  11063. #u13102 {
  11064. border-width:0px;
  11065. position:absolute;
  11066. left:3877px;
  11067. top:888px;
  11068. width:139px;
  11069. height:17px;
  11070. display:flex;
  11071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11072. font-weight:400;
  11073. font-style:normal;
  11074. font-size:12px;
  11075. color:#D9001B;
  11076. }
  11077. #u13102 .text {
  11078. position:absolute;
  11079. align-self:center;
  11080. padding:0px 0px 0px 30px;
  11081. box-sizing:border-box;
  11082. width:100%;
  11083. }
  11084. #u13102_text {
  11085. border-width:0px;
  11086. white-space:nowrap;
  11087. text-transform:none;
  11088. }
  11089. #u13103 {
  11090. border-width:0px;
  11091. position:absolute;
  11092. left:4085px;
  11093. top:940px;
  11094. width:0px;
  11095. height:0px;
  11096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11097. font-weight:400;
  11098. font-style:normal;
  11099. color:#D9001B;
  11100. }
  11101. #u13103_seg0 {
  11102. border-width:0px;
  11103. position:absolute;
  11104. left:-5px;
  11105. top:-48px;
  11106. width:10px;
  11107. height:48px;
  11108. }
  11109. #u13103_seg1 {
  11110. border-width:0px;
  11111. position:absolute;
  11112. left:-69px;
  11113. top:-48px;
  11114. width:74px;
  11115. height:10px;
  11116. }
  11117. #u13103_seg2 {
  11118. border-width:0px;
  11119. position:absolute;
  11120. left:-9px;
  11121. top:-12px;
  11122. width:18px;
  11123. height:18px;
  11124. }
  11125. #u13103_seg3 {
  11126. border-width:0px;
  11127. position:absolute;
  11128. left:-84px;
  11129. top:-59px;
  11130. width:32px;
  11131. height:32px;
  11132. }
  11133. #u13103_text {
  11134. border-width:0px;
  11135. position:absolute;
  11136. left:-63px;
  11137. top:-51px;
  11138. width:100px;
  11139. word-wrap:break-word;
  11140. text-transform:none;
  11141. visibility:hidden;
  11142. }
  11143. #u13104_div {
  11144. border-width:0px;
  11145. position:absolute;
  11146. left:0px;
  11147. top:0px;
  11148. width:65px;
  11149. height:22px;
  11150. background:inherit;
  11151. background-color:rgba(255, 255, 255, 0);
  11152. border:none;
  11153. border-radius:0px;
  11154. -moz-box-shadow:none;
  11155. -webkit-box-shadow:none;
  11156. box-shadow:none;
  11157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11158. font-weight:400;
  11159. font-style:normal;
  11160. font-size:16px;
  11161. }
  11162. #u13104 {
  11163. border-width:0px;
  11164. position:absolute;
  11165. left:152px;
  11166. top:232px;
  11167. width:65px;
  11168. height:22px;
  11169. display:flex;
  11170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11171. font-weight:400;
  11172. font-style:normal;
  11173. font-size:16px;
  11174. }
  11175. #u13104 .text {
  11176. position:absolute;
  11177. align-self:flex-start;
  11178. padding:0px 0px 0px 0px;
  11179. box-sizing:border-box;
  11180. width:100%;
  11181. }
  11182. #u13104_text {
  11183. border-width:0px;
  11184. white-space:nowrap;
  11185. text-transform:none;
  11186. }
  11187. #u13105_div {
  11188. border-width:0px;
  11189. position:absolute;
  11190. left:0px;
  11191. top:0px;
  11192. width:49px;
  11193. height:17px;
  11194. background:inherit;
  11195. background-color:rgba(255, 255, 255, 0);
  11196. border:none;
  11197. border-radius:0px;
  11198. -moz-box-shadow:none;
  11199. -webkit-box-shadow:none;
  11200. box-shadow:none;
  11201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11202. font-weight:400;
  11203. font-style:normal;
  11204. font-size:12px;
  11205. color:#AAAAAA;
  11206. }
  11207. #u13105 {
  11208. border-width:0px;
  11209. position:absolute;
  11210. left:152px;
  11211. top:196px;
  11212. width:49px;
  11213. height:17px;
  11214. display:flex;
  11215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11216. font-weight:400;
  11217. font-style:normal;
  11218. font-size:12px;
  11219. color:#AAAAAA;
  11220. }
  11221. #u13105 .text {
  11222. position:absolute;
  11223. align-self:flex-start;
  11224. padding:0px 0px 0px 0px;
  11225. box-sizing:border-box;
  11226. width:100%;
  11227. }
  11228. #u13105_text {
  11229. border-width:0px;
  11230. white-space:nowrap;
  11231. text-transform:none;
  11232. }
  11233. #u13106_img {
  11234. border-width:0px;
  11235. position:absolute;
  11236. left:0px;
  11237. top:0px;
  11238. width:201px;
  11239. height:2px;
  11240. }
  11241. #u13106 {
  11242. border-width:0px;
  11243. position:absolute;
  11244. left:122px;
  11245. top:171px;
  11246. width:200px;
  11247. height:1px;
  11248. display:flex;
  11249. }
  11250. #u13106 .text {
  11251. position:absolute;
  11252. align-self:center;
  11253. padding:2px 2px 2px 2px;
  11254. box-sizing:border-box;
  11255. width:100%;
  11256. }
  11257. #u13106_text {
  11258. border-width:0px;
  11259. word-wrap:break-word;
  11260. text-transform:none;
  11261. visibility:hidden;
  11262. }
  11263. #u13107_div {
  11264. border-width:0px;
  11265. position:absolute;
  11266. left:0px;
  11267. top:0px;
  11268. width:65px;
  11269. height:22px;
  11270. background:inherit;
  11271. background-color:rgba(255, 255, 255, 0);
  11272. border:none;
  11273. border-radius:0px;
  11274. -moz-box-shadow:none;
  11275. -webkit-box-shadow:none;
  11276. box-shadow:none;
  11277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11278. font-weight:400;
  11279. font-style:normal;
  11280. font-size:16px;
  11281. }
  11282. #u13107 {
  11283. border-width:0px;
  11284. position:absolute;
  11285. left:152px;
  11286. top:274px;
  11287. width:65px;
  11288. height:22px;
  11289. display:flex;
  11290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11291. font-weight:400;
  11292. font-style:normal;
  11293. font-size:16px;
  11294. }
  11295. #u13107 .text {
  11296. position:absolute;
  11297. align-self:flex-start;
  11298. padding:0px 0px 0px 0px;
  11299. box-sizing:border-box;
  11300. width:100%;
  11301. }
  11302. #u13107_text {
  11303. border-width:0px;
  11304. white-space:nowrap;
  11305. text-transform:none;
  11306. }
  11307. #u13108_div {
  11308. border-width:0px;
  11309. position:absolute;
  11310. left:0px;
  11311. top:0px;
  11312. width:65px;
  11313. height:22px;
  11314. background:inherit;
  11315. background-color:rgba(255, 255, 255, 0);
  11316. border:none;
  11317. border-radius:0px;
  11318. -moz-box-shadow:none;
  11319. -webkit-box-shadow:none;
  11320. box-shadow:none;
  11321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11322. font-weight:400;
  11323. font-style:normal;
  11324. font-size:16px;
  11325. }
  11326. #u13108 {
  11327. border-width:0px;
  11328. position:absolute;
  11329. left:152px;
  11330. top:316px;
  11331. width:65px;
  11332. height:22px;
  11333. display:flex;
  11334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11335. font-weight:400;
  11336. font-style:normal;
  11337. font-size:16px;
  11338. }
  11339. #u13108 .text {
  11340. position:absolute;
  11341. align-self:flex-start;
  11342. padding:0px 0px 0px 0px;
  11343. box-sizing:border-box;
  11344. width:100%;
  11345. }
  11346. #u13108_text {
  11347. border-width:0px;
  11348. white-space:nowrap;
  11349. text-transform:none;
  11350. }