styles.css 128 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  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. #u21869_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. #u21869 {
  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. #u21869 .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. #u21869_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u21870_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. #u21870 {
  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. #u21870 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u21870_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u21871 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u21872_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u21872 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u21872 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u21872_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u21873_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. #u21873 {
  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. #u21873 .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. #u21873_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u21874_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. #u21874 {
  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. #u21874 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u21874_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u21875_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. #u21875 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u21875 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u21875_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u21876 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u21877_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. #u21877 {
  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. #u21877 .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. #u21877_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u21878_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u21878 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u21878 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u21878_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u21879 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u21880_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. #u21880 {
  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. #u21880 .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. #u21880_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u21881_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u21881 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u21881 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u21881_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u21882 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u21883_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. #u21883 {
  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. #u21883 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u21883_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u21884_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u21884 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u21884 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u21884_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u21885 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u21886_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. #u21886 {
  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. #u21886 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u21886_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u21887_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u21887 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u21887 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u21887_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u21888 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u21889_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. #u21889 {
  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. #u21889 .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. #u21889_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u21890_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u21890 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u21890 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u21890_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u21891 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u21892_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. #u21892 {
  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. #u21892 .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. #u21892_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u21893_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u21893 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u21893 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u21893_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u21894 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u21895_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. #u21895 {
  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. #u21895 .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. #u21895_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u21896_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u21896 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:407px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u21896 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u21896_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u21897 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u21898_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. #u21898 {
  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. #u21898 .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. #u21898_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u21899_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u21899 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:449px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u21899 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u21899_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u21900 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u21901_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. #u21901 {
  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. #u21901 .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. #u21901_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u21902_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u21902 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:575px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u21902 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u21902_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u21903 {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:0px;
  1013. top:0px;
  1014. width:0px;
  1015. height:0px;
  1016. }
  1017. #u21904_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. #u21904 {
  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. #u21904 .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. #u21904_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u21905_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:14px;
  1069. height:14px;
  1070. }
  1071. #u21905 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:533px;
  1076. width:14px;
  1077. height:14px;
  1078. display:flex;
  1079. }
  1080. #u21905 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u21905_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u21906_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. #u21906_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. #u21906_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. #u21906 {
  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. #u21906 .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. #u21906_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. #u21906.disabled {
  1184. }
  1185. .u21906_input_option {
  1186. font-size:14px;
  1187. }
  1188. #u21907_img {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:22px;
  1194. height:22px;
  1195. }
  1196. #u21907 {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:1194px;
  1200. top:15px;
  1201. width:22px;
  1202. height:22px;
  1203. display:flex;
  1204. }
  1205. #u21907 .text {
  1206. position:absolute;
  1207. align-self:center;
  1208. padding:2px 2px 2px 2px;
  1209. box-sizing:border-box;
  1210. width:100%;
  1211. }
  1212. #u21907_text {
  1213. border-width:0px;
  1214. word-wrap:break-word;
  1215. text-transform:none;
  1216. visibility:hidden;
  1217. }
  1218. #u21908_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. #u21908 {
  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. #u21908 .text {
  1253. position:absolute;
  1254. align-self:center;
  1255. padding:0px 0px 0px 0px;
  1256. box-sizing:border-box;
  1257. width:100%;
  1258. }
  1259. #u21908_text {
  1260. border-width:0px;
  1261. word-wrap:break-word;
  1262. text-transform:none;
  1263. }
  1264. #u21909_img {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:2px;
  1270. height:12px;
  1271. }
  1272. #u21909 {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:1452px;
  1276. top:19px;
  1277. width:1px;
  1278. height:11px;
  1279. display:flex;
  1280. }
  1281. #u21909 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:2px 2px 2px 2px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u21909_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. visibility:hidden;
  1293. }
  1294. #u21910 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:0px;
  1300. height:0px;
  1301. }
  1302. #u21911_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. #u21911 {
  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. #u21911 .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. #u21911_text {
  1344. border-width:0px;
  1345. white-space:nowrap;
  1346. text-transform:none;
  1347. }
  1348. #u21912_img {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:0px;
  1352. top:0px;
  1353. width:14px;
  1354. height:14px;
  1355. }
  1356. #u21912 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:20px;
  1360. top:323px;
  1361. width:14px;
  1362. height:14px;
  1363. display:flex;
  1364. }
  1365. #u21912 .text {
  1366. position:absolute;
  1367. align-self:center;
  1368. padding:2px 2px 2px 2px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u21912_text {
  1373. border-width:0px;
  1374. word-wrap:break-word;
  1375. text-transform:none;
  1376. visibility:hidden;
  1377. }
  1378. #u21913 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:0px;
  1384. height:0px;
  1385. }
  1386. #u21914_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. #u21914 {
  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. #u21914 .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. #u21914_text {
  1428. border-width:0px;
  1429. white-space:nowrap;
  1430. text-transform:none;
  1431. }
  1432. #u21915_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:14px;
  1438. height:14px;
  1439. }
  1440. #u21915 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:20px;
  1444. top:365px;
  1445. width:14px;
  1446. height:14px;
  1447. display:flex;
  1448. }
  1449. #u21915 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u21915_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u21916 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:0px;
  1468. height:0px;
  1469. }
  1470. #u21917_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. #u21917 {
  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. #u21917 .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. #u21917_text {
  1512. border-width:0px;
  1513. white-space:nowrap;
  1514. text-transform:none;
  1515. }
  1516. #u21918_img {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:14px;
  1522. height:14px;
  1523. }
  1524. #u21918 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:20px;
  1528. top:155px;
  1529. width:14px;
  1530. height:14px;
  1531. display:flex;
  1532. }
  1533. #u21918 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:2px 2px 2px 2px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u21918_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. visibility:hidden;
  1545. }
  1546. #u21919 {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:0px;
  1552. height:0px;
  1553. }
  1554. #u21920_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. #u21920 {
  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. #u21920 .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. #u21920_text {
  1596. border-width:0px;
  1597. white-space:nowrap;
  1598. text-transform:none;
  1599. }
  1600. #u21921_img {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:14px;
  1606. height:14px;
  1607. }
  1608. #u21921 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:20px;
  1612. top:491px;
  1613. width:14px;
  1614. height:14px;
  1615. display:flex;
  1616. }
  1617. #u21921 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 2px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u21921_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. visibility:hidden;
  1629. }
  1630. #u21922 {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:0px;
  1634. top:0px;
  1635. width:0px;
  1636. height:0px;
  1637. }
  1638. #u21923_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. #u21923 {
  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. #u21923 .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. #u21923_text {
  1680. border-width:0px;
  1681. white-space:nowrap;
  1682. text-transform:none;
  1683. }
  1684. #u21924_img {
  1685. border-width:0px;
  1686. position:absolute;
  1687. left:0px;
  1688. top:0px;
  1689. width:14px;
  1690. height:14px;
  1691. }
  1692. #u21924 {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:20px;
  1696. top:197px;
  1697. width:14px;
  1698. height:14px;
  1699. display:flex;
  1700. }
  1701. #u21924 .text {
  1702. position:absolute;
  1703. align-self:center;
  1704. padding:2px 2px 2px 2px;
  1705. box-sizing:border-box;
  1706. width:100%;
  1707. }
  1708. #u21924_text {
  1709. border-width:0px;
  1710. word-wrap:break-word;
  1711. text-transform:none;
  1712. visibility:hidden;
  1713. }
  1714. #u21925_div {
  1715. border-width:0px;
  1716. position:absolute;
  1717. left:0px;
  1718. top:0px;
  1719. width:1258px;
  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. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1729. font-weight:400;
  1730. font-style:normal;
  1731. font-size:12px;
  1732. color:#FFFFFF;
  1733. text-align:left;
  1734. }
  1735. #u21925 {
  1736. border-width:0px;
  1737. position:absolute;
  1738. left:332px;
  1739. top:50px;
  1740. width:1258px;
  1741. height:1192px;
  1742. display:flex;
  1743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1744. font-weight:400;
  1745. font-style:normal;
  1746. font-size:12px;
  1747. color:#FFFFFF;
  1748. text-align:left;
  1749. }
  1750. #u21925 .text {
  1751. position:absolute;
  1752. align-self:center;
  1753. padding:2px 2px 2px 50px;
  1754. box-sizing:border-box;
  1755. width:100%;
  1756. }
  1757. #u21925_text {
  1758. border-width:0px;
  1759. word-wrap:break-word;
  1760. text-transform:none;
  1761. visibility:hidden;
  1762. }
  1763. #u21926 {
  1764. border-width:0px;
  1765. position:absolute;
  1766. left:352px;
  1767. top:188px;
  1768. width:1218px;
  1769. height:364px;
  1770. }
  1771. #u21927_img {
  1772. border-width:0px;
  1773. position:absolute;
  1774. left:0px;
  1775. top:0px;
  1776. width:244px;
  1777. height:39px;
  1778. }
  1779. #u21927 {
  1780. border-width:0px;
  1781. position:absolute;
  1782. left:0px;
  1783. top:0px;
  1784. width:244px;
  1785. height:39px;
  1786. display:flex;
  1787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1788. font-weight:400;
  1789. font-style:normal;
  1790. font-size:12px;
  1791. color:#FFFFFF;
  1792. }
  1793. #u21927 .text {
  1794. position:absolute;
  1795. align-self:center;
  1796. padding:2px 2px 2px 0px;
  1797. box-sizing:border-box;
  1798. width:100%;
  1799. }
  1800. #u21927_text {
  1801. border-width:0px;
  1802. word-wrap:break-word;
  1803. text-transform:none;
  1804. }
  1805. #u21928_img {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:0px;
  1809. top:0px;
  1810. width:244px;
  1811. height:39px;
  1812. }
  1813. #u21928 {
  1814. border-width:0px;
  1815. position:absolute;
  1816. left:244px;
  1817. top:0px;
  1818. width:244px;
  1819. height:39px;
  1820. display:flex;
  1821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1822. font-weight:400;
  1823. font-style:normal;
  1824. font-size:12px;
  1825. color:#FFFFFF;
  1826. }
  1827. #u21928 .text {
  1828. position:absolute;
  1829. align-self:center;
  1830. padding:2px 2px 2px 0px;
  1831. box-sizing:border-box;
  1832. width:100%;
  1833. }
  1834. #u21928_text {
  1835. border-width:0px;
  1836. word-wrap:break-word;
  1837. text-transform:none;
  1838. }
  1839. #u21929_img {
  1840. border-width:0px;
  1841. position:absolute;
  1842. left:0px;
  1843. top:0px;
  1844. width:244px;
  1845. height:39px;
  1846. }
  1847. #u21929 {
  1848. border-width:0px;
  1849. position:absolute;
  1850. left:488px;
  1851. top:0px;
  1852. width:244px;
  1853. height:39px;
  1854. display:flex;
  1855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1856. font-weight:400;
  1857. font-style:normal;
  1858. font-size:12px;
  1859. color:#FFFFFF;
  1860. }
  1861. #u21929 .text {
  1862. position:absolute;
  1863. align-self:center;
  1864. padding:2px 2px 2px 0px;
  1865. box-sizing:border-box;
  1866. width:100%;
  1867. }
  1868. #u21929_text {
  1869. border-width:0px;
  1870. word-wrap:break-word;
  1871. text-transform:none;
  1872. }
  1873. #u21930_img {
  1874. border-width:0px;
  1875. position:absolute;
  1876. left:0px;
  1877. top:0px;
  1878. width:244px;
  1879. height:39px;
  1880. }
  1881. #u21930 {
  1882. border-width:0px;
  1883. position:absolute;
  1884. left:732px;
  1885. top:0px;
  1886. width:244px;
  1887. height:39px;
  1888. display:flex;
  1889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1890. font-weight:400;
  1891. font-style:normal;
  1892. font-size:12px;
  1893. color:#FFFFFF;
  1894. }
  1895. #u21930 .text {
  1896. position:absolute;
  1897. align-self:center;
  1898. padding:2px 2px 2px 0px;
  1899. box-sizing:border-box;
  1900. width:100%;
  1901. }
  1902. #u21930_text {
  1903. border-width:0px;
  1904. word-wrap:break-word;
  1905. text-transform:none;
  1906. }
  1907. #u21931_img {
  1908. border-width:0px;
  1909. position:absolute;
  1910. left:0px;
  1911. top:0px;
  1912. width:242px;
  1913. height:39px;
  1914. }
  1915. #u21931 {
  1916. border-width:0px;
  1917. position:absolute;
  1918. left:976px;
  1919. top:0px;
  1920. width:242px;
  1921. height:39px;
  1922. display:flex;
  1923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1924. font-weight:400;
  1925. font-style:normal;
  1926. font-size:12px;
  1927. color:#FFFFFF;
  1928. }
  1929. #u21931 .text {
  1930. position:absolute;
  1931. align-self:center;
  1932. padding:2px 2px 2px 0px;
  1933. box-sizing:border-box;
  1934. width:100%;
  1935. }
  1936. #u21931_text {
  1937. border-width:0px;
  1938. word-wrap:break-word;
  1939. text-transform:none;
  1940. }
  1941. #u21932_img {
  1942. border-width:0px;
  1943. position:absolute;
  1944. left:0px;
  1945. top:0px;
  1946. width:244px;
  1947. height:36px;
  1948. }
  1949. #u21932 {
  1950. border-width:0px;
  1951. position:absolute;
  1952. left:0px;
  1953. top:39px;
  1954. width:244px;
  1955. height:36px;
  1956. display:flex;
  1957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1958. font-weight:400;
  1959. font-style:normal;
  1960. font-size:12px;
  1961. }
  1962. #u21932 .text {
  1963. position:absolute;
  1964. align-self:center;
  1965. padding:2px 2px 2px 0px;
  1966. box-sizing:border-box;
  1967. width:100%;
  1968. }
  1969. #u21932_text {
  1970. border-width:0px;
  1971. word-wrap:break-word;
  1972. text-transform:none;
  1973. visibility:hidden;
  1974. }
  1975. #u21933_img {
  1976. border-width:0px;
  1977. position:absolute;
  1978. left:0px;
  1979. top:0px;
  1980. width:244px;
  1981. height:36px;
  1982. }
  1983. #u21933 {
  1984. border-width:0px;
  1985. position:absolute;
  1986. left:244px;
  1987. top:39px;
  1988. width:244px;
  1989. height:36px;
  1990. display:flex;
  1991. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1992. font-weight:400;
  1993. font-style:normal;
  1994. font-size:12px;
  1995. }
  1996. #u21933 .text {
  1997. position:absolute;
  1998. align-self:center;
  1999. padding:2px 2px 2px 0px;
  2000. box-sizing:border-box;
  2001. width:100%;
  2002. }
  2003. #u21933_text {
  2004. border-width:0px;
  2005. word-wrap:break-word;
  2006. text-transform:none;
  2007. visibility:hidden;
  2008. }
  2009. #u21934_img {
  2010. border-width:0px;
  2011. position:absolute;
  2012. left:0px;
  2013. top:0px;
  2014. width:244px;
  2015. height:36px;
  2016. }
  2017. #u21934 {
  2018. border-width:0px;
  2019. position:absolute;
  2020. left:488px;
  2021. top:39px;
  2022. width:244px;
  2023. height:36px;
  2024. display:flex;
  2025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2026. font-weight:400;
  2027. font-style:normal;
  2028. font-size:12px;
  2029. }
  2030. #u21934 .text {
  2031. position:absolute;
  2032. align-self:center;
  2033. padding:2px 2px 2px 0px;
  2034. box-sizing:border-box;
  2035. width:100%;
  2036. }
  2037. #u21934_text {
  2038. border-width:0px;
  2039. word-wrap:break-word;
  2040. text-transform:none;
  2041. }
  2042. #u21935_img {
  2043. border-width:0px;
  2044. position:absolute;
  2045. left:0px;
  2046. top:0px;
  2047. width:244px;
  2048. height:36px;
  2049. }
  2050. #u21935 {
  2051. border-width:0px;
  2052. position:absolute;
  2053. left:732px;
  2054. top:39px;
  2055. width:244px;
  2056. height:36px;
  2057. display:flex;
  2058. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2059. font-weight:400;
  2060. font-style:normal;
  2061. font-size:12px;
  2062. }
  2063. #u21935 .text {
  2064. position:absolute;
  2065. align-self:center;
  2066. padding:2px 2px 2px 0px;
  2067. box-sizing:border-box;
  2068. width:100%;
  2069. }
  2070. #u21935_text {
  2071. border-width:0px;
  2072. word-wrap:break-word;
  2073. text-transform:none;
  2074. visibility:hidden;
  2075. }
  2076. #u21936_img {
  2077. border-width:0px;
  2078. position:absolute;
  2079. left:0px;
  2080. top:0px;
  2081. width:242px;
  2082. height:36px;
  2083. }
  2084. #u21936 {
  2085. border-width:0px;
  2086. position:absolute;
  2087. left:976px;
  2088. top:39px;
  2089. width:242px;
  2090. height:36px;
  2091. display:flex;
  2092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2093. font-weight:400;
  2094. font-style:normal;
  2095. font-size:12px;
  2096. color:#0089FE;
  2097. }
  2098. #u21936 .text {
  2099. position:absolute;
  2100. align-self:center;
  2101. padding:2px 2px 2px 0px;
  2102. box-sizing:border-box;
  2103. width:100%;
  2104. }
  2105. #u21936_text {
  2106. border-width:0px;
  2107. word-wrap:break-word;
  2108. text-transform:none;
  2109. }
  2110. #u21937_img {
  2111. border-width:0px;
  2112. position:absolute;
  2113. left:0px;
  2114. top:0px;
  2115. width:244px;
  2116. height:38px;
  2117. }
  2118. #u21937 {
  2119. border-width:0px;
  2120. position:absolute;
  2121. left:0px;
  2122. top:75px;
  2123. width:244px;
  2124. height:38px;
  2125. display:flex;
  2126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2127. font-weight:400;
  2128. font-style:normal;
  2129. font-size:12px;
  2130. }
  2131. #u21937 .text {
  2132. position:absolute;
  2133. align-self:center;
  2134. padding:2px 2px 2px 0px;
  2135. box-sizing:border-box;
  2136. width:100%;
  2137. }
  2138. #u21937_text {
  2139. border-width:0px;
  2140. word-wrap:break-word;
  2141. text-transform:none;
  2142. visibility:hidden;
  2143. }
  2144. #u21938_img {
  2145. border-width:0px;
  2146. position:absolute;
  2147. left:0px;
  2148. top:0px;
  2149. width:244px;
  2150. height:38px;
  2151. }
  2152. #u21938 {
  2153. border-width:0px;
  2154. position:absolute;
  2155. left:244px;
  2156. top:75px;
  2157. width:244px;
  2158. height:38px;
  2159. display:flex;
  2160. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2161. font-weight:400;
  2162. font-style:normal;
  2163. font-size:12px;
  2164. }
  2165. #u21938 .text {
  2166. position:absolute;
  2167. align-self:center;
  2168. padding:2px 2px 2px 0px;
  2169. box-sizing:border-box;
  2170. width:100%;
  2171. }
  2172. #u21938_text {
  2173. border-width:0px;
  2174. word-wrap:break-word;
  2175. text-transform:none;
  2176. visibility:hidden;
  2177. }
  2178. #u21939_img {
  2179. border-width:0px;
  2180. position:absolute;
  2181. left:0px;
  2182. top:0px;
  2183. width:244px;
  2184. height:38px;
  2185. }
  2186. #u21939 {
  2187. border-width:0px;
  2188. position:absolute;
  2189. left:488px;
  2190. top:75px;
  2191. width:244px;
  2192. height:38px;
  2193. display:flex;
  2194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2195. font-weight:400;
  2196. font-style:normal;
  2197. font-size:12px;
  2198. }
  2199. #u21939 .text {
  2200. position:absolute;
  2201. align-self:center;
  2202. padding:2px 2px 2px 0px;
  2203. box-sizing:border-box;
  2204. width:100%;
  2205. }
  2206. #u21939_text {
  2207. border-width:0px;
  2208. word-wrap:break-word;
  2209. text-transform:none;
  2210. }
  2211. #u21940_img {
  2212. border-width:0px;
  2213. position:absolute;
  2214. left:0px;
  2215. top:0px;
  2216. width:244px;
  2217. height:38px;
  2218. }
  2219. #u21940 {
  2220. border-width:0px;
  2221. position:absolute;
  2222. left:732px;
  2223. top:75px;
  2224. width:244px;
  2225. height:38px;
  2226. display:flex;
  2227. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2228. font-weight:400;
  2229. font-style:normal;
  2230. font-size:12px;
  2231. }
  2232. #u21940 .text {
  2233. position:absolute;
  2234. align-self:center;
  2235. padding:2px 2px 2px 0px;
  2236. box-sizing:border-box;
  2237. width:100%;
  2238. }
  2239. #u21940_text {
  2240. border-width:0px;
  2241. word-wrap:break-word;
  2242. text-transform:none;
  2243. visibility:hidden;
  2244. }
  2245. #u21941_img {
  2246. border-width:0px;
  2247. position:absolute;
  2248. left:0px;
  2249. top:0px;
  2250. width:242px;
  2251. height:38px;
  2252. }
  2253. #u21941 {
  2254. border-width:0px;
  2255. position:absolute;
  2256. left:976px;
  2257. top:75px;
  2258. width:242px;
  2259. height:38px;
  2260. display:flex;
  2261. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2262. font-weight:400;
  2263. font-style:normal;
  2264. font-size:12px;
  2265. }
  2266. #u21941 .text {
  2267. position:absolute;
  2268. align-self:center;
  2269. padding:2px 2px 2px 0px;
  2270. box-sizing:border-box;
  2271. width:100%;
  2272. }
  2273. #u21941_text {
  2274. border-width:0px;
  2275. word-wrap:break-word;
  2276. text-transform:none;
  2277. visibility:hidden;
  2278. }
  2279. #u21942_img {
  2280. border-width:0px;
  2281. position:absolute;
  2282. left:0px;
  2283. top:0px;
  2284. width:244px;
  2285. height:38px;
  2286. }
  2287. #u21942 {
  2288. border-width:0px;
  2289. position:absolute;
  2290. left:0px;
  2291. top:113px;
  2292. width:244px;
  2293. height:38px;
  2294. display:flex;
  2295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2296. font-weight:400;
  2297. font-style:normal;
  2298. font-size:12px;
  2299. }
  2300. #u21942 .text {
  2301. position:absolute;
  2302. align-self:center;
  2303. padding:2px 2px 2px 0px;
  2304. box-sizing:border-box;
  2305. width:100%;
  2306. }
  2307. #u21942_text {
  2308. border-width:0px;
  2309. word-wrap:break-word;
  2310. text-transform:none;
  2311. visibility:hidden;
  2312. }
  2313. #u21943_img {
  2314. border-width:0px;
  2315. position:absolute;
  2316. left:0px;
  2317. top:0px;
  2318. width:244px;
  2319. height:38px;
  2320. }
  2321. #u21943 {
  2322. border-width:0px;
  2323. position:absolute;
  2324. left:244px;
  2325. top:113px;
  2326. width:244px;
  2327. height:38px;
  2328. display:flex;
  2329. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2330. font-weight:400;
  2331. font-style:normal;
  2332. font-size:12px;
  2333. }
  2334. #u21943 .text {
  2335. position:absolute;
  2336. align-self:center;
  2337. padding:2px 2px 2px 0px;
  2338. box-sizing:border-box;
  2339. width:100%;
  2340. }
  2341. #u21943_text {
  2342. border-width:0px;
  2343. word-wrap:break-word;
  2344. text-transform:none;
  2345. visibility:hidden;
  2346. }
  2347. #u21944_img {
  2348. border-width:0px;
  2349. position:absolute;
  2350. left:0px;
  2351. top:0px;
  2352. width:244px;
  2353. height:38px;
  2354. }
  2355. #u21944 {
  2356. border-width:0px;
  2357. position:absolute;
  2358. left:488px;
  2359. top:113px;
  2360. width:244px;
  2361. height:38px;
  2362. display:flex;
  2363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2364. font-weight:400;
  2365. font-style:normal;
  2366. font-size:12px;
  2367. }
  2368. #u21944 .text {
  2369. position:absolute;
  2370. align-self:center;
  2371. padding:2px 2px 2px 0px;
  2372. box-sizing:border-box;
  2373. width:100%;
  2374. }
  2375. #u21944_text {
  2376. border-width:0px;
  2377. word-wrap:break-word;
  2378. text-transform:none;
  2379. }
  2380. #u21945_img {
  2381. border-width:0px;
  2382. position:absolute;
  2383. left:0px;
  2384. top:0px;
  2385. width:244px;
  2386. height:38px;
  2387. }
  2388. #u21945 {
  2389. border-width:0px;
  2390. position:absolute;
  2391. left:732px;
  2392. top:113px;
  2393. width:244px;
  2394. height:38px;
  2395. display:flex;
  2396. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2397. font-weight:400;
  2398. font-style:normal;
  2399. font-size:12px;
  2400. }
  2401. #u21945 .text {
  2402. position:absolute;
  2403. align-self:center;
  2404. padding:2px 2px 2px 0px;
  2405. box-sizing:border-box;
  2406. width:100%;
  2407. }
  2408. #u21945_text {
  2409. border-width:0px;
  2410. word-wrap:break-word;
  2411. text-transform:none;
  2412. visibility:hidden;
  2413. }
  2414. #u21946_img {
  2415. border-width:0px;
  2416. position:absolute;
  2417. left:0px;
  2418. top:0px;
  2419. width:242px;
  2420. height:38px;
  2421. }
  2422. #u21946 {
  2423. border-width:0px;
  2424. position:absolute;
  2425. left:976px;
  2426. top:113px;
  2427. width:242px;
  2428. height:38px;
  2429. display:flex;
  2430. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2431. font-weight:400;
  2432. font-style:normal;
  2433. font-size:12px;
  2434. }
  2435. #u21946 .text {
  2436. position:absolute;
  2437. align-self:center;
  2438. padding:2px 2px 2px 0px;
  2439. box-sizing:border-box;
  2440. width:100%;
  2441. }
  2442. #u21946_text {
  2443. border-width:0px;
  2444. word-wrap:break-word;
  2445. text-transform:none;
  2446. visibility:hidden;
  2447. }
  2448. #u21947_img {
  2449. border-width:0px;
  2450. position:absolute;
  2451. left:0px;
  2452. top:0px;
  2453. width:244px;
  2454. height:38px;
  2455. }
  2456. #u21947 {
  2457. border-width:0px;
  2458. position:absolute;
  2459. left:0px;
  2460. top:151px;
  2461. width:244px;
  2462. height:38px;
  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. }
  2469. #u21947 .text {
  2470. position:absolute;
  2471. align-self:center;
  2472. padding:2px 2px 2px 0px;
  2473. box-sizing:border-box;
  2474. width:100%;
  2475. }
  2476. #u21947_text {
  2477. border-width:0px;
  2478. word-wrap:break-word;
  2479. text-transform:none;
  2480. visibility:hidden;
  2481. }
  2482. #u21948_img {
  2483. border-width:0px;
  2484. position:absolute;
  2485. left:0px;
  2486. top:0px;
  2487. width:244px;
  2488. height:38px;
  2489. }
  2490. #u21948 {
  2491. border-width:0px;
  2492. position:absolute;
  2493. left:244px;
  2494. top:151px;
  2495. width:244px;
  2496. height:38px;
  2497. display:flex;
  2498. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2499. font-weight:400;
  2500. font-style:normal;
  2501. font-size:12px;
  2502. }
  2503. #u21948 .text {
  2504. position:absolute;
  2505. align-self:center;
  2506. padding:2px 2px 2px 0px;
  2507. box-sizing:border-box;
  2508. width:100%;
  2509. }
  2510. #u21948_text {
  2511. border-width:0px;
  2512. word-wrap:break-word;
  2513. text-transform:none;
  2514. visibility:hidden;
  2515. }
  2516. #u21949_img {
  2517. border-width:0px;
  2518. position:absolute;
  2519. left:0px;
  2520. top:0px;
  2521. width:244px;
  2522. height:38px;
  2523. }
  2524. #u21949 {
  2525. border-width:0px;
  2526. position:absolute;
  2527. left:488px;
  2528. top:151px;
  2529. width:244px;
  2530. height:38px;
  2531. display:flex;
  2532. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2533. font-weight:400;
  2534. font-style:normal;
  2535. font-size:12px;
  2536. }
  2537. #u21949 .text {
  2538. position:absolute;
  2539. align-self:center;
  2540. padding:2px 2px 2px 0px;
  2541. box-sizing:border-box;
  2542. width:100%;
  2543. }
  2544. #u21949_text {
  2545. border-width:0px;
  2546. word-wrap:break-word;
  2547. text-transform:none;
  2548. visibility:hidden;
  2549. }
  2550. #u21950_img {
  2551. border-width:0px;
  2552. position:absolute;
  2553. left:0px;
  2554. top:0px;
  2555. width:244px;
  2556. height:38px;
  2557. }
  2558. #u21950 {
  2559. border-width:0px;
  2560. position:absolute;
  2561. left:732px;
  2562. top:151px;
  2563. width:244px;
  2564. height:38px;
  2565. display:flex;
  2566. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2567. font-weight:400;
  2568. font-style:normal;
  2569. font-size:12px;
  2570. }
  2571. #u21950 .text {
  2572. position:absolute;
  2573. align-self:center;
  2574. padding:2px 2px 2px 0px;
  2575. box-sizing:border-box;
  2576. width:100%;
  2577. }
  2578. #u21950_text {
  2579. border-width:0px;
  2580. word-wrap:break-word;
  2581. text-transform:none;
  2582. visibility:hidden;
  2583. }
  2584. #u21951_img {
  2585. border-width:0px;
  2586. position:absolute;
  2587. left:0px;
  2588. top:0px;
  2589. width:242px;
  2590. height:38px;
  2591. }
  2592. #u21951 {
  2593. border-width:0px;
  2594. position:absolute;
  2595. left:976px;
  2596. top:151px;
  2597. width:242px;
  2598. height:38px;
  2599. display:flex;
  2600. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2601. font-weight:400;
  2602. font-style:normal;
  2603. font-size:12px;
  2604. }
  2605. #u21951 .text {
  2606. position:absolute;
  2607. align-self:center;
  2608. padding:2px 2px 2px 0px;
  2609. box-sizing:border-box;
  2610. width:100%;
  2611. }
  2612. #u21951_text {
  2613. border-width:0px;
  2614. word-wrap:break-word;
  2615. text-transform:none;
  2616. visibility:hidden;
  2617. }
  2618. #u21952_img {
  2619. border-width:0px;
  2620. position:absolute;
  2621. left:0px;
  2622. top:0px;
  2623. width:244px;
  2624. height:35px;
  2625. }
  2626. #u21952 {
  2627. border-width:0px;
  2628. position:absolute;
  2629. left:0px;
  2630. top:189px;
  2631. width:244px;
  2632. height:35px;
  2633. display:flex;
  2634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2635. font-weight:400;
  2636. font-style:normal;
  2637. font-size:12px;
  2638. color:#606266;
  2639. }
  2640. #u21952 .text {
  2641. position:absolute;
  2642. align-self:center;
  2643. padding:2px 2px 2px 0px;
  2644. box-sizing:border-box;
  2645. width:100%;
  2646. }
  2647. #u21952_text {
  2648. border-width:0px;
  2649. word-wrap:break-word;
  2650. text-transform:none;
  2651. visibility:hidden;
  2652. }
  2653. #u21953_img {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:0px;
  2657. top:0px;
  2658. width:244px;
  2659. height:35px;
  2660. }
  2661. #u21953 {
  2662. border-width:0px;
  2663. position:absolute;
  2664. left:244px;
  2665. top:189px;
  2666. width:244px;
  2667. height:35px;
  2668. display:flex;
  2669. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2670. font-weight:400;
  2671. font-style:normal;
  2672. font-size:12px;
  2673. color:#606266;
  2674. }
  2675. #u21953 .text {
  2676. position:absolute;
  2677. align-self:center;
  2678. padding:2px 2px 2px 0px;
  2679. box-sizing:border-box;
  2680. width:100%;
  2681. }
  2682. #u21953_text {
  2683. border-width:0px;
  2684. word-wrap:break-word;
  2685. text-transform:none;
  2686. visibility:hidden;
  2687. }
  2688. #u21954_img {
  2689. border-width:0px;
  2690. position:absolute;
  2691. left:0px;
  2692. top:0px;
  2693. width:244px;
  2694. height:35px;
  2695. }
  2696. #u21954 {
  2697. border-width:0px;
  2698. position:absolute;
  2699. left:488px;
  2700. top:189px;
  2701. width:244px;
  2702. height:35px;
  2703. display:flex;
  2704. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2705. font-weight:400;
  2706. font-style:normal;
  2707. font-size:12px;
  2708. color:#606266;
  2709. }
  2710. #u21954 .text {
  2711. position:absolute;
  2712. align-self:center;
  2713. padding:2px 2px 2px 0px;
  2714. box-sizing:border-box;
  2715. width:100%;
  2716. }
  2717. #u21954_text {
  2718. border-width:0px;
  2719. word-wrap:break-word;
  2720. text-transform:none;
  2721. visibility:hidden;
  2722. }
  2723. #u21955_img {
  2724. border-width:0px;
  2725. position:absolute;
  2726. left:0px;
  2727. top:0px;
  2728. width:244px;
  2729. height:35px;
  2730. }
  2731. #u21955 {
  2732. border-width:0px;
  2733. position:absolute;
  2734. left:732px;
  2735. top:189px;
  2736. width:244px;
  2737. height:35px;
  2738. display:flex;
  2739. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2740. font-weight:400;
  2741. font-style:normal;
  2742. font-size:12px;
  2743. color:#606266;
  2744. }
  2745. #u21955 .text {
  2746. position:absolute;
  2747. align-self:center;
  2748. padding:2px 2px 2px 0px;
  2749. box-sizing:border-box;
  2750. width:100%;
  2751. }
  2752. #u21955_text {
  2753. border-width:0px;
  2754. word-wrap:break-word;
  2755. text-transform:none;
  2756. visibility:hidden;
  2757. }
  2758. #u21956_img {
  2759. border-width:0px;
  2760. position:absolute;
  2761. left:0px;
  2762. top:0px;
  2763. width:242px;
  2764. height:35px;
  2765. }
  2766. #u21956 {
  2767. border-width:0px;
  2768. position:absolute;
  2769. left:976px;
  2770. top:189px;
  2771. width:242px;
  2772. height:35px;
  2773. display:flex;
  2774. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2775. font-weight:400;
  2776. font-style:normal;
  2777. font-size:12px;
  2778. color:#606266;
  2779. }
  2780. #u21956 .text {
  2781. position:absolute;
  2782. align-self:center;
  2783. padding:2px 2px 2px 0px;
  2784. box-sizing:border-box;
  2785. width:100%;
  2786. }
  2787. #u21956_text {
  2788. border-width:0px;
  2789. word-wrap:break-word;
  2790. text-transform:none;
  2791. visibility:hidden;
  2792. }
  2793. #u21957_img {
  2794. border-width:0px;
  2795. position:absolute;
  2796. left:0px;
  2797. top:0px;
  2798. width:244px;
  2799. height:35px;
  2800. }
  2801. #u21957 {
  2802. border-width:0px;
  2803. position:absolute;
  2804. left:0px;
  2805. top:224px;
  2806. width:244px;
  2807. height:35px;
  2808. display:flex;
  2809. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2810. font-weight:400;
  2811. font-style:normal;
  2812. font-size:12px;
  2813. color:#606266;
  2814. }
  2815. #u21957 .text {
  2816. position:absolute;
  2817. align-self:center;
  2818. padding:2px 2px 2px 0px;
  2819. box-sizing:border-box;
  2820. width:100%;
  2821. }
  2822. #u21957_text {
  2823. border-width:0px;
  2824. word-wrap:break-word;
  2825. text-transform:none;
  2826. visibility:hidden;
  2827. }
  2828. #u21958_img {
  2829. border-width:0px;
  2830. position:absolute;
  2831. left:0px;
  2832. top:0px;
  2833. width:244px;
  2834. height:35px;
  2835. }
  2836. #u21958 {
  2837. border-width:0px;
  2838. position:absolute;
  2839. left:244px;
  2840. top:224px;
  2841. width:244px;
  2842. height:35px;
  2843. display:flex;
  2844. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2845. font-weight:400;
  2846. font-style:normal;
  2847. font-size:12px;
  2848. color:#606266;
  2849. }
  2850. #u21958 .text {
  2851. position:absolute;
  2852. align-self:center;
  2853. padding:2px 2px 2px 0px;
  2854. box-sizing:border-box;
  2855. width:100%;
  2856. }
  2857. #u21958_text {
  2858. border-width:0px;
  2859. word-wrap:break-word;
  2860. text-transform:none;
  2861. visibility:hidden;
  2862. }
  2863. #u21959_img {
  2864. border-width:0px;
  2865. position:absolute;
  2866. left:0px;
  2867. top:0px;
  2868. width:244px;
  2869. height:35px;
  2870. }
  2871. #u21959 {
  2872. border-width:0px;
  2873. position:absolute;
  2874. left:488px;
  2875. top:224px;
  2876. width:244px;
  2877. height:35px;
  2878. display:flex;
  2879. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2880. font-weight:400;
  2881. font-style:normal;
  2882. font-size:12px;
  2883. color:#606266;
  2884. }
  2885. #u21959 .text {
  2886. position:absolute;
  2887. align-self:center;
  2888. padding:2px 2px 2px 0px;
  2889. box-sizing:border-box;
  2890. width:100%;
  2891. }
  2892. #u21959_text {
  2893. border-width:0px;
  2894. word-wrap:break-word;
  2895. text-transform:none;
  2896. visibility:hidden;
  2897. }
  2898. #u21960_img {
  2899. border-width:0px;
  2900. position:absolute;
  2901. left:0px;
  2902. top:0px;
  2903. width:244px;
  2904. height:35px;
  2905. }
  2906. #u21960 {
  2907. border-width:0px;
  2908. position:absolute;
  2909. left:732px;
  2910. top:224px;
  2911. width:244px;
  2912. height:35px;
  2913. display:flex;
  2914. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2915. font-weight:400;
  2916. font-style:normal;
  2917. font-size:12px;
  2918. color:#606266;
  2919. }
  2920. #u21960 .text {
  2921. position:absolute;
  2922. align-self:center;
  2923. padding:2px 2px 2px 0px;
  2924. box-sizing:border-box;
  2925. width:100%;
  2926. }
  2927. #u21960_text {
  2928. border-width:0px;
  2929. word-wrap:break-word;
  2930. text-transform:none;
  2931. visibility:hidden;
  2932. }
  2933. #u21961_img {
  2934. border-width:0px;
  2935. position:absolute;
  2936. left:0px;
  2937. top:0px;
  2938. width:242px;
  2939. height:35px;
  2940. }
  2941. #u21961 {
  2942. border-width:0px;
  2943. position:absolute;
  2944. left:976px;
  2945. top:224px;
  2946. width:242px;
  2947. height:35px;
  2948. display:flex;
  2949. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2950. font-weight:400;
  2951. font-style:normal;
  2952. font-size:12px;
  2953. color:#606266;
  2954. }
  2955. #u21961 .text {
  2956. position:absolute;
  2957. align-self:center;
  2958. padding:2px 2px 2px 0px;
  2959. box-sizing:border-box;
  2960. width:100%;
  2961. }
  2962. #u21961_text {
  2963. border-width:0px;
  2964. word-wrap:break-word;
  2965. text-transform:none;
  2966. visibility:hidden;
  2967. }
  2968. #u21962_img {
  2969. border-width:0px;
  2970. position:absolute;
  2971. left:0px;
  2972. top:0px;
  2973. width:244px;
  2974. height:35px;
  2975. }
  2976. #u21962 {
  2977. border-width:0px;
  2978. position:absolute;
  2979. left:0px;
  2980. top:259px;
  2981. width:244px;
  2982. height:35px;
  2983. display:flex;
  2984. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2985. font-weight:400;
  2986. font-style:normal;
  2987. font-size:12px;
  2988. color:#606266;
  2989. }
  2990. #u21962 .text {
  2991. position:absolute;
  2992. align-self:center;
  2993. padding:2px 2px 2px 0px;
  2994. box-sizing:border-box;
  2995. width:100%;
  2996. }
  2997. #u21962_text {
  2998. border-width:0px;
  2999. word-wrap:break-word;
  3000. text-transform:none;
  3001. visibility:hidden;
  3002. }
  3003. #u21963_img {
  3004. border-width:0px;
  3005. position:absolute;
  3006. left:0px;
  3007. top:0px;
  3008. width:244px;
  3009. height:35px;
  3010. }
  3011. #u21963 {
  3012. border-width:0px;
  3013. position:absolute;
  3014. left:244px;
  3015. top:259px;
  3016. width:244px;
  3017. height:35px;
  3018. display:flex;
  3019. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3020. font-weight:400;
  3021. font-style:normal;
  3022. font-size:12px;
  3023. color:#606266;
  3024. }
  3025. #u21963 .text {
  3026. position:absolute;
  3027. align-self:center;
  3028. padding:2px 2px 2px 0px;
  3029. box-sizing:border-box;
  3030. width:100%;
  3031. }
  3032. #u21963_text {
  3033. border-width:0px;
  3034. word-wrap:break-word;
  3035. text-transform:none;
  3036. visibility:hidden;
  3037. }
  3038. #u21964_img {
  3039. border-width:0px;
  3040. position:absolute;
  3041. left:0px;
  3042. top:0px;
  3043. width:244px;
  3044. height:35px;
  3045. }
  3046. #u21964 {
  3047. border-width:0px;
  3048. position:absolute;
  3049. left:488px;
  3050. top:259px;
  3051. width:244px;
  3052. height:35px;
  3053. display:flex;
  3054. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3055. font-weight:400;
  3056. font-style:normal;
  3057. font-size:12px;
  3058. color:#606266;
  3059. }
  3060. #u21964 .text {
  3061. position:absolute;
  3062. align-self:center;
  3063. padding:2px 2px 2px 0px;
  3064. box-sizing:border-box;
  3065. width:100%;
  3066. }
  3067. #u21964_text {
  3068. border-width:0px;
  3069. word-wrap:break-word;
  3070. text-transform:none;
  3071. visibility:hidden;
  3072. }
  3073. #u21965_img {
  3074. border-width:0px;
  3075. position:absolute;
  3076. left:0px;
  3077. top:0px;
  3078. width:244px;
  3079. height:35px;
  3080. }
  3081. #u21965 {
  3082. border-width:0px;
  3083. position:absolute;
  3084. left:732px;
  3085. top:259px;
  3086. width:244px;
  3087. height:35px;
  3088. display:flex;
  3089. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3090. font-weight:400;
  3091. font-style:normal;
  3092. font-size:12px;
  3093. color:#606266;
  3094. }
  3095. #u21965 .text {
  3096. position:absolute;
  3097. align-self:center;
  3098. padding:2px 2px 2px 0px;
  3099. box-sizing:border-box;
  3100. width:100%;
  3101. }
  3102. #u21965_text {
  3103. border-width:0px;
  3104. word-wrap:break-word;
  3105. text-transform:none;
  3106. visibility:hidden;
  3107. }
  3108. #u21966_img {
  3109. border-width:0px;
  3110. position:absolute;
  3111. left:0px;
  3112. top:0px;
  3113. width:242px;
  3114. height:35px;
  3115. }
  3116. #u21966 {
  3117. border-width:0px;
  3118. position:absolute;
  3119. left:976px;
  3120. top:259px;
  3121. width:242px;
  3122. height:35px;
  3123. display:flex;
  3124. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3125. font-weight:400;
  3126. font-style:normal;
  3127. font-size:12px;
  3128. color:#606266;
  3129. }
  3130. #u21966 .text {
  3131. position:absolute;
  3132. align-self:center;
  3133. padding:2px 2px 2px 0px;
  3134. box-sizing:border-box;
  3135. width:100%;
  3136. }
  3137. #u21966_text {
  3138. border-width:0px;
  3139. word-wrap:break-word;
  3140. text-transform:none;
  3141. visibility:hidden;
  3142. }
  3143. #u21967_img {
  3144. border-width:0px;
  3145. position:absolute;
  3146. left:0px;
  3147. top:0px;
  3148. width:244px;
  3149. height:35px;
  3150. }
  3151. #u21967 {
  3152. border-width:0px;
  3153. position:absolute;
  3154. left:0px;
  3155. top:294px;
  3156. width:244px;
  3157. height:35px;
  3158. display:flex;
  3159. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3160. font-weight:400;
  3161. font-style:normal;
  3162. font-size:12px;
  3163. color:#606266;
  3164. }
  3165. #u21967 .text {
  3166. position:absolute;
  3167. align-self:center;
  3168. padding:2px 2px 2px 0px;
  3169. box-sizing:border-box;
  3170. width:100%;
  3171. }
  3172. #u21967_text {
  3173. border-width:0px;
  3174. word-wrap:break-word;
  3175. text-transform:none;
  3176. visibility:hidden;
  3177. }
  3178. #u21968_img {
  3179. border-width:0px;
  3180. position:absolute;
  3181. left:0px;
  3182. top:0px;
  3183. width:244px;
  3184. height:35px;
  3185. }
  3186. #u21968 {
  3187. border-width:0px;
  3188. position:absolute;
  3189. left:244px;
  3190. top:294px;
  3191. width:244px;
  3192. height:35px;
  3193. display:flex;
  3194. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3195. font-weight:400;
  3196. font-style:normal;
  3197. font-size:12px;
  3198. color:#606266;
  3199. }
  3200. #u21968 .text {
  3201. position:absolute;
  3202. align-self:center;
  3203. padding:2px 2px 2px 0px;
  3204. box-sizing:border-box;
  3205. width:100%;
  3206. }
  3207. #u21968_text {
  3208. border-width:0px;
  3209. word-wrap:break-word;
  3210. text-transform:none;
  3211. visibility:hidden;
  3212. }
  3213. #u21969_img {
  3214. border-width:0px;
  3215. position:absolute;
  3216. left:0px;
  3217. top:0px;
  3218. width:244px;
  3219. height:35px;
  3220. }
  3221. #u21969 {
  3222. border-width:0px;
  3223. position:absolute;
  3224. left:488px;
  3225. top:294px;
  3226. width:244px;
  3227. height:35px;
  3228. display:flex;
  3229. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3230. font-weight:400;
  3231. font-style:normal;
  3232. font-size:12px;
  3233. color:#606266;
  3234. }
  3235. #u21969 .text {
  3236. position:absolute;
  3237. align-self:center;
  3238. padding:2px 2px 2px 0px;
  3239. box-sizing:border-box;
  3240. width:100%;
  3241. }
  3242. #u21969_text {
  3243. border-width:0px;
  3244. word-wrap:break-word;
  3245. text-transform:none;
  3246. visibility:hidden;
  3247. }
  3248. #u21970_img {
  3249. border-width:0px;
  3250. position:absolute;
  3251. left:0px;
  3252. top:0px;
  3253. width:244px;
  3254. height:35px;
  3255. }
  3256. #u21970 {
  3257. border-width:0px;
  3258. position:absolute;
  3259. left:732px;
  3260. top:294px;
  3261. width:244px;
  3262. height:35px;
  3263. display:flex;
  3264. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3265. font-weight:400;
  3266. font-style:normal;
  3267. font-size:12px;
  3268. color:#606266;
  3269. }
  3270. #u21970 .text {
  3271. position:absolute;
  3272. align-self:center;
  3273. padding:2px 2px 2px 0px;
  3274. box-sizing:border-box;
  3275. width:100%;
  3276. }
  3277. #u21970_text {
  3278. border-width:0px;
  3279. word-wrap:break-word;
  3280. text-transform:none;
  3281. visibility:hidden;
  3282. }
  3283. #u21971_img {
  3284. border-width:0px;
  3285. position:absolute;
  3286. left:0px;
  3287. top:0px;
  3288. width:242px;
  3289. height:35px;
  3290. }
  3291. #u21971 {
  3292. border-width:0px;
  3293. position:absolute;
  3294. left:976px;
  3295. top:294px;
  3296. width:242px;
  3297. height:35px;
  3298. display:flex;
  3299. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3300. font-weight:400;
  3301. font-style:normal;
  3302. font-size:12px;
  3303. color:#606266;
  3304. }
  3305. #u21971 .text {
  3306. position:absolute;
  3307. align-self:center;
  3308. padding:2px 2px 2px 0px;
  3309. box-sizing:border-box;
  3310. width:100%;
  3311. }
  3312. #u21971_text {
  3313. border-width:0px;
  3314. word-wrap:break-word;
  3315. text-transform:none;
  3316. visibility:hidden;
  3317. }
  3318. #u21972_img {
  3319. border-width:0px;
  3320. position:absolute;
  3321. left:0px;
  3322. top:0px;
  3323. width:244px;
  3324. height:35px;
  3325. }
  3326. #u21972 {
  3327. border-width:0px;
  3328. position:absolute;
  3329. left:0px;
  3330. top:329px;
  3331. width:244px;
  3332. height:35px;
  3333. display:flex;
  3334. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3335. font-weight:400;
  3336. font-style:normal;
  3337. font-size:12px;
  3338. color:#606266;
  3339. }
  3340. #u21972 .text {
  3341. position:absolute;
  3342. align-self:center;
  3343. padding:2px 2px 2px 0px;
  3344. box-sizing:border-box;
  3345. width:100%;
  3346. }
  3347. #u21972_text {
  3348. border-width:0px;
  3349. word-wrap:break-word;
  3350. text-transform:none;
  3351. visibility:hidden;
  3352. }
  3353. #u21973_img {
  3354. border-width:0px;
  3355. position:absolute;
  3356. left:0px;
  3357. top:0px;
  3358. width:244px;
  3359. height:35px;
  3360. }
  3361. #u21973 {
  3362. border-width:0px;
  3363. position:absolute;
  3364. left:244px;
  3365. top:329px;
  3366. width:244px;
  3367. height:35px;
  3368. display:flex;
  3369. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3370. font-weight:400;
  3371. font-style:normal;
  3372. font-size:12px;
  3373. color:#606266;
  3374. }
  3375. #u21973 .text {
  3376. position:absolute;
  3377. align-self:center;
  3378. padding:2px 2px 2px 0px;
  3379. box-sizing:border-box;
  3380. width:100%;
  3381. }
  3382. #u21973_text {
  3383. border-width:0px;
  3384. word-wrap:break-word;
  3385. text-transform:none;
  3386. visibility:hidden;
  3387. }
  3388. #u21974_img {
  3389. border-width:0px;
  3390. position:absolute;
  3391. left:0px;
  3392. top:0px;
  3393. width:244px;
  3394. height:35px;
  3395. }
  3396. #u21974 {
  3397. border-width:0px;
  3398. position:absolute;
  3399. left:488px;
  3400. top:329px;
  3401. width:244px;
  3402. height:35px;
  3403. display:flex;
  3404. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3405. font-weight:400;
  3406. font-style:normal;
  3407. font-size:12px;
  3408. color:#606266;
  3409. }
  3410. #u21974 .text {
  3411. position:absolute;
  3412. align-self:center;
  3413. padding:2px 2px 2px 0px;
  3414. box-sizing:border-box;
  3415. width:100%;
  3416. }
  3417. #u21974_text {
  3418. border-width:0px;
  3419. word-wrap:break-word;
  3420. text-transform:none;
  3421. visibility:hidden;
  3422. }
  3423. #u21975_img {
  3424. border-width:0px;
  3425. position:absolute;
  3426. left:0px;
  3427. top:0px;
  3428. width:244px;
  3429. height:35px;
  3430. }
  3431. #u21975 {
  3432. border-width:0px;
  3433. position:absolute;
  3434. left:732px;
  3435. top:329px;
  3436. width:244px;
  3437. height:35px;
  3438. display:flex;
  3439. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3440. font-weight:400;
  3441. font-style:normal;
  3442. font-size:12px;
  3443. color:#606266;
  3444. }
  3445. #u21975 .text {
  3446. position:absolute;
  3447. align-self:center;
  3448. padding:2px 2px 2px 0px;
  3449. box-sizing:border-box;
  3450. width:100%;
  3451. }
  3452. #u21975_text {
  3453. border-width:0px;
  3454. word-wrap:break-word;
  3455. text-transform:none;
  3456. visibility:hidden;
  3457. }
  3458. #u21976_img {
  3459. border-width:0px;
  3460. position:absolute;
  3461. left:0px;
  3462. top:0px;
  3463. width:242px;
  3464. height:35px;
  3465. }
  3466. #u21976 {
  3467. border-width:0px;
  3468. position:absolute;
  3469. left:976px;
  3470. top:329px;
  3471. width:242px;
  3472. height:35px;
  3473. display:flex;
  3474. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3475. font-weight:400;
  3476. font-style:normal;
  3477. font-size:12px;
  3478. color:#606266;
  3479. }
  3480. #u21976 .text {
  3481. position:absolute;
  3482. align-self:center;
  3483. padding:2px 2px 2px 0px;
  3484. box-sizing:border-box;
  3485. width:100%;
  3486. }
  3487. #u21976_text {
  3488. border-width:0px;
  3489. word-wrap:break-word;
  3490. text-transform:none;
  3491. visibility:hidden;
  3492. }
  3493. #u21977_div {
  3494. border-width:0px;
  3495. position:absolute;
  3496. left:0px;
  3497. top:0px;
  3498. width:86px;
  3499. height:50px;
  3500. background:inherit;
  3501. background-color:rgba(255, 255, 255, 0);
  3502. border:none;
  3503. border-left:0px;
  3504. border-top:0px;
  3505. border-right:0px;
  3506. border-radius:0px;
  3507. border-bottom-right-radius:0px;
  3508. border-bottom-left-radius:0px;
  3509. -moz-box-shadow:none;
  3510. -webkit-box-shadow:none;
  3511. box-shadow:none;
  3512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3513. font-weight:400;
  3514. font-style:normal;
  3515. font-size:18px;
  3516. }
  3517. #u21977 {
  3518. border-width:0px;
  3519. position:absolute;
  3520. left:354px;
  3521. top:50px;
  3522. width:86px;
  3523. height:50px;
  3524. display:flex;
  3525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3526. font-weight:400;
  3527. font-style:normal;
  3528. font-size:18px;
  3529. }
  3530. #u21977 .text {
  3531. position:absolute;
  3532. align-self:center;
  3533. padding:0px 0px 0px 0px;
  3534. box-sizing:border-box;
  3535. width:100%;
  3536. }
  3537. #u21977_text {
  3538. border-width:0px;
  3539. word-wrap:break-word;
  3540. text-transform:none;
  3541. }
  3542. #u21978 {
  3543. border-width:0px;
  3544. position:absolute;
  3545. left:0px;
  3546. top:0px;
  3547. width:0px;
  3548. height:0px;
  3549. }
  3550. #u21979_div {
  3551. border-width:0px;
  3552. position:absolute;
  3553. left:0px;
  3554. top:0px;
  3555. width:69px;
  3556. height:30px;
  3557. background:inherit;
  3558. background-color:rgba(24, 144, 255, 1);
  3559. box-sizing:border-box;
  3560. border-width:1px;
  3561. border-style:solid;
  3562. border-color:rgba(0, 153, 255, 1);
  3563. border-radius:4px;
  3564. -moz-box-shadow:none;
  3565. -webkit-box-shadow:none;
  3566. box-shadow:none;
  3567. font-family:'Microsoft YaHei', sans-serif;
  3568. font-weight:400;
  3569. font-style:normal;
  3570. font-size:14px;
  3571. color:#FFFFFF;
  3572. }
  3573. #u21979 {
  3574. border-width:0px;
  3575. position:absolute;
  3576. left:702px;
  3577. top:99px;
  3578. width:69px;
  3579. height:30px;
  3580. display:flex;
  3581. font-family:'Microsoft YaHei', sans-serif;
  3582. font-weight:400;
  3583. font-style:normal;
  3584. font-size:14px;
  3585. color:#FFFFFF;
  3586. }
  3587. #u21979 .text {
  3588. position:absolute;
  3589. align-self:center;
  3590. padding:5px 15px 5px 15px;
  3591. box-sizing:border-box;
  3592. width:100%;
  3593. }
  3594. #u21979_text {
  3595. border-width:0px;
  3596. word-wrap:break-word;
  3597. text-transform:none;
  3598. }
  3599. #u21980_div {
  3600. border-width:0px;
  3601. position:absolute;
  3602. left:0px;
  3603. top:0px;
  3604. width:65px;
  3605. height:30px;
  3606. background:inherit;
  3607. background-color:rgba(255, 255, 255, 1);
  3608. box-sizing:border-box;
  3609. border-width:1px;
  3610. border-style:solid;
  3611. border-color:rgba(170, 170, 170, 1);
  3612. border-radius:4px;
  3613. -moz-box-shadow:none;
  3614. -webkit-box-shadow:none;
  3615. box-shadow:none;
  3616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3617. font-weight:400;
  3618. font-style:normal;
  3619. font-size:12px;
  3620. color:#555555;
  3621. }
  3622. #u21980 {
  3623. border-width:0px;
  3624. position:absolute;
  3625. left:783px;
  3626. top:99px;
  3627. width:65px;
  3628. height:30px;
  3629. display:flex;
  3630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3631. font-weight:400;
  3632. font-style:normal;
  3633. font-size:12px;
  3634. color:#555555;
  3635. }
  3636. #u21980 .text {
  3637. position:absolute;
  3638. align-self:center;
  3639. padding:5px 15px 5px 15px;
  3640. box-sizing:border-box;
  3641. width:100%;
  3642. }
  3643. #u21980_text {
  3644. border-width:0px;
  3645. word-wrap:break-word;
  3646. text-transform:none;
  3647. }
  3648. #u21981 {
  3649. border-width:0px;
  3650. position:absolute;
  3651. left:0px;
  3652. top:0px;
  3653. width:0px;
  3654. height:0px;
  3655. }
  3656. #u21982_div {
  3657. border-width:0px;
  3658. position:absolute;
  3659. left:0px;
  3660. top:0px;
  3661. width:164px;
  3662. height:30px;
  3663. background:inherit;
  3664. background-color:rgba(255, 255, 255, 1);
  3665. box-sizing:border-box;
  3666. border-width:1px;
  3667. border-style:solid;
  3668. border-color:rgba(201, 201, 201, 1);
  3669. border-radius:4px;
  3670. -moz-box-shadow:none;
  3671. -webkit-box-shadow:none;
  3672. box-shadow:none;
  3673. font-family:'Microsoft YaHei', sans-serif;
  3674. font-weight:400;
  3675. font-style:normal;
  3676. font-size:14px;
  3677. color:#CCCCCC;
  3678. text-align:left;
  3679. }
  3680. #u21982 {
  3681. border-width:0px;
  3682. position:absolute;
  3683. left:352px;
  3684. top:100px;
  3685. width:164px;
  3686. height:30px;
  3687. display:flex;
  3688. font-family:'Microsoft YaHei', sans-serif;
  3689. font-weight:400;
  3690. font-style:normal;
  3691. font-size:14px;
  3692. color:#CCCCCC;
  3693. text-align:left;
  3694. }
  3695. #u21982 .text {
  3696. position:absolute;
  3697. align-self:center;
  3698. padding:2px 8px 2px 8px;
  3699. box-sizing:border-box;
  3700. width:100%;
  3701. }
  3702. #u21982_text {
  3703. border-width:0px;
  3704. word-wrap:break-word;
  3705. text-transform:none;
  3706. visibility:hidden;
  3707. }
  3708. #u21983_input {
  3709. position:absolute;
  3710. left:0px;
  3711. top:0px;
  3712. width:149px;
  3713. height:25px;
  3714. padding:2px 2px 2px 2px;
  3715. font-family:'Microsoft YaHei', sans-serif;
  3716. font-weight:400;
  3717. font-style:normal;
  3718. font-size:14px;
  3719. letter-spacing:normal;
  3720. color:#000000;
  3721. vertical-align:none;
  3722. text-align:left;
  3723. text-transform:none;
  3724. background-color:transparent;
  3725. border-color:transparent;
  3726. }
  3727. #u21983_input.disabled {
  3728. position:absolute;
  3729. left:0px;
  3730. top:0px;
  3731. width:149px;
  3732. height:25px;
  3733. padding:2px 2px 2px 2px;
  3734. font-family:'Microsoft YaHei', sans-serif;
  3735. font-weight:400;
  3736. font-style:normal;
  3737. font-size:14px;
  3738. letter-spacing:normal;
  3739. color:#000000;
  3740. vertical-align:none;
  3741. text-align:left;
  3742. text-transform:none;
  3743. background-color:transparent;
  3744. border-color:transparent;
  3745. }
  3746. #u21983_div {
  3747. border-width:0px;
  3748. position:absolute;
  3749. left:0px;
  3750. top:0px;
  3751. width:149px;
  3752. height:25px;
  3753. background:inherit;
  3754. background-color:rgba(255, 255, 255, 1);
  3755. border:none;
  3756. border-radius:0px;
  3757. -moz-box-shadow:none;
  3758. -webkit-box-shadow:none;
  3759. box-shadow:none;
  3760. font-family:'Microsoft YaHei', sans-serif;
  3761. font-weight:400;
  3762. font-style:normal;
  3763. font-size:14px;
  3764. }
  3765. #u21983 {
  3766. border-width:0px;
  3767. position:absolute;
  3768. left:361px;
  3769. top:101px;
  3770. width:149px;
  3771. height:25px;
  3772. display:flex;
  3773. font-family:'Microsoft YaHei', sans-serif;
  3774. font-weight:400;
  3775. font-style:normal;
  3776. font-size:14px;
  3777. }
  3778. #u21983 .text {
  3779. position:absolute;
  3780. align-self:center;
  3781. padding:2px 2px 2px 2px;
  3782. box-sizing:border-box;
  3783. width:100%;
  3784. }
  3785. #u21983_div.disabled {
  3786. border-width:0px;
  3787. position:absolute;
  3788. left:0px;
  3789. top:0px;
  3790. width:149px;
  3791. height:25px;
  3792. background:inherit;
  3793. background-color:rgba(240, 240, 240, 1);
  3794. border:none;
  3795. border-radius:0px;
  3796. -moz-box-shadow:none;
  3797. -webkit-box-shadow:none;
  3798. box-shadow:none;
  3799. font-family:'Microsoft YaHei', sans-serif;
  3800. font-weight:400;
  3801. font-style:normal;
  3802. font-size:14px;
  3803. }
  3804. #u21983.disabled {
  3805. }
  3806. #u21984_div {
  3807. border-width:0px;
  3808. position:absolute;
  3809. left:0px;
  3810. top:0px;
  3811. width:69px;
  3812. height:30px;
  3813. background:inherit;
  3814. background-color:rgba(24, 144, 255, 1);
  3815. border:none;
  3816. border-radius:4px;
  3817. -moz-box-shadow:none;
  3818. -webkit-box-shadow:none;
  3819. box-shadow:none;
  3820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3821. font-weight:400;
  3822. font-style:normal;
  3823. font-size:14px;
  3824. color:#FFFFFF;
  3825. }
  3826. #u21984 {
  3827. border-width:0px;
  3828. position:absolute;
  3829. left:352px;
  3830. top:150px;
  3831. width:69px;
  3832. height:30px;
  3833. display:flex;
  3834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3835. font-weight:400;
  3836. font-style:normal;
  3837. font-size:14px;
  3838. color:#FFFFFF;
  3839. }
  3840. #u21984 .text {
  3841. position:absolute;
  3842. align-self:center;
  3843. padding:5px 15px 5px 15px;
  3844. box-sizing:border-box;
  3845. width:100%;
  3846. }
  3847. #u21984_text {
  3848. border-width:0px;
  3849. word-wrap:break-word;
  3850. text-transform:none;
  3851. }
  3852. #u21985 {
  3853. border-width:0px;
  3854. position:absolute;
  3855. left:0px;
  3856. top:0px;
  3857. width:0px;
  3858. height:0px;
  3859. }
  3860. #u21986_div {
  3861. border-width:0px;
  3862. position:absolute;
  3863. left:0px;
  3864. top:0px;
  3865. width:164px;
  3866. height:30px;
  3867. background:inherit;
  3868. background-color:rgba(255, 255, 255, 1);
  3869. box-sizing:border-box;
  3870. border-width:1px;
  3871. border-style:solid;
  3872. border-color:rgba(201, 201, 201, 1);
  3873. border-radius:4px;
  3874. -moz-box-shadow:none;
  3875. -webkit-box-shadow:none;
  3876. box-shadow:none;
  3877. font-family:'Microsoft YaHei', sans-serif;
  3878. font-weight:400;
  3879. font-style:normal;
  3880. font-size:14px;
  3881. color:#CCCCCC;
  3882. text-align:left;
  3883. }
  3884. #u21986 {
  3885. border-width:0px;
  3886. position:absolute;
  3887. left:528px;
  3888. top:100px;
  3889. width:164px;
  3890. height:30px;
  3891. display:flex;
  3892. font-family:'Microsoft YaHei', sans-serif;
  3893. font-weight:400;
  3894. font-style:normal;
  3895. font-size:14px;
  3896. color:#CCCCCC;
  3897. text-align:left;
  3898. }
  3899. #u21986 .text {
  3900. position:absolute;
  3901. align-self:center;
  3902. padding:2px 8px 2px 8px;
  3903. box-sizing:border-box;
  3904. width:100%;
  3905. }
  3906. #u21986_text {
  3907. border-width:0px;
  3908. word-wrap:break-word;
  3909. text-transform:none;
  3910. visibility:hidden;
  3911. }
  3912. #u21987_input {
  3913. position:absolute;
  3914. left:0px;
  3915. top:0px;
  3916. width:149px;
  3917. height:25px;
  3918. padding:2px 2px 2px 2px;
  3919. font-family:'Microsoft YaHei', sans-serif;
  3920. font-weight:400;
  3921. font-style:normal;
  3922. font-size:14px;
  3923. letter-spacing:normal;
  3924. color:#000000;
  3925. vertical-align:none;
  3926. text-align:left;
  3927. text-transform:none;
  3928. background-color:transparent;
  3929. border-color:transparent;
  3930. }
  3931. #u21987_input.disabled {
  3932. position:absolute;
  3933. left:0px;
  3934. top:0px;
  3935. width:149px;
  3936. height:25px;
  3937. padding:2px 2px 2px 2px;
  3938. font-family:'Microsoft YaHei', sans-serif;
  3939. font-weight:400;
  3940. font-style:normal;
  3941. font-size:14px;
  3942. letter-spacing:normal;
  3943. color:#000000;
  3944. vertical-align:none;
  3945. text-align:left;
  3946. text-transform:none;
  3947. background-color:transparent;
  3948. border-color:transparent;
  3949. }
  3950. #u21987_div {
  3951. border-width:0px;
  3952. position:absolute;
  3953. left:0px;
  3954. top:0px;
  3955. width:149px;
  3956. height:25px;
  3957. background:inherit;
  3958. background-color:rgba(255, 255, 255, 1);
  3959. border:none;
  3960. border-radius:0px;
  3961. -moz-box-shadow:none;
  3962. -webkit-box-shadow:none;
  3963. box-shadow:none;
  3964. font-family:'Microsoft YaHei', sans-serif;
  3965. font-weight:400;
  3966. font-style:normal;
  3967. font-size:14px;
  3968. }
  3969. #u21987 {
  3970. border-width:0px;
  3971. position:absolute;
  3972. left:537px;
  3973. top:101px;
  3974. width:149px;
  3975. height:25px;
  3976. display:flex;
  3977. font-family:'Microsoft YaHei', sans-serif;
  3978. font-weight:400;
  3979. font-style:normal;
  3980. font-size:14px;
  3981. }
  3982. #u21987 .text {
  3983. position:absolute;
  3984. align-self:center;
  3985. padding:2px 2px 2px 2px;
  3986. box-sizing:border-box;
  3987. width:100%;
  3988. }
  3989. #u21987_div.disabled {
  3990. border-width:0px;
  3991. position:absolute;
  3992. left:0px;
  3993. top:0px;
  3994. width:149px;
  3995. height:25px;
  3996. background:inherit;
  3997. background-color:rgba(240, 240, 240, 1);
  3998. border:none;
  3999. border-radius:0px;
  4000. -moz-box-shadow:none;
  4001. -webkit-box-shadow:none;
  4002. box-shadow:none;
  4003. font-family:'Microsoft YaHei', sans-serif;
  4004. font-weight:400;
  4005. font-style:normal;
  4006. font-size:14px;
  4007. }
  4008. #u21987.disabled {
  4009. }
  4010. #u21988_div {
  4011. border-width:0px;
  4012. position:absolute;
  4013. left:0px;
  4014. top:0px;
  4015. width:984px;
  4016. height:192px;
  4017. background:inherit;
  4018. background-color:rgba(255, 255, 255, 1);
  4019. box-sizing:border-box;
  4020. border-width:1px;
  4021. border-style:solid;
  4022. border-color:rgba(217, 0, 27, 1);
  4023. border-radius:0px;
  4024. -moz-box-shadow:none;
  4025. -webkit-box-shadow:none;
  4026. box-shadow:none;
  4027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4028. font-weight:400;
  4029. font-style:normal;
  4030. font-size:18px;
  4031. color:#D9001B;
  4032. line-height:40px;
  4033. }
  4034. #u21988 {
  4035. border-width:0px;
  4036. position:absolute;
  4037. left:1756px;
  4038. top:82px;
  4039. width:984px;
  4040. height:192px;
  4041. display:flex;
  4042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4043. font-weight:400;
  4044. font-style:normal;
  4045. font-size:18px;
  4046. color:#D9001B;
  4047. line-height:40px;
  4048. }
  4049. #u21988 .text {
  4050. position:absolute;
  4051. align-self:flex-start;
  4052. padding:10px 10px 10px 10px;
  4053. box-sizing:border-box;
  4054. width:100%;
  4055. }
  4056. #u21988_text {
  4057. border-width:0px;
  4058. word-wrap:break-word;
  4059. text-transform:none;
  4060. }
  4061. #u21989_div {
  4062. border-width:0px;
  4063. position:absolute;
  4064. left:0px;
  4065. top:0px;
  4066. width:1000px;
  4067. height:40px;
  4068. background:inherit;
  4069. background-color:rgba(217, 0, 27, 1);
  4070. border:none;
  4071. border-radius:0px;
  4072. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  4073. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  4074. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  4075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4076. font-weight:400;
  4077. font-style:normal;
  4078. font-size:14px;
  4079. color:#FFFFFF;
  4080. line-height:20px;
  4081. }
  4082. #u21989 {
  4083. border-width:0px;
  4084. position:absolute;
  4085. left:1756px;
  4086. top:669px;
  4087. width:1000px;
  4088. height:40px;
  4089. display:flex;
  4090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4091. font-weight:400;
  4092. font-style:normal;
  4093. font-size:14px;
  4094. color:#FFFFFF;
  4095. line-height:20px;
  4096. }
  4097. #u21989 .text {
  4098. position:absolute;
  4099. align-self:flex-start;
  4100. padding:10px 10px 10px 10px;
  4101. box-sizing:border-box;
  4102. width:100%;
  4103. }
  4104. #u21989_text {
  4105. border-width:0px;
  4106. word-wrap:break-word;
  4107. text-transform:none;
  4108. }
  4109. #u21990 {
  4110. border-width:0px;
  4111. position:absolute;
  4112. left:1756px;
  4113. top:719px;
  4114. width:960px;
  4115. height:160px;
  4116. }
  4117. #u21991_img {
  4118. border-width:0px;
  4119. position:absolute;
  4120. left:0px;
  4121. top:0px;
  4122. width:160px;
  4123. height:40px;
  4124. }
  4125. #u21991 {
  4126. border-width:0px;
  4127. position:absolute;
  4128. left:0px;
  4129. top:0px;
  4130. width:160px;
  4131. height:40px;
  4132. display:flex;
  4133. font-size:14px;
  4134. color:#FFFFFF;
  4135. text-align:left;
  4136. line-height:30px;
  4137. }
  4138. #u21991 .text {
  4139. position:absolute;
  4140. align-self:center;
  4141. padding:5px 10px 5px 10px;
  4142. box-sizing:border-box;
  4143. width:100%;
  4144. }
  4145. #u21991_text {
  4146. border-width:0px;
  4147. word-wrap:break-word;
  4148. text-transform:none;
  4149. }
  4150. #u21992_img {
  4151. border-width:0px;
  4152. position:absolute;
  4153. left:0px;
  4154. top:0px;
  4155. width:400px;
  4156. height:40px;
  4157. }
  4158. #u21992 {
  4159. border-width:0px;
  4160. position:absolute;
  4161. left:160px;
  4162. top:0px;
  4163. width:400px;
  4164. height:40px;
  4165. display:flex;
  4166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4167. font-weight:400;
  4168. font-style:normal;
  4169. font-size:14px;
  4170. color:#FFFFFF;
  4171. text-align:left;
  4172. line-height:30px;
  4173. }
  4174. #u21992 .text {
  4175. position:absolute;
  4176. align-self:center;
  4177. padding:5px 10px 5px 10px;
  4178. box-sizing:border-box;
  4179. width:100%;
  4180. }
  4181. #u21992_text {
  4182. border-width:0px;
  4183. word-wrap:break-word;
  4184. text-transform:none;
  4185. }
  4186. #u21993_img {
  4187. border-width:0px;
  4188. position:absolute;
  4189. left:0px;
  4190. top:0px;
  4191. width:400px;
  4192. height:40px;
  4193. }
  4194. #u21993 {
  4195. border-width:0px;
  4196. position:absolute;
  4197. left:560px;
  4198. top:0px;
  4199. width:400px;
  4200. height:40px;
  4201. display:flex;
  4202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4203. font-weight:400;
  4204. font-style:normal;
  4205. font-size:14px;
  4206. color:#FFFFFF;
  4207. text-align:left;
  4208. line-height:30px;
  4209. }
  4210. #u21993 .text {
  4211. position:absolute;
  4212. align-self:center;
  4213. padding:5px 10px 5px 10px;
  4214. box-sizing:border-box;
  4215. width:100%;
  4216. }
  4217. #u21993_text {
  4218. border-width:0px;
  4219. word-wrap:break-word;
  4220. text-transform:none;
  4221. }
  4222. #u21994_img {
  4223. border-width:0px;
  4224. position:absolute;
  4225. left:0px;
  4226. top:0px;
  4227. width:160px;
  4228. height:40px;
  4229. }
  4230. #u21994 {
  4231. border-width:0px;
  4232. position:absolute;
  4233. left:0px;
  4234. top:40px;
  4235. width:160px;
  4236. height:40px;
  4237. display:flex;
  4238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4239. font-weight:400;
  4240. font-style:normal;
  4241. font-size:14px;
  4242. text-align:left;
  4243. line-height:30px;
  4244. }
  4245. #u21994 .text {
  4246. position:absolute;
  4247. align-self:center;
  4248. padding:5px 10px 5px 10px;
  4249. box-sizing:border-box;
  4250. width:100%;
  4251. }
  4252. #u21994_text {
  4253. border-width:0px;
  4254. word-wrap:break-word;
  4255. text-transform:none;
  4256. }
  4257. #u21995_img {
  4258. border-width:0px;
  4259. position:absolute;
  4260. left:0px;
  4261. top:0px;
  4262. width:400px;
  4263. height:40px;
  4264. }
  4265. #u21995 {
  4266. border-width:0px;
  4267. position:absolute;
  4268. left:160px;
  4269. top:40px;
  4270. width:400px;
  4271. height:40px;
  4272. display:flex;
  4273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4274. font-weight:400;
  4275. font-style:normal;
  4276. font-size:14px;
  4277. text-align:left;
  4278. line-height:30px;
  4279. }
  4280. #u21995 .text {
  4281. position:absolute;
  4282. align-self:center;
  4283. padding:5px 10px 5px 10px;
  4284. box-sizing:border-box;
  4285. width:100%;
  4286. }
  4287. #u21995_text {
  4288. border-width:0px;
  4289. word-wrap:break-word;
  4290. text-transform:none;
  4291. }
  4292. #u21996_img {
  4293. border-width:0px;
  4294. position:absolute;
  4295. left:0px;
  4296. top:0px;
  4297. width:400px;
  4298. height:40px;
  4299. }
  4300. #u21996 {
  4301. border-width:0px;
  4302. position:absolute;
  4303. left:560px;
  4304. top:40px;
  4305. width:400px;
  4306. height:40px;
  4307. display:flex;
  4308. font-size:14px;
  4309. text-align:left;
  4310. line-height:30px;
  4311. }
  4312. #u21996 .text {
  4313. position:absolute;
  4314. align-self:center;
  4315. padding:5px 10px 5px 10px;
  4316. box-sizing:border-box;
  4317. width:100%;
  4318. }
  4319. #u21996_text {
  4320. border-width:0px;
  4321. word-wrap:break-word;
  4322. text-transform:none;
  4323. visibility:hidden;
  4324. }
  4325. #u21997_img {
  4326. border-width:0px;
  4327. position:absolute;
  4328. left:0px;
  4329. top:0px;
  4330. width:160px;
  4331. height:40px;
  4332. }
  4333. #u21997 {
  4334. border-width:0px;
  4335. position:absolute;
  4336. left:0px;
  4337. top:80px;
  4338. width:160px;
  4339. height:40px;
  4340. display:flex;
  4341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4342. font-weight:400;
  4343. font-style:normal;
  4344. font-size:14px;
  4345. text-align:left;
  4346. line-height:30px;
  4347. }
  4348. #u21997 .text {
  4349. position:absolute;
  4350. align-self:center;
  4351. padding:5px 10px 5px 10px;
  4352. box-sizing:border-box;
  4353. width:100%;
  4354. }
  4355. #u21997_text {
  4356. border-width:0px;
  4357. word-wrap:break-word;
  4358. text-transform:none;
  4359. }
  4360. #u21998_img {
  4361. border-width:0px;
  4362. position:absolute;
  4363. left:0px;
  4364. top:0px;
  4365. width:400px;
  4366. height:40px;
  4367. }
  4368. #u21998 {
  4369. border-width:0px;
  4370. position:absolute;
  4371. left:160px;
  4372. top:80px;
  4373. width:400px;
  4374. height:40px;
  4375. display:flex;
  4376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4377. font-weight:400;
  4378. font-style:normal;
  4379. font-size:14px;
  4380. text-align:left;
  4381. line-height:30px;
  4382. }
  4383. #u21998 .text {
  4384. position:absolute;
  4385. align-self:center;
  4386. padding:5px 10px 5px 10px;
  4387. box-sizing:border-box;
  4388. width:100%;
  4389. }
  4390. #u21998_text {
  4391. border-width:0px;
  4392. word-wrap:break-word;
  4393. text-transform:none;
  4394. }
  4395. #u21999_img {
  4396. border-width:0px;
  4397. position:absolute;
  4398. left:0px;
  4399. top:0px;
  4400. width:400px;
  4401. height:40px;
  4402. }
  4403. #u21999 {
  4404. border-width:0px;
  4405. position:absolute;
  4406. left:560px;
  4407. top:80px;
  4408. width:400px;
  4409. height:40px;
  4410. display:flex;
  4411. font-size:14px;
  4412. text-align:left;
  4413. line-height:30px;
  4414. }
  4415. #u21999 .text {
  4416. position:absolute;
  4417. align-self:center;
  4418. padding:5px 10px 5px 10px;
  4419. box-sizing:border-box;
  4420. width:100%;
  4421. }
  4422. #u21999_text {
  4423. border-width:0px;
  4424. word-wrap:break-word;
  4425. text-transform:none;
  4426. visibility:hidden;
  4427. }
  4428. #u22000_img {
  4429. border-width:0px;
  4430. position:absolute;
  4431. left:0px;
  4432. top:0px;
  4433. width:160px;
  4434. height:40px;
  4435. }
  4436. #u22000 {
  4437. border-width:0px;
  4438. position:absolute;
  4439. left:0px;
  4440. top:120px;
  4441. width:160px;
  4442. height:40px;
  4443. display:flex;
  4444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4445. font-weight:400;
  4446. font-style:normal;
  4447. font-size:14px;
  4448. text-align:left;
  4449. line-height:30px;
  4450. }
  4451. #u22000 .text {
  4452. position:absolute;
  4453. align-self:center;
  4454. padding:5px 10px 5px 10px;
  4455. box-sizing:border-box;
  4456. width:100%;
  4457. }
  4458. #u22000_text {
  4459. border-width:0px;
  4460. word-wrap:break-word;
  4461. text-transform:none;
  4462. }
  4463. #u22001_img {
  4464. border-width:0px;
  4465. position:absolute;
  4466. left:0px;
  4467. top:0px;
  4468. width:400px;
  4469. height:40px;
  4470. }
  4471. #u22001 {
  4472. border-width:0px;
  4473. position:absolute;
  4474. left:160px;
  4475. top:120px;
  4476. width:400px;
  4477. height:40px;
  4478. display:flex;
  4479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4480. font-weight:400;
  4481. font-style:normal;
  4482. font-size:12px;
  4483. text-align:left;
  4484. line-height:20px;
  4485. }
  4486. #u22001 .text {
  4487. position:absolute;
  4488. align-self:center;
  4489. padding:5px 10px 5px 10px;
  4490. box-sizing:border-box;
  4491. width:100%;
  4492. }
  4493. #u22001_text {
  4494. border-width:0px;
  4495. word-wrap:break-word;
  4496. text-transform:none;
  4497. }
  4498. #u22002_img {
  4499. border-width:0px;
  4500. position:absolute;
  4501. left:0px;
  4502. top:0px;
  4503. width:400px;
  4504. height:40px;
  4505. }
  4506. #u22002 {
  4507. border-width:0px;
  4508. position:absolute;
  4509. left:560px;
  4510. top:120px;
  4511. width:400px;
  4512. height:40px;
  4513. display:flex;
  4514. font-size:14px;
  4515. text-align:left;
  4516. line-height:30px;
  4517. }
  4518. #u22002 .text {
  4519. position:absolute;
  4520. align-self:center;
  4521. padding:5px 10px 5px 10px;
  4522. box-sizing:border-box;
  4523. width:100%;
  4524. }
  4525. #u22002_text {
  4526. border-width:0px;
  4527. word-wrap:break-word;
  4528. text-transform:none;
  4529. visibility:hidden;
  4530. }
  4531. #u22003_div {
  4532. border-width:0px;
  4533. position:absolute;
  4534. left:0px;
  4535. top:0px;
  4536. width:1000px;
  4537. height:40px;
  4538. background:inherit;
  4539. background-color:rgba(217, 0, 27, 1);
  4540. border:none;
  4541. border-radius:0px;
  4542. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  4543. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  4544. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  4545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4546. font-weight:400;
  4547. font-style:normal;
  4548. font-size:14px;
  4549. color:#FFFFFF;
  4550. line-height:20px;
  4551. }
  4552. #u22003 {
  4553. border-width:0px;
  4554. position:absolute;
  4555. left:1756px;
  4556. top:32px;
  4557. width:1000px;
  4558. height:40px;
  4559. display:flex;
  4560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4561. font-weight:400;
  4562. font-style:normal;
  4563. font-size:14px;
  4564. color:#FFFFFF;
  4565. line-height:20px;
  4566. }
  4567. #u22003 .text {
  4568. position:absolute;
  4569. align-self:flex-start;
  4570. padding:10px 10px 10px 10px;
  4571. box-sizing:border-box;
  4572. width:100%;
  4573. }
  4574. #u22003_text {
  4575. border-width:0px;
  4576. word-wrap:break-word;
  4577. text-transform:none;
  4578. }
  4579. #u22004_div {
  4580. border-width:0px;
  4581. position:absolute;
  4582. left:0px;
  4583. top:0px;
  4584. width:1000px;
  4585. height:40px;
  4586. background:inherit;
  4587. background-color:rgba(217, 0, 27, 1);
  4588. border:none;
  4589. border-radius:0px;
  4590. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  4591. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  4592. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  4593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4594. font-weight:400;
  4595. font-style:normal;
  4596. font-size:14px;
  4597. color:#FFFFFF;
  4598. line-height:20px;
  4599. }
  4600. #u22004 {
  4601. border-width:0px;
  4602. position:absolute;
  4603. left:1756px;
  4604. top:919px;
  4605. width:1000px;
  4606. height:40px;
  4607. display:flex;
  4608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4609. font-weight:400;
  4610. font-style:normal;
  4611. font-size:14px;
  4612. color:#FFFFFF;
  4613. line-height:20px;
  4614. }
  4615. #u22004 .text {
  4616. position:absolute;
  4617. align-self:flex-start;
  4618. padding:10px 10px 10px 10px;
  4619. box-sizing:border-box;
  4620. width:100%;
  4621. }
  4622. #u22004_text {
  4623. border-width:0px;
  4624. word-wrap:break-word;
  4625. text-transform:none;
  4626. }
  4627. #u22005 {
  4628. border-width:0px;
  4629. position:absolute;
  4630. left:1756px;
  4631. top:969px;
  4632. width:960px;
  4633. height:240px;
  4634. }
  4635. #u22006_img {
  4636. border-width:0px;
  4637. position:absolute;
  4638. left:0px;
  4639. top:0px;
  4640. width:160px;
  4641. height:40px;
  4642. }
  4643. #u22006 {
  4644. border-width:0px;
  4645. position:absolute;
  4646. left:0px;
  4647. top:0px;
  4648. width:160px;
  4649. height:40px;
  4650. display:flex;
  4651. font-size:14px;
  4652. color:#FFFFFF;
  4653. text-align:left;
  4654. line-height:30px;
  4655. }
  4656. #u22006 .text {
  4657. position:absolute;
  4658. align-self:center;
  4659. padding:5px 10px 5px 10px;
  4660. box-sizing:border-box;
  4661. width:100%;
  4662. }
  4663. #u22006_text {
  4664. border-width:0px;
  4665. word-wrap:break-word;
  4666. text-transform:none;
  4667. }
  4668. #u22007_img {
  4669. border-width:0px;
  4670. position:absolute;
  4671. left:0px;
  4672. top:0px;
  4673. width:400px;
  4674. height:40px;
  4675. }
  4676. #u22007 {
  4677. border-width:0px;
  4678. position:absolute;
  4679. left:160px;
  4680. top:0px;
  4681. width:400px;
  4682. height:40px;
  4683. display:flex;
  4684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4685. font-weight:400;
  4686. font-style:normal;
  4687. font-size:14px;
  4688. color:#FFFFFF;
  4689. text-align:left;
  4690. line-height:30px;
  4691. }
  4692. #u22007 .text {
  4693. position:absolute;
  4694. align-self:center;
  4695. padding:5px 10px 5px 10px;
  4696. box-sizing:border-box;
  4697. width:100%;
  4698. }
  4699. #u22007_text {
  4700. border-width:0px;
  4701. word-wrap:break-word;
  4702. text-transform:none;
  4703. }
  4704. #u22008_img {
  4705. border-width:0px;
  4706. position:absolute;
  4707. left:0px;
  4708. top:0px;
  4709. width:400px;
  4710. height:40px;
  4711. }
  4712. #u22008 {
  4713. border-width:0px;
  4714. position:absolute;
  4715. left:560px;
  4716. top:0px;
  4717. width:400px;
  4718. height:40px;
  4719. display:flex;
  4720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4721. font-weight:400;
  4722. font-style:normal;
  4723. font-size:14px;
  4724. color:#FFFFFF;
  4725. text-align:left;
  4726. line-height:30px;
  4727. }
  4728. #u22008 .text {
  4729. position:absolute;
  4730. align-self:center;
  4731. padding:5px 10px 5px 10px;
  4732. box-sizing:border-box;
  4733. width:100%;
  4734. }
  4735. #u22008_text {
  4736. border-width:0px;
  4737. word-wrap:break-word;
  4738. text-transform:none;
  4739. }
  4740. #u22009_img {
  4741. border-width:0px;
  4742. position:absolute;
  4743. left:0px;
  4744. top:0px;
  4745. width:160px;
  4746. height:40px;
  4747. }
  4748. #u22009 {
  4749. border-width:0px;
  4750. position:absolute;
  4751. left:0px;
  4752. top:40px;
  4753. width:160px;
  4754. height:40px;
  4755. display:flex;
  4756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4757. font-weight:400;
  4758. font-style:normal;
  4759. font-size:14px;
  4760. text-align:left;
  4761. line-height:30px;
  4762. }
  4763. #u22009 .text {
  4764. position:absolute;
  4765. align-self:center;
  4766. padding:5px 10px 5px 10px;
  4767. box-sizing:border-box;
  4768. width:100%;
  4769. }
  4770. #u22009_text {
  4771. border-width:0px;
  4772. word-wrap:break-word;
  4773. text-transform:none;
  4774. }
  4775. #u22010_img {
  4776. border-width:0px;
  4777. position:absolute;
  4778. left:0px;
  4779. top:0px;
  4780. width:400px;
  4781. height:40px;
  4782. }
  4783. #u22010 {
  4784. border-width:0px;
  4785. position:absolute;
  4786. left:160px;
  4787. top:40px;
  4788. width:400px;
  4789. height:40px;
  4790. display:flex;
  4791. font-size:14px;
  4792. text-align:left;
  4793. line-height:30px;
  4794. }
  4795. #u22010 .text {
  4796. position:absolute;
  4797. align-self:center;
  4798. padding:5px 10px 5px 10px;
  4799. box-sizing:border-box;
  4800. width:100%;
  4801. }
  4802. #u22010_text {
  4803. border-width:0px;
  4804. word-wrap:break-word;
  4805. text-transform:none;
  4806. visibility:hidden;
  4807. }
  4808. #u22011_img {
  4809. border-width:0px;
  4810. position:absolute;
  4811. left:0px;
  4812. top:0px;
  4813. width:400px;
  4814. height:40px;
  4815. }
  4816. #u22011 {
  4817. border-width:0px;
  4818. position:absolute;
  4819. left:560px;
  4820. top:40px;
  4821. width:400px;
  4822. height:40px;
  4823. display:flex;
  4824. font-size:14px;
  4825. text-align:left;
  4826. line-height:30px;
  4827. }
  4828. #u22011 .text {
  4829. position:absolute;
  4830. align-self:center;
  4831. padding:5px 10px 5px 10px;
  4832. box-sizing:border-box;
  4833. width:100%;
  4834. }
  4835. #u22011_text {
  4836. border-width:0px;
  4837. word-wrap:break-word;
  4838. text-transform:none;
  4839. visibility:hidden;
  4840. }
  4841. #u22012_img {
  4842. border-width:0px;
  4843. position:absolute;
  4844. left:0px;
  4845. top:0px;
  4846. width:160px;
  4847. height:40px;
  4848. }
  4849. #u22012 {
  4850. border-width:0px;
  4851. position:absolute;
  4852. left:0px;
  4853. top:80px;
  4854. width:160px;
  4855. height:40px;
  4856. display:flex;
  4857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4858. font-weight:400;
  4859. font-style:normal;
  4860. font-size:14px;
  4861. text-align:left;
  4862. line-height:30px;
  4863. }
  4864. #u22012 .text {
  4865. position:absolute;
  4866. align-self:center;
  4867. padding:5px 10px 5px 10px;
  4868. box-sizing:border-box;
  4869. width:100%;
  4870. }
  4871. #u22012_text {
  4872. border-width:0px;
  4873. word-wrap:break-word;
  4874. text-transform:none;
  4875. }
  4876. #u22013_img {
  4877. border-width:0px;
  4878. position:absolute;
  4879. left:0px;
  4880. top:0px;
  4881. width:400px;
  4882. height:40px;
  4883. }
  4884. #u22013 {
  4885. border-width:0px;
  4886. position:absolute;
  4887. left:160px;
  4888. top:80px;
  4889. width:400px;
  4890. height:40px;
  4891. display:flex;
  4892. font-size:14px;
  4893. text-align:left;
  4894. line-height:30px;
  4895. }
  4896. #u22013 .text {
  4897. position:absolute;
  4898. align-self:center;
  4899. padding:5px 10px 5px 10px;
  4900. box-sizing:border-box;
  4901. width:100%;
  4902. }
  4903. #u22013_text {
  4904. border-width:0px;
  4905. word-wrap:break-word;
  4906. text-transform:none;
  4907. visibility:hidden;
  4908. }
  4909. #u22014_img {
  4910. border-width:0px;
  4911. position:absolute;
  4912. left:0px;
  4913. top:0px;
  4914. width:400px;
  4915. height:40px;
  4916. }
  4917. #u22014 {
  4918. border-width:0px;
  4919. position:absolute;
  4920. left:560px;
  4921. top:80px;
  4922. width:400px;
  4923. height:40px;
  4924. display:flex;
  4925. font-size:14px;
  4926. text-align:left;
  4927. line-height:30px;
  4928. }
  4929. #u22014 .text {
  4930. position:absolute;
  4931. align-self:center;
  4932. padding:5px 10px 5px 10px;
  4933. box-sizing:border-box;
  4934. width:100%;
  4935. }
  4936. #u22014_text {
  4937. border-width:0px;
  4938. word-wrap:break-word;
  4939. text-transform:none;
  4940. visibility:hidden;
  4941. }
  4942. #u22015_img {
  4943. border-width:0px;
  4944. position:absolute;
  4945. left:0px;
  4946. top:0px;
  4947. width:160px;
  4948. height:40px;
  4949. }
  4950. #u22015 {
  4951. border-width:0px;
  4952. position:absolute;
  4953. left:0px;
  4954. top:120px;
  4955. width:160px;
  4956. height:40px;
  4957. display:flex;
  4958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4959. font-weight:400;
  4960. font-style:normal;
  4961. font-size:14px;
  4962. text-align:left;
  4963. line-height:30px;
  4964. }
  4965. #u22015 .text {
  4966. position:absolute;
  4967. align-self:center;
  4968. padding:5px 10px 5px 10px;
  4969. box-sizing:border-box;
  4970. width:100%;
  4971. }
  4972. #u22015_text {
  4973. border-width:0px;
  4974. word-wrap:break-word;
  4975. text-transform:none;
  4976. }
  4977. #u22016_img {
  4978. border-width:0px;
  4979. position:absolute;
  4980. left:0px;
  4981. top:0px;
  4982. width:400px;
  4983. height:40px;
  4984. }
  4985. #u22016 {
  4986. border-width:0px;
  4987. position:absolute;
  4988. left:160px;
  4989. top:120px;
  4990. width:400px;
  4991. height:40px;
  4992. display:flex;
  4993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4994. font-weight:400;
  4995. font-style:normal;
  4996. font-size:12px;
  4997. text-align:left;
  4998. line-height:20px;
  4999. }
  5000. #u22016 .text {
  5001. position:absolute;
  5002. align-self:center;
  5003. padding:5px 10px 5px 10px;
  5004. box-sizing:border-box;
  5005. width:100%;
  5006. }
  5007. #u22016_text {
  5008. border-width:0px;
  5009. word-wrap:break-word;
  5010. text-transform:none;
  5011. visibility:hidden;
  5012. }
  5013. #u22017_img {
  5014. border-width:0px;
  5015. position:absolute;
  5016. left:0px;
  5017. top:0px;
  5018. width:400px;
  5019. height:40px;
  5020. }
  5021. #u22017 {
  5022. border-width:0px;
  5023. position:absolute;
  5024. left:560px;
  5025. top:120px;
  5026. width:400px;
  5027. height:40px;
  5028. display:flex;
  5029. font-size:14px;
  5030. text-align:left;
  5031. line-height:30px;
  5032. }
  5033. #u22017 .text {
  5034. position:absolute;
  5035. align-self:center;
  5036. padding:5px 10px 5px 10px;
  5037. box-sizing:border-box;
  5038. width:100%;
  5039. }
  5040. #u22017_text {
  5041. border-width:0px;
  5042. word-wrap:break-word;
  5043. text-transform:none;
  5044. visibility:hidden;
  5045. }
  5046. #u22018_img {
  5047. border-width:0px;
  5048. position:absolute;
  5049. left:0px;
  5050. top:0px;
  5051. width:160px;
  5052. height:40px;
  5053. }
  5054. #u22018 {
  5055. border-width:0px;
  5056. position:absolute;
  5057. left:0px;
  5058. top:160px;
  5059. width:160px;
  5060. height:40px;
  5061. display:flex;
  5062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5063. font-weight:400;
  5064. font-style:normal;
  5065. font-size:14px;
  5066. text-align:left;
  5067. line-height:30px;
  5068. }
  5069. #u22018 .text {
  5070. position:absolute;
  5071. align-self:center;
  5072. padding:5px 10px 5px 10px;
  5073. box-sizing:border-box;
  5074. width:100%;
  5075. }
  5076. #u22018_text {
  5077. border-width:0px;
  5078. word-wrap:break-word;
  5079. text-transform:none;
  5080. }
  5081. #u22019_img {
  5082. border-width:0px;
  5083. position:absolute;
  5084. left:0px;
  5085. top:0px;
  5086. width:400px;
  5087. height:40px;
  5088. }
  5089. #u22019 {
  5090. border-width:0px;
  5091. position:absolute;
  5092. left:160px;
  5093. top:160px;
  5094. width:400px;
  5095. height:40px;
  5096. display:flex;
  5097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5098. font-weight:400;
  5099. font-style:normal;
  5100. font-size:12px;
  5101. text-align:left;
  5102. line-height:20px;
  5103. }
  5104. #u22019 .text {
  5105. position:absolute;
  5106. align-self:center;
  5107. padding:5px 10px 5px 10px;
  5108. box-sizing:border-box;
  5109. width:100%;
  5110. }
  5111. #u22019_text {
  5112. border-width:0px;
  5113. word-wrap:break-word;
  5114. text-transform:none;
  5115. visibility:hidden;
  5116. }
  5117. #u22020_img {
  5118. border-width:0px;
  5119. position:absolute;
  5120. left:0px;
  5121. top:0px;
  5122. width:400px;
  5123. height:40px;
  5124. }
  5125. #u22020 {
  5126. border-width:0px;
  5127. position:absolute;
  5128. left:560px;
  5129. top:160px;
  5130. width:400px;
  5131. height:40px;
  5132. display:flex;
  5133. font-size:14px;
  5134. text-align:left;
  5135. line-height:30px;
  5136. }
  5137. #u22020 .text {
  5138. position:absolute;
  5139. align-self:center;
  5140. padding:5px 10px 5px 10px;
  5141. box-sizing:border-box;
  5142. width:100%;
  5143. }
  5144. #u22020_text {
  5145. border-width:0px;
  5146. word-wrap:break-word;
  5147. text-transform:none;
  5148. visibility:hidden;
  5149. }
  5150. #u22021_img {
  5151. border-width:0px;
  5152. position:absolute;
  5153. left:0px;
  5154. top:0px;
  5155. width:160px;
  5156. height:40px;
  5157. }
  5158. #u22021 {
  5159. border-width:0px;
  5160. position:absolute;
  5161. left:0px;
  5162. top:200px;
  5163. width:160px;
  5164. height:40px;
  5165. display:flex;
  5166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5167. font-weight:400;
  5168. font-style:normal;
  5169. font-size:14px;
  5170. text-align:left;
  5171. line-height:30px;
  5172. }
  5173. #u22021 .text {
  5174. position:absolute;
  5175. align-self:center;
  5176. padding:5px 10px 5px 10px;
  5177. box-sizing:border-box;
  5178. width:100%;
  5179. }
  5180. #u22021_text {
  5181. border-width:0px;
  5182. word-wrap:break-word;
  5183. text-transform:none;
  5184. }
  5185. #u22022_img {
  5186. border-width:0px;
  5187. position:absolute;
  5188. left:0px;
  5189. top:0px;
  5190. width:400px;
  5191. height:40px;
  5192. }
  5193. #u22022 {
  5194. border-width:0px;
  5195. position:absolute;
  5196. left:160px;
  5197. top:200px;
  5198. width:400px;
  5199. height:40px;
  5200. display:flex;
  5201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5202. font-weight:400;
  5203. font-style:normal;
  5204. font-size:12px;
  5205. text-align:left;
  5206. line-height:20px;
  5207. }
  5208. #u22022 .text {
  5209. position:absolute;
  5210. align-self:center;
  5211. padding:5px 10px 5px 10px;
  5212. box-sizing:border-box;
  5213. width:100%;
  5214. }
  5215. #u22022_text {
  5216. border-width:0px;
  5217. word-wrap:break-word;
  5218. text-transform:none;
  5219. }
  5220. #u22023_img {
  5221. border-width:0px;
  5222. position:absolute;
  5223. left:0px;
  5224. top:0px;
  5225. width:400px;
  5226. height:40px;
  5227. }
  5228. #u22023 {
  5229. border-width:0px;
  5230. position:absolute;
  5231. left:560px;
  5232. top:200px;
  5233. width:400px;
  5234. height:40px;
  5235. display:flex;
  5236. font-size:14px;
  5237. text-align:left;
  5238. line-height:30px;
  5239. }
  5240. #u22023 .text {
  5241. position:absolute;
  5242. align-self:center;
  5243. padding:5px 10px 5px 10px;
  5244. box-sizing:border-box;
  5245. width:100%;
  5246. }
  5247. #u22023_text {
  5248. border-width:0px;
  5249. word-wrap:break-word;
  5250. text-transform:none;
  5251. visibility:hidden;
  5252. }
  5253. #u22024_div {
  5254. border-width:0px;
  5255. position:absolute;
  5256. left:0px;
  5257. top:0px;
  5258. width:1000px;
  5259. height:40px;
  5260. background:inherit;
  5261. background-color:rgba(217, 0, 27, 1);
  5262. border:none;
  5263. border-radius:0px;
  5264. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  5265. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  5266. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  5267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5268. font-weight:400;
  5269. font-style:normal;
  5270. font-size:14px;
  5271. color:#FFFFFF;
  5272. line-height:20px;
  5273. }
  5274. #u22024 {
  5275. border-width:0px;
  5276. position:absolute;
  5277. left:1756px;
  5278. top:314px;
  5279. width:1000px;
  5280. height:40px;
  5281. display:flex;
  5282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5283. font-weight:400;
  5284. font-style:normal;
  5285. font-size:14px;
  5286. color:#FFFFFF;
  5287. line-height:20px;
  5288. }
  5289. #u22024 .text {
  5290. position:absolute;
  5291. align-self:flex-start;
  5292. padding:10px 10px 10px 10px;
  5293. box-sizing:border-box;
  5294. width:100%;
  5295. }
  5296. #u22024_text {
  5297. border-width:0px;
  5298. word-wrap:break-word;
  5299. text-transform:none;
  5300. }
  5301. #u22025 {
  5302. border-width:0px;
  5303. position:absolute;
  5304. left:1756px;
  5305. top:364px;
  5306. width:960px;
  5307. height:240px;
  5308. }
  5309. #u22026_img {
  5310. border-width:0px;
  5311. position:absolute;
  5312. left:0px;
  5313. top:0px;
  5314. width:160px;
  5315. height:40px;
  5316. }
  5317. #u22026 {
  5318. border-width:0px;
  5319. position:absolute;
  5320. left:0px;
  5321. top:0px;
  5322. width:160px;
  5323. height:40px;
  5324. display:flex;
  5325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5326. font-weight:400;
  5327. font-style:normal;
  5328. font-size:14px;
  5329. color:#FFFFFF;
  5330. text-align:left;
  5331. line-height:30px;
  5332. }
  5333. #u22026 .text {
  5334. position:absolute;
  5335. align-self:center;
  5336. padding:5px 10px 5px 10px;
  5337. box-sizing:border-box;
  5338. width:100%;
  5339. }
  5340. #u22026_text {
  5341. border-width:0px;
  5342. word-wrap:break-word;
  5343. text-transform:none;
  5344. }
  5345. #u22027_img {
  5346. border-width:0px;
  5347. position:absolute;
  5348. left:0px;
  5349. top:0px;
  5350. width:400px;
  5351. height:40px;
  5352. }
  5353. #u22027 {
  5354. border-width:0px;
  5355. position:absolute;
  5356. left:160px;
  5357. top:0px;
  5358. width:400px;
  5359. height:40px;
  5360. display:flex;
  5361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5362. font-weight:400;
  5363. font-style:normal;
  5364. font-size:14px;
  5365. color:#FFFFFF;
  5366. text-align:left;
  5367. line-height:30px;
  5368. }
  5369. #u22027 .text {
  5370. position:absolute;
  5371. align-self:center;
  5372. padding:5px 10px 5px 10px;
  5373. box-sizing:border-box;
  5374. width:100%;
  5375. }
  5376. #u22027_text {
  5377. border-width:0px;
  5378. word-wrap:break-word;
  5379. text-transform:none;
  5380. }
  5381. #u22028_img {
  5382. border-width:0px;
  5383. position:absolute;
  5384. left:0px;
  5385. top:0px;
  5386. width:400px;
  5387. height:40px;
  5388. }
  5389. #u22028 {
  5390. border-width:0px;
  5391. position:absolute;
  5392. left:560px;
  5393. top:0px;
  5394. width:400px;
  5395. height:40px;
  5396. display:flex;
  5397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5398. font-weight:400;
  5399. font-style:normal;
  5400. font-size:14px;
  5401. color:#FFFFFF;
  5402. text-align:left;
  5403. line-height:30px;
  5404. }
  5405. #u22028 .text {
  5406. position:absolute;
  5407. align-self:center;
  5408. padding:5px 10px 5px 10px;
  5409. box-sizing:border-box;
  5410. width:100%;
  5411. }
  5412. #u22028_text {
  5413. border-width:0px;
  5414. word-wrap:break-word;
  5415. text-transform:none;
  5416. }
  5417. #u22029_img {
  5418. border-width:0px;
  5419. position:absolute;
  5420. left:0px;
  5421. top:0px;
  5422. width:160px;
  5423. height:40px;
  5424. }
  5425. #u22029 {
  5426. border-width:0px;
  5427. position:absolute;
  5428. left:0px;
  5429. top:40px;
  5430. width:160px;
  5431. height:40px;
  5432. display:flex;
  5433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5434. font-weight:400;
  5435. font-style:normal;
  5436. font-size:14px;
  5437. text-align:left;
  5438. line-height:30px;
  5439. }
  5440. #u22029 .text {
  5441. position:absolute;
  5442. align-self:center;
  5443. padding:5px 10px 5px 10px;
  5444. box-sizing:border-box;
  5445. width:100%;
  5446. }
  5447. #u22029_text {
  5448. border-width:0px;
  5449. word-wrap:break-word;
  5450. text-transform:none;
  5451. }
  5452. #u22030_img {
  5453. border-width:0px;
  5454. position:absolute;
  5455. left:0px;
  5456. top:0px;
  5457. width:400px;
  5458. height:40px;
  5459. }
  5460. #u22030 {
  5461. border-width:0px;
  5462. position:absolute;
  5463. left:160px;
  5464. top:40px;
  5465. width:400px;
  5466. height:40px;
  5467. display:flex;
  5468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5469. font-weight:400;
  5470. font-style:normal;
  5471. font-size:14px;
  5472. text-align:left;
  5473. line-height:30px;
  5474. }
  5475. #u22030 .text {
  5476. position:absolute;
  5477. align-self:center;
  5478. padding:5px 10px 5px 10px;
  5479. box-sizing:border-box;
  5480. width:100%;
  5481. }
  5482. #u22030_text {
  5483. border-width:0px;
  5484. word-wrap:break-word;
  5485. text-transform:none;
  5486. }
  5487. #u22031_img {
  5488. border-width:0px;
  5489. position:absolute;
  5490. left:0px;
  5491. top:0px;
  5492. width:400px;
  5493. height:40px;
  5494. }
  5495. #u22031 {
  5496. border-width:0px;
  5497. position:absolute;
  5498. left:560px;
  5499. top:40px;
  5500. width:400px;
  5501. height:40px;
  5502. display:flex;
  5503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5504. font-weight:400;
  5505. font-style:normal;
  5506. font-size:14px;
  5507. text-align:left;
  5508. line-height:30px;
  5509. }
  5510. #u22031 .text {
  5511. position:absolute;
  5512. align-self:center;
  5513. padding:5px 10px 5px 10px;
  5514. box-sizing:border-box;
  5515. width:100%;
  5516. }
  5517. #u22031_text {
  5518. border-width:0px;
  5519. word-wrap:break-word;
  5520. text-transform:none;
  5521. }
  5522. #u22032_img {
  5523. border-width:0px;
  5524. position:absolute;
  5525. left:0px;
  5526. top:0px;
  5527. width:160px;
  5528. height:70px;
  5529. }
  5530. #u22032 {
  5531. border-width:0px;
  5532. position:absolute;
  5533. left:0px;
  5534. top:80px;
  5535. width:160px;
  5536. height:70px;
  5537. display:flex;
  5538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5539. font-weight:400;
  5540. font-style:normal;
  5541. font-size:14px;
  5542. text-align:left;
  5543. line-height:30px;
  5544. }
  5545. #u22032 .text {
  5546. position:absolute;
  5547. align-self:center;
  5548. padding:5px 10px 5px 10px;
  5549. box-sizing:border-box;
  5550. width:100%;
  5551. }
  5552. #u22032_text {
  5553. border-width:0px;
  5554. word-wrap:break-word;
  5555. text-transform:none;
  5556. }
  5557. #u22033_img {
  5558. border-width:0px;
  5559. position:absolute;
  5560. left:0px;
  5561. top:0px;
  5562. width:400px;
  5563. height:70px;
  5564. }
  5565. #u22033 {
  5566. border-width:0px;
  5567. position:absolute;
  5568. left:160px;
  5569. top:80px;
  5570. width:400px;
  5571. height:70px;
  5572. display:flex;
  5573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5574. font-weight:400;
  5575. font-style:normal;
  5576. font-size:14px;
  5577. text-align:left;
  5578. line-height:30px;
  5579. }
  5580. #u22033 .text {
  5581. position:absolute;
  5582. align-self:center;
  5583. padding:5px 10px 5px 10px;
  5584. box-sizing:border-box;
  5585. width:100%;
  5586. }
  5587. #u22033_text {
  5588. border-width:0px;
  5589. word-wrap:break-word;
  5590. text-transform:none;
  5591. }
  5592. #u22034_img {
  5593. border-width:0px;
  5594. position:absolute;
  5595. left:0px;
  5596. top:0px;
  5597. width:400px;
  5598. height:70px;
  5599. }
  5600. #u22034 {
  5601. border-width:0px;
  5602. position:absolute;
  5603. left:560px;
  5604. top:80px;
  5605. width:400px;
  5606. height:70px;
  5607. display:flex;
  5608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5609. font-weight:400;
  5610. font-style:normal;
  5611. font-size:14px;
  5612. text-align:left;
  5613. line-height:30px;
  5614. }
  5615. #u22034 .text {
  5616. position:absolute;
  5617. align-self:center;
  5618. padding:5px 10px 5px 10px;
  5619. box-sizing:border-box;
  5620. width:100%;
  5621. }
  5622. #u22034_text {
  5623. border-width:0px;
  5624. word-wrap:break-word;
  5625. text-transform:none;
  5626. }
  5627. #u22035_img {
  5628. border-width:0px;
  5629. position:absolute;
  5630. left:0px;
  5631. top:0px;
  5632. width:160px;
  5633. height:40px;
  5634. }
  5635. #u22035 {
  5636. border-width:0px;
  5637. position:absolute;
  5638. left:0px;
  5639. top:150px;
  5640. width:160px;
  5641. height:40px;
  5642. display:flex;
  5643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5644. font-weight:400;
  5645. font-style:normal;
  5646. font-size:14px;
  5647. text-align:left;
  5648. line-height:30px;
  5649. }
  5650. #u22035 .text {
  5651. position:absolute;
  5652. align-self:center;
  5653. padding:5px 10px 5px 10px;
  5654. box-sizing:border-box;
  5655. width:100%;
  5656. }
  5657. #u22035_text {
  5658. border-width:0px;
  5659. word-wrap:break-word;
  5660. text-transform:none;
  5661. }
  5662. #u22036_img {
  5663. border-width:0px;
  5664. position:absolute;
  5665. left:0px;
  5666. top:0px;
  5667. width:400px;
  5668. height:40px;
  5669. }
  5670. #u22036 {
  5671. border-width:0px;
  5672. position:absolute;
  5673. left:160px;
  5674. top:150px;
  5675. width:400px;
  5676. height:40px;
  5677. display:flex;
  5678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5679. font-weight:400;
  5680. font-style:normal;
  5681. font-size:14px;
  5682. text-align:left;
  5683. line-height:30px;
  5684. }
  5685. #u22036 .text {
  5686. position:absolute;
  5687. align-self:center;
  5688. padding:5px 10px 5px 10px;
  5689. box-sizing:border-box;
  5690. width:100%;
  5691. }
  5692. #u22036_text {
  5693. border-width:0px;
  5694. word-wrap:break-word;
  5695. text-transform:none;
  5696. }
  5697. #u22037_img {
  5698. border-width:0px;
  5699. position:absolute;
  5700. left:0px;
  5701. top:0px;
  5702. width:400px;
  5703. height:40px;
  5704. }
  5705. #u22037 {
  5706. border-width:0px;
  5707. position:absolute;
  5708. left:560px;
  5709. top:150px;
  5710. width:400px;
  5711. height:40px;
  5712. display:flex;
  5713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5714. font-weight:400;
  5715. font-style:normal;
  5716. font-size:14px;
  5717. text-align:left;
  5718. line-height:30px;
  5719. }
  5720. #u22037 .text {
  5721. position:absolute;
  5722. align-self:center;
  5723. padding:5px 10px 5px 10px;
  5724. box-sizing:border-box;
  5725. width:100%;
  5726. }
  5727. #u22037_text {
  5728. border-width:0px;
  5729. word-wrap:break-word;
  5730. text-transform:none;
  5731. }
  5732. #u22038_img {
  5733. border-width:0px;
  5734. position:absolute;
  5735. left:0px;
  5736. top:0px;
  5737. width:160px;
  5738. height:50px;
  5739. }
  5740. #u22038 {
  5741. border-width:0px;
  5742. position:absolute;
  5743. left:0px;
  5744. top:190px;
  5745. width:160px;
  5746. height:50px;
  5747. display:flex;
  5748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5749. font-weight:400;
  5750. font-style:normal;
  5751. font-size:14px;
  5752. text-align:left;
  5753. line-height:30px;
  5754. }
  5755. #u22038 .text {
  5756. position:absolute;
  5757. align-self:center;
  5758. padding:5px 10px 5px 10px;
  5759. box-sizing:border-box;
  5760. width:100%;
  5761. }
  5762. #u22038_text {
  5763. border-width:0px;
  5764. word-wrap:break-word;
  5765. text-transform:none;
  5766. }
  5767. #u22039_img {
  5768. border-width:0px;
  5769. position:absolute;
  5770. left:0px;
  5771. top:0px;
  5772. width:400px;
  5773. height:50px;
  5774. }
  5775. #u22039 {
  5776. border-width:0px;
  5777. position:absolute;
  5778. left:160px;
  5779. top:190px;
  5780. width:400px;
  5781. height:50px;
  5782. display:flex;
  5783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5784. font-weight:400;
  5785. font-style:normal;
  5786. text-align:left;
  5787. line-height:20px;
  5788. }
  5789. #u22039 .text {
  5790. position:absolute;
  5791. align-self:center;
  5792. padding:5px 10px 5px 10px;
  5793. box-sizing:border-box;
  5794. width:100%;
  5795. }
  5796. #u22039_text {
  5797. border-width:0px;
  5798. word-wrap:break-word;
  5799. text-transform:none;
  5800. }
  5801. #u22040_img {
  5802. border-width:0px;
  5803. position:absolute;
  5804. left:0px;
  5805. top:0px;
  5806. width:400px;
  5807. height:50px;
  5808. }
  5809. #u22040 {
  5810. border-width:0px;
  5811. position:absolute;
  5812. left:560px;
  5813. top:190px;
  5814. width:400px;
  5815. height:50px;
  5816. display:flex;
  5817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5818. font-weight:400;
  5819. font-style:normal;
  5820. font-size:14px;
  5821. text-align:left;
  5822. line-height:30px;
  5823. }
  5824. #u22040 .text {
  5825. position:absolute;
  5826. align-self:center;
  5827. padding:5px 10px 5px 10px;
  5828. box-sizing:border-box;
  5829. width:100%;
  5830. }
  5831. #u22040_text {
  5832. border-width:0px;
  5833. word-wrap:break-word;
  5834. text-transform:none;
  5835. }
  5836. #u22041 {
  5837. border-width:0px;
  5838. position:absolute;
  5839. left:0px;
  5840. top:0px;
  5841. width:0px;
  5842. height:0px;
  5843. }
  5844. #u22042 {
  5845. border-width:0px;
  5846. position:absolute;
  5847. left:2777px;
  5848. top:452px;
  5849. width:641px;
  5850. height:200px;
  5851. }
  5852. #u22043_img {
  5853. border-width:0px;
  5854. position:absolute;
  5855. left:0px;
  5856. top:0px;
  5857. width:112px;
  5858. height:40px;
  5859. }
  5860. #u22043 {
  5861. border-width:0px;
  5862. position:absolute;
  5863. left:0px;
  5864. top:0px;
  5865. width:112px;
  5866. height:40px;
  5867. display:flex;
  5868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5869. font-weight:400;
  5870. font-style:normal;
  5871. font-size:14px;
  5872. color:#FFFFFF;
  5873. text-align:left;
  5874. line-height:30px;
  5875. }
  5876. #u22043 .text {
  5877. position:absolute;
  5878. align-self:center;
  5879. padding:5px 10px 5px 10px;
  5880. box-sizing:border-box;
  5881. width:100%;
  5882. }
  5883. #u22043_text {
  5884. border-width:0px;
  5885. word-wrap:break-word;
  5886. text-transform:none;
  5887. }
  5888. #u22044_img {
  5889. border-width:0px;
  5890. position:absolute;
  5891. left:0px;
  5892. top:0px;
  5893. width:131px;
  5894. height:40px;
  5895. }
  5896. #u22044 {
  5897. border-width:0px;
  5898. position:absolute;
  5899. left:112px;
  5900. top:0px;
  5901. width:131px;
  5902. height:40px;
  5903. display:flex;
  5904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5905. font-weight:400;
  5906. font-style:normal;
  5907. font-size:14px;
  5908. color:#FFFFFF;
  5909. text-align:left;
  5910. line-height:30px;
  5911. }
  5912. #u22044 .text {
  5913. position:absolute;
  5914. align-self:center;
  5915. padding:5px 10px 5px 10px;
  5916. box-sizing:border-box;
  5917. width:100%;
  5918. }
  5919. #u22044_text {
  5920. border-width:0px;
  5921. word-wrap:break-word;
  5922. text-transform:none;
  5923. }
  5924. #u22045_img {
  5925. border-width:0px;
  5926. position:absolute;
  5927. left:0px;
  5928. top:0px;
  5929. width:81px;
  5930. height:40px;
  5931. }
  5932. #u22045 {
  5933. border-width:0px;
  5934. position:absolute;
  5935. left:243px;
  5936. top:0px;
  5937. width:81px;
  5938. height:40px;
  5939. display:flex;
  5940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5941. font-weight:400;
  5942. font-style:normal;
  5943. font-size:14px;
  5944. color:#FFFFFF;
  5945. text-align:left;
  5946. line-height:30px;
  5947. }
  5948. #u22045 .text {
  5949. position:absolute;
  5950. align-self:center;
  5951. padding:5px 10px 5px 10px;
  5952. box-sizing:border-box;
  5953. width:100%;
  5954. }
  5955. #u22045_text {
  5956. border-width:0px;
  5957. word-wrap:break-word;
  5958. text-transform:none;
  5959. }
  5960. #u22046_img {
  5961. border-width:0px;
  5962. position:absolute;
  5963. left:0px;
  5964. top:0px;
  5965. width:220px;
  5966. height:40px;
  5967. }
  5968. #u22046 {
  5969. border-width:0px;
  5970. position:absolute;
  5971. left:324px;
  5972. top:0px;
  5973. width:220px;
  5974. height:40px;
  5975. display:flex;
  5976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5977. font-weight:400;
  5978. font-style:normal;
  5979. font-size:14px;
  5980. color:#FFFFFF;
  5981. text-align:left;
  5982. line-height:30px;
  5983. }
  5984. #u22046 .text {
  5985. position:absolute;
  5986. align-self:center;
  5987. padding:5px 10px 5px 10px;
  5988. box-sizing:border-box;
  5989. width:100%;
  5990. }
  5991. #u22046_text {
  5992. border-width:0px;
  5993. word-wrap:break-word;
  5994. text-transform:none;
  5995. }
  5996. #u22047_img {
  5997. border-width:0px;
  5998. position:absolute;
  5999. left:0px;
  6000. top:0px;
  6001. width:95px;
  6002. height:40px;
  6003. }
  6004. #u22047 {
  6005. border-width:0px;
  6006. position:absolute;
  6007. left:544px;
  6008. top:0px;
  6009. width:95px;
  6010. height:40px;
  6011. display:flex;
  6012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6013. font-weight:400;
  6014. font-style:normal;
  6015. font-size:14px;
  6016. color:#FFFFFF;
  6017. text-align:left;
  6018. line-height:30px;
  6019. }
  6020. #u22047 .text {
  6021. position:absolute;
  6022. align-self:center;
  6023. padding:5px 10px 5px 10px;
  6024. box-sizing:border-box;
  6025. width:100%;
  6026. }
  6027. #u22047_text {
  6028. border-width:0px;
  6029. word-wrap:break-word;
  6030. text-transform:none;
  6031. }
  6032. #u22048_img {
  6033. border-width:0px;
  6034. position:absolute;
  6035. left:0px;
  6036. top:0px;
  6037. width:112px;
  6038. height:40px;
  6039. }
  6040. #u22048 {
  6041. border-width:0px;
  6042. position:absolute;
  6043. left:0px;
  6044. top:40px;
  6045. width:112px;
  6046. height:40px;
  6047. display:flex;
  6048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6049. font-weight:400;
  6050. font-style:normal;
  6051. font-size:14px;
  6052. text-align:left;
  6053. line-height:30px;
  6054. }
  6055. #u22048 .text {
  6056. position:absolute;
  6057. align-self:center;
  6058. padding:5px 10px 5px 10px;
  6059. box-sizing:border-box;
  6060. width:100%;
  6061. }
  6062. #u22048_text {
  6063. border-width:0px;
  6064. word-wrap:break-word;
  6065. text-transform:none;
  6066. }
  6067. #u22049_img {
  6068. border-width:0px;
  6069. position:absolute;
  6070. left:0px;
  6071. top:0px;
  6072. width:131px;
  6073. height:40px;
  6074. }
  6075. #u22049 {
  6076. border-width:0px;
  6077. position:absolute;
  6078. left:112px;
  6079. top:40px;
  6080. width:131px;
  6081. height:40px;
  6082. display:flex;
  6083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6084. font-weight:400;
  6085. font-style:normal;
  6086. font-size:14px;
  6087. text-align:left;
  6088. line-height:30px;
  6089. }
  6090. #u22049 .text {
  6091. position:absolute;
  6092. align-self:center;
  6093. padding:5px 10px 5px 10px;
  6094. box-sizing:border-box;
  6095. width:100%;
  6096. }
  6097. #u22049_text {
  6098. border-width:0px;
  6099. word-wrap:break-word;
  6100. text-transform:none;
  6101. }
  6102. #u22050_img {
  6103. border-width:0px;
  6104. position:absolute;
  6105. left:0px;
  6106. top:0px;
  6107. width:81px;
  6108. height:40px;
  6109. }
  6110. #u22050 {
  6111. border-width:0px;
  6112. position:absolute;
  6113. left:243px;
  6114. top:40px;
  6115. width:81px;
  6116. height:40px;
  6117. display:flex;
  6118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6119. font-weight:400;
  6120. font-style:normal;
  6121. font-size:14px;
  6122. text-align:left;
  6123. line-height:30px;
  6124. }
  6125. #u22050 .text {
  6126. position:absolute;
  6127. align-self:center;
  6128. padding:5px 10px 5px 10px;
  6129. box-sizing:border-box;
  6130. width:100%;
  6131. }
  6132. #u22050_text {
  6133. border-width:0px;
  6134. word-wrap:break-word;
  6135. text-transform:none;
  6136. }
  6137. #u22051_img {
  6138. border-width:0px;
  6139. position:absolute;
  6140. left:0px;
  6141. top:0px;
  6142. width:220px;
  6143. height:40px;
  6144. }
  6145. #u22051 {
  6146. border-width:0px;
  6147. position:absolute;
  6148. left:324px;
  6149. top:40px;
  6150. width:220px;
  6151. height:40px;
  6152. display:flex;
  6153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6154. font-weight:400;
  6155. font-style:normal;
  6156. font-size:14px;
  6157. text-align:left;
  6158. line-height:30px;
  6159. }
  6160. #u22051 .text {
  6161. position:absolute;
  6162. align-self:center;
  6163. padding:5px 10px 5px 10px;
  6164. box-sizing:border-box;
  6165. width:100%;
  6166. }
  6167. #u22051_text {
  6168. border-width:0px;
  6169. word-wrap:break-word;
  6170. text-transform:none;
  6171. visibility:hidden;
  6172. }
  6173. #u22052_img {
  6174. border-width:0px;
  6175. position:absolute;
  6176. left:0px;
  6177. top:0px;
  6178. width:95px;
  6179. height:40px;
  6180. }
  6181. #u22052 {
  6182. border-width:0px;
  6183. position:absolute;
  6184. left:544px;
  6185. top:40px;
  6186. width:95px;
  6187. height:40px;
  6188. display:flex;
  6189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6190. font-weight:400;
  6191. font-style:normal;
  6192. font-size:14px;
  6193. text-align:left;
  6194. line-height:30px;
  6195. }
  6196. #u22052 .text {
  6197. position:absolute;
  6198. align-self:center;
  6199. padding:5px 10px 5px 10px;
  6200. box-sizing:border-box;
  6201. width:100%;
  6202. }
  6203. #u22052_text {
  6204. border-width:0px;
  6205. word-wrap:break-word;
  6206. text-transform:none;
  6207. }
  6208. #u22053_img {
  6209. border-width:0px;
  6210. position:absolute;
  6211. left:0px;
  6212. top:0px;
  6213. width:112px;
  6214. height:40px;
  6215. }
  6216. #u22053 {
  6217. border-width:0px;
  6218. position:absolute;
  6219. left:0px;
  6220. top:80px;
  6221. width:112px;
  6222. height:40px;
  6223. display:flex;
  6224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6225. font-weight:400;
  6226. font-style:normal;
  6227. font-size:14px;
  6228. text-align:left;
  6229. line-height:30px;
  6230. }
  6231. #u22053 .text {
  6232. position:absolute;
  6233. align-self:center;
  6234. padding:5px 10px 5px 10px;
  6235. box-sizing:border-box;
  6236. width:100%;
  6237. }
  6238. #u22053_text {
  6239. border-width:0px;
  6240. word-wrap:break-word;
  6241. text-transform:none;
  6242. }
  6243. #u22054_img {
  6244. border-width:0px;
  6245. position:absolute;
  6246. left:0px;
  6247. top:0px;
  6248. width:131px;
  6249. height:40px;
  6250. }
  6251. #u22054 {
  6252. border-width:0px;
  6253. position:absolute;
  6254. left:112px;
  6255. top:80px;
  6256. width:131px;
  6257. height:40px;
  6258. display:flex;
  6259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6260. font-weight:400;
  6261. font-style:normal;
  6262. font-size:14px;
  6263. text-align:left;
  6264. line-height:30px;
  6265. }
  6266. #u22054 .text {
  6267. position:absolute;
  6268. align-self:center;
  6269. padding:5px 10px 5px 10px;
  6270. box-sizing:border-box;
  6271. width:100%;
  6272. }
  6273. #u22054_text {
  6274. border-width:0px;
  6275. word-wrap:break-word;
  6276. text-transform:none;
  6277. }
  6278. #u22055_img {
  6279. border-width:0px;
  6280. position:absolute;
  6281. left:0px;
  6282. top:0px;
  6283. width:81px;
  6284. height:40px;
  6285. }
  6286. #u22055 {
  6287. border-width:0px;
  6288. position:absolute;
  6289. left:243px;
  6290. top:80px;
  6291. width:81px;
  6292. height:40px;
  6293. display:flex;
  6294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6295. font-weight:400;
  6296. font-style:normal;
  6297. font-size:14px;
  6298. text-align:left;
  6299. line-height:30px;
  6300. }
  6301. #u22055 .text {
  6302. position:absolute;
  6303. align-self:center;
  6304. padding:5px 10px 5px 10px;
  6305. box-sizing:border-box;
  6306. width:100%;
  6307. }
  6308. #u22055_text {
  6309. border-width:0px;
  6310. word-wrap:break-word;
  6311. text-transform:none;
  6312. }
  6313. #u22056_img {
  6314. border-width:0px;
  6315. position:absolute;
  6316. left:0px;
  6317. top:0px;
  6318. width:220px;
  6319. height:40px;
  6320. }
  6321. #u22056 {
  6322. border-width:0px;
  6323. position:absolute;
  6324. left:324px;
  6325. top:80px;
  6326. width:220px;
  6327. height:40px;
  6328. display:flex;
  6329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6330. font-weight:400;
  6331. font-style:normal;
  6332. font-size:14px;
  6333. text-align:left;
  6334. line-height:30px;
  6335. }
  6336. #u22056 .text {
  6337. position:absolute;
  6338. align-self:center;
  6339. padding:5px 10px 5px 10px;
  6340. box-sizing:border-box;
  6341. width:100%;
  6342. }
  6343. #u22056_text {
  6344. border-width:0px;
  6345. word-wrap:break-word;
  6346. text-transform:none;
  6347. visibility:hidden;
  6348. }
  6349. #u22057_img {
  6350. border-width:0px;
  6351. position:absolute;
  6352. left:0px;
  6353. top:0px;
  6354. width:95px;
  6355. height:40px;
  6356. }
  6357. #u22057 {
  6358. border-width:0px;
  6359. position:absolute;
  6360. left:544px;
  6361. top:80px;
  6362. width:95px;
  6363. height:40px;
  6364. display:flex;
  6365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6366. font-weight:400;
  6367. font-style:normal;
  6368. font-size:14px;
  6369. text-align:left;
  6370. line-height:30px;
  6371. }
  6372. #u22057 .text {
  6373. position:absolute;
  6374. align-self:center;
  6375. padding:5px 10px 5px 10px;
  6376. box-sizing:border-box;
  6377. width:100%;
  6378. }
  6379. #u22057_text {
  6380. border-width:0px;
  6381. word-wrap:break-word;
  6382. text-transform:none;
  6383. visibility:hidden;
  6384. }
  6385. #u22058_img {
  6386. border-width:0px;
  6387. position:absolute;
  6388. left:0px;
  6389. top:0px;
  6390. width:112px;
  6391. height:40px;
  6392. }
  6393. #u22058 {
  6394. border-width:0px;
  6395. position:absolute;
  6396. left:0px;
  6397. top:120px;
  6398. width:112px;
  6399. height:40px;
  6400. display:flex;
  6401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6402. font-weight:400;
  6403. font-style:normal;
  6404. font-size:14px;
  6405. text-align:left;
  6406. line-height:30px;
  6407. }
  6408. #u22058 .text {
  6409. position:absolute;
  6410. align-self:center;
  6411. padding:5px 10px 5px 10px;
  6412. box-sizing:border-box;
  6413. width:100%;
  6414. }
  6415. #u22058_text {
  6416. border-width:0px;
  6417. word-wrap:break-word;
  6418. text-transform:none;
  6419. }
  6420. #u22059_img {
  6421. border-width:0px;
  6422. position:absolute;
  6423. left:0px;
  6424. top:0px;
  6425. width:131px;
  6426. height:40px;
  6427. }
  6428. #u22059 {
  6429. border-width:0px;
  6430. position:absolute;
  6431. left:112px;
  6432. top:120px;
  6433. width:131px;
  6434. height:40px;
  6435. display:flex;
  6436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6437. font-weight:400;
  6438. font-style:normal;
  6439. font-size:14px;
  6440. text-align:left;
  6441. line-height:30px;
  6442. }
  6443. #u22059 .text {
  6444. position:absolute;
  6445. align-self:center;
  6446. padding:5px 10px 5px 10px;
  6447. box-sizing:border-box;
  6448. width:100%;
  6449. }
  6450. #u22059_text {
  6451. border-width:0px;
  6452. word-wrap:break-word;
  6453. text-transform:none;
  6454. }
  6455. #u22060_img {
  6456. border-width:0px;
  6457. position:absolute;
  6458. left:0px;
  6459. top:0px;
  6460. width:81px;
  6461. height:40px;
  6462. }
  6463. #u22060 {
  6464. border-width:0px;
  6465. position:absolute;
  6466. left:243px;
  6467. top:120px;
  6468. width:81px;
  6469. height:40px;
  6470. display:flex;
  6471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6472. font-weight:400;
  6473. font-style:normal;
  6474. font-size:14px;
  6475. text-align:left;
  6476. line-height:30px;
  6477. }
  6478. #u22060 .text {
  6479. position:absolute;
  6480. align-self:center;
  6481. padding:5px 10px 5px 10px;
  6482. box-sizing:border-box;
  6483. width:100%;
  6484. }
  6485. #u22060_text {
  6486. border-width:0px;
  6487. word-wrap:break-word;
  6488. text-transform:none;
  6489. }
  6490. #u22061_img {
  6491. border-width:0px;
  6492. position:absolute;
  6493. left:0px;
  6494. top:0px;
  6495. width:220px;
  6496. height:40px;
  6497. }
  6498. #u22061 {
  6499. border-width:0px;
  6500. position:absolute;
  6501. left:324px;
  6502. top:120px;
  6503. width:220px;
  6504. height:40px;
  6505. display:flex;
  6506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6507. font-weight:400;
  6508. font-style:normal;
  6509. font-size:14px;
  6510. text-align:left;
  6511. line-height:30px;
  6512. }
  6513. #u22061 .text {
  6514. position:absolute;
  6515. align-self:center;
  6516. padding:5px 10px 5px 10px;
  6517. box-sizing:border-box;
  6518. width:100%;
  6519. }
  6520. #u22061_text {
  6521. border-width:0px;
  6522. word-wrap:break-word;
  6523. text-transform:none;
  6524. }
  6525. #u22062_img {
  6526. border-width:0px;
  6527. position:absolute;
  6528. left:0px;
  6529. top:0px;
  6530. width:95px;
  6531. height:40px;
  6532. }
  6533. #u22062 {
  6534. border-width:0px;
  6535. position:absolute;
  6536. left:544px;
  6537. top:120px;
  6538. width:95px;
  6539. height:40px;
  6540. display:flex;
  6541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6542. font-weight:400;
  6543. font-style:normal;
  6544. font-size:14px;
  6545. text-align:left;
  6546. line-height:30px;
  6547. }
  6548. #u22062 .text {
  6549. position:absolute;
  6550. align-self:center;
  6551. padding:5px 10px 5px 10px;
  6552. box-sizing:border-box;
  6553. width:100%;
  6554. }
  6555. #u22062_text {
  6556. border-width:0px;
  6557. word-wrap:break-word;
  6558. text-transform:none;
  6559. }
  6560. #u22063_img {
  6561. border-width:0px;
  6562. position:absolute;
  6563. left:0px;
  6564. top:0px;
  6565. width:112px;
  6566. height:40px;
  6567. }
  6568. #u22063 {
  6569. border-width:0px;
  6570. position:absolute;
  6571. left:0px;
  6572. top:160px;
  6573. width:112px;
  6574. height:40px;
  6575. display:flex;
  6576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6577. font-weight:400;
  6578. font-style:normal;
  6579. font-size:14px;
  6580. text-align:left;
  6581. line-height:30px;
  6582. }
  6583. #u22063 .text {
  6584. position:absolute;
  6585. align-self:center;
  6586. padding:5px 10px 5px 10px;
  6587. box-sizing:border-box;
  6588. width:100%;
  6589. }
  6590. #u22063_text {
  6591. border-width:0px;
  6592. word-wrap:break-word;
  6593. text-transform:none;
  6594. }
  6595. #u22064_img {
  6596. border-width:0px;
  6597. position:absolute;
  6598. left:0px;
  6599. top:0px;
  6600. width:131px;
  6601. height:40px;
  6602. }
  6603. #u22064 {
  6604. border-width:0px;
  6605. position:absolute;
  6606. left:112px;
  6607. top:160px;
  6608. width:131px;
  6609. height:40px;
  6610. display:flex;
  6611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6612. font-weight:400;
  6613. font-style:normal;
  6614. font-size:12px;
  6615. text-align:left;
  6616. line-height:20px;
  6617. }
  6618. #u22064 .text {
  6619. position:absolute;
  6620. align-self:center;
  6621. padding:5px 10px 5px 10px;
  6622. box-sizing:border-box;
  6623. width:100%;
  6624. }
  6625. #u22064_text {
  6626. border-width:0px;
  6627. word-wrap:break-word;
  6628. text-transform:none;
  6629. }
  6630. #u22065_img {
  6631. border-width:0px;
  6632. position:absolute;
  6633. left:0px;
  6634. top:0px;
  6635. width:81px;
  6636. height:40px;
  6637. }
  6638. #u22065 {
  6639. border-width:0px;
  6640. position:absolute;
  6641. left:243px;
  6642. top:160px;
  6643. width:81px;
  6644. height:40px;
  6645. display:flex;
  6646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6647. font-weight:400;
  6648. font-style:normal;
  6649. font-size:12px;
  6650. text-align:left;
  6651. line-height:20px;
  6652. }
  6653. #u22065 .text {
  6654. position:absolute;
  6655. align-self:center;
  6656. padding:5px 10px 5px 10px;
  6657. box-sizing:border-box;
  6658. width:100%;
  6659. }
  6660. #u22065_text {
  6661. border-width:0px;
  6662. word-wrap:break-word;
  6663. text-transform:none;
  6664. }
  6665. #u22066_img {
  6666. border-width:0px;
  6667. position:absolute;
  6668. left:0px;
  6669. top:0px;
  6670. width:220px;
  6671. height:40px;
  6672. }
  6673. #u22066 {
  6674. border-width:0px;
  6675. position:absolute;
  6676. left:324px;
  6677. top:160px;
  6678. width:220px;
  6679. height:40px;
  6680. display:flex;
  6681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6682. font-weight:400;
  6683. font-style:normal;
  6684. font-size:14px;
  6685. text-align:left;
  6686. line-height:30px;
  6687. }
  6688. #u22066 .text {
  6689. position:absolute;
  6690. align-self:center;
  6691. padding:5px 10px 5px 10px;
  6692. box-sizing:border-box;
  6693. width:100%;
  6694. }
  6695. #u22066_text {
  6696. border-width:0px;
  6697. word-wrap:break-word;
  6698. text-transform:none;
  6699. visibility:hidden;
  6700. }
  6701. #u22067_img {
  6702. border-width:0px;
  6703. position:absolute;
  6704. left:0px;
  6705. top:0px;
  6706. width:95px;
  6707. height:40px;
  6708. }
  6709. #u22067 {
  6710. border-width:0px;
  6711. position:absolute;
  6712. left:544px;
  6713. top:160px;
  6714. width:95px;
  6715. height:40px;
  6716. display:flex;
  6717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6718. font-weight:400;
  6719. font-style:normal;
  6720. font-size:14px;
  6721. text-align:left;
  6722. line-height:30px;
  6723. }
  6724. #u22067 .text {
  6725. position:absolute;
  6726. align-self:center;
  6727. padding:5px 10px 5px 10px;
  6728. box-sizing:border-box;
  6729. width:100%;
  6730. }
  6731. #u22067_text {
  6732. border-width:0px;
  6733. word-wrap:break-word;
  6734. text-transform:none;
  6735. visibility:hidden;
  6736. }
  6737. #u22068_div {
  6738. border-width:0px;
  6739. position:absolute;
  6740. left:0px;
  6741. top:0px;
  6742. width:641px;
  6743. height:40px;
  6744. background:inherit;
  6745. background-color:rgba(127, 127, 127, 1);
  6746. border:none;
  6747. border-radius:0px;
  6748. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  6749. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  6750. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  6751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6752. font-weight:400;
  6753. font-style:normal;
  6754. font-size:14px;
  6755. color:#FFFFFF;
  6756. line-height:20px;
  6757. }
  6758. #u22068 {
  6759. border-width:0px;
  6760. position:absolute;
  6761. left:2777px;
  6762. top:401px;
  6763. width:641px;
  6764. height:40px;
  6765. display:flex;
  6766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6767. font-weight:400;
  6768. font-style:normal;
  6769. font-size:14px;
  6770. color:#FFFFFF;
  6771. line-height:20px;
  6772. }
  6773. #u22068 .text {
  6774. position:absolute;
  6775. align-self:flex-start;
  6776. padding:10px 10px 10px 10px;
  6777. box-sizing:border-box;
  6778. width:100%;
  6779. }
  6780. #u22068_text {
  6781. border-width:0px;
  6782. word-wrap:break-word;
  6783. text-transform:none;
  6784. }
  6785. #u22069 {
  6786. border-width:0px;
  6787. position:absolute;
  6788. left:0px;
  6789. top:0px;
  6790. width:0px;
  6791. height:0px;
  6792. }
  6793. #u22070_div {
  6794. border-width:0px;
  6795. position:absolute;
  6796. left:0px;
  6797. top:0px;
  6798. width:200px;
  6799. height:1192px;
  6800. background:inherit;
  6801. background-color:rgba(255, 255, 255, 1);
  6802. border:none;
  6803. border-radius:0px;
  6804. -moz-box-shadow:none;
  6805. -webkit-box-shadow:none;
  6806. box-shadow:none;
  6807. }
  6808. #u22070 {
  6809. border-width:0px;
  6810. position:absolute;
  6811. left:120px;
  6812. top:50px;
  6813. width:200px;
  6814. height:1192px;
  6815. display:flex;
  6816. }
  6817. #u22070 .text {
  6818. position:absolute;
  6819. align-self:center;
  6820. padding:2px 2px 2px 2px;
  6821. box-sizing:border-box;
  6822. width:100%;
  6823. }
  6824. #u22070_text {
  6825. border-width:0px;
  6826. word-wrap:break-word;
  6827. text-transform:none;
  6828. visibility:hidden;
  6829. }
  6830. #u22071_div {
  6831. border-width:0px;
  6832. position:absolute;
  6833. left:0px;
  6834. top:0px;
  6835. width:200px;
  6836. height:60px;
  6837. background:inherit;
  6838. background-color:rgba(224, 231, 247, 1);
  6839. border:none;
  6840. border-radius:0px;
  6841. -moz-box-shadow:none;
  6842. -webkit-box-shadow:none;
  6843. box-shadow:none;
  6844. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6845. font-weight:500;
  6846. font-style:normal;
  6847. font-size:18px;
  6848. }
  6849. #u22071 {
  6850. border-width:0px;
  6851. position:absolute;
  6852. left:120px;
  6853. top:50px;
  6854. width:200px;
  6855. height:60px;
  6856. display:flex;
  6857. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6858. font-weight:500;
  6859. font-style:normal;
  6860. font-size:18px;
  6861. }
  6862. #u22071 .text {
  6863. position:absolute;
  6864. align-self:center;
  6865. padding:0px 0px 0px 20px;
  6866. box-sizing:border-box;
  6867. width:100%;
  6868. }
  6869. #u22071_text {
  6870. border-width:0px;
  6871. word-wrap:break-word;
  6872. text-transform:none;
  6873. }
  6874. #u22072_div {
  6875. border-width:0px;
  6876. position:absolute;
  6877. left:0px;
  6878. top:0px;
  6879. width:65px;
  6880. height:22px;
  6881. background:inherit;
  6882. background-color:rgba(255, 255, 255, 0);
  6883. border:none;
  6884. border-radius:0px;
  6885. -moz-box-shadow:none;
  6886. -webkit-box-shadow:none;
  6887. box-shadow:none;
  6888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6889. font-weight:400;
  6890. font-style:normal;
  6891. font-size:16px;
  6892. }
  6893. #u22072 {
  6894. border-width:0px;
  6895. position:absolute;
  6896. left:147px;
  6897. top:392px;
  6898. width:65px;
  6899. height:22px;
  6900. display:flex;
  6901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6902. font-weight:400;
  6903. font-style:normal;
  6904. font-size:16px;
  6905. }
  6906. #u22072 .text {
  6907. position:absolute;
  6908. align-self:flex-start;
  6909. padding:0px 0px 0px 0px;
  6910. box-sizing:border-box;
  6911. width:100%;
  6912. }
  6913. #u22072_text {
  6914. border-width:0px;
  6915. white-space:nowrap;
  6916. text-transform:none;
  6917. }
  6918. #u22073_div {
  6919. border-width:0px;
  6920. position:absolute;
  6921. left:0px;
  6922. top:0px;
  6923. width:65px;
  6924. height:22px;
  6925. background:inherit;
  6926. background-color:rgba(255, 255, 255, 0);
  6927. border:none;
  6928. border-radius:0px;
  6929. -moz-box-shadow:none;
  6930. -webkit-box-shadow:none;
  6931. box-shadow:none;
  6932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6933. font-weight:400;
  6934. font-style:normal;
  6935. font-size:16px;
  6936. }
  6937. #u22073 {
  6938. border-width:0px;
  6939. position:absolute;
  6940. left:147px;
  6941. top:434px;
  6942. width:65px;
  6943. height:22px;
  6944. display:flex;
  6945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6946. font-weight:400;
  6947. font-style:normal;
  6948. font-size:16px;
  6949. }
  6950. #u22073 .text {
  6951. position:absolute;
  6952. align-self:flex-start;
  6953. padding:0px 0px 0px 0px;
  6954. box-sizing:border-box;
  6955. width:100%;
  6956. }
  6957. #u22073_text {
  6958. border-width:0px;
  6959. white-space:nowrap;
  6960. text-transform:none;
  6961. }
  6962. #u22074_img {
  6963. border-width:0px;
  6964. position:absolute;
  6965. left:0px;
  6966. top:0px;
  6967. width:201px;
  6968. height:2px;
  6969. }
  6970. #u22074 {
  6971. border-width:0px;
  6972. position:absolute;
  6973. left:120px;
  6974. top:335px;
  6975. width:200px;
  6976. height:1px;
  6977. display:flex;
  6978. }
  6979. #u22074 .text {
  6980. position:absolute;
  6981. align-self:center;
  6982. padding:2px 2px 2px 2px;
  6983. box-sizing:border-box;
  6984. width:100%;
  6985. }
  6986. #u22074_text {
  6987. border-width:0px;
  6988. word-wrap:break-word;
  6989. text-transform:none;
  6990. visibility:hidden;
  6991. }
  6992. #u22075_div {
  6993. border-width:0px;
  6994. position:absolute;
  6995. left:0px;
  6996. top:0px;
  6997. width:49px;
  6998. height:17px;
  6999. background:inherit;
  7000. background-color:rgba(255, 255, 255, 0);
  7001. border:none;
  7002. border-radius:0px;
  7003. -moz-box-shadow:none;
  7004. -webkit-box-shadow:none;
  7005. box-shadow:none;
  7006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7007. font-weight:400;
  7008. font-style:normal;
  7009. font-size:12px;
  7010. color:#AAAAAA;
  7011. }
  7012. #u22075 {
  7013. border-width:0px;
  7014. position:absolute;
  7015. left:147px;
  7016. top:355px;
  7017. width:49px;
  7018. height:17px;
  7019. display:flex;
  7020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7021. font-weight:400;
  7022. font-style:normal;
  7023. font-size:12px;
  7024. color:#AAAAAA;
  7025. }
  7026. #u22075 .text {
  7027. position:absolute;
  7028. align-self:flex-start;
  7029. padding:0px 0px 0px 0px;
  7030. box-sizing:border-box;
  7031. width:100%;
  7032. }
  7033. #u22075_text {
  7034. border-width:0px;
  7035. white-space:nowrap;
  7036. text-transform:none;
  7037. }
  7038. #u22076_div {
  7039. border-width:0px;
  7040. position:absolute;
  7041. left:0px;
  7042. top:0px;
  7043. width:33px;
  7044. height:22px;
  7045. background:inherit;
  7046. background-color:rgba(255, 255, 255, 0);
  7047. border:none;
  7048. border-radius:0px;
  7049. -moz-box-shadow:none;
  7050. -webkit-box-shadow:none;
  7051. box-shadow:none;
  7052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7053. font-weight:400;
  7054. font-style:normal;
  7055. font-size:16px;
  7056. }
  7057. #u22076 {
  7058. border-width:0px;
  7059. position:absolute;
  7060. left:147px;
  7061. top:476px;
  7062. width:33px;
  7063. height:22px;
  7064. display:flex;
  7065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7066. font-weight:400;
  7067. font-style:normal;
  7068. font-size:16px;
  7069. }
  7070. #u22076 .text {
  7071. position:absolute;
  7072. align-self:flex-start;
  7073. padding:0px 0px 0px 0px;
  7074. box-sizing:border-box;
  7075. width:100%;
  7076. }
  7077. #u22076_text {
  7078. border-width:0px;
  7079. white-space:nowrap;
  7080. text-transform:none;
  7081. }
  7082. #u22077_div {
  7083. border-width:0px;
  7084. position:absolute;
  7085. left:0px;
  7086. top:0px;
  7087. width:33px;
  7088. height:22px;
  7089. background:inherit;
  7090. background-color:rgba(255, 255, 255, 0);
  7091. border:none;
  7092. border-radius:0px;
  7093. -moz-box-shadow:none;
  7094. -webkit-box-shadow:none;
  7095. box-shadow:none;
  7096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7097. font-weight:400;
  7098. font-style:normal;
  7099. font-size:16px;
  7100. }
  7101. #u22077 {
  7102. border-width:0px;
  7103. position:absolute;
  7104. left:147px;
  7105. top:518px;
  7106. width:33px;
  7107. height:22px;
  7108. display:flex;
  7109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7110. font-weight:400;
  7111. font-style:normal;
  7112. font-size:16px;
  7113. }
  7114. #u22077 .text {
  7115. position:absolute;
  7116. align-self:flex-start;
  7117. padding:0px 0px 0px 0px;
  7118. box-sizing:border-box;
  7119. width:100%;
  7120. }
  7121. #u22077_text {
  7122. border-width:0px;
  7123. white-space:nowrap;
  7124. text-transform:none;
  7125. }
  7126. #u22078_div {
  7127. border-width:0px;
  7128. position:absolute;
  7129. left:0px;
  7130. top:0px;
  7131. width:49px;
  7132. height:22px;
  7133. background:inherit;
  7134. background-color:rgba(255, 255, 255, 0);
  7135. border:none;
  7136. border-radius:0px;
  7137. -moz-box-shadow:none;
  7138. -webkit-box-shadow:none;
  7139. box-shadow:none;
  7140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7141. font-weight:400;
  7142. font-style:normal;
  7143. font-size:16px;
  7144. }
  7145. #u22078 {
  7146. border-width:0px;
  7147. position:absolute;
  7148. left:147px;
  7149. top:560px;
  7150. width:49px;
  7151. height:22px;
  7152. display:flex;
  7153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7154. font-weight:400;
  7155. font-style:normal;
  7156. font-size:16px;
  7157. }
  7158. #u22078 .text {
  7159. position:absolute;
  7160. align-self:flex-start;
  7161. padding:0px 0px 0px 0px;
  7162. box-sizing:border-box;
  7163. width:100%;
  7164. }
  7165. #u22078_text {
  7166. border-width:0px;
  7167. white-space:nowrap;
  7168. text-transform:none;
  7169. }
  7170. #u22079_div {
  7171. border-width:0px;
  7172. position:absolute;
  7173. left:0px;
  7174. top:0px;
  7175. width:65px;
  7176. height:22px;
  7177. background:inherit;
  7178. background-color:rgba(255, 255, 255, 0);
  7179. border:none;
  7180. border-radius:0px;
  7181. -moz-box-shadow:none;
  7182. -webkit-box-shadow:none;
  7183. box-shadow:none;
  7184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7185. font-weight:400;
  7186. font-style:normal;
  7187. font-size:16px;
  7188. }
  7189. #u22079 {
  7190. border-width:0px;
  7191. position:absolute;
  7192. left:147px;
  7193. top:209px;
  7194. width:65px;
  7195. height:22px;
  7196. display:flex;
  7197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7198. font-weight:400;
  7199. font-style:normal;
  7200. font-size:16px;
  7201. }
  7202. #u22079 .text {
  7203. position:absolute;
  7204. align-self:flex-start;
  7205. padding:0px 0px 0px 0px;
  7206. box-sizing:border-box;
  7207. width:100%;
  7208. }
  7209. #u22079_text {
  7210. border-width:0px;
  7211. white-space:nowrap;
  7212. text-transform:none;
  7213. }
  7214. #u22080_div {
  7215. border-width:0px;
  7216. position:absolute;
  7217. left:0px;
  7218. top:0px;
  7219. width:49px;
  7220. height:17px;
  7221. background:inherit;
  7222. background-color:rgba(255, 255, 255, 0);
  7223. border:none;
  7224. border-radius:0px;
  7225. -moz-box-shadow:none;
  7226. -webkit-box-shadow:none;
  7227. box-shadow:none;
  7228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7229. font-weight:400;
  7230. font-style:normal;
  7231. font-size:12px;
  7232. color:#AAAAAA;
  7233. }
  7234. #u22080 {
  7235. border-width:0px;
  7236. position:absolute;
  7237. left:147px;
  7238. top:130px;
  7239. width:49px;
  7240. height:17px;
  7241. display:flex;
  7242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7243. font-weight:400;
  7244. font-style:normal;
  7245. font-size:12px;
  7246. color:#AAAAAA;
  7247. }
  7248. #u22080 .text {
  7249. position:absolute;
  7250. align-self:flex-start;
  7251. padding:0px 0px 0px 0px;
  7252. box-sizing:border-box;
  7253. width:100%;
  7254. }
  7255. #u22080_text {
  7256. border-width:0px;
  7257. white-space:nowrap;
  7258. text-transform:none;
  7259. }
  7260. #u22081_div {
  7261. border-width:0px;
  7262. position:absolute;
  7263. left:0px;
  7264. top:0px;
  7265. width:65px;
  7266. height:22px;
  7267. background:inherit;
  7268. background-color:rgba(255, 255, 255, 0);
  7269. border:none;
  7270. border-radius:0px;
  7271. -moz-box-shadow:none;
  7272. -webkit-box-shadow:none;
  7273. box-shadow:none;
  7274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7275. font-weight:400;
  7276. font-style:normal;
  7277. font-size:16px;
  7278. }
  7279. #u22081 {
  7280. border-width:0px;
  7281. position:absolute;
  7282. left:147px;
  7283. top:251px;
  7284. width:65px;
  7285. height:22px;
  7286. display:flex;
  7287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7288. font-weight:400;
  7289. font-style:normal;
  7290. font-size:16px;
  7291. }
  7292. #u22081 .text {
  7293. position:absolute;
  7294. align-self:flex-start;
  7295. padding:0px 0px 0px 0px;
  7296. box-sizing:border-box;
  7297. width:100%;
  7298. }
  7299. #u22081_text {
  7300. border-width:0px;
  7301. white-space:nowrap;
  7302. text-transform:none;
  7303. }
  7304. #u22082_div {
  7305. border-width:0px;
  7306. position:absolute;
  7307. left:0px;
  7308. top:0px;
  7309. width:65px;
  7310. height:22px;
  7311. background:inherit;
  7312. background-color:rgba(255, 255, 255, 0);
  7313. border:none;
  7314. border-radius:0px;
  7315. -moz-box-shadow:none;
  7316. -webkit-box-shadow:none;
  7317. box-shadow:none;
  7318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7319. font-weight:400;
  7320. font-style:normal;
  7321. font-size:16px;
  7322. }
  7323. #u22082 {
  7324. border-width:0px;
  7325. position:absolute;
  7326. left:147px;
  7327. top:293px;
  7328. width:65px;
  7329. height:22px;
  7330. display:flex;
  7331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7332. font-weight:400;
  7333. font-style:normal;
  7334. font-size:16px;
  7335. }
  7336. #u22082 .text {
  7337. position:absolute;
  7338. align-self:flex-start;
  7339. padding:0px 0px 0px 0px;
  7340. box-sizing:border-box;
  7341. width:100%;
  7342. }
  7343. #u22082_text {
  7344. border-width:0px;
  7345. white-space:nowrap;
  7346. text-transform:none;
  7347. }
  7348. #u22083_div {
  7349. border-width:0px;
  7350. position:absolute;
  7351. left:0px;
  7352. top:0px;
  7353. width:33px;
  7354. height:22px;
  7355. background:inherit;
  7356. background-color:rgba(255, 255, 255, 0);
  7357. border:none;
  7358. border-radius:0px;
  7359. -moz-box-shadow:none;
  7360. -webkit-box-shadow:none;
  7361. box-shadow:none;
  7362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7363. font-weight:400;
  7364. font-style:normal;
  7365. font-size:16px;
  7366. }
  7367. #u22083 {
  7368. border-width:0px;
  7369. position:absolute;
  7370. left:147px;
  7371. top:167px;
  7372. width:33px;
  7373. height:22px;
  7374. display:flex;
  7375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7376. font-weight:400;
  7377. font-style:normal;
  7378. font-size:16px;
  7379. }
  7380. #u22083 .text {
  7381. position:absolute;
  7382. align-self:flex-start;
  7383. padding:0px 0px 0px 0px;
  7384. box-sizing:border-box;
  7385. width:100%;
  7386. }
  7387. #u22083_text {
  7388. border-width:0px;
  7389. white-space:nowrap;
  7390. text-transform:none;
  7391. }