styles.css 165 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:3337px;
  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. #u23740_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. #u23740 {
  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. #u23740 .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. #u23740_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u23741_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. #u23741 {
  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. #u23741 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u23741_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u23742 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u23743_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u23743 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u23743 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u23743_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u23744_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. #u23744 {
  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. #u23744 .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. #u23744_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u23745_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. #u23745 {
  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. #u23745 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u23745_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u23746_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. #u23746 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u23746 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u23746_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u23747 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u23748_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. #u23748 {
  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. #u23748 .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. #u23748_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u23749_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u23749 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u23749 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u23749_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u23750 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u23751_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. #u23751 {
  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. #u23751 .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. #u23751_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u23752_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u23752 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u23752 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u23752_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u23753 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u23754_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. #u23754 {
  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. #u23754 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u23754_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u23755_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u23755 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u23755 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u23755_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u23756 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u23757_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. #u23757 {
  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. #u23757 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u23757_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u23758_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u23758 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u23758 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u23758_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u23759 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u23760_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. #u23760 {
  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. #u23760 .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. #u23760_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u23761_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u23761 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u23761 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u23761_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u23762 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u23763_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. #u23763 {
  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. #u23763 .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. #u23763_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u23764_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u23764 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u23764 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u23764_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u23765 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u23766_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. #u23766 {
  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. #u23766 .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. #u23766_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u23767_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u23767 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:407px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u23767 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u23767_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u23768 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u23769_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. #u23769 {
  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. #u23769 .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. #u23769_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u23770_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u23770 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:449px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u23770 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u23770_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u23771 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u23772_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. #u23772 {
  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. #u23772 .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. #u23772_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u23773_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u23773 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:575px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u23773 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u23773_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u23774 {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:0px;
  1013. top:0px;
  1014. width:0px;
  1015. height:0px;
  1016. }
  1017. #u23775_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. #u23775 {
  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. #u23775 .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. #u23775_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u23776_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:14px;
  1069. height:14px;
  1070. }
  1071. #u23776 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:533px;
  1076. width:14px;
  1077. height:14px;
  1078. display:flex;
  1079. }
  1080. #u23776 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u23776_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u23777_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. #u23777_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. #u23777_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. #u23777 {
  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. #u23777 .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. #u23777_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. #u23777.disabled {
  1184. }
  1185. .u23777_input_option {
  1186. font-size:14px;
  1187. }
  1188. #u23778_img {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:22px;
  1194. height:22px;
  1195. }
  1196. #u23778 {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:1194px;
  1200. top:15px;
  1201. width:22px;
  1202. height:22px;
  1203. display:flex;
  1204. }
  1205. #u23778 .text {
  1206. position:absolute;
  1207. align-self:center;
  1208. padding:2px 2px 2px 2px;
  1209. box-sizing:border-box;
  1210. width:100%;
  1211. }
  1212. #u23778_text {
  1213. border-width:0px;
  1214. word-wrap:break-word;
  1215. text-transform:none;
  1216. visibility:hidden;
  1217. }
  1218. #u23779_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. #u23779 {
  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. #u23779 .text {
  1253. position:absolute;
  1254. align-self:center;
  1255. padding:0px 0px 0px 0px;
  1256. box-sizing:border-box;
  1257. width:100%;
  1258. }
  1259. #u23779_text {
  1260. border-width:0px;
  1261. word-wrap:break-word;
  1262. text-transform:none;
  1263. }
  1264. #u23780_img {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:2px;
  1270. height:12px;
  1271. }
  1272. #u23780 {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:1452px;
  1276. top:19px;
  1277. width:1px;
  1278. height:11px;
  1279. display:flex;
  1280. }
  1281. #u23780 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:2px 2px 2px 2px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u23780_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. visibility:hidden;
  1293. }
  1294. #u23781 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:0px;
  1300. height:0px;
  1301. }
  1302. #u23782_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. #u23782 {
  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. #u23782 .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. #u23782_text {
  1344. border-width:0px;
  1345. white-space:nowrap;
  1346. text-transform:none;
  1347. }
  1348. #u23783_img {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:0px;
  1352. top:0px;
  1353. width:14px;
  1354. height:14px;
  1355. }
  1356. #u23783 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:20px;
  1360. top:323px;
  1361. width:14px;
  1362. height:14px;
  1363. display:flex;
  1364. }
  1365. #u23783 .text {
  1366. position:absolute;
  1367. align-self:center;
  1368. padding:2px 2px 2px 2px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u23783_text {
  1373. border-width:0px;
  1374. word-wrap:break-word;
  1375. text-transform:none;
  1376. visibility:hidden;
  1377. }
  1378. #u23784 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:0px;
  1384. height:0px;
  1385. }
  1386. #u23785_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. #u23785 {
  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. #u23785 .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. #u23785_text {
  1428. border-width:0px;
  1429. white-space:nowrap;
  1430. text-transform:none;
  1431. }
  1432. #u23786_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:14px;
  1438. height:14px;
  1439. }
  1440. #u23786 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:20px;
  1444. top:365px;
  1445. width:14px;
  1446. height:14px;
  1447. display:flex;
  1448. }
  1449. #u23786 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u23786_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u23787 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:0px;
  1468. height:0px;
  1469. }
  1470. #u23788_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. #u23788 {
  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. #u23788 .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. #u23788_text {
  1512. border-width:0px;
  1513. white-space:nowrap;
  1514. text-transform:none;
  1515. }
  1516. #u23789_img {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:14px;
  1522. height:14px;
  1523. }
  1524. #u23789 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:20px;
  1528. top:155px;
  1529. width:14px;
  1530. height:14px;
  1531. display:flex;
  1532. }
  1533. #u23789 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:2px 2px 2px 2px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u23789_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. visibility:hidden;
  1545. }
  1546. #u23790 {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:0px;
  1552. height:0px;
  1553. }
  1554. #u23791_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. #u23791 {
  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. #u23791 .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. #u23791_text {
  1596. border-width:0px;
  1597. white-space:nowrap;
  1598. text-transform:none;
  1599. }
  1600. #u23792_img {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:14px;
  1606. height:14px;
  1607. }
  1608. #u23792 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:20px;
  1612. top:491px;
  1613. width:14px;
  1614. height:14px;
  1615. display:flex;
  1616. }
  1617. #u23792 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 2px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u23792_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. visibility:hidden;
  1629. }
  1630. #u23793 {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:0px;
  1634. top:0px;
  1635. width:0px;
  1636. height:0px;
  1637. }
  1638. #u23794_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. #u23794 {
  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. #u23794 .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. #u23794_text {
  1680. border-width:0px;
  1681. white-space:nowrap;
  1682. text-transform:none;
  1683. }
  1684. #u23795_img {
  1685. border-width:0px;
  1686. position:absolute;
  1687. left:0px;
  1688. top:0px;
  1689. width:14px;
  1690. height:14px;
  1691. }
  1692. #u23795 {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:20px;
  1696. top:197px;
  1697. width:14px;
  1698. height:14px;
  1699. display:flex;
  1700. }
  1701. #u23795 .text {
  1702. position:absolute;
  1703. align-self:center;
  1704. padding:2px 2px 2px 2px;
  1705. box-sizing:border-box;
  1706. width:100%;
  1707. }
  1708. #u23795_text {
  1709. border-width:0px;
  1710. word-wrap:break-word;
  1711. text-transform:none;
  1712. visibility:hidden;
  1713. }
  1714. #u23796 {
  1715. border-width:0px;
  1716. position:absolute;
  1717. left:0px;
  1718. top:0px;
  1719. width:0px;
  1720. height:0px;
  1721. }
  1722. #u23797_div {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:0px;
  1726. top:0px;
  1727. width:1181px;
  1728. height:1180px;
  1729. background:inherit;
  1730. background-color:rgba(255, 255, 255, 1);
  1731. border:none;
  1732. border-radius:0px;
  1733. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1734. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1735. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1736. color:#1890FF;
  1737. }
  1738. #u23797 {
  1739. border-width:0px;
  1740. position:absolute;
  1741. left:329px;
  1742. top:50px;
  1743. width:1181px;
  1744. height:1180px;
  1745. display:flex;
  1746. color:#1890FF;
  1747. }
  1748. #u23797 .text {
  1749. position:absolute;
  1750. align-self:center;
  1751. padding:2px 2px 2px 2px;
  1752. box-sizing:border-box;
  1753. width:100%;
  1754. }
  1755. #u23797_text {
  1756. border-width:0px;
  1757. word-wrap:break-word;
  1758. text-transform:none;
  1759. visibility:hidden;
  1760. }
  1761. #u23798_div {
  1762. border-width:0px;
  1763. position:absolute;
  1764. left:0px;
  1765. top:0px;
  1766. width:73px;
  1767. height:50px;
  1768. background:inherit;
  1769. background-color:rgba(255, 255, 255, 0);
  1770. border:none;
  1771. border-left:0px;
  1772. border-top:0px;
  1773. border-right:0px;
  1774. border-radius:0px;
  1775. border-bottom-right-radius:0px;
  1776. border-bottom-left-radius:0px;
  1777. -moz-box-shadow:none;
  1778. -webkit-box-shadow:none;
  1779. box-shadow:none;
  1780. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1781. font-weight:500;
  1782. font-style:normal;
  1783. font-size:18px;
  1784. }
  1785. #u23798 {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:348px;
  1789. top:50px;
  1790. width:73px;
  1791. height:50px;
  1792. display:flex;
  1793. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1794. font-weight:500;
  1795. font-style:normal;
  1796. font-size:18px;
  1797. }
  1798. #u23798 .text {
  1799. position:absolute;
  1800. align-self:center;
  1801. padding:0px 0px 0px 0px;
  1802. box-sizing:border-box;
  1803. width:100%;
  1804. }
  1805. #u23798_text {
  1806. border-width:0px;
  1807. white-space:nowrap;
  1808. text-transform:none;
  1809. }
  1810. #u23799_div {
  1811. border-width:0px;
  1812. position:absolute;
  1813. left:0px;
  1814. top:0px;
  1815. width:67px;
  1816. height:30px;
  1817. background:inherit;
  1818. background-color:rgba(24, 144, 255, 1);
  1819. border:none;
  1820. border-radius:4px;
  1821. -moz-box-shadow:none;
  1822. -webkit-box-shadow:none;
  1823. box-shadow:none;
  1824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1825. font-weight:400;
  1826. font-style:normal;
  1827. font-size:14px;
  1828. color:#FFFFFF;
  1829. }
  1830. #u23799 {
  1831. border-width:0px;
  1832. position:absolute;
  1833. left:350px;
  1834. top:154px;
  1835. width:67px;
  1836. height:30px;
  1837. display:flex;
  1838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1839. font-weight:400;
  1840. font-style:normal;
  1841. font-size:14px;
  1842. color:#FFFFFF;
  1843. }
  1844. #u23799 .text {
  1845. position:absolute;
  1846. align-self:center;
  1847. padding:5px 15px 5px 15px;
  1848. box-sizing:border-box;
  1849. width:100%;
  1850. }
  1851. #u23799_text {
  1852. border-width:0px;
  1853. white-space:nowrap;
  1854. text-transform:none;
  1855. }
  1856. #u23800 {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:348px;
  1860. top:194px;
  1861. width:1137px;
  1862. height:574px;
  1863. }
  1864. #u23801_img {
  1865. border-width:0px;
  1866. position:absolute;
  1867. left:0px;
  1868. top:0px;
  1869. width:162px;
  1870. height:39px;
  1871. }
  1872. #u23801 {
  1873. border-width:0px;
  1874. position:absolute;
  1875. left:0px;
  1876. top:0px;
  1877. width:162px;
  1878. height:39px;
  1879. display:flex;
  1880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1881. font-weight:400;
  1882. font-style:normal;
  1883. font-size:12px;
  1884. color:#FFFFFF;
  1885. }
  1886. #u23801 .text {
  1887. position:absolute;
  1888. align-self:center;
  1889. padding:2px 2px 2px 0px;
  1890. box-sizing:border-box;
  1891. width:100%;
  1892. }
  1893. #u23801_text {
  1894. border-width:0px;
  1895. word-wrap:break-word;
  1896. text-transform:none;
  1897. }
  1898. #u23802_img {
  1899. border-width:0px;
  1900. position:absolute;
  1901. left:0px;
  1902. top:0px;
  1903. width:162px;
  1904. height:39px;
  1905. }
  1906. #u23802 {
  1907. border-width:0px;
  1908. position:absolute;
  1909. left:162px;
  1910. top:0px;
  1911. width:162px;
  1912. height:39px;
  1913. display:flex;
  1914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1915. font-weight:400;
  1916. font-style:normal;
  1917. font-size:12px;
  1918. color:#FFFFFF;
  1919. }
  1920. #u23802 .text {
  1921. position:absolute;
  1922. align-self:center;
  1923. padding:2px 2px 2px 0px;
  1924. box-sizing:border-box;
  1925. width:100%;
  1926. }
  1927. #u23802_text {
  1928. border-width:0px;
  1929. word-wrap:break-word;
  1930. text-transform:none;
  1931. }
  1932. #u23803_img {
  1933. border-width:0px;
  1934. position:absolute;
  1935. left:0px;
  1936. top:0px;
  1937. width:162px;
  1938. height:39px;
  1939. }
  1940. #u23803 {
  1941. border-width:0px;
  1942. position:absolute;
  1943. left:324px;
  1944. top:0px;
  1945. width:162px;
  1946. height:39px;
  1947. display:flex;
  1948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1949. font-weight:400;
  1950. font-style:normal;
  1951. font-size:12px;
  1952. color:#FFFFFF;
  1953. }
  1954. #u23803 .text {
  1955. position:absolute;
  1956. align-self:center;
  1957. padding:2px 2px 2px 0px;
  1958. box-sizing:border-box;
  1959. width:100%;
  1960. }
  1961. #u23803_text {
  1962. border-width:0px;
  1963. word-wrap:break-word;
  1964. text-transform:none;
  1965. }
  1966. #u23804_img {
  1967. border-width:0px;
  1968. position:absolute;
  1969. left:0px;
  1970. top:0px;
  1971. width:162px;
  1972. height:39px;
  1973. }
  1974. #u23804 {
  1975. border-width:0px;
  1976. position:absolute;
  1977. left:486px;
  1978. top:0px;
  1979. width:162px;
  1980. height:39px;
  1981. display:flex;
  1982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1983. font-weight:400;
  1984. font-style:normal;
  1985. font-size:12px;
  1986. color:#FFFFFF;
  1987. }
  1988. #u23804 .text {
  1989. position:absolute;
  1990. align-self:center;
  1991. padding:2px 2px 2px 0px;
  1992. box-sizing:border-box;
  1993. width:100%;
  1994. }
  1995. #u23804_text {
  1996. border-width:0px;
  1997. word-wrap:break-word;
  1998. text-transform:none;
  1999. }
  2000. #u23805_img {
  2001. border-width:0px;
  2002. position:absolute;
  2003. left:0px;
  2004. top:0px;
  2005. width:162px;
  2006. height:39px;
  2007. }
  2008. #u23805 {
  2009. border-width:0px;
  2010. position:absolute;
  2011. left:648px;
  2012. top:0px;
  2013. width:162px;
  2014. height:39px;
  2015. display:flex;
  2016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2017. font-weight:400;
  2018. font-style:normal;
  2019. font-size:12px;
  2020. color:#FFFFFF;
  2021. }
  2022. #u23805 .text {
  2023. position:absolute;
  2024. align-self:center;
  2025. padding:2px 2px 2px 0px;
  2026. box-sizing:border-box;
  2027. width:100%;
  2028. }
  2029. #u23805_text {
  2030. border-width:0px;
  2031. word-wrap:break-word;
  2032. text-transform:none;
  2033. }
  2034. #u23806_img {
  2035. border-width:0px;
  2036. position:absolute;
  2037. left:0px;
  2038. top:0px;
  2039. width:162px;
  2040. height:39px;
  2041. }
  2042. #u23806 {
  2043. border-width:0px;
  2044. position:absolute;
  2045. left:810px;
  2046. top:0px;
  2047. width:162px;
  2048. height:39px;
  2049. display:flex;
  2050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2051. font-weight:400;
  2052. font-style:normal;
  2053. font-size:12px;
  2054. color:#FFFFFF;
  2055. }
  2056. #u23806 .text {
  2057. position:absolute;
  2058. align-self:center;
  2059. padding:2px 2px 2px 0px;
  2060. box-sizing:border-box;
  2061. width:100%;
  2062. }
  2063. #u23806_text {
  2064. border-width:0px;
  2065. word-wrap:break-word;
  2066. text-transform:none;
  2067. }
  2068. #u23807_img {
  2069. border-width:0px;
  2070. position:absolute;
  2071. left:0px;
  2072. top:0px;
  2073. width:165px;
  2074. height:39px;
  2075. }
  2076. #u23807 {
  2077. border-width:0px;
  2078. position:absolute;
  2079. left:972px;
  2080. top:0px;
  2081. width:165px;
  2082. height:39px;
  2083. display:flex;
  2084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2085. font-weight:400;
  2086. font-style:normal;
  2087. font-size:12px;
  2088. color:#FFFFFF;
  2089. }
  2090. #u23807 .text {
  2091. position:absolute;
  2092. align-self:center;
  2093. padding:2px 2px 2px 0px;
  2094. box-sizing:border-box;
  2095. width:100%;
  2096. }
  2097. #u23807_text {
  2098. border-width:0px;
  2099. word-wrap:break-word;
  2100. text-transform:none;
  2101. }
  2102. #u23808_img {
  2103. border-width:0px;
  2104. position:absolute;
  2105. left:0px;
  2106. top:0px;
  2107. width:162px;
  2108. height:36px;
  2109. }
  2110. #u23808 {
  2111. border-width:0px;
  2112. position:absolute;
  2113. left:0px;
  2114. top:39px;
  2115. width:162px;
  2116. height:36px;
  2117. display:flex;
  2118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2119. font-weight:400;
  2120. font-style:normal;
  2121. font-size:12px;
  2122. }
  2123. #u23808 .text {
  2124. position:absolute;
  2125. align-self:center;
  2126. padding:2px 2px 2px 0px;
  2127. box-sizing:border-box;
  2128. width:100%;
  2129. }
  2130. #u23808_text {
  2131. border-width:0px;
  2132. word-wrap:break-word;
  2133. text-transform:none;
  2134. visibility:hidden;
  2135. }
  2136. #u23809_img {
  2137. border-width:0px;
  2138. position:absolute;
  2139. left:0px;
  2140. top:0px;
  2141. width:162px;
  2142. height:36px;
  2143. }
  2144. #u23809 {
  2145. border-width:0px;
  2146. position:absolute;
  2147. left:162px;
  2148. top:39px;
  2149. width:162px;
  2150. height:36px;
  2151. display:flex;
  2152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2153. font-weight:400;
  2154. font-style:normal;
  2155. font-size:12px;
  2156. }
  2157. #u23809 .text {
  2158. position:absolute;
  2159. align-self:center;
  2160. padding:2px 2px 2px 0px;
  2161. box-sizing:border-box;
  2162. width:100%;
  2163. }
  2164. #u23809_text {
  2165. border-width:0px;
  2166. word-wrap:break-word;
  2167. text-transform:none;
  2168. visibility:hidden;
  2169. }
  2170. #u23810_img {
  2171. border-width:0px;
  2172. position:absolute;
  2173. left:0px;
  2174. top:0px;
  2175. width:162px;
  2176. height:36px;
  2177. }
  2178. #u23810 {
  2179. border-width:0px;
  2180. position:absolute;
  2181. left:324px;
  2182. top:39px;
  2183. width:162px;
  2184. height:36px;
  2185. display:flex;
  2186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2187. font-weight:400;
  2188. font-style:normal;
  2189. font-size:12px;
  2190. color:#333333;
  2191. }
  2192. #u23810 .text {
  2193. position:absolute;
  2194. align-self:center;
  2195. padding:2px 2px 2px 0px;
  2196. box-sizing:border-box;
  2197. width:100%;
  2198. }
  2199. #u23810_text {
  2200. border-width:0px;
  2201. word-wrap:break-word;
  2202. text-transform:none;
  2203. }
  2204. #u23811_img {
  2205. border-width:0px;
  2206. position:absolute;
  2207. left:0px;
  2208. top:0px;
  2209. width:162px;
  2210. height:36px;
  2211. }
  2212. #u23811 {
  2213. border-width:0px;
  2214. position:absolute;
  2215. left:486px;
  2216. top:39px;
  2217. width:162px;
  2218. height:36px;
  2219. display:flex;
  2220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2221. font-weight:400;
  2222. font-style:normal;
  2223. font-size:12px;
  2224. color:#333333;
  2225. }
  2226. #u23811 .text {
  2227. position:absolute;
  2228. align-self:center;
  2229. padding:2px 2px 2px 0px;
  2230. box-sizing:border-box;
  2231. width:100%;
  2232. }
  2233. #u23811_text {
  2234. border-width:0px;
  2235. word-wrap:break-word;
  2236. text-transform:none;
  2237. }
  2238. #u23812_img {
  2239. border-width:0px;
  2240. position:absolute;
  2241. left:0px;
  2242. top:0px;
  2243. width:162px;
  2244. height:36px;
  2245. }
  2246. #u23812 {
  2247. border-width:0px;
  2248. position:absolute;
  2249. left:648px;
  2250. top:39px;
  2251. width:162px;
  2252. height:36px;
  2253. display:flex;
  2254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2255. font-weight:400;
  2256. font-style:normal;
  2257. font-size:12px;
  2258. }
  2259. #u23812 .text {
  2260. position:absolute;
  2261. align-self:center;
  2262. padding:2px 2px 2px 0px;
  2263. box-sizing:border-box;
  2264. width:100%;
  2265. }
  2266. #u23812_text {
  2267. border-width:0px;
  2268. word-wrap:break-word;
  2269. text-transform:none;
  2270. visibility:hidden;
  2271. }
  2272. #u23813_img {
  2273. border-width:0px;
  2274. position:absolute;
  2275. left:0px;
  2276. top:0px;
  2277. width:162px;
  2278. height:36px;
  2279. }
  2280. #u23813 {
  2281. border-width:0px;
  2282. position:absolute;
  2283. left:810px;
  2284. top:39px;
  2285. width:162px;
  2286. height:36px;
  2287. display:flex;
  2288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2289. font-weight:400;
  2290. font-style:normal;
  2291. font-size:12px;
  2292. }
  2293. #u23813 .text {
  2294. position:absolute;
  2295. align-self:center;
  2296. padding:2px 2px 2px 0px;
  2297. box-sizing:border-box;
  2298. width:100%;
  2299. }
  2300. #u23813_text {
  2301. border-width:0px;
  2302. word-wrap:break-word;
  2303. text-transform:none;
  2304. visibility:hidden;
  2305. }
  2306. #u23814_img {
  2307. border-width:0px;
  2308. position:absolute;
  2309. left:0px;
  2310. top:0px;
  2311. width:165px;
  2312. height:36px;
  2313. }
  2314. #u23814 {
  2315. border-width:0px;
  2316. position:absolute;
  2317. left:972px;
  2318. top:39px;
  2319. width:165px;
  2320. height:36px;
  2321. display:flex;
  2322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2323. font-weight:400;
  2324. font-style:normal;
  2325. font-size:12px;
  2326. color:#1890FF;
  2327. }
  2328. #u23814 .text {
  2329. position:absolute;
  2330. align-self:center;
  2331. padding:2px 2px 2px 0px;
  2332. box-sizing:border-box;
  2333. width:100%;
  2334. }
  2335. #u23814_text {
  2336. border-width:0px;
  2337. word-wrap:break-word;
  2338. text-transform:none;
  2339. }
  2340. #u23815_img {
  2341. border-width:0px;
  2342. position:absolute;
  2343. left:0px;
  2344. top:0px;
  2345. width:162px;
  2346. height:38px;
  2347. }
  2348. #u23815 {
  2349. border-width:0px;
  2350. position:absolute;
  2351. left:0px;
  2352. top:75px;
  2353. width:162px;
  2354. height:38px;
  2355. display:flex;
  2356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2357. font-weight:400;
  2358. font-style:normal;
  2359. font-size:12px;
  2360. }
  2361. #u23815 .text {
  2362. position:absolute;
  2363. align-self:center;
  2364. padding:2px 2px 2px 0px;
  2365. box-sizing:border-box;
  2366. width:100%;
  2367. }
  2368. #u23815_text {
  2369. border-width:0px;
  2370. word-wrap:break-word;
  2371. text-transform:none;
  2372. visibility:hidden;
  2373. }
  2374. #u23816_img {
  2375. border-width:0px;
  2376. position:absolute;
  2377. left:0px;
  2378. top:0px;
  2379. width:162px;
  2380. height:38px;
  2381. }
  2382. #u23816 {
  2383. border-width:0px;
  2384. position:absolute;
  2385. left:162px;
  2386. top:75px;
  2387. width:162px;
  2388. height:38px;
  2389. display:flex;
  2390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2391. font-weight:400;
  2392. font-style:normal;
  2393. font-size:12px;
  2394. }
  2395. #u23816 .text {
  2396. position:absolute;
  2397. align-self:center;
  2398. padding:2px 2px 2px 0px;
  2399. box-sizing:border-box;
  2400. width:100%;
  2401. }
  2402. #u23816_text {
  2403. border-width:0px;
  2404. word-wrap:break-word;
  2405. text-transform:none;
  2406. visibility:hidden;
  2407. }
  2408. #u23817_img {
  2409. border-width:0px;
  2410. position:absolute;
  2411. left:0px;
  2412. top:0px;
  2413. width:162px;
  2414. height:38px;
  2415. }
  2416. #u23817 {
  2417. border-width:0px;
  2418. position:absolute;
  2419. left:324px;
  2420. top:75px;
  2421. width:162px;
  2422. height:38px;
  2423. display:flex;
  2424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2425. font-weight:400;
  2426. font-style:normal;
  2427. font-size:12px;
  2428. color:#333333;
  2429. }
  2430. #u23817 .text {
  2431. position:absolute;
  2432. align-self:center;
  2433. padding:2px 2px 2px 0px;
  2434. box-sizing:border-box;
  2435. width:100%;
  2436. }
  2437. #u23817_text {
  2438. border-width:0px;
  2439. word-wrap:break-word;
  2440. text-transform:none;
  2441. }
  2442. #u23818_img {
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:0px;
  2446. top:0px;
  2447. width:162px;
  2448. height:38px;
  2449. }
  2450. #u23818 {
  2451. border-width:0px;
  2452. position:absolute;
  2453. left:486px;
  2454. top:75px;
  2455. width:162px;
  2456. height:38px;
  2457. display:flex;
  2458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2459. font-weight:400;
  2460. font-style:normal;
  2461. font-size:12px;
  2462. color:#333333;
  2463. }
  2464. #u23818 .text {
  2465. position:absolute;
  2466. align-self:center;
  2467. padding:2px 2px 2px 0px;
  2468. box-sizing:border-box;
  2469. width:100%;
  2470. }
  2471. #u23818_text {
  2472. border-width:0px;
  2473. word-wrap:break-word;
  2474. text-transform:none;
  2475. }
  2476. #u23819_img {
  2477. border-width:0px;
  2478. position:absolute;
  2479. left:0px;
  2480. top:0px;
  2481. width:162px;
  2482. height:38px;
  2483. }
  2484. #u23819 {
  2485. border-width:0px;
  2486. position:absolute;
  2487. left:648px;
  2488. top:75px;
  2489. width:162px;
  2490. height:38px;
  2491. display:flex;
  2492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2493. font-weight:400;
  2494. font-style:normal;
  2495. font-size:12px;
  2496. }
  2497. #u23819 .text {
  2498. position:absolute;
  2499. align-self:center;
  2500. padding:2px 2px 2px 0px;
  2501. box-sizing:border-box;
  2502. width:100%;
  2503. }
  2504. #u23819_text {
  2505. border-width:0px;
  2506. word-wrap:break-word;
  2507. text-transform:none;
  2508. visibility:hidden;
  2509. }
  2510. #u23820_img {
  2511. border-width:0px;
  2512. position:absolute;
  2513. left:0px;
  2514. top:0px;
  2515. width:162px;
  2516. height:38px;
  2517. }
  2518. #u23820 {
  2519. border-width:0px;
  2520. position:absolute;
  2521. left:810px;
  2522. top:75px;
  2523. width:162px;
  2524. height:38px;
  2525. display:flex;
  2526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2527. font-weight:400;
  2528. font-style:normal;
  2529. font-size:12px;
  2530. }
  2531. #u23820 .text {
  2532. position:absolute;
  2533. align-self:center;
  2534. padding:2px 2px 2px 0px;
  2535. box-sizing:border-box;
  2536. width:100%;
  2537. }
  2538. #u23820_text {
  2539. border-width:0px;
  2540. word-wrap:break-word;
  2541. text-transform:none;
  2542. visibility:hidden;
  2543. }
  2544. #u23821_img {
  2545. border-width:0px;
  2546. position:absolute;
  2547. left:0px;
  2548. top:0px;
  2549. width:165px;
  2550. height:38px;
  2551. }
  2552. #u23821 {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:972px;
  2556. top:75px;
  2557. width:165px;
  2558. height:38px;
  2559. display:flex;
  2560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2561. font-weight:400;
  2562. font-style:normal;
  2563. font-size:12px;
  2564. color:#1890FF;
  2565. }
  2566. #u23821 .text {
  2567. position:absolute;
  2568. align-self:center;
  2569. padding:2px 2px 2px 0px;
  2570. box-sizing:border-box;
  2571. width:100%;
  2572. }
  2573. #u23821_text {
  2574. border-width:0px;
  2575. word-wrap:break-word;
  2576. text-transform:none;
  2577. visibility:hidden;
  2578. }
  2579. #u23822_img {
  2580. border-width:0px;
  2581. position:absolute;
  2582. left:0px;
  2583. top:0px;
  2584. width:162px;
  2585. height:38px;
  2586. }
  2587. #u23822 {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:0px;
  2591. top:113px;
  2592. width:162px;
  2593. height:38px;
  2594. display:flex;
  2595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2596. font-weight:400;
  2597. font-style:normal;
  2598. font-size:12px;
  2599. }
  2600. #u23822 .text {
  2601. position:absolute;
  2602. align-self:center;
  2603. padding:2px 2px 2px 0px;
  2604. box-sizing:border-box;
  2605. width:100%;
  2606. }
  2607. #u23822_text {
  2608. border-width:0px;
  2609. word-wrap:break-word;
  2610. text-transform:none;
  2611. visibility:hidden;
  2612. }
  2613. #u23823_img {
  2614. border-width:0px;
  2615. position:absolute;
  2616. left:0px;
  2617. top:0px;
  2618. width:162px;
  2619. height:38px;
  2620. }
  2621. #u23823 {
  2622. border-width:0px;
  2623. position:absolute;
  2624. left:162px;
  2625. top:113px;
  2626. width:162px;
  2627. height:38px;
  2628. display:flex;
  2629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2630. font-weight:400;
  2631. font-style:normal;
  2632. font-size:12px;
  2633. }
  2634. #u23823 .text {
  2635. position:absolute;
  2636. align-self:center;
  2637. padding:2px 2px 2px 0px;
  2638. box-sizing:border-box;
  2639. width:100%;
  2640. }
  2641. #u23823_text {
  2642. border-width:0px;
  2643. word-wrap:break-word;
  2644. text-transform:none;
  2645. visibility:hidden;
  2646. }
  2647. #u23824_img {
  2648. border-width:0px;
  2649. position:absolute;
  2650. left:0px;
  2651. top:0px;
  2652. width:162px;
  2653. height:38px;
  2654. }
  2655. #u23824 {
  2656. border-width:0px;
  2657. position:absolute;
  2658. left:324px;
  2659. top:113px;
  2660. width:162px;
  2661. height:38px;
  2662. display:flex;
  2663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2664. font-weight:400;
  2665. font-style:normal;
  2666. font-size:12px;
  2667. color:#AAAAAA;
  2668. }
  2669. #u23824 .text {
  2670. position:absolute;
  2671. align-self:center;
  2672. padding:2px 2px 2px 0px;
  2673. box-sizing:border-box;
  2674. width:100%;
  2675. }
  2676. #u23824_text {
  2677. border-width:0px;
  2678. word-wrap:break-word;
  2679. text-transform:none;
  2680. }
  2681. #u23825_img {
  2682. border-width:0px;
  2683. position:absolute;
  2684. left:0px;
  2685. top:0px;
  2686. width:162px;
  2687. height:38px;
  2688. }
  2689. #u23825 {
  2690. border-width:0px;
  2691. position:absolute;
  2692. left:486px;
  2693. top:113px;
  2694. width:162px;
  2695. height:38px;
  2696. display:flex;
  2697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2698. font-weight:400;
  2699. font-style:normal;
  2700. font-size:12px;
  2701. color:#AAAAAA;
  2702. }
  2703. #u23825 .text {
  2704. position:absolute;
  2705. align-self:center;
  2706. padding:2px 2px 2px 0px;
  2707. box-sizing:border-box;
  2708. width:100%;
  2709. }
  2710. #u23825_text {
  2711. border-width:0px;
  2712. word-wrap:break-word;
  2713. text-transform:none;
  2714. }
  2715. #u23826_img {
  2716. border-width:0px;
  2717. position:absolute;
  2718. left:0px;
  2719. top:0px;
  2720. width:162px;
  2721. height:38px;
  2722. }
  2723. #u23826 {
  2724. border-width:0px;
  2725. position:absolute;
  2726. left:648px;
  2727. top:113px;
  2728. width:162px;
  2729. height:38px;
  2730. display:flex;
  2731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2732. font-weight:400;
  2733. font-style:normal;
  2734. font-size:12px;
  2735. }
  2736. #u23826 .text {
  2737. position:absolute;
  2738. align-self:center;
  2739. padding:2px 2px 2px 0px;
  2740. box-sizing:border-box;
  2741. width:100%;
  2742. }
  2743. #u23826_text {
  2744. border-width:0px;
  2745. word-wrap:break-word;
  2746. text-transform:none;
  2747. visibility:hidden;
  2748. }
  2749. #u23827_img {
  2750. border-width:0px;
  2751. position:absolute;
  2752. left:0px;
  2753. top:0px;
  2754. width:162px;
  2755. height:38px;
  2756. }
  2757. #u23827 {
  2758. border-width:0px;
  2759. position:absolute;
  2760. left:810px;
  2761. top:113px;
  2762. width:162px;
  2763. height:38px;
  2764. display:flex;
  2765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2766. font-weight:400;
  2767. font-style:normal;
  2768. font-size:12px;
  2769. }
  2770. #u23827 .text {
  2771. position:absolute;
  2772. align-self:center;
  2773. padding:2px 2px 2px 0px;
  2774. box-sizing:border-box;
  2775. width:100%;
  2776. }
  2777. #u23827_text {
  2778. border-width:0px;
  2779. word-wrap:break-word;
  2780. text-transform:none;
  2781. visibility:hidden;
  2782. }
  2783. #u23828_img {
  2784. border-width:0px;
  2785. position:absolute;
  2786. left:0px;
  2787. top:0px;
  2788. width:165px;
  2789. height:38px;
  2790. }
  2791. #u23828 {
  2792. border-width:0px;
  2793. position:absolute;
  2794. left:972px;
  2795. top:113px;
  2796. width:165px;
  2797. height:38px;
  2798. display:flex;
  2799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2800. font-weight:400;
  2801. font-style:normal;
  2802. font-size:12px;
  2803. color:#1890FF;
  2804. }
  2805. #u23828 .text {
  2806. position:absolute;
  2807. align-self:center;
  2808. padding:2px 2px 2px 0px;
  2809. box-sizing:border-box;
  2810. width:100%;
  2811. }
  2812. #u23828_text {
  2813. border-width:0px;
  2814. word-wrap:break-word;
  2815. text-transform:none;
  2816. visibility:hidden;
  2817. }
  2818. #u23829_img {
  2819. border-width:0px;
  2820. position:absolute;
  2821. left:0px;
  2822. top:0px;
  2823. width:162px;
  2824. height:38px;
  2825. }
  2826. #u23829 {
  2827. border-width:0px;
  2828. position:absolute;
  2829. left:0px;
  2830. top:151px;
  2831. width:162px;
  2832. height:38px;
  2833. display:flex;
  2834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2835. font-weight:400;
  2836. font-style:normal;
  2837. font-size:12px;
  2838. }
  2839. #u23829 .text {
  2840. position:absolute;
  2841. align-self:center;
  2842. padding:2px 2px 2px 0px;
  2843. box-sizing:border-box;
  2844. width:100%;
  2845. }
  2846. #u23829_text {
  2847. border-width:0px;
  2848. word-wrap:break-word;
  2849. text-transform:none;
  2850. visibility:hidden;
  2851. }
  2852. #u23830_img {
  2853. border-width:0px;
  2854. position:absolute;
  2855. left:0px;
  2856. top:0px;
  2857. width:162px;
  2858. height:38px;
  2859. }
  2860. #u23830 {
  2861. border-width:0px;
  2862. position:absolute;
  2863. left:162px;
  2864. top:151px;
  2865. width:162px;
  2866. height:38px;
  2867. display:flex;
  2868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2869. font-weight:400;
  2870. font-style:normal;
  2871. font-size:12px;
  2872. }
  2873. #u23830 .text {
  2874. position:absolute;
  2875. align-self:center;
  2876. padding:2px 2px 2px 0px;
  2877. box-sizing:border-box;
  2878. width:100%;
  2879. }
  2880. #u23830_text {
  2881. border-width:0px;
  2882. word-wrap:break-word;
  2883. text-transform:none;
  2884. visibility:hidden;
  2885. }
  2886. #u23831_img {
  2887. border-width:0px;
  2888. position:absolute;
  2889. left:0px;
  2890. top:0px;
  2891. width:162px;
  2892. height:38px;
  2893. }
  2894. #u23831 {
  2895. border-width:0px;
  2896. position:absolute;
  2897. left:324px;
  2898. top:151px;
  2899. width:162px;
  2900. height:38px;
  2901. display:flex;
  2902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2903. font-weight:400;
  2904. font-style:normal;
  2905. font-size:12px;
  2906. color:#333333;
  2907. }
  2908. #u23831 .text {
  2909. position:absolute;
  2910. align-self:center;
  2911. padding:2px 2px 2px 0px;
  2912. box-sizing:border-box;
  2913. width:100%;
  2914. }
  2915. #u23831_text {
  2916. border-width:0px;
  2917. word-wrap:break-word;
  2918. text-transform:none;
  2919. }
  2920. #u23832_img {
  2921. border-width:0px;
  2922. position:absolute;
  2923. left:0px;
  2924. top:0px;
  2925. width:162px;
  2926. height:38px;
  2927. }
  2928. #u23832 {
  2929. border-width:0px;
  2930. position:absolute;
  2931. left:486px;
  2932. top:151px;
  2933. width:162px;
  2934. height:38px;
  2935. display:flex;
  2936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2937. font-weight:400;
  2938. font-style:normal;
  2939. font-size:12px;
  2940. color:#333333;
  2941. }
  2942. #u23832 .text {
  2943. position:absolute;
  2944. align-self:center;
  2945. padding:2px 2px 2px 0px;
  2946. box-sizing:border-box;
  2947. width:100%;
  2948. }
  2949. #u23832_text {
  2950. border-width:0px;
  2951. word-wrap:break-word;
  2952. text-transform:none;
  2953. }
  2954. #u23833_img {
  2955. border-width:0px;
  2956. position:absolute;
  2957. left:0px;
  2958. top:0px;
  2959. width:162px;
  2960. height:38px;
  2961. }
  2962. #u23833 {
  2963. border-width:0px;
  2964. position:absolute;
  2965. left:648px;
  2966. top:151px;
  2967. width:162px;
  2968. height:38px;
  2969. display:flex;
  2970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2971. font-weight:400;
  2972. font-style:normal;
  2973. font-size:12px;
  2974. }
  2975. #u23833 .text {
  2976. position:absolute;
  2977. align-self:center;
  2978. padding:2px 2px 2px 0px;
  2979. box-sizing:border-box;
  2980. width:100%;
  2981. }
  2982. #u23833_text {
  2983. border-width:0px;
  2984. word-wrap:break-word;
  2985. text-transform:none;
  2986. visibility:hidden;
  2987. }
  2988. #u23834_img {
  2989. border-width:0px;
  2990. position:absolute;
  2991. left:0px;
  2992. top:0px;
  2993. width:162px;
  2994. height:38px;
  2995. }
  2996. #u23834 {
  2997. border-width:0px;
  2998. position:absolute;
  2999. left:810px;
  3000. top:151px;
  3001. width:162px;
  3002. height:38px;
  3003. display:flex;
  3004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3005. font-weight:400;
  3006. font-style:normal;
  3007. font-size:12px;
  3008. }
  3009. #u23834 .text {
  3010. position:absolute;
  3011. align-self:center;
  3012. padding:2px 2px 2px 0px;
  3013. box-sizing:border-box;
  3014. width:100%;
  3015. }
  3016. #u23834_text {
  3017. border-width:0px;
  3018. word-wrap:break-word;
  3019. text-transform:none;
  3020. visibility:hidden;
  3021. }
  3022. #u23835_img {
  3023. border-width:0px;
  3024. position:absolute;
  3025. left:0px;
  3026. top:0px;
  3027. width:165px;
  3028. height:38px;
  3029. }
  3030. #u23835 {
  3031. border-width:0px;
  3032. position:absolute;
  3033. left:972px;
  3034. top:151px;
  3035. width:165px;
  3036. height:38px;
  3037. display:flex;
  3038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3039. font-weight:400;
  3040. font-style:normal;
  3041. font-size:12px;
  3042. color:#1890FF;
  3043. }
  3044. #u23835 .text {
  3045. position:absolute;
  3046. align-self:center;
  3047. padding:2px 2px 2px 0px;
  3048. box-sizing:border-box;
  3049. width:100%;
  3050. }
  3051. #u23835_text {
  3052. border-width:0px;
  3053. word-wrap:break-word;
  3054. text-transform:none;
  3055. visibility:hidden;
  3056. }
  3057. #u23836_img {
  3058. border-width:0px;
  3059. position:absolute;
  3060. left:0px;
  3061. top:0px;
  3062. width:162px;
  3063. height:35px;
  3064. }
  3065. #u23836 {
  3066. border-width:0px;
  3067. position:absolute;
  3068. left:0px;
  3069. top:189px;
  3070. width:162px;
  3071. height:35px;
  3072. display:flex;
  3073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3074. font-weight:400;
  3075. font-style:normal;
  3076. font-size:12px;
  3077. color:#606266;
  3078. }
  3079. #u23836 .text {
  3080. position:absolute;
  3081. align-self:center;
  3082. padding:2px 2px 2px 0px;
  3083. box-sizing:border-box;
  3084. width:100%;
  3085. }
  3086. #u23836_text {
  3087. border-width:0px;
  3088. word-wrap:break-word;
  3089. text-transform:none;
  3090. visibility:hidden;
  3091. }
  3092. #u23837_img {
  3093. border-width:0px;
  3094. position:absolute;
  3095. left:0px;
  3096. top:0px;
  3097. width:162px;
  3098. height:35px;
  3099. }
  3100. #u23837 {
  3101. border-width:0px;
  3102. position:absolute;
  3103. left:162px;
  3104. top:189px;
  3105. width:162px;
  3106. height:35px;
  3107. display:flex;
  3108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3109. font-weight:400;
  3110. font-style:normal;
  3111. font-size:12px;
  3112. color:#606266;
  3113. }
  3114. #u23837 .text {
  3115. position:absolute;
  3116. align-self:center;
  3117. padding:2px 2px 2px 0px;
  3118. box-sizing:border-box;
  3119. width:100%;
  3120. }
  3121. #u23837_text {
  3122. border-width:0px;
  3123. word-wrap:break-word;
  3124. text-transform:none;
  3125. visibility:hidden;
  3126. }
  3127. #u23838_img {
  3128. border-width:0px;
  3129. position:absolute;
  3130. left:0px;
  3131. top:0px;
  3132. width:162px;
  3133. height:35px;
  3134. }
  3135. #u23838 {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:324px;
  3139. top:189px;
  3140. width:162px;
  3141. height:35px;
  3142. display:flex;
  3143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3144. font-weight:400;
  3145. font-style:normal;
  3146. font-size:12px;
  3147. color:#AAAAAA;
  3148. }
  3149. #u23838 .text {
  3150. position:absolute;
  3151. align-self:center;
  3152. padding:2px 2px 2px 0px;
  3153. box-sizing:border-box;
  3154. width:100%;
  3155. }
  3156. #u23838_text {
  3157. border-width:0px;
  3158. word-wrap:break-word;
  3159. text-transform:none;
  3160. }
  3161. #u23839_img {
  3162. border-width:0px;
  3163. position:absolute;
  3164. left:0px;
  3165. top:0px;
  3166. width:162px;
  3167. height:35px;
  3168. }
  3169. #u23839 {
  3170. border-width:0px;
  3171. position:absolute;
  3172. left:486px;
  3173. top:189px;
  3174. width:162px;
  3175. height:35px;
  3176. display:flex;
  3177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3178. font-weight:400;
  3179. font-style:normal;
  3180. font-size:12px;
  3181. color:#AAAAAA;
  3182. }
  3183. #u23839 .text {
  3184. position:absolute;
  3185. align-self:center;
  3186. padding:2px 2px 2px 0px;
  3187. box-sizing:border-box;
  3188. width:100%;
  3189. }
  3190. #u23839_text {
  3191. border-width:0px;
  3192. word-wrap:break-word;
  3193. text-transform:none;
  3194. }
  3195. #u23840_img {
  3196. border-width:0px;
  3197. position:absolute;
  3198. left:0px;
  3199. top:0px;
  3200. width:162px;
  3201. height:35px;
  3202. }
  3203. #u23840 {
  3204. border-width:0px;
  3205. position:absolute;
  3206. left:648px;
  3207. top:189px;
  3208. width:162px;
  3209. height:35px;
  3210. display:flex;
  3211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3212. font-weight:400;
  3213. font-style:normal;
  3214. font-size:12px;
  3215. color:#606266;
  3216. }
  3217. #u23840 .text {
  3218. position:absolute;
  3219. align-self:center;
  3220. padding:2px 2px 2px 0px;
  3221. box-sizing:border-box;
  3222. width:100%;
  3223. }
  3224. #u23840_text {
  3225. border-width:0px;
  3226. word-wrap:break-word;
  3227. text-transform:none;
  3228. visibility:hidden;
  3229. }
  3230. #u23841_img {
  3231. border-width:0px;
  3232. position:absolute;
  3233. left:0px;
  3234. top:0px;
  3235. width:162px;
  3236. height:35px;
  3237. }
  3238. #u23841 {
  3239. border-width:0px;
  3240. position:absolute;
  3241. left:810px;
  3242. top:189px;
  3243. width:162px;
  3244. height:35px;
  3245. display:flex;
  3246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3247. font-weight:400;
  3248. font-style:normal;
  3249. font-size:12px;
  3250. color:#606266;
  3251. }
  3252. #u23841 .text {
  3253. position:absolute;
  3254. align-self:center;
  3255. padding:2px 2px 2px 0px;
  3256. box-sizing:border-box;
  3257. width:100%;
  3258. }
  3259. #u23841_text {
  3260. border-width:0px;
  3261. word-wrap:break-word;
  3262. text-transform:none;
  3263. visibility:hidden;
  3264. }
  3265. #u23842_img {
  3266. border-width:0px;
  3267. position:absolute;
  3268. left:0px;
  3269. top:0px;
  3270. width:165px;
  3271. height:35px;
  3272. }
  3273. #u23842 {
  3274. border-width:0px;
  3275. position:absolute;
  3276. left:972px;
  3277. top:189px;
  3278. width:165px;
  3279. height:35px;
  3280. display:flex;
  3281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3282. font-weight:400;
  3283. font-style:normal;
  3284. font-size:12px;
  3285. color:#02A7F0;
  3286. }
  3287. #u23842 .text {
  3288. position:absolute;
  3289. align-self:center;
  3290. padding:2px 2px 2px 0px;
  3291. box-sizing:border-box;
  3292. width:100%;
  3293. }
  3294. #u23842_text {
  3295. border-width:0px;
  3296. word-wrap:break-word;
  3297. text-transform:none;
  3298. visibility:hidden;
  3299. }
  3300. #u23843_img {
  3301. border-width:0px;
  3302. position:absolute;
  3303. left:0px;
  3304. top:0px;
  3305. width:162px;
  3306. height:35px;
  3307. }
  3308. #u23843 {
  3309. border-width:0px;
  3310. position:absolute;
  3311. left:0px;
  3312. top:224px;
  3313. width:162px;
  3314. height:35px;
  3315. display:flex;
  3316. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3317. font-weight:400;
  3318. font-style:normal;
  3319. font-size:12px;
  3320. color:#606266;
  3321. }
  3322. #u23843 .text {
  3323. position:absolute;
  3324. align-self:center;
  3325. padding:2px 2px 2px 0px;
  3326. box-sizing:border-box;
  3327. width:100%;
  3328. }
  3329. #u23843_text {
  3330. border-width:0px;
  3331. word-wrap:break-word;
  3332. text-transform:none;
  3333. visibility:hidden;
  3334. }
  3335. #u23844_img {
  3336. border-width:0px;
  3337. position:absolute;
  3338. left:0px;
  3339. top:0px;
  3340. width:162px;
  3341. height:35px;
  3342. }
  3343. #u23844 {
  3344. border-width:0px;
  3345. position:absolute;
  3346. left:162px;
  3347. top:224px;
  3348. width:162px;
  3349. height:35px;
  3350. display:flex;
  3351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3352. font-weight:400;
  3353. font-style:normal;
  3354. font-size:12px;
  3355. color:#606266;
  3356. }
  3357. #u23844 .text {
  3358. position:absolute;
  3359. align-self:center;
  3360. padding:2px 2px 2px 0px;
  3361. box-sizing:border-box;
  3362. width:100%;
  3363. }
  3364. #u23844_text {
  3365. border-width:0px;
  3366. word-wrap:break-word;
  3367. text-transform:none;
  3368. visibility:hidden;
  3369. }
  3370. #u23845_img {
  3371. border-width:0px;
  3372. position:absolute;
  3373. left:0px;
  3374. top:0px;
  3375. width:162px;
  3376. height:35px;
  3377. }
  3378. #u23845 {
  3379. border-width:0px;
  3380. position:absolute;
  3381. left:324px;
  3382. top:224px;
  3383. width:162px;
  3384. height:35px;
  3385. display:flex;
  3386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3387. font-weight:400;
  3388. font-style:normal;
  3389. font-size:12px;
  3390. color:#AAAAAA;
  3391. }
  3392. #u23845 .text {
  3393. position:absolute;
  3394. align-self:center;
  3395. padding:2px 2px 2px 0px;
  3396. box-sizing:border-box;
  3397. width:100%;
  3398. }
  3399. #u23845_text {
  3400. border-width:0px;
  3401. word-wrap:break-word;
  3402. text-transform:none;
  3403. }
  3404. #u23846_img {
  3405. border-width:0px;
  3406. position:absolute;
  3407. left:0px;
  3408. top:0px;
  3409. width:162px;
  3410. height:35px;
  3411. }
  3412. #u23846 {
  3413. border-width:0px;
  3414. position:absolute;
  3415. left:486px;
  3416. top:224px;
  3417. width:162px;
  3418. height:35px;
  3419. display:flex;
  3420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3421. font-weight:400;
  3422. font-style:normal;
  3423. font-size:12px;
  3424. color:#AAAAAA;
  3425. }
  3426. #u23846 .text {
  3427. position:absolute;
  3428. align-self:center;
  3429. padding:2px 2px 2px 0px;
  3430. box-sizing:border-box;
  3431. width:100%;
  3432. }
  3433. #u23846_text {
  3434. border-width:0px;
  3435. word-wrap:break-word;
  3436. text-transform:none;
  3437. }
  3438. #u23847_img {
  3439. border-width:0px;
  3440. position:absolute;
  3441. left:0px;
  3442. top:0px;
  3443. width:162px;
  3444. height:35px;
  3445. }
  3446. #u23847 {
  3447. border-width:0px;
  3448. position:absolute;
  3449. left:648px;
  3450. top:224px;
  3451. width:162px;
  3452. height:35px;
  3453. display:flex;
  3454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3455. font-weight:400;
  3456. font-style:normal;
  3457. font-size:12px;
  3458. color:#606266;
  3459. }
  3460. #u23847 .text {
  3461. position:absolute;
  3462. align-self:center;
  3463. padding:2px 2px 2px 0px;
  3464. box-sizing:border-box;
  3465. width:100%;
  3466. }
  3467. #u23847_text {
  3468. border-width:0px;
  3469. word-wrap:break-word;
  3470. text-transform:none;
  3471. visibility:hidden;
  3472. }
  3473. #u23848_img {
  3474. border-width:0px;
  3475. position:absolute;
  3476. left:0px;
  3477. top:0px;
  3478. width:162px;
  3479. height:35px;
  3480. }
  3481. #u23848 {
  3482. border-width:0px;
  3483. position:absolute;
  3484. left:810px;
  3485. top:224px;
  3486. width:162px;
  3487. height:35px;
  3488. display:flex;
  3489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3490. font-weight:400;
  3491. font-style:normal;
  3492. font-size:12px;
  3493. color:#606266;
  3494. }
  3495. #u23848 .text {
  3496. position:absolute;
  3497. align-self:center;
  3498. padding:2px 2px 2px 0px;
  3499. box-sizing:border-box;
  3500. width:100%;
  3501. }
  3502. #u23848_text {
  3503. border-width:0px;
  3504. word-wrap:break-word;
  3505. text-transform:none;
  3506. visibility:hidden;
  3507. }
  3508. #u23849_img {
  3509. border-width:0px;
  3510. position:absolute;
  3511. left:0px;
  3512. top:0px;
  3513. width:165px;
  3514. height:35px;
  3515. }
  3516. #u23849 {
  3517. border-width:0px;
  3518. position:absolute;
  3519. left:972px;
  3520. top:224px;
  3521. width:165px;
  3522. height:35px;
  3523. display:flex;
  3524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3525. font-weight:400;
  3526. font-style:normal;
  3527. font-size:12px;
  3528. color:#02A7F0;
  3529. }
  3530. #u23849 .text {
  3531. position:absolute;
  3532. align-self:center;
  3533. padding:2px 2px 2px 0px;
  3534. box-sizing:border-box;
  3535. width:100%;
  3536. }
  3537. #u23849_text {
  3538. border-width:0px;
  3539. word-wrap:break-word;
  3540. text-transform:none;
  3541. visibility:hidden;
  3542. }
  3543. #u23850_img {
  3544. border-width:0px;
  3545. position:absolute;
  3546. left:0px;
  3547. top:0px;
  3548. width:162px;
  3549. height:35px;
  3550. }
  3551. #u23850 {
  3552. border-width:0px;
  3553. position:absolute;
  3554. left:0px;
  3555. top:259px;
  3556. width:162px;
  3557. height:35px;
  3558. display:flex;
  3559. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3560. font-weight:400;
  3561. font-style:normal;
  3562. font-size:12px;
  3563. color:#606266;
  3564. }
  3565. #u23850 .text {
  3566. position:absolute;
  3567. align-self:center;
  3568. padding:2px 2px 2px 0px;
  3569. box-sizing:border-box;
  3570. width:100%;
  3571. }
  3572. #u23850_text {
  3573. border-width:0px;
  3574. word-wrap:break-word;
  3575. text-transform:none;
  3576. visibility:hidden;
  3577. }
  3578. #u23851_img {
  3579. border-width:0px;
  3580. position:absolute;
  3581. left:0px;
  3582. top:0px;
  3583. width:162px;
  3584. height:35px;
  3585. }
  3586. #u23851 {
  3587. border-width:0px;
  3588. position:absolute;
  3589. left:162px;
  3590. top:259px;
  3591. width:162px;
  3592. height:35px;
  3593. display:flex;
  3594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3595. font-weight:400;
  3596. font-style:normal;
  3597. font-size:12px;
  3598. color:#606266;
  3599. }
  3600. #u23851 .text {
  3601. position:absolute;
  3602. align-self:center;
  3603. padding:2px 2px 2px 0px;
  3604. box-sizing:border-box;
  3605. width:100%;
  3606. }
  3607. #u23851_text {
  3608. border-width:0px;
  3609. word-wrap:break-word;
  3610. text-transform:none;
  3611. visibility:hidden;
  3612. }
  3613. #u23852_img {
  3614. border-width:0px;
  3615. position:absolute;
  3616. left:0px;
  3617. top:0px;
  3618. width:162px;
  3619. height:35px;
  3620. }
  3621. #u23852 {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:324px;
  3625. top:259px;
  3626. width:162px;
  3627. height:35px;
  3628. display:flex;
  3629. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3630. font-weight:400;
  3631. font-style:normal;
  3632. font-size:12px;
  3633. color:#AAAAAA;
  3634. }
  3635. #u23852 .text {
  3636. position:absolute;
  3637. align-self:center;
  3638. padding:2px 2px 2px 0px;
  3639. box-sizing:border-box;
  3640. width:100%;
  3641. }
  3642. #u23852_text {
  3643. border-width:0px;
  3644. word-wrap:break-word;
  3645. text-transform:none;
  3646. }
  3647. #u23853_img {
  3648. border-width:0px;
  3649. position:absolute;
  3650. left:0px;
  3651. top:0px;
  3652. width:162px;
  3653. height:35px;
  3654. }
  3655. #u23853 {
  3656. border-width:0px;
  3657. position:absolute;
  3658. left:486px;
  3659. top:259px;
  3660. width:162px;
  3661. height:35px;
  3662. display:flex;
  3663. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3664. font-weight:400;
  3665. font-style:normal;
  3666. font-size:12px;
  3667. color:#AAAAAA;
  3668. }
  3669. #u23853 .text {
  3670. position:absolute;
  3671. align-self:center;
  3672. padding:2px 2px 2px 0px;
  3673. box-sizing:border-box;
  3674. width:100%;
  3675. }
  3676. #u23853_text {
  3677. border-width:0px;
  3678. word-wrap:break-word;
  3679. text-transform:none;
  3680. }
  3681. #u23854_img {
  3682. border-width:0px;
  3683. position:absolute;
  3684. left:0px;
  3685. top:0px;
  3686. width:162px;
  3687. height:35px;
  3688. }
  3689. #u23854 {
  3690. border-width:0px;
  3691. position:absolute;
  3692. left:648px;
  3693. top:259px;
  3694. width:162px;
  3695. height:35px;
  3696. display:flex;
  3697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3698. font-weight:400;
  3699. font-style:normal;
  3700. font-size:12px;
  3701. color:#606266;
  3702. }
  3703. #u23854 .text {
  3704. position:absolute;
  3705. align-self:center;
  3706. padding:2px 2px 2px 0px;
  3707. box-sizing:border-box;
  3708. width:100%;
  3709. }
  3710. #u23854_text {
  3711. border-width:0px;
  3712. word-wrap:break-word;
  3713. text-transform:none;
  3714. visibility:hidden;
  3715. }
  3716. #u23855_img {
  3717. border-width:0px;
  3718. position:absolute;
  3719. left:0px;
  3720. top:0px;
  3721. width:162px;
  3722. height:35px;
  3723. }
  3724. #u23855 {
  3725. border-width:0px;
  3726. position:absolute;
  3727. left:810px;
  3728. top:259px;
  3729. width:162px;
  3730. height:35px;
  3731. display:flex;
  3732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3733. font-weight:400;
  3734. font-style:normal;
  3735. font-size:12px;
  3736. color:#606266;
  3737. }
  3738. #u23855 .text {
  3739. position:absolute;
  3740. align-self:center;
  3741. padding:2px 2px 2px 0px;
  3742. box-sizing:border-box;
  3743. width:100%;
  3744. }
  3745. #u23855_text {
  3746. border-width:0px;
  3747. word-wrap:break-word;
  3748. text-transform:none;
  3749. visibility:hidden;
  3750. }
  3751. #u23856_img {
  3752. border-width:0px;
  3753. position:absolute;
  3754. left:0px;
  3755. top:0px;
  3756. width:165px;
  3757. height:35px;
  3758. }
  3759. #u23856 {
  3760. border-width:0px;
  3761. position:absolute;
  3762. left:972px;
  3763. top:259px;
  3764. width:165px;
  3765. height:35px;
  3766. display:flex;
  3767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3768. font-weight:400;
  3769. font-style:normal;
  3770. font-size:12px;
  3771. color:#02A7F0;
  3772. }
  3773. #u23856 .text {
  3774. position:absolute;
  3775. align-self:center;
  3776. padding:2px 2px 2px 0px;
  3777. box-sizing:border-box;
  3778. width:100%;
  3779. }
  3780. #u23856_text {
  3781. border-width:0px;
  3782. word-wrap:break-word;
  3783. text-transform:none;
  3784. visibility:hidden;
  3785. }
  3786. #u23857_img {
  3787. border-width:0px;
  3788. position:absolute;
  3789. left:0px;
  3790. top:0px;
  3791. width:162px;
  3792. height:35px;
  3793. }
  3794. #u23857 {
  3795. border-width:0px;
  3796. position:absolute;
  3797. left:0px;
  3798. top:294px;
  3799. width:162px;
  3800. height:35px;
  3801. display:flex;
  3802. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3803. font-weight:400;
  3804. font-style:normal;
  3805. font-size:12px;
  3806. color:#606266;
  3807. }
  3808. #u23857 .text {
  3809. position:absolute;
  3810. align-self:center;
  3811. padding:2px 2px 2px 0px;
  3812. box-sizing:border-box;
  3813. width:100%;
  3814. }
  3815. #u23857_text {
  3816. border-width:0px;
  3817. word-wrap:break-word;
  3818. text-transform:none;
  3819. visibility:hidden;
  3820. }
  3821. #u23858_img {
  3822. border-width:0px;
  3823. position:absolute;
  3824. left:0px;
  3825. top:0px;
  3826. width:162px;
  3827. height:35px;
  3828. }
  3829. #u23858 {
  3830. border-width:0px;
  3831. position:absolute;
  3832. left:162px;
  3833. top:294px;
  3834. width:162px;
  3835. height:35px;
  3836. display:flex;
  3837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3838. font-weight:400;
  3839. font-style:normal;
  3840. font-size:12px;
  3841. color:#606266;
  3842. }
  3843. #u23858 .text {
  3844. position:absolute;
  3845. align-self:center;
  3846. padding:2px 2px 2px 0px;
  3847. box-sizing:border-box;
  3848. width:100%;
  3849. }
  3850. #u23858_text {
  3851. border-width:0px;
  3852. word-wrap:break-word;
  3853. text-transform:none;
  3854. visibility:hidden;
  3855. }
  3856. #u23859_img {
  3857. border-width:0px;
  3858. position:absolute;
  3859. left:0px;
  3860. top:0px;
  3861. width:162px;
  3862. height:35px;
  3863. }
  3864. #u23859 {
  3865. border-width:0px;
  3866. position:absolute;
  3867. left:324px;
  3868. top:294px;
  3869. width:162px;
  3870. height:35px;
  3871. display:flex;
  3872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3873. font-weight:400;
  3874. font-style:normal;
  3875. font-size:12px;
  3876. color:#333333;
  3877. }
  3878. #u23859 .text {
  3879. position:absolute;
  3880. align-self:center;
  3881. padding:2px 2px 2px 0px;
  3882. box-sizing:border-box;
  3883. width:100%;
  3884. }
  3885. #u23859_text {
  3886. border-width:0px;
  3887. word-wrap:break-word;
  3888. text-transform:none;
  3889. }
  3890. #u23860_img {
  3891. border-width:0px;
  3892. position:absolute;
  3893. left:0px;
  3894. top:0px;
  3895. width:162px;
  3896. height:35px;
  3897. }
  3898. #u23860 {
  3899. border-width:0px;
  3900. position:absolute;
  3901. left:486px;
  3902. top:294px;
  3903. width:162px;
  3904. height:35px;
  3905. display:flex;
  3906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3907. font-weight:400;
  3908. font-style:normal;
  3909. font-size:12px;
  3910. color:#333333;
  3911. }
  3912. #u23860 .text {
  3913. position:absolute;
  3914. align-self:center;
  3915. padding:2px 2px 2px 0px;
  3916. box-sizing:border-box;
  3917. width:100%;
  3918. }
  3919. #u23860_text {
  3920. border-width:0px;
  3921. word-wrap:break-word;
  3922. text-transform:none;
  3923. }
  3924. #u23861_img {
  3925. border-width:0px;
  3926. position:absolute;
  3927. left:0px;
  3928. top:0px;
  3929. width:162px;
  3930. height:35px;
  3931. }
  3932. #u23861 {
  3933. border-width:0px;
  3934. position:absolute;
  3935. left:648px;
  3936. top:294px;
  3937. width:162px;
  3938. height:35px;
  3939. display:flex;
  3940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3941. font-weight:400;
  3942. font-style:normal;
  3943. font-size:12px;
  3944. color:#606266;
  3945. }
  3946. #u23861 .text {
  3947. position:absolute;
  3948. align-self:center;
  3949. padding:2px 2px 2px 0px;
  3950. box-sizing:border-box;
  3951. width:100%;
  3952. }
  3953. #u23861_text {
  3954. border-width:0px;
  3955. word-wrap:break-word;
  3956. text-transform:none;
  3957. visibility:hidden;
  3958. }
  3959. #u23862_img {
  3960. border-width:0px;
  3961. position:absolute;
  3962. left:0px;
  3963. top:0px;
  3964. width:162px;
  3965. height:35px;
  3966. }
  3967. #u23862 {
  3968. border-width:0px;
  3969. position:absolute;
  3970. left:810px;
  3971. top:294px;
  3972. width:162px;
  3973. height:35px;
  3974. display:flex;
  3975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3976. font-weight:400;
  3977. font-style:normal;
  3978. font-size:12px;
  3979. color:#606266;
  3980. }
  3981. #u23862 .text {
  3982. position:absolute;
  3983. align-self:center;
  3984. padding:2px 2px 2px 0px;
  3985. box-sizing:border-box;
  3986. width:100%;
  3987. }
  3988. #u23862_text {
  3989. border-width:0px;
  3990. word-wrap:break-word;
  3991. text-transform:none;
  3992. visibility:hidden;
  3993. }
  3994. #u23863_img {
  3995. border-width:0px;
  3996. position:absolute;
  3997. left:0px;
  3998. top:0px;
  3999. width:165px;
  4000. height:35px;
  4001. }
  4002. #u23863 {
  4003. border-width:0px;
  4004. position:absolute;
  4005. left:972px;
  4006. top:294px;
  4007. width:165px;
  4008. height:35px;
  4009. display:flex;
  4010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4011. font-weight:400;
  4012. font-style:normal;
  4013. font-size:12px;
  4014. color:#02A7F0;
  4015. }
  4016. #u23863 .text {
  4017. position:absolute;
  4018. align-self:center;
  4019. padding:2px 2px 2px 0px;
  4020. box-sizing:border-box;
  4021. width:100%;
  4022. }
  4023. #u23863_text {
  4024. border-width:0px;
  4025. word-wrap:break-word;
  4026. text-transform:none;
  4027. visibility:hidden;
  4028. }
  4029. #u23864_img {
  4030. border-width:0px;
  4031. position:absolute;
  4032. left:0px;
  4033. top:0px;
  4034. width:162px;
  4035. height:35px;
  4036. }
  4037. #u23864 {
  4038. border-width:0px;
  4039. position:absolute;
  4040. left:0px;
  4041. top:329px;
  4042. width:162px;
  4043. height:35px;
  4044. display:flex;
  4045. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4046. font-weight:400;
  4047. font-style:normal;
  4048. font-size:12px;
  4049. color:#606266;
  4050. }
  4051. #u23864 .text {
  4052. position:absolute;
  4053. align-self:center;
  4054. padding:2px 2px 2px 0px;
  4055. box-sizing:border-box;
  4056. width:100%;
  4057. }
  4058. #u23864_text {
  4059. border-width:0px;
  4060. word-wrap:break-word;
  4061. text-transform:none;
  4062. visibility:hidden;
  4063. }
  4064. #u23865_img {
  4065. border-width:0px;
  4066. position:absolute;
  4067. left:0px;
  4068. top:0px;
  4069. width:162px;
  4070. height:35px;
  4071. }
  4072. #u23865 {
  4073. border-width:0px;
  4074. position:absolute;
  4075. left:162px;
  4076. top:329px;
  4077. width:162px;
  4078. height:35px;
  4079. display:flex;
  4080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4081. font-weight:400;
  4082. font-style:normal;
  4083. font-size:12px;
  4084. color:#606266;
  4085. }
  4086. #u23865 .text {
  4087. position:absolute;
  4088. align-self:center;
  4089. padding:2px 2px 2px 0px;
  4090. box-sizing:border-box;
  4091. width:100%;
  4092. }
  4093. #u23865_text {
  4094. border-width:0px;
  4095. word-wrap:break-word;
  4096. text-transform:none;
  4097. visibility:hidden;
  4098. }
  4099. #u23866_img {
  4100. border-width:0px;
  4101. position:absolute;
  4102. left:0px;
  4103. top:0px;
  4104. width:162px;
  4105. height:35px;
  4106. }
  4107. #u23866 {
  4108. border-width:0px;
  4109. position:absolute;
  4110. left:324px;
  4111. top:329px;
  4112. width:162px;
  4113. height:35px;
  4114. display:flex;
  4115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4116. font-weight:400;
  4117. font-style:normal;
  4118. font-size:12px;
  4119. color:#333333;
  4120. }
  4121. #u23866 .text {
  4122. position:absolute;
  4123. align-self:center;
  4124. padding:2px 2px 2px 0px;
  4125. box-sizing:border-box;
  4126. width:100%;
  4127. }
  4128. #u23866_text {
  4129. border-width:0px;
  4130. word-wrap:break-word;
  4131. text-transform:none;
  4132. }
  4133. #u23867_img {
  4134. border-width:0px;
  4135. position:absolute;
  4136. left:0px;
  4137. top:0px;
  4138. width:162px;
  4139. height:35px;
  4140. }
  4141. #u23867 {
  4142. border-width:0px;
  4143. position:absolute;
  4144. left:486px;
  4145. top:329px;
  4146. width:162px;
  4147. height:35px;
  4148. display:flex;
  4149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4150. font-weight:400;
  4151. font-style:normal;
  4152. font-size:12px;
  4153. color:#333333;
  4154. }
  4155. #u23867 .text {
  4156. position:absolute;
  4157. align-self:center;
  4158. padding:2px 2px 2px 0px;
  4159. box-sizing:border-box;
  4160. width:100%;
  4161. }
  4162. #u23867_text {
  4163. border-width:0px;
  4164. word-wrap:break-word;
  4165. text-transform:none;
  4166. }
  4167. #u23868_img {
  4168. border-width:0px;
  4169. position:absolute;
  4170. left:0px;
  4171. top:0px;
  4172. width:162px;
  4173. height:35px;
  4174. }
  4175. #u23868 {
  4176. border-width:0px;
  4177. position:absolute;
  4178. left:648px;
  4179. top:329px;
  4180. width:162px;
  4181. height:35px;
  4182. display:flex;
  4183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4184. font-weight:400;
  4185. font-style:normal;
  4186. font-size:12px;
  4187. color:#606266;
  4188. }
  4189. #u23868 .text {
  4190. position:absolute;
  4191. align-self:center;
  4192. padding:2px 2px 2px 0px;
  4193. box-sizing:border-box;
  4194. width:100%;
  4195. }
  4196. #u23868_text {
  4197. border-width:0px;
  4198. word-wrap:break-word;
  4199. text-transform:none;
  4200. visibility:hidden;
  4201. }
  4202. #u23869_img {
  4203. border-width:0px;
  4204. position:absolute;
  4205. left:0px;
  4206. top:0px;
  4207. width:162px;
  4208. height:35px;
  4209. }
  4210. #u23869 {
  4211. border-width:0px;
  4212. position:absolute;
  4213. left:810px;
  4214. top:329px;
  4215. width:162px;
  4216. height:35px;
  4217. display:flex;
  4218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4219. font-weight:400;
  4220. font-style:normal;
  4221. font-size:12px;
  4222. color:#606266;
  4223. }
  4224. #u23869 .text {
  4225. position:absolute;
  4226. align-self:center;
  4227. padding:2px 2px 2px 0px;
  4228. box-sizing:border-box;
  4229. width:100%;
  4230. }
  4231. #u23869_text {
  4232. border-width:0px;
  4233. word-wrap:break-word;
  4234. text-transform:none;
  4235. visibility:hidden;
  4236. }
  4237. #u23870_img {
  4238. border-width:0px;
  4239. position:absolute;
  4240. left:0px;
  4241. top:0px;
  4242. width:165px;
  4243. height:35px;
  4244. }
  4245. #u23870 {
  4246. border-width:0px;
  4247. position:absolute;
  4248. left:972px;
  4249. top:329px;
  4250. width:165px;
  4251. height:35px;
  4252. display:flex;
  4253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4254. font-weight:400;
  4255. font-style:normal;
  4256. font-size:12px;
  4257. color:#02A7F0;
  4258. }
  4259. #u23870 .text {
  4260. position:absolute;
  4261. align-self:center;
  4262. padding:2px 2px 2px 0px;
  4263. box-sizing:border-box;
  4264. width:100%;
  4265. }
  4266. #u23870_text {
  4267. border-width:0px;
  4268. word-wrap:break-word;
  4269. text-transform:none;
  4270. visibility:hidden;
  4271. }
  4272. #u23871_img {
  4273. border-width:0px;
  4274. position:absolute;
  4275. left:0px;
  4276. top:0px;
  4277. width:162px;
  4278. height:35px;
  4279. }
  4280. #u23871 {
  4281. border-width:0px;
  4282. position:absolute;
  4283. left:0px;
  4284. top:364px;
  4285. width:162px;
  4286. height:35px;
  4287. display:flex;
  4288. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4289. font-weight:400;
  4290. font-style:normal;
  4291. font-size:12px;
  4292. color:#606266;
  4293. }
  4294. #u23871 .text {
  4295. position:absolute;
  4296. align-self:center;
  4297. padding:2px 2px 2px 0px;
  4298. box-sizing:border-box;
  4299. width:100%;
  4300. }
  4301. #u23871_text {
  4302. border-width:0px;
  4303. word-wrap:break-word;
  4304. text-transform:none;
  4305. visibility:hidden;
  4306. }
  4307. #u23872_img {
  4308. border-width:0px;
  4309. position:absolute;
  4310. left:0px;
  4311. top:0px;
  4312. width:162px;
  4313. height:35px;
  4314. }
  4315. #u23872 {
  4316. border-width:0px;
  4317. position:absolute;
  4318. left:162px;
  4319. top:364px;
  4320. width:162px;
  4321. height:35px;
  4322. display:flex;
  4323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4324. font-weight:400;
  4325. font-style:normal;
  4326. font-size:12px;
  4327. color:#606266;
  4328. }
  4329. #u23872 .text {
  4330. position:absolute;
  4331. align-self:center;
  4332. padding:2px 2px 2px 0px;
  4333. box-sizing:border-box;
  4334. width:100%;
  4335. }
  4336. #u23872_text {
  4337. border-width:0px;
  4338. word-wrap:break-word;
  4339. text-transform:none;
  4340. visibility:hidden;
  4341. }
  4342. #u23873_img {
  4343. border-width:0px;
  4344. position:absolute;
  4345. left:0px;
  4346. top:0px;
  4347. width:162px;
  4348. height:35px;
  4349. }
  4350. #u23873 {
  4351. border-width:0px;
  4352. position:absolute;
  4353. left:324px;
  4354. top:364px;
  4355. width:162px;
  4356. height:35px;
  4357. display:flex;
  4358. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4359. font-weight:400;
  4360. font-style:normal;
  4361. font-size:12px;
  4362. color:#333333;
  4363. }
  4364. #u23873 .text {
  4365. position:absolute;
  4366. align-self:center;
  4367. padding:2px 2px 2px 0px;
  4368. box-sizing:border-box;
  4369. width:100%;
  4370. }
  4371. #u23873_text {
  4372. border-width:0px;
  4373. word-wrap:break-word;
  4374. text-transform:none;
  4375. visibility:hidden;
  4376. }
  4377. #u23874_img {
  4378. border-width:0px;
  4379. position:absolute;
  4380. left:0px;
  4381. top:0px;
  4382. width:162px;
  4383. height:35px;
  4384. }
  4385. #u23874 {
  4386. border-width:0px;
  4387. position:absolute;
  4388. left:486px;
  4389. top:364px;
  4390. width:162px;
  4391. height:35px;
  4392. display:flex;
  4393. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4394. font-weight:400;
  4395. font-style:normal;
  4396. font-size:12px;
  4397. color:#333333;
  4398. }
  4399. #u23874 .text {
  4400. position:absolute;
  4401. align-self:center;
  4402. padding:2px 2px 2px 0px;
  4403. box-sizing:border-box;
  4404. width:100%;
  4405. }
  4406. #u23874_text {
  4407. border-width:0px;
  4408. word-wrap:break-word;
  4409. text-transform:none;
  4410. visibility:hidden;
  4411. }
  4412. #u23875_img {
  4413. border-width:0px;
  4414. position:absolute;
  4415. left:0px;
  4416. top:0px;
  4417. width:162px;
  4418. height:35px;
  4419. }
  4420. #u23875 {
  4421. border-width:0px;
  4422. position:absolute;
  4423. left:648px;
  4424. top:364px;
  4425. width:162px;
  4426. height:35px;
  4427. display:flex;
  4428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4429. font-weight:400;
  4430. font-style:normal;
  4431. font-size:12px;
  4432. color:#606266;
  4433. }
  4434. #u23875 .text {
  4435. position:absolute;
  4436. align-self:center;
  4437. padding:2px 2px 2px 0px;
  4438. box-sizing:border-box;
  4439. width:100%;
  4440. }
  4441. #u23875_text {
  4442. border-width:0px;
  4443. word-wrap:break-word;
  4444. text-transform:none;
  4445. visibility:hidden;
  4446. }
  4447. #u23876_img {
  4448. border-width:0px;
  4449. position:absolute;
  4450. left:0px;
  4451. top:0px;
  4452. width:162px;
  4453. height:35px;
  4454. }
  4455. #u23876 {
  4456. border-width:0px;
  4457. position:absolute;
  4458. left:810px;
  4459. top:364px;
  4460. width:162px;
  4461. height:35px;
  4462. display:flex;
  4463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4464. font-weight:400;
  4465. font-style:normal;
  4466. font-size:12px;
  4467. color:#606266;
  4468. }
  4469. #u23876 .text {
  4470. position:absolute;
  4471. align-self:center;
  4472. padding:2px 2px 2px 0px;
  4473. box-sizing:border-box;
  4474. width:100%;
  4475. }
  4476. #u23876_text {
  4477. border-width:0px;
  4478. word-wrap:break-word;
  4479. text-transform:none;
  4480. visibility:hidden;
  4481. }
  4482. #u23877_img {
  4483. border-width:0px;
  4484. position:absolute;
  4485. left:0px;
  4486. top:0px;
  4487. width:165px;
  4488. height:35px;
  4489. }
  4490. #u23877 {
  4491. border-width:0px;
  4492. position:absolute;
  4493. left:972px;
  4494. top:364px;
  4495. width:165px;
  4496. height:35px;
  4497. display:flex;
  4498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4499. font-weight:400;
  4500. font-style:normal;
  4501. font-size:12px;
  4502. color:#02A7F0;
  4503. }
  4504. #u23877 .text {
  4505. position:absolute;
  4506. align-self:center;
  4507. padding:2px 2px 2px 0px;
  4508. box-sizing:border-box;
  4509. width:100%;
  4510. }
  4511. #u23877_text {
  4512. border-width:0px;
  4513. word-wrap:break-word;
  4514. text-transform:none;
  4515. visibility:hidden;
  4516. }
  4517. #u23878_img {
  4518. border-width:0px;
  4519. position:absolute;
  4520. left:0px;
  4521. top:0px;
  4522. width:162px;
  4523. height:35px;
  4524. }
  4525. #u23878 {
  4526. border-width:0px;
  4527. position:absolute;
  4528. left:0px;
  4529. top:399px;
  4530. width:162px;
  4531. height:35px;
  4532. display:flex;
  4533. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4534. font-weight:400;
  4535. font-style:normal;
  4536. font-size:12px;
  4537. color:#606266;
  4538. }
  4539. #u23878 .text {
  4540. position:absolute;
  4541. align-self:center;
  4542. padding:2px 2px 2px 0px;
  4543. box-sizing:border-box;
  4544. width:100%;
  4545. }
  4546. #u23878_text {
  4547. border-width:0px;
  4548. word-wrap:break-word;
  4549. text-transform:none;
  4550. visibility:hidden;
  4551. }
  4552. #u23879_img {
  4553. border-width:0px;
  4554. position:absolute;
  4555. left:0px;
  4556. top:0px;
  4557. width:162px;
  4558. height:35px;
  4559. }
  4560. #u23879 {
  4561. border-width:0px;
  4562. position:absolute;
  4563. left:162px;
  4564. top:399px;
  4565. width:162px;
  4566. height:35px;
  4567. display:flex;
  4568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4569. font-weight:400;
  4570. font-style:normal;
  4571. font-size:12px;
  4572. color:#606266;
  4573. }
  4574. #u23879 .text {
  4575. position:absolute;
  4576. align-self:center;
  4577. padding:2px 2px 2px 0px;
  4578. box-sizing:border-box;
  4579. width:100%;
  4580. }
  4581. #u23879_text {
  4582. border-width:0px;
  4583. word-wrap:break-word;
  4584. text-transform:none;
  4585. visibility:hidden;
  4586. }
  4587. #u23880_img {
  4588. border-width:0px;
  4589. position:absolute;
  4590. left:0px;
  4591. top:0px;
  4592. width:162px;
  4593. height:35px;
  4594. }
  4595. #u23880 {
  4596. border-width:0px;
  4597. position:absolute;
  4598. left:324px;
  4599. top:399px;
  4600. width:162px;
  4601. height:35px;
  4602. display:flex;
  4603. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4604. font-weight:400;
  4605. font-style:normal;
  4606. font-size:12px;
  4607. color:#333333;
  4608. }
  4609. #u23880 .text {
  4610. position:absolute;
  4611. align-self:center;
  4612. padding:2px 2px 2px 0px;
  4613. box-sizing:border-box;
  4614. width:100%;
  4615. }
  4616. #u23880_text {
  4617. border-width:0px;
  4618. word-wrap:break-word;
  4619. text-transform:none;
  4620. visibility:hidden;
  4621. }
  4622. #u23881_img {
  4623. border-width:0px;
  4624. position:absolute;
  4625. left:0px;
  4626. top:0px;
  4627. width:162px;
  4628. height:35px;
  4629. }
  4630. #u23881 {
  4631. border-width:0px;
  4632. position:absolute;
  4633. left:486px;
  4634. top:399px;
  4635. width:162px;
  4636. height:35px;
  4637. display:flex;
  4638. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4639. font-weight:400;
  4640. font-style:normal;
  4641. font-size:12px;
  4642. color:#333333;
  4643. }
  4644. #u23881 .text {
  4645. position:absolute;
  4646. align-self:center;
  4647. padding:2px 2px 2px 0px;
  4648. box-sizing:border-box;
  4649. width:100%;
  4650. }
  4651. #u23881_text {
  4652. border-width:0px;
  4653. word-wrap:break-word;
  4654. text-transform:none;
  4655. visibility:hidden;
  4656. }
  4657. #u23882_img {
  4658. border-width:0px;
  4659. position:absolute;
  4660. left:0px;
  4661. top:0px;
  4662. width:162px;
  4663. height:35px;
  4664. }
  4665. #u23882 {
  4666. border-width:0px;
  4667. position:absolute;
  4668. left:648px;
  4669. top:399px;
  4670. width:162px;
  4671. height:35px;
  4672. display:flex;
  4673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4674. font-weight:400;
  4675. font-style:normal;
  4676. font-size:12px;
  4677. color:#606266;
  4678. }
  4679. #u23882 .text {
  4680. position:absolute;
  4681. align-self:center;
  4682. padding:2px 2px 2px 0px;
  4683. box-sizing:border-box;
  4684. width:100%;
  4685. }
  4686. #u23882_text {
  4687. border-width:0px;
  4688. word-wrap:break-word;
  4689. text-transform:none;
  4690. visibility:hidden;
  4691. }
  4692. #u23883_img {
  4693. border-width:0px;
  4694. position:absolute;
  4695. left:0px;
  4696. top:0px;
  4697. width:162px;
  4698. height:35px;
  4699. }
  4700. #u23883 {
  4701. border-width:0px;
  4702. position:absolute;
  4703. left:810px;
  4704. top:399px;
  4705. width:162px;
  4706. height:35px;
  4707. display:flex;
  4708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4709. font-weight:400;
  4710. font-style:normal;
  4711. font-size:12px;
  4712. color:#606266;
  4713. }
  4714. #u23883 .text {
  4715. position:absolute;
  4716. align-self:center;
  4717. padding:2px 2px 2px 0px;
  4718. box-sizing:border-box;
  4719. width:100%;
  4720. }
  4721. #u23883_text {
  4722. border-width:0px;
  4723. word-wrap:break-word;
  4724. text-transform:none;
  4725. visibility:hidden;
  4726. }
  4727. #u23884_img {
  4728. border-width:0px;
  4729. position:absolute;
  4730. left:0px;
  4731. top:0px;
  4732. width:165px;
  4733. height:35px;
  4734. }
  4735. #u23884 {
  4736. border-width:0px;
  4737. position:absolute;
  4738. left:972px;
  4739. top:399px;
  4740. width:165px;
  4741. height:35px;
  4742. display:flex;
  4743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4744. font-weight:400;
  4745. font-style:normal;
  4746. font-size:12px;
  4747. color:#02A7F0;
  4748. }
  4749. #u23884 .text {
  4750. position:absolute;
  4751. align-self:center;
  4752. padding:2px 2px 2px 0px;
  4753. box-sizing:border-box;
  4754. width:100%;
  4755. }
  4756. #u23884_text {
  4757. border-width:0px;
  4758. word-wrap:break-word;
  4759. text-transform:none;
  4760. visibility:hidden;
  4761. }
  4762. #u23885_img {
  4763. border-width:0px;
  4764. position:absolute;
  4765. left:0px;
  4766. top:0px;
  4767. width:162px;
  4768. height:35px;
  4769. }
  4770. #u23885 {
  4771. border-width:0px;
  4772. position:absolute;
  4773. left:0px;
  4774. top:434px;
  4775. width:162px;
  4776. height:35px;
  4777. display:flex;
  4778. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4779. font-weight:400;
  4780. font-style:normal;
  4781. font-size:12px;
  4782. color:#606266;
  4783. }
  4784. #u23885 .text {
  4785. position:absolute;
  4786. align-self:center;
  4787. padding:2px 2px 2px 0px;
  4788. box-sizing:border-box;
  4789. width:100%;
  4790. }
  4791. #u23885_text {
  4792. border-width:0px;
  4793. word-wrap:break-word;
  4794. text-transform:none;
  4795. visibility:hidden;
  4796. }
  4797. #u23886_img {
  4798. border-width:0px;
  4799. position:absolute;
  4800. left:0px;
  4801. top:0px;
  4802. width:162px;
  4803. height:35px;
  4804. }
  4805. #u23886 {
  4806. border-width:0px;
  4807. position:absolute;
  4808. left:162px;
  4809. top:434px;
  4810. width:162px;
  4811. height:35px;
  4812. display:flex;
  4813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4814. font-weight:400;
  4815. font-style:normal;
  4816. font-size:12px;
  4817. color:#606266;
  4818. }
  4819. #u23886 .text {
  4820. position:absolute;
  4821. align-self:center;
  4822. padding:2px 2px 2px 0px;
  4823. box-sizing:border-box;
  4824. width:100%;
  4825. }
  4826. #u23886_text {
  4827. border-width:0px;
  4828. word-wrap:break-word;
  4829. text-transform:none;
  4830. visibility:hidden;
  4831. }
  4832. #u23887_img {
  4833. border-width:0px;
  4834. position:absolute;
  4835. left:0px;
  4836. top:0px;
  4837. width:162px;
  4838. height:35px;
  4839. }
  4840. #u23887 {
  4841. border-width:0px;
  4842. position:absolute;
  4843. left:324px;
  4844. top:434px;
  4845. width:162px;
  4846. height:35px;
  4847. display:flex;
  4848. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4849. font-weight:400;
  4850. font-style:normal;
  4851. font-size:12px;
  4852. color:#333333;
  4853. }
  4854. #u23887 .text {
  4855. position:absolute;
  4856. align-self:center;
  4857. padding:2px 2px 2px 0px;
  4858. box-sizing:border-box;
  4859. width:100%;
  4860. }
  4861. #u23887_text {
  4862. border-width:0px;
  4863. word-wrap:break-word;
  4864. text-transform:none;
  4865. visibility:hidden;
  4866. }
  4867. #u23888_img {
  4868. border-width:0px;
  4869. position:absolute;
  4870. left:0px;
  4871. top:0px;
  4872. width:162px;
  4873. height:35px;
  4874. }
  4875. #u23888 {
  4876. border-width:0px;
  4877. position:absolute;
  4878. left:486px;
  4879. top:434px;
  4880. width:162px;
  4881. height:35px;
  4882. display:flex;
  4883. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4884. font-weight:400;
  4885. font-style:normal;
  4886. font-size:12px;
  4887. color:#333333;
  4888. }
  4889. #u23888 .text {
  4890. position:absolute;
  4891. align-self:center;
  4892. padding:2px 2px 2px 0px;
  4893. box-sizing:border-box;
  4894. width:100%;
  4895. }
  4896. #u23888_text {
  4897. border-width:0px;
  4898. word-wrap:break-word;
  4899. text-transform:none;
  4900. visibility:hidden;
  4901. }
  4902. #u23889_img {
  4903. border-width:0px;
  4904. position:absolute;
  4905. left:0px;
  4906. top:0px;
  4907. width:162px;
  4908. height:35px;
  4909. }
  4910. #u23889 {
  4911. border-width:0px;
  4912. position:absolute;
  4913. left:648px;
  4914. top:434px;
  4915. width:162px;
  4916. height:35px;
  4917. display:flex;
  4918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4919. font-weight:400;
  4920. font-style:normal;
  4921. font-size:12px;
  4922. color:#606266;
  4923. }
  4924. #u23889 .text {
  4925. position:absolute;
  4926. align-self:center;
  4927. padding:2px 2px 2px 0px;
  4928. box-sizing:border-box;
  4929. width:100%;
  4930. }
  4931. #u23889_text {
  4932. border-width:0px;
  4933. word-wrap:break-word;
  4934. text-transform:none;
  4935. visibility:hidden;
  4936. }
  4937. #u23890_img {
  4938. border-width:0px;
  4939. position:absolute;
  4940. left:0px;
  4941. top:0px;
  4942. width:162px;
  4943. height:35px;
  4944. }
  4945. #u23890 {
  4946. border-width:0px;
  4947. position:absolute;
  4948. left:810px;
  4949. top:434px;
  4950. width:162px;
  4951. height:35px;
  4952. display:flex;
  4953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4954. font-weight:400;
  4955. font-style:normal;
  4956. font-size:12px;
  4957. color:#606266;
  4958. }
  4959. #u23890 .text {
  4960. position:absolute;
  4961. align-self:center;
  4962. padding:2px 2px 2px 0px;
  4963. box-sizing:border-box;
  4964. width:100%;
  4965. }
  4966. #u23890_text {
  4967. border-width:0px;
  4968. word-wrap:break-word;
  4969. text-transform:none;
  4970. visibility:hidden;
  4971. }
  4972. #u23891_img {
  4973. border-width:0px;
  4974. position:absolute;
  4975. left:0px;
  4976. top:0px;
  4977. width:165px;
  4978. height:35px;
  4979. }
  4980. #u23891 {
  4981. border-width:0px;
  4982. position:absolute;
  4983. left:972px;
  4984. top:434px;
  4985. width:165px;
  4986. height:35px;
  4987. display:flex;
  4988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4989. font-weight:400;
  4990. font-style:normal;
  4991. font-size:12px;
  4992. color:#02A7F0;
  4993. }
  4994. #u23891 .text {
  4995. position:absolute;
  4996. align-self:center;
  4997. padding:2px 2px 2px 0px;
  4998. box-sizing:border-box;
  4999. width:100%;
  5000. }
  5001. #u23891_text {
  5002. border-width:0px;
  5003. word-wrap:break-word;
  5004. text-transform:none;
  5005. visibility:hidden;
  5006. }
  5007. #u23892_img {
  5008. border-width:0px;
  5009. position:absolute;
  5010. left:0px;
  5011. top:0px;
  5012. width:162px;
  5013. height:35px;
  5014. }
  5015. #u23892 {
  5016. border-width:0px;
  5017. position:absolute;
  5018. left:0px;
  5019. top:469px;
  5020. width:162px;
  5021. height:35px;
  5022. display:flex;
  5023. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5024. font-weight:400;
  5025. font-style:normal;
  5026. font-size:12px;
  5027. color:#606266;
  5028. }
  5029. #u23892 .text {
  5030. position:absolute;
  5031. align-self:center;
  5032. padding:2px 2px 2px 0px;
  5033. box-sizing:border-box;
  5034. width:100%;
  5035. }
  5036. #u23892_text {
  5037. border-width:0px;
  5038. word-wrap:break-word;
  5039. text-transform:none;
  5040. visibility:hidden;
  5041. }
  5042. #u23893_img {
  5043. border-width:0px;
  5044. position:absolute;
  5045. left:0px;
  5046. top:0px;
  5047. width:162px;
  5048. height:35px;
  5049. }
  5050. #u23893 {
  5051. border-width:0px;
  5052. position:absolute;
  5053. left:162px;
  5054. top:469px;
  5055. width:162px;
  5056. height:35px;
  5057. display:flex;
  5058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5059. font-weight:400;
  5060. font-style:normal;
  5061. font-size:12px;
  5062. color:#606266;
  5063. }
  5064. #u23893 .text {
  5065. position:absolute;
  5066. align-self:center;
  5067. padding:2px 2px 2px 0px;
  5068. box-sizing:border-box;
  5069. width:100%;
  5070. }
  5071. #u23893_text {
  5072. border-width:0px;
  5073. word-wrap:break-word;
  5074. text-transform:none;
  5075. visibility:hidden;
  5076. }
  5077. #u23894_img {
  5078. border-width:0px;
  5079. position:absolute;
  5080. left:0px;
  5081. top:0px;
  5082. width:162px;
  5083. height:35px;
  5084. }
  5085. #u23894 {
  5086. border-width:0px;
  5087. position:absolute;
  5088. left:324px;
  5089. top:469px;
  5090. width:162px;
  5091. height:35px;
  5092. display:flex;
  5093. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5094. font-weight:400;
  5095. font-style:normal;
  5096. font-size:12px;
  5097. color:#333333;
  5098. }
  5099. #u23894 .text {
  5100. position:absolute;
  5101. align-self:center;
  5102. padding:2px 2px 2px 0px;
  5103. box-sizing:border-box;
  5104. width:100%;
  5105. }
  5106. #u23894_text {
  5107. border-width:0px;
  5108. word-wrap:break-word;
  5109. text-transform:none;
  5110. visibility:hidden;
  5111. }
  5112. #u23895_img {
  5113. border-width:0px;
  5114. position:absolute;
  5115. left:0px;
  5116. top:0px;
  5117. width:162px;
  5118. height:35px;
  5119. }
  5120. #u23895 {
  5121. border-width:0px;
  5122. position:absolute;
  5123. left:486px;
  5124. top:469px;
  5125. width:162px;
  5126. height:35px;
  5127. display:flex;
  5128. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5129. font-weight:400;
  5130. font-style:normal;
  5131. font-size:12px;
  5132. color:#333333;
  5133. }
  5134. #u23895 .text {
  5135. position:absolute;
  5136. align-self:center;
  5137. padding:2px 2px 2px 0px;
  5138. box-sizing:border-box;
  5139. width:100%;
  5140. }
  5141. #u23895_text {
  5142. border-width:0px;
  5143. word-wrap:break-word;
  5144. text-transform:none;
  5145. visibility:hidden;
  5146. }
  5147. #u23896_img {
  5148. border-width:0px;
  5149. position:absolute;
  5150. left:0px;
  5151. top:0px;
  5152. width:162px;
  5153. height:35px;
  5154. }
  5155. #u23896 {
  5156. border-width:0px;
  5157. position:absolute;
  5158. left:648px;
  5159. top:469px;
  5160. width:162px;
  5161. height:35px;
  5162. display:flex;
  5163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5164. font-weight:400;
  5165. font-style:normal;
  5166. font-size:12px;
  5167. color:#606266;
  5168. }
  5169. #u23896 .text {
  5170. position:absolute;
  5171. align-self:center;
  5172. padding:2px 2px 2px 0px;
  5173. box-sizing:border-box;
  5174. width:100%;
  5175. }
  5176. #u23896_text {
  5177. border-width:0px;
  5178. word-wrap:break-word;
  5179. text-transform:none;
  5180. visibility:hidden;
  5181. }
  5182. #u23897_img {
  5183. border-width:0px;
  5184. position:absolute;
  5185. left:0px;
  5186. top:0px;
  5187. width:162px;
  5188. height:35px;
  5189. }
  5190. #u23897 {
  5191. border-width:0px;
  5192. position:absolute;
  5193. left:810px;
  5194. top:469px;
  5195. width:162px;
  5196. height:35px;
  5197. display:flex;
  5198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5199. font-weight:400;
  5200. font-style:normal;
  5201. font-size:12px;
  5202. color:#606266;
  5203. }
  5204. #u23897 .text {
  5205. position:absolute;
  5206. align-self:center;
  5207. padding:2px 2px 2px 0px;
  5208. box-sizing:border-box;
  5209. width:100%;
  5210. }
  5211. #u23897_text {
  5212. border-width:0px;
  5213. word-wrap:break-word;
  5214. text-transform:none;
  5215. visibility:hidden;
  5216. }
  5217. #u23898_img {
  5218. border-width:0px;
  5219. position:absolute;
  5220. left:0px;
  5221. top:0px;
  5222. width:165px;
  5223. height:35px;
  5224. }
  5225. #u23898 {
  5226. border-width:0px;
  5227. position:absolute;
  5228. left:972px;
  5229. top:469px;
  5230. width:165px;
  5231. height:35px;
  5232. display:flex;
  5233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5234. font-weight:400;
  5235. font-style:normal;
  5236. font-size:12px;
  5237. color:#02A7F0;
  5238. }
  5239. #u23898 .text {
  5240. position:absolute;
  5241. align-self:center;
  5242. padding:2px 2px 2px 0px;
  5243. box-sizing:border-box;
  5244. width:100%;
  5245. }
  5246. #u23898_text {
  5247. border-width:0px;
  5248. word-wrap:break-word;
  5249. text-transform:none;
  5250. visibility:hidden;
  5251. }
  5252. #u23899_img {
  5253. border-width:0px;
  5254. position:absolute;
  5255. left:0px;
  5256. top:0px;
  5257. width:162px;
  5258. height:35px;
  5259. }
  5260. #u23899 {
  5261. border-width:0px;
  5262. position:absolute;
  5263. left:0px;
  5264. top:504px;
  5265. width:162px;
  5266. height:35px;
  5267. display:flex;
  5268. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5269. font-weight:400;
  5270. font-style:normal;
  5271. font-size:12px;
  5272. color:#606266;
  5273. }
  5274. #u23899 .text {
  5275. position:absolute;
  5276. align-self:center;
  5277. padding:2px 2px 2px 0px;
  5278. box-sizing:border-box;
  5279. width:100%;
  5280. }
  5281. #u23899_text {
  5282. border-width:0px;
  5283. word-wrap:break-word;
  5284. text-transform:none;
  5285. visibility:hidden;
  5286. }
  5287. #u23900_img {
  5288. border-width:0px;
  5289. position:absolute;
  5290. left:0px;
  5291. top:0px;
  5292. width:162px;
  5293. height:35px;
  5294. }
  5295. #u23900 {
  5296. border-width:0px;
  5297. position:absolute;
  5298. left:162px;
  5299. top:504px;
  5300. width:162px;
  5301. height:35px;
  5302. display:flex;
  5303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5304. font-weight:400;
  5305. font-style:normal;
  5306. font-size:12px;
  5307. color:#606266;
  5308. }
  5309. #u23900 .text {
  5310. position:absolute;
  5311. align-self:center;
  5312. padding:2px 2px 2px 0px;
  5313. box-sizing:border-box;
  5314. width:100%;
  5315. }
  5316. #u23900_text {
  5317. border-width:0px;
  5318. word-wrap:break-word;
  5319. text-transform:none;
  5320. visibility:hidden;
  5321. }
  5322. #u23901_img {
  5323. border-width:0px;
  5324. position:absolute;
  5325. left:0px;
  5326. top:0px;
  5327. width:162px;
  5328. height:35px;
  5329. }
  5330. #u23901 {
  5331. border-width:0px;
  5332. position:absolute;
  5333. left:324px;
  5334. top:504px;
  5335. width:162px;
  5336. height:35px;
  5337. display:flex;
  5338. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5339. font-weight:400;
  5340. font-style:normal;
  5341. font-size:12px;
  5342. color:#333333;
  5343. }
  5344. #u23901 .text {
  5345. position:absolute;
  5346. align-self:center;
  5347. padding:2px 2px 2px 0px;
  5348. box-sizing:border-box;
  5349. width:100%;
  5350. }
  5351. #u23901_text {
  5352. border-width:0px;
  5353. word-wrap:break-word;
  5354. text-transform:none;
  5355. visibility:hidden;
  5356. }
  5357. #u23902_img {
  5358. border-width:0px;
  5359. position:absolute;
  5360. left:0px;
  5361. top:0px;
  5362. width:162px;
  5363. height:35px;
  5364. }
  5365. #u23902 {
  5366. border-width:0px;
  5367. position:absolute;
  5368. left:486px;
  5369. top:504px;
  5370. width:162px;
  5371. height:35px;
  5372. display:flex;
  5373. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5374. font-weight:400;
  5375. font-style:normal;
  5376. font-size:12px;
  5377. color:#333333;
  5378. }
  5379. #u23902 .text {
  5380. position:absolute;
  5381. align-self:center;
  5382. padding:2px 2px 2px 0px;
  5383. box-sizing:border-box;
  5384. width:100%;
  5385. }
  5386. #u23902_text {
  5387. border-width:0px;
  5388. word-wrap:break-word;
  5389. text-transform:none;
  5390. visibility:hidden;
  5391. }
  5392. #u23903_img {
  5393. border-width:0px;
  5394. position:absolute;
  5395. left:0px;
  5396. top:0px;
  5397. width:162px;
  5398. height:35px;
  5399. }
  5400. #u23903 {
  5401. border-width:0px;
  5402. position:absolute;
  5403. left:648px;
  5404. top:504px;
  5405. width:162px;
  5406. height:35px;
  5407. display:flex;
  5408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5409. font-weight:400;
  5410. font-style:normal;
  5411. font-size:12px;
  5412. color:#606266;
  5413. }
  5414. #u23903 .text {
  5415. position:absolute;
  5416. align-self:center;
  5417. padding:2px 2px 2px 0px;
  5418. box-sizing:border-box;
  5419. width:100%;
  5420. }
  5421. #u23903_text {
  5422. border-width:0px;
  5423. word-wrap:break-word;
  5424. text-transform:none;
  5425. visibility:hidden;
  5426. }
  5427. #u23904_img {
  5428. border-width:0px;
  5429. position:absolute;
  5430. left:0px;
  5431. top:0px;
  5432. width:162px;
  5433. height:35px;
  5434. }
  5435. #u23904 {
  5436. border-width:0px;
  5437. position:absolute;
  5438. left:810px;
  5439. top:504px;
  5440. width:162px;
  5441. height:35px;
  5442. display:flex;
  5443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5444. font-weight:400;
  5445. font-style:normal;
  5446. font-size:12px;
  5447. color:#606266;
  5448. }
  5449. #u23904 .text {
  5450. position:absolute;
  5451. align-self:center;
  5452. padding:2px 2px 2px 0px;
  5453. box-sizing:border-box;
  5454. width:100%;
  5455. }
  5456. #u23904_text {
  5457. border-width:0px;
  5458. word-wrap:break-word;
  5459. text-transform:none;
  5460. visibility:hidden;
  5461. }
  5462. #u23905_img {
  5463. border-width:0px;
  5464. position:absolute;
  5465. left:0px;
  5466. top:0px;
  5467. width:165px;
  5468. height:35px;
  5469. }
  5470. #u23905 {
  5471. border-width:0px;
  5472. position:absolute;
  5473. left:972px;
  5474. top:504px;
  5475. width:165px;
  5476. height:35px;
  5477. display:flex;
  5478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5479. font-weight:400;
  5480. font-style:normal;
  5481. font-size:12px;
  5482. color:#02A7F0;
  5483. }
  5484. #u23905 .text {
  5485. position:absolute;
  5486. align-self:center;
  5487. padding:2px 2px 2px 0px;
  5488. box-sizing:border-box;
  5489. width:100%;
  5490. }
  5491. #u23905_text {
  5492. border-width:0px;
  5493. word-wrap:break-word;
  5494. text-transform:none;
  5495. visibility:hidden;
  5496. }
  5497. #u23906_img {
  5498. border-width:0px;
  5499. position:absolute;
  5500. left:0px;
  5501. top:0px;
  5502. width:162px;
  5503. height:35px;
  5504. }
  5505. #u23906 {
  5506. border-width:0px;
  5507. position:absolute;
  5508. left:0px;
  5509. top:539px;
  5510. width:162px;
  5511. height:35px;
  5512. display:flex;
  5513. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5514. font-weight:400;
  5515. font-style:normal;
  5516. font-size:12px;
  5517. color:#606266;
  5518. }
  5519. #u23906 .text {
  5520. position:absolute;
  5521. align-self:center;
  5522. padding:2px 2px 2px 0px;
  5523. box-sizing:border-box;
  5524. width:100%;
  5525. }
  5526. #u23906_text {
  5527. border-width:0px;
  5528. word-wrap:break-word;
  5529. text-transform:none;
  5530. visibility:hidden;
  5531. }
  5532. #u23907_img {
  5533. border-width:0px;
  5534. position:absolute;
  5535. left:0px;
  5536. top:0px;
  5537. width:162px;
  5538. height:35px;
  5539. }
  5540. #u23907 {
  5541. border-width:0px;
  5542. position:absolute;
  5543. left:162px;
  5544. top:539px;
  5545. width:162px;
  5546. height:35px;
  5547. display:flex;
  5548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5549. font-weight:400;
  5550. font-style:normal;
  5551. font-size:12px;
  5552. color:#606266;
  5553. }
  5554. #u23907 .text {
  5555. position:absolute;
  5556. align-self:center;
  5557. padding:2px 2px 2px 0px;
  5558. box-sizing:border-box;
  5559. width:100%;
  5560. }
  5561. #u23907_text {
  5562. border-width:0px;
  5563. word-wrap:break-word;
  5564. text-transform:none;
  5565. visibility:hidden;
  5566. }
  5567. #u23908_img {
  5568. border-width:0px;
  5569. position:absolute;
  5570. left:0px;
  5571. top:0px;
  5572. width:162px;
  5573. height:35px;
  5574. }
  5575. #u23908 {
  5576. border-width:0px;
  5577. position:absolute;
  5578. left:324px;
  5579. top:539px;
  5580. width:162px;
  5581. height:35px;
  5582. display:flex;
  5583. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5584. font-weight:400;
  5585. font-style:normal;
  5586. font-size:12px;
  5587. color:#333333;
  5588. }
  5589. #u23908 .text {
  5590. position:absolute;
  5591. align-self:center;
  5592. padding:2px 2px 2px 0px;
  5593. box-sizing:border-box;
  5594. width:100%;
  5595. }
  5596. #u23908_text {
  5597. border-width:0px;
  5598. word-wrap:break-word;
  5599. text-transform:none;
  5600. visibility:hidden;
  5601. }
  5602. #u23909_img {
  5603. border-width:0px;
  5604. position:absolute;
  5605. left:0px;
  5606. top:0px;
  5607. width:162px;
  5608. height:35px;
  5609. }
  5610. #u23909 {
  5611. border-width:0px;
  5612. position:absolute;
  5613. left:486px;
  5614. top:539px;
  5615. width:162px;
  5616. height:35px;
  5617. display:flex;
  5618. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5619. font-weight:400;
  5620. font-style:normal;
  5621. font-size:12px;
  5622. color:#333333;
  5623. }
  5624. #u23909 .text {
  5625. position:absolute;
  5626. align-self:center;
  5627. padding:2px 2px 2px 0px;
  5628. box-sizing:border-box;
  5629. width:100%;
  5630. }
  5631. #u23909_text {
  5632. border-width:0px;
  5633. word-wrap:break-word;
  5634. text-transform:none;
  5635. visibility:hidden;
  5636. }
  5637. #u23910_img {
  5638. border-width:0px;
  5639. position:absolute;
  5640. left:0px;
  5641. top:0px;
  5642. width:162px;
  5643. height:35px;
  5644. }
  5645. #u23910 {
  5646. border-width:0px;
  5647. position:absolute;
  5648. left:648px;
  5649. top:539px;
  5650. width:162px;
  5651. height:35px;
  5652. display:flex;
  5653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5654. font-weight:400;
  5655. font-style:normal;
  5656. font-size:12px;
  5657. color:#606266;
  5658. }
  5659. #u23910 .text {
  5660. position:absolute;
  5661. align-self:center;
  5662. padding:2px 2px 2px 0px;
  5663. box-sizing:border-box;
  5664. width:100%;
  5665. }
  5666. #u23910_text {
  5667. border-width:0px;
  5668. word-wrap:break-word;
  5669. text-transform:none;
  5670. visibility:hidden;
  5671. }
  5672. #u23911_img {
  5673. border-width:0px;
  5674. position:absolute;
  5675. left:0px;
  5676. top:0px;
  5677. width:162px;
  5678. height:35px;
  5679. }
  5680. #u23911 {
  5681. border-width:0px;
  5682. position:absolute;
  5683. left:810px;
  5684. top:539px;
  5685. width:162px;
  5686. height:35px;
  5687. display:flex;
  5688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5689. font-weight:400;
  5690. font-style:normal;
  5691. font-size:12px;
  5692. color:#606266;
  5693. }
  5694. #u23911 .text {
  5695. position:absolute;
  5696. align-self:center;
  5697. padding:2px 2px 2px 0px;
  5698. box-sizing:border-box;
  5699. width:100%;
  5700. }
  5701. #u23911_text {
  5702. border-width:0px;
  5703. word-wrap:break-word;
  5704. text-transform:none;
  5705. visibility:hidden;
  5706. }
  5707. #u23912_img {
  5708. border-width:0px;
  5709. position:absolute;
  5710. left:0px;
  5711. top:0px;
  5712. width:165px;
  5713. height:35px;
  5714. }
  5715. #u23912 {
  5716. border-width:0px;
  5717. position:absolute;
  5718. left:972px;
  5719. top:539px;
  5720. width:165px;
  5721. height:35px;
  5722. display:flex;
  5723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5724. font-weight:400;
  5725. font-style:normal;
  5726. font-size:12px;
  5727. color:#02A7F0;
  5728. }
  5729. #u23912 .text {
  5730. position:absolute;
  5731. align-self:center;
  5732. padding:2px 2px 2px 0px;
  5733. box-sizing:border-box;
  5734. width:100%;
  5735. }
  5736. #u23912_text {
  5737. border-width:0px;
  5738. word-wrap:break-word;
  5739. text-transform:none;
  5740. visibility:hidden;
  5741. }
  5742. #u23913 {
  5743. border-width:0px;
  5744. position:absolute;
  5745. left:0px;
  5746. top:0px;
  5747. width:0px;
  5748. height:0px;
  5749. }
  5750. #u23914_div {
  5751. border-width:0px;
  5752. position:absolute;
  5753. left:0px;
  5754. top:0px;
  5755. width:140px;
  5756. height:30px;
  5757. background:inherit;
  5758. background-color:rgba(255, 255, 255, 1);
  5759. box-sizing:border-box;
  5760. border-width:1px;
  5761. border-style:solid;
  5762. border-color:rgba(201, 201, 201, 1);
  5763. border-radius:4px;
  5764. -moz-box-shadow:none;
  5765. -webkit-box-shadow:none;
  5766. box-shadow:none;
  5767. font-family:'Microsoft YaHei', sans-serif;
  5768. font-weight:400;
  5769. font-style:normal;
  5770. font-size:14px;
  5771. color:#CCCCCC;
  5772. text-align:left;
  5773. }
  5774. #u23914 {
  5775. border-width:0px;
  5776. position:absolute;
  5777. left:350px;
  5778. top:105px;
  5779. width:140px;
  5780. height:30px;
  5781. display:flex;
  5782. font-family:'Microsoft YaHei', sans-serif;
  5783. font-weight:400;
  5784. font-style:normal;
  5785. font-size:14px;
  5786. color:#CCCCCC;
  5787. text-align:left;
  5788. }
  5789. #u23914 .text {
  5790. position:absolute;
  5791. align-self:center;
  5792. padding:2px 8px 2px 8px;
  5793. box-sizing:border-box;
  5794. width:100%;
  5795. }
  5796. #u23914_text {
  5797. border-width:0px;
  5798. word-wrap:break-word;
  5799. text-transform:none;
  5800. visibility:hidden;
  5801. }
  5802. #u23915_input {
  5803. position:absolute;
  5804. left:0px;
  5805. top:0px;
  5806. width:127px;
  5807. height:25px;
  5808. padding:2px 2px 2px 2px;
  5809. font-family:'Microsoft YaHei', sans-serif;
  5810. font-weight:400;
  5811. font-style:normal;
  5812. font-size:10px;
  5813. letter-spacing:normal;
  5814. color:#000000;
  5815. vertical-align:none;
  5816. text-align:left;
  5817. text-transform:none;
  5818. background-color:transparent;
  5819. border-color:transparent;
  5820. }
  5821. #u23915_input.disabled {
  5822. position:absolute;
  5823. left:0px;
  5824. top:0px;
  5825. width:127px;
  5826. height:25px;
  5827. padding:2px 2px 2px 2px;
  5828. font-family:'Microsoft YaHei', sans-serif;
  5829. font-weight:400;
  5830. font-style:normal;
  5831. font-size:10px;
  5832. letter-spacing:normal;
  5833. color:#000000;
  5834. vertical-align:none;
  5835. text-align:left;
  5836. text-transform:none;
  5837. background-color:transparent;
  5838. border-color:transparent;
  5839. }
  5840. #u23915_div {
  5841. border-width:0px;
  5842. position:absolute;
  5843. left:0px;
  5844. top:0px;
  5845. width:127px;
  5846. height:25px;
  5847. background:inherit;
  5848. background-color:rgba(255, 255, 255, 1);
  5849. border:none;
  5850. border-radius:0px;
  5851. -moz-box-shadow:none;
  5852. -webkit-box-shadow:none;
  5853. box-shadow:none;
  5854. font-family:'Microsoft YaHei', sans-serif;
  5855. font-weight:400;
  5856. font-style:normal;
  5857. font-size:10px;
  5858. }
  5859. #u23915 {
  5860. border-width:0px;
  5861. position:absolute;
  5862. left:358px;
  5863. top:106px;
  5864. width:127px;
  5865. height:25px;
  5866. display:flex;
  5867. font-family:'Microsoft YaHei', sans-serif;
  5868. font-weight:400;
  5869. font-style:normal;
  5870. font-size:10px;
  5871. }
  5872. #u23915 .text {
  5873. position:absolute;
  5874. align-self:center;
  5875. padding:2px 2px 2px 2px;
  5876. box-sizing:border-box;
  5877. width:100%;
  5878. }
  5879. #u23915_div.disabled {
  5880. border-width:0px;
  5881. position:absolute;
  5882. left:0px;
  5883. top:0px;
  5884. width:127px;
  5885. height:25px;
  5886. background:inherit;
  5887. background-color:rgba(240, 240, 240, 1);
  5888. border:none;
  5889. border-radius:0px;
  5890. -moz-box-shadow:none;
  5891. -webkit-box-shadow:none;
  5892. box-shadow:none;
  5893. font-family:'Microsoft YaHei', sans-serif;
  5894. font-weight:400;
  5895. font-style:normal;
  5896. font-size:10px;
  5897. }
  5898. #u23915.disabled {
  5899. }
  5900. #u23916 {
  5901. border-width:0px;
  5902. position:absolute;
  5903. left:0px;
  5904. top:0px;
  5905. width:0px;
  5906. height:0px;
  5907. }
  5908. #u23917_div {
  5909. border-width:0px;
  5910. position:absolute;
  5911. left:0px;
  5912. top:0px;
  5913. width:140px;
  5914. height:30px;
  5915. background:inherit;
  5916. background-color:rgba(255, 255, 255, 1);
  5917. box-sizing:border-box;
  5918. border-width:1px;
  5919. border-style:solid;
  5920. border-color:rgba(215, 215, 215, 1);
  5921. border-radius:4px;
  5922. -moz-box-shadow:none;
  5923. -webkit-box-shadow:none;
  5924. box-shadow:none;
  5925. font-size:11px;
  5926. }
  5927. #u23917 {
  5928. border-width:0px;
  5929. position:absolute;
  5930. left:500px;
  5931. top:104px;
  5932. width:140px;
  5933. height:30px;
  5934. display:flex;
  5935. font-size:11px;
  5936. }
  5937. #u23917 .text {
  5938. position:absolute;
  5939. align-self:center;
  5940. padding:2px 2px 2px 2px;
  5941. box-sizing:border-box;
  5942. width:100%;
  5943. }
  5944. #u23917_text {
  5945. border-width:0px;
  5946. word-wrap:break-word;
  5947. text-transform:none;
  5948. visibility:hidden;
  5949. }
  5950. #u23918_input {
  5951. position:absolute;
  5952. left:0px;
  5953. top:0px;
  5954. width:126px;
  5955. height:23px;
  5956. padding:2px 2px 2px 2px;
  5957. font-family:'ArialMT', 'Arial', sans-serif;
  5958. font-weight:400;
  5959. font-style:normal;
  5960. font-size:11px;
  5961. letter-spacing:normal;
  5962. color:#AAAAAA;
  5963. vertical-align:none;
  5964. text-align:left;
  5965. text-transform:none;
  5966. background-color:transparent;
  5967. border-color:transparent;
  5968. }
  5969. #u23918_input.disabled {
  5970. position:absolute;
  5971. left:0px;
  5972. top:0px;
  5973. width:126px;
  5974. height:23px;
  5975. padding:2px 2px 2px 2px;
  5976. font-family:'ArialMT', 'Arial', sans-serif;
  5977. font-weight:400;
  5978. font-style:normal;
  5979. font-size:11px;
  5980. letter-spacing:normal;
  5981. color:#AAAAAA;
  5982. vertical-align:none;
  5983. text-align:left;
  5984. text-transform:none;
  5985. background-color:transparent;
  5986. border-color:transparent;
  5987. }
  5988. #u23918_div {
  5989. border-width:0px;
  5990. position:absolute;
  5991. left:0px;
  5992. top:0px;
  5993. width:126px;
  5994. height:23px;
  5995. background:inherit;
  5996. background-color:rgba(255, 255, 255, 1);
  5997. border:none;
  5998. border-radius:0px;
  5999. -moz-box-shadow:none;
  6000. -webkit-box-shadow:none;
  6001. box-shadow:none;
  6002. font-size:11px;
  6003. color:#AAAAAA;
  6004. }
  6005. #u23918 {
  6006. border-width:0px;
  6007. position:absolute;
  6008. left:507px;
  6009. top:106px;
  6010. width:126px;
  6011. height:23px;
  6012. display:flex;
  6013. font-size:11px;
  6014. color:#AAAAAA;
  6015. }
  6016. #u23918 .text {
  6017. position:absolute;
  6018. align-self:flex-start;
  6019. padding:2px 2px 2px 2px;
  6020. box-sizing:border-box;
  6021. width:100%;
  6022. }
  6023. #u23918_div.disabled {
  6024. border-width:0px;
  6025. position:absolute;
  6026. left:0px;
  6027. top:0px;
  6028. width:126px;
  6029. height:23px;
  6030. background:inherit;
  6031. background-color:rgba(240, 240, 240, 1);
  6032. border:none;
  6033. border-radius:0px;
  6034. -moz-box-shadow:none;
  6035. -webkit-box-shadow:none;
  6036. box-shadow:none;
  6037. font-size:11px;
  6038. color:#AAAAAA;
  6039. }
  6040. #u23918.disabled {
  6041. }
  6042. .u23918_input_option {
  6043. font-size:11px;
  6044. }
  6045. #u23919 {
  6046. border-width:0px;
  6047. position:absolute;
  6048. left:0px;
  6049. top:0px;
  6050. width:0px;
  6051. height:0px;
  6052. }
  6053. #u23920_div {
  6054. border-width:0px;
  6055. position:absolute;
  6056. left:0px;
  6057. top:0px;
  6058. width:140px;
  6059. height:30px;
  6060. background:inherit;
  6061. background-color:rgba(255, 255, 255, 1);
  6062. box-sizing:border-box;
  6063. border-width:1px;
  6064. border-style:solid;
  6065. border-color:rgba(215, 215, 215, 1);
  6066. border-radius:4px;
  6067. -moz-box-shadow:none;
  6068. -webkit-box-shadow:none;
  6069. box-shadow:none;
  6070. font-size:11px;
  6071. }
  6072. #u23920 {
  6073. border-width:0px;
  6074. position:absolute;
  6075. left:650px;
  6076. top:104px;
  6077. width:140px;
  6078. height:30px;
  6079. display:flex;
  6080. font-size:11px;
  6081. }
  6082. #u23920 .text {
  6083. position:absolute;
  6084. align-self:center;
  6085. padding:2px 2px 2px 2px;
  6086. box-sizing:border-box;
  6087. width:100%;
  6088. }
  6089. #u23920_text {
  6090. border-width:0px;
  6091. word-wrap:break-word;
  6092. text-transform:none;
  6093. visibility:hidden;
  6094. }
  6095. #u23921_input {
  6096. position:absolute;
  6097. left:0px;
  6098. top:0px;
  6099. width:126px;
  6100. height:23px;
  6101. padding:2px 2px 2px 2px;
  6102. font-family:'ArialMT', 'Arial', sans-serif;
  6103. font-weight:400;
  6104. font-style:normal;
  6105. font-size:11px;
  6106. letter-spacing:normal;
  6107. color:#AAAAAA;
  6108. vertical-align:none;
  6109. text-align:left;
  6110. text-transform:none;
  6111. background-color:transparent;
  6112. border-color:transparent;
  6113. }
  6114. #u23921_input.disabled {
  6115. position:absolute;
  6116. left:0px;
  6117. top:0px;
  6118. width:126px;
  6119. height:23px;
  6120. padding:2px 2px 2px 2px;
  6121. font-family:'ArialMT', 'Arial', sans-serif;
  6122. font-weight:400;
  6123. font-style:normal;
  6124. font-size:11px;
  6125. letter-spacing:normal;
  6126. color:#AAAAAA;
  6127. vertical-align:none;
  6128. text-align:left;
  6129. text-transform:none;
  6130. background-color:transparent;
  6131. border-color:transparent;
  6132. }
  6133. #u23921_div {
  6134. border-width:0px;
  6135. position:absolute;
  6136. left:0px;
  6137. top:0px;
  6138. width:126px;
  6139. height:23px;
  6140. background:inherit;
  6141. background-color:rgba(255, 255, 255, 1);
  6142. border:none;
  6143. border-radius:0px;
  6144. -moz-box-shadow:none;
  6145. -webkit-box-shadow:none;
  6146. box-shadow:none;
  6147. font-size:11px;
  6148. color:#AAAAAA;
  6149. }
  6150. #u23921 {
  6151. border-width:0px;
  6152. position:absolute;
  6153. left:657px;
  6154. top:106px;
  6155. width:126px;
  6156. height:23px;
  6157. display:flex;
  6158. font-size:11px;
  6159. color:#AAAAAA;
  6160. }
  6161. #u23921 .text {
  6162. position:absolute;
  6163. align-self:flex-start;
  6164. padding:2px 2px 2px 2px;
  6165. box-sizing:border-box;
  6166. width:100%;
  6167. }
  6168. #u23921_div.disabled {
  6169. border-width:0px;
  6170. position:absolute;
  6171. left:0px;
  6172. top:0px;
  6173. width:126px;
  6174. height:23px;
  6175. background:inherit;
  6176. background-color:rgba(240, 240, 240, 1);
  6177. border:none;
  6178. border-radius:0px;
  6179. -moz-box-shadow:none;
  6180. -webkit-box-shadow:none;
  6181. box-shadow:none;
  6182. font-size:11px;
  6183. color:#AAAAAA;
  6184. }
  6185. #u23921.disabled {
  6186. }
  6187. .u23921_input_option {
  6188. font-size:11px;
  6189. }
  6190. #u23922_div {
  6191. border-width:0px;
  6192. position:absolute;
  6193. left:0px;
  6194. top:0px;
  6195. width:59px;
  6196. height:30px;
  6197. background:inherit;
  6198. background-color:rgba(24, 144, 255, 1);
  6199. box-sizing:border-box;
  6200. border-width:1px;
  6201. border-style:solid;
  6202. border-color:rgba(0, 153, 255, 1);
  6203. border-radius:4px;
  6204. -moz-box-shadow:none;
  6205. -webkit-box-shadow:none;
  6206. box-shadow:none;
  6207. font-family:'Microsoft YaHei', sans-serif;
  6208. font-weight:400;
  6209. font-style:normal;
  6210. font-size:14px;
  6211. color:#FFFFFF;
  6212. }
  6213. #u23922 {
  6214. border-width:0px;
  6215. position:absolute;
  6216. left:800px;
  6217. top:103px;
  6218. width:59px;
  6219. height:30px;
  6220. display:flex;
  6221. font-family:'Microsoft YaHei', sans-serif;
  6222. font-weight:400;
  6223. font-style:normal;
  6224. font-size:14px;
  6225. color:#FFFFFF;
  6226. }
  6227. #u23922 .text {
  6228. position:absolute;
  6229. align-self:center;
  6230. padding:5px 15px 5px 15px;
  6231. box-sizing:border-box;
  6232. width:100%;
  6233. }
  6234. #u23922_text {
  6235. border-width:0px;
  6236. white-space:nowrap;
  6237. text-transform:none;
  6238. }
  6239. #u23923_div {
  6240. border-width:0px;
  6241. position:absolute;
  6242. left:0px;
  6243. top:0px;
  6244. width:55px;
  6245. height:30px;
  6246. background:inherit;
  6247. background-color:rgba(255, 255, 255, 1);
  6248. box-sizing:border-box;
  6249. border-width:1px;
  6250. border-style:solid;
  6251. border-color:rgba(170, 170, 170, 1);
  6252. border-radius:4px;
  6253. -moz-box-shadow:none;
  6254. -webkit-box-shadow:none;
  6255. box-shadow:none;
  6256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6257. font-weight:400;
  6258. font-style:normal;
  6259. font-size:12px;
  6260. color:#555555;
  6261. }
  6262. #u23923 {
  6263. border-width:0px;
  6264. position:absolute;
  6265. left:869px;
  6266. top:103px;
  6267. width:55px;
  6268. height:30px;
  6269. display:flex;
  6270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6271. font-weight:400;
  6272. font-style:normal;
  6273. font-size:12px;
  6274. color:#555555;
  6275. }
  6276. #u23923 .text {
  6277. position:absolute;
  6278. align-self:center;
  6279. padding:5px 15px 5px 15px;
  6280. box-sizing:border-box;
  6281. width:100%;
  6282. }
  6283. #u23923_text {
  6284. border-width:0px;
  6285. white-space:nowrap;
  6286. text-transform:none;
  6287. }
  6288. #u23924_div {
  6289. border-width:0px;
  6290. position:absolute;
  6291. left:0px;
  6292. top:0px;
  6293. width:55px;
  6294. height:30px;
  6295. background:inherit;
  6296. background-color:rgba(255, 255, 255, 1);
  6297. box-sizing:border-box;
  6298. border-width:1px;
  6299. border-style:solid;
  6300. border-color:rgba(170, 170, 170, 1);
  6301. border-radius:4px;
  6302. -moz-box-shadow:none;
  6303. -webkit-box-shadow:none;
  6304. box-shadow:none;
  6305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6306. font-weight:400;
  6307. font-style:normal;
  6308. font-size:12px;
  6309. color:#555555;
  6310. }
  6311. #u23924 {
  6312. border-width:0px;
  6313. position:absolute;
  6314. left:427px;
  6315. top:154px;
  6316. width:55px;
  6317. height:30px;
  6318. display:flex;
  6319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6320. font-weight:400;
  6321. font-style:normal;
  6322. font-size:12px;
  6323. color:#555555;
  6324. }
  6325. #u23924 .text {
  6326. position:absolute;
  6327. align-self:center;
  6328. padding:5px 15px 5px 15px;
  6329. box-sizing:border-box;
  6330. width:100%;
  6331. }
  6332. #u23924_text {
  6333. border-width:0px;
  6334. white-space:nowrap;
  6335. text-transform:none;
  6336. }
  6337. #u23925_div {
  6338. border-width:0px;
  6339. position:absolute;
  6340. left:0px;
  6341. top:0px;
  6342. width:55px;
  6343. height:30px;
  6344. background:inherit;
  6345. background-color:rgba(255, 255, 255, 1);
  6346. box-sizing:border-box;
  6347. border-width:1px;
  6348. border-style:solid;
  6349. border-color:rgba(170, 170, 170, 1);
  6350. border-radius:4px;
  6351. -moz-box-shadow:none;
  6352. -webkit-box-shadow:none;
  6353. box-shadow:none;
  6354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6355. font-weight:400;
  6356. font-style:normal;
  6357. font-size:12px;
  6358. color:#555555;
  6359. }
  6360. #u23925 {
  6361. border-width:0px;
  6362. position:absolute;
  6363. left:492px;
  6364. top:154px;
  6365. width:55px;
  6366. height:30px;
  6367. display:flex;
  6368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6369. font-weight:400;
  6370. font-style:normal;
  6371. font-size:12px;
  6372. color:#555555;
  6373. }
  6374. #u23925 .text {
  6375. position:absolute;
  6376. align-self:center;
  6377. padding:5px 15px 5px 15px;
  6378. box-sizing:border-box;
  6379. width:100%;
  6380. }
  6381. #u23925_text {
  6382. border-width:0px;
  6383. white-space:nowrap;
  6384. text-transform:none;
  6385. }
  6386. #u23926_img {
  6387. border-width:0px;
  6388. position:absolute;
  6389. left:0px;
  6390. top:0px;
  6391. width:50px;
  6392. height:31px;
  6393. }
  6394. #u23926 {
  6395. border-width:0px;
  6396. position:absolute;
  6397. left:1048px;
  6398. top:237px;
  6399. width:50px;
  6400. height:31px;
  6401. display:flex;
  6402. }
  6403. #u23926 .text {
  6404. position:absolute;
  6405. align-self:center;
  6406. padding:2px 2px 2px 2px;
  6407. box-sizing:border-box;
  6408. width:100%;
  6409. }
  6410. #u23926_text {
  6411. border-width:0px;
  6412. word-wrap:break-word;
  6413. text-transform:none;
  6414. visibility:hidden;
  6415. }
  6416. #u23927_img {
  6417. border-width:0px;
  6418. position:absolute;
  6419. left:0px;
  6420. top:0px;
  6421. width:50px;
  6422. height:31px;
  6423. }
  6424. #u23927 {
  6425. border-width:0px;
  6426. position:absolute;
  6427. left:1048px;
  6428. top:273px;
  6429. width:50px;
  6430. height:31px;
  6431. display:flex;
  6432. }
  6433. #u23927 .text {
  6434. position:absolute;
  6435. align-self:center;
  6436. padding:2px 2px 2px 2px;
  6437. box-sizing:border-box;
  6438. width:100%;
  6439. }
  6440. #u23927_text {
  6441. border-width:0px;
  6442. word-wrap:break-word;
  6443. text-transform:none;
  6444. visibility:hidden;
  6445. }
  6446. #u23928_div {
  6447. border-width:0px;
  6448. position:absolute;
  6449. left:0px;
  6450. top:0px;
  6451. width:984px;
  6452. height:244px;
  6453. background:inherit;
  6454. background-color:rgba(255, 255, 255, 1);
  6455. box-sizing:border-box;
  6456. border-width:1px;
  6457. border-style:solid;
  6458. border-color:rgba(217, 0, 27, 1);
  6459. border-radius:0px;
  6460. -moz-box-shadow:none;
  6461. -webkit-box-shadow:none;
  6462. box-shadow:none;
  6463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6464. font-weight:400;
  6465. font-style:normal;
  6466. font-size:18px;
  6467. color:#D9001B;
  6468. line-height:40px;
  6469. }
  6470. #u23928 {
  6471. border-width:0px;
  6472. position:absolute;
  6473. left:1550px;
  6474. top:89px;
  6475. width:984px;
  6476. height:244px;
  6477. display:flex;
  6478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6479. font-weight:400;
  6480. font-style:normal;
  6481. font-size:18px;
  6482. color:#D9001B;
  6483. line-height:40px;
  6484. }
  6485. #u23928 .text {
  6486. position:absolute;
  6487. align-self:flex-start;
  6488. padding:10px 10px 10px 10px;
  6489. box-sizing:border-box;
  6490. width:100%;
  6491. }
  6492. #u23928_text {
  6493. border-width:0px;
  6494. word-wrap:break-word;
  6495. text-transform:none;
  6496. }
  6497. #u23929_div {
  6498. border-width:0px;
  6499. position:absolute;
  6500. left:0px;
  6501. top:0px;
  6502. width:1000px;
  6503. height:40px;
  6504. background:inherit;
  6505. background-color:rgba(217, 0, 27, 1);
  6506. border:none;
  6507. border-radius:0px;
  6508. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  6509. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  6510. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  6511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6512. font-weight:400;
  6513. font-style:normal;
  6514. font-size:14px;
  6515. color:#FFFFFF;
  6516. line-height:20px;
  6517. }
  6518. #u23929 {
  6519. border-width:0px;
  6520. position:absolute;
  6521. left:1550px;
  6522. top:725px;
  6523. width:1000px;
  6524. height:40px;
  6525. display:flex;
  6526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6527. font-weight:400;
  6528. font-style:normal;
  6529. font-size:14px;
  6530. color:#FFFFFF;
  6531. line-height:20px;
  6532. }
  6533. #u23929 .text {
  6534. position:absolute;
  6535. align-self:flex-start;
  6536. padding:10px 10px 10px 10px;
  6537. box-sizing:border-box;
  6538. width:100%;
  6539. }
  6540. #u23929_text {
  6541. border-width:0px;
  6542. word-wrap:break-word;
  6543. text-transform:none;
  6544. }
  6545. #u23930 {
  6546. border-width:0px;
  6547. position:absolute;
  6548. left:1550px;
  6549. top:775px;
  6550. width:960px;
  6551. height:120px;
  6552. }
  6553. #u23931_img {
  6554. border-width:0px;
  6555. position:absolute;
  6556. left:0px;
  6557. top:0px;
  6558. width:160px;
  6559. height:40px;
  6560. }
  6561. #u23931 {
  6562. border-width:0px;
  6563. position:absolute;
  6564. left:0px;
  6565. top:0px;
  6566. width:160px;
  6567. height:40px;
  6568. display:flex;
  6569. font-size:14px;
  6570. color:#FFFFFF;
  6571. text-align:left;
  6572. line-height:30px;
  6573. }
  6574. #u23931 .text {
  6575. position:absolute;
  6576. align-self:center;
  6577. padding:5px 10px 5px 10px;
  6578. box-sizing:border-box;
  6579. width:100%;
  6580. }
  6581. #u23931_text {
  6582. border-width:0px;
  6583. word-wrap:break-word;
  6584. text-transform:none;
  6585. }
  6586. #u23932_img {
  6587. border-width:0px;
  6588. position:absolute;
  6589. left:0px;
  6590. top:0px;
  6591. width:400px;
  6592. height:40px;
  6593. }
  6594. #u23932 {
  6595. border-width:0px;
  6596. position:absolute;
  6597. left:160px;
  6598. top:0px;
  6599. width:400px;
  6600. height:40px;
  6601. display:flex;
  6602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6603. font-weight:400;
  6604. font-style:normal;
  6605. font-size:14px;
  6606. color:#FFFFFF;
  6607. text-align:left;
  6608. line-height:30px;
  6609. }
  6610. #u23932 .text {
  6611. position:absolute;
  6612. align-self:center;
  6613. padding:5px 10px 5px 10px;
  6614. box-sizing:border-box;
  6615. width:100%;
  6616. }
  6617. #u23932_text {
  6618. border-width:0px;
  6619. word-wrap:break-word;
  6620. text-transform:none;
  6621. }
  6622. #u23933_img {
  6623. border-width:0px;
  6624. position:absolute;
  6625. left:0px;
  6626. top:0px;
  6627. width:400px;
  6628. height:40px;
  6629. }
  6630. #u23933 {
  6631. border-width:0px;
  6632. position:absolute;
  6633. left:560px;
  6634. top:0px;
  6635. width:400px;
  6636. height:40px;
  6637. display:flex;
  6638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6639. font-weight:400;
  6640. font-style:normal;
  6641. font-size:14px;
  6642. color:#FFFFFF;
  6643. text-align:left;
  6644. line-height:30px;
  6645. }
  6646. #u23933 .text {
  6647. position:absolute;
  6648. align-self:center;
  6649. padding:5px 10px 5px 10px;
  6650. box-sizing:border-box;
  6651. width:100%;
  6652. }
  6653. #u23933_text {
  6654. border-width:0px;
  6655. word-wrap:break-word;
  6656. text-transform:none;
  6657. }
  6658. #u23934_img {
  6659. border-width:0px;
  6660. position:absolute;
  6661. left:0px;
  6662. top:0px;
  6663. width:160px;
  6664. height:40px;
  6665. }
  6666. #u23934 {
  6667. border-width:0px;
  6668. position:absolute;
  6669. left:0px;
  6670. top:40px;
  6671. width:160px;
  6672. height:40px;
  6673. display:flex;
  6674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6675. font-weight:400;
  6676. font-style:normal;
  6677. font-size:14px;
  6678. text-align:left;
  6679. line-height:30px;
  6680. }
  6681. #u23934 .text {
  6682. position:absolute;
  6683. align-self:center;
  6684. padding:5px 10px 5px 10px;
  6685. box-sizing:border-box;
  6686. width:100%;
  6687. }
  6688. #u23934_text {
  6689. border-width:0px;
  6690. word-wrap:break-word;
  6691. text-transform:none;
  6692. }
  6693. #u23935_img {
  6694. border-width:0px;
  6695. position:absolute;
  6696. left:0px;
  6697. top:0px;
  6698. width:400px;
  6699. height:40px;
  6700. }
  6701. #u23935 {
  6702. border-width:0px;
  6703. position:absolute;
  6704. left:160px;
  6705. top:40px;
  6706. width:400px;
  6707. height:40px;
  6708. display:flex;
  6709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6710. font-weight:400;
  6711. font-style:normal;
  6712. font-size:14px;
  6713. text-align:left;
  6714. line-height:30px;
  6715. }
  6716. #u23935 .text {
  6717. position:absolute;
  6718. align-self:center;
  6719. padding:5px 10px 5px 10px;
  6720. box-sizing:border-box;
  6721. width:100%;
  6722. }
  6723. #u23935_text {
  6724. border-width:0px;
  6725. word-wrap:break-word;
  6726. text-transform:none;
  6727. }
  6728. #u23936_img {
  6729. border-width:0px;
  6730. position:absolute;
  6731. left:0px;
  6732. top:0px;
  6733. width:400px;
  6734. height:40px;
  6735. }
  6736. #u23936 {
  6737. border-width:0px;
  6738. position:absolute;
  6739. left:560px;
  6740. top:40px;
  6741. width:400px;
  6742. height:40px;
  6743. display:flex;
  6744. font-size:14px;
  6745. text-align:left;
  6746. line-height:30px;
  6747. }
  6748. #u23936 .text {
  6749. position:absolute;
  6750. align-self:center;
  6751. padding:5px 10px 5px 10px;
  6752. box-sizing:border-box;
  6753. width:100%;
  6754. }
  6755. #u23936_text {
  6756. border-width:0px;
  6757. word-wrap:break-word;
  6758. text-transform:none;
  6759. visibility:hidden;
  6760. }
  6761. #u23937_img {
  6762. border-width:0px;
  6763. position:absolute;
  6764. left:0px;
  6765. top:0px;
  6766. width:160px;
  6767. height:40px;
  6768. }
  6769. #u23937 {
  6770. border-width:0px;
  6771. position:absolute;
  6772. left:0px;
  6773. top:80px;
  6774. width:160px;
  6775. height:40px;
  6776. display:flex;
  6777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6778. font-weight:400;
  6779. font-style:normal;
  6780. font-size:14px;
  6781. text-align:left;
  6782. line-height:30px;
  6783. }
  6784. #u23937 .text {
  6785. position:absolute;
  6786. align-self:center;
  6787. padding:5px 10px 5px 10px;
  6788. box-sizing:border-box;
  6789. width:100%;
  6790. }
  6791. #u23937_text {
  6792. border-width:0px;
  6793. word-wrap:break-word;
  6794. text-transform:none;
  6795. }
  6796. #u23938_img {
  6797. border-width:0px;
  6798. position:absolute;
  6799. left:0px;
  6800. top:0px;
  6801. width:400px;
  6802. height:40px;
  6803. }
  6804. #u23938 {
  6805. border-width:0px;
  6806. position:absolute;
  6807. left:160px;
  6808. top:80px;
  6809. width:400px;
  6810. height:40px;
  6811. display:flex;
  6812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6813. font-weight:400;
  6814. font-style:normal;
  6815. font-size:14px;
  6816. text-align:left;
  6817. line-height:30px;
  6818. }
  6819. #u23938 .text {
  6820. position:absolute;
  6821. align-self:center;
  6822. padding:5px 10px 5px 10px;
  6823. box-sizing:border-box;
  6824. width:100%;
  6825. }
  6826. #u23938_text {
  6827. border-width:0px;
  6828. word-wrap:break-word;
  6829. text-transform:none;
  6830. }
  6831. #u23939_img {
  6832. border-width:0px;
  6833. position:absolute;
  6834. left:0px;
  6835. top:0px;
  6836. width:400px;
  6837. height:40px;
  6838. }
  6839. #u23939 {
  6840. border-width:0px;
  6841. position:absolute;
  6842. left:560px;
  6843. top:80px;
  6844. width:400px;
  6845. height:40px;
  6846. display:flex;
  6847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6848. font-weight:400;
  6849. font-style:normal;
  6850. font-size:14px;
  6851. text-align:left;
  6852. line-height:30px;
  6853. }
  6854. #u23939 .text {
  6855. position:absolute;
  6856. align-self:center;
  6857. padding:5px 10px 5px 10px;
  6858. box-sizing:border-box;
  6859. width:100%;
  6860. }
  6861. #u23939_text {
  6862. border-width:0px;
  6863. word-wrap:break-word;
  6864. text-transform:none;
  6865. visibility:hidden;
  6866. }
  6867. #u23940_div {
  6868. border-width:0px;
  6869. position:absolute;
  6870. left:0px;
  6871. top:0px;
  6872. width:1000px;
  6873. height:40px;
  6874. background:inherit;
  6875. background-color:rgba(217, 0, 27, 1);
  6876. border:none;
  6877. border-radius:0px;
  6878. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  6879. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  6880. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  6881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6882. font-weight:400;
  6883. font-style:normal;
  6884. font-size:14px;
  6885. color:#FFFFFF;
  6886. line-height:20px;
  6887. }
  6888. #u23940 {
  6889. border-width:0px;
  6890. position:absolute;
  6891. left:1550px;
  6892. top:39px;
  6893. width:1000px;
  6894. height:40px;
  6895. display:flex;
  6896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6897. font-weight:400;
  6898. font-style:normal;
  6899. font-size:14px;
  6900. color:#FFFFFF;
  6901. line-height:20px;
  6902. }
  6903. #u23940 .text {
  6904. position:absolute;
  6905. align-self:flex-start;
  6906. padding:10px 10px 10px 10px;
  6907. box-sizing:border-box;
  6908. width:100%;
  6909. }
  6910. #u23940_text {
  6911. border-width:0px;
  6912. word-wrap:break-word;
  6913. text-transform:none;
  6914. }
  6915. #u23941_div {
  6916. border-width:0px;
  6917. position:absolute;
  6918. left:0px;
  6919. top:0px;
  6920. width:1000px;
  6921. height:40px;
  6922. background:inherit;
  6923. background-color:rgba(217, 0, 27, 1);
  6924. border:none;
  6925. border-radius:0px;
  6926. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  6927. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  6928. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  6929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6930. font-weight:400;
  6931. font-style:normal;
  6932. font-size:14px;
  6933. color:#FFFFFF;
  6934. line-height:20px;
  6935. }
  6936. #u23941 {
  6937. border-width:0px;
  6938. position:absolute;
  6939. left:1550px;
  6940. top:925px;
  6941. width:1000px;
  6942. height:40px;
  6943. display:flex;
  6944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6945. font-weight:400;
  6946. font-style:normal;
  6947. font-size:14px;
  6948. color:#FFFFFF;
  6949. line-height:20px;
  6950. }
  6951. #u23941 .text {
  6952. position:absolute;
  6953. align-self:flex-start;
  6954. padding:10px 10px 10px 10px;
  6955. box-sizing:border-box;
  6956. width:100%;
  6957. }
  6958. #u23941_text {
  6959. border-width:0px;
  6960. word-wrap:break-word;
  6961. text-transform:none;
  6962. }
  6963. #u23942_div {
  6964. border-width:0px;
  6965. position:absolute;
  6966. left:0px;
  6967. top:0px;
  6968. width:1000px;
  6969. height:40px;
  6970. background:inherit;
  6971. background-color:rgba(217, 0, 27, 1);
  6972. border:none;
  6973. border-radius:0px;
  6974. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  6975. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  6976. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  6977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6978. font-weight:400;
  6979. font-style:normal;
  6980. font-size:14px;
  6981. color:#FFFFFF;
  6982. line-height:20px;
  6983. }
  6984. #u23942 {
  6985. border-width:0px;
  6986. position:absolute;
  6987. left:1550px;
  6988. top:373px;
  6989. width:1000px;
  6990. height:40px;
  6991. display:flex;
  6992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6993. font-weight:400;
  6994. font-style:normal;
  6995. font-size:14px;
  6996. color:#FFFFFF;
  6997. line-height:20px;
  6998. }
  6999. #u23942 .text {
  7000. position:absolute;
  7001. align-self:flex-start;
  7002. padding:10px 10px 10px 10px;
  7003. box-sizing:border-box;
  7004. width:100%;
  7005. }
  7006. #u23942_text {
  7007. border-width:0px;
  7008. word-wrap:break-word;
  7009. text-transform:none;
  7010. }
  7011. #u23943 {
  7012. border-width:0px;
  7013. position:absolute;
  7014. left:1550px;
  7015. top:425px;
  7016. width:960px;
  7017. height:260px;
  7018. }
  7019. #u23944_img {
  7020. border-width:0px;
  7021. position:absolute;
  7022. left:0px;
  7023. top:0px;
  7024. width:160px;
  7025. height:40px;
  7026. }
  7027. #u23944 {
  7028. border-width:0px;
  7029. position:absolute;
  7030. left:0px;
  7031. top:0px;
  7032. width:160px;
  7033. height:40px;
  7034. display:flex;
  7035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7036. font-weight:400;
  7037. font-style:normal;
  7038. font-size:14px;
  7039. color:#FFFFFF;
  7040. text-align:left;
  7041. line-height:30px;
  7042. }
  7043. #u23944 .text {
  7044. position:absolute;
  7045. align-self:center;
  7046. padding:5px 10px 5px 10px;
  7047. box-sizing:border-box;
  7048. width:100%;
  7049. }
  7050. #u23944_text {
  7051. border-width:0px;
  7052. word-wrap:break-word;
  7053. text-transform:none;
  7054. }
  7055. #u23945_img {
  7056. border-width:0px;
  7057. position:absolute;
  7058. left:0px;
  7059. top:0px;
  7060. width:400px;
  7061. height:40px;
  7062. }
  7063. #u23945 {
  7064. border-width:0px;
  7065. position:absolute;
  7066. left:160px;
  7067. top:0px;
  7068. width:400px;
  7069. height:40px;
  7070. display:flex;
  7071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7072. font-weight:400;
  7073. font-style:normal;
  7074. font-size:14px;
  7075. color:#FFFFFF;
  7076. text-align:left;
  7077. line-height:30px;
  7078. }
  7079. #u23945 .text {
  7080. position:absolute;
  7081. align-self:center;
  7082. padding:5px 10px 5px 10px;
  7083. box-sizing:border-box;
  7084. width:100%;
  7085. }
  7086. #u23945_text {
  7087. border-width:0px;
  7088. word-wrap:break-word;
  7089. text-transform:none;
  7090. }
  7091. #u23946_img {
  7092. border-width:0px;
  7093. position:absolute;
  7094. left:0px;
  7095. top:0px;
  7096. width:400px;
  7097. height:40px;
  7098. }
  7099. #u23946 {
  7100. border-width:0px;
  7101. position:absolute;
  7102. left:560px;
  7103. top:0px;
  7104. width:400px;
  7105. height:40px;
  7106. display:flex;
  7107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7108. font-weight:400;
  7109. font-style:normal;
  7110. font-size:14px;
  7111. color:#FFFFFF;
  7112. text-align:left;
  7113. line-height:30px;
  7114. }
  7115. #u23946 .text {
  7116. position:absolute;
  7117. align-self:center;
  7118. padding:5px 10px 5px 10px;
  7119. box-sizing:border-box;
  7120. width:100%;
  7121. }
  7122. #u23946_text {
  7123. border-width:0px;
  7124. word-wrap:break-word;
  7125. text-transform:none;
  7126. }
  7127. #u23947_img {
  7128. border-width:0px;
  7129. position:absolute;
  7130. left:0px;
  7131. top:0px;
  7132. width:160px;
  7133. height:40px;
  7134. }
  7135. #u23947 {
  7136. border-width:0px;
  7137. position:absolute;
  7138. left:0px;
  7139. top:40px;
  7140. width:160px;
  7141. height:40px;
  7142. display:flex;
  7143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7144. font-weight:400;
  7145. font-style:normal;
  7146. font-size:14px;
  7147. text-align:left;
  7148. line-height:30px;
  7149. }
  7150. #u23947 .text {
  7151. position:absolute;
  7152. align-self:center;
  7153. padding:5px 10px 5px 10px;
  7154. box-sizing:border-box;
  7155. width:100%;
  7156. }
  7157. #u23947_text {
  7158. border-width:0px;
  7159. word-wrap:break-word;
  7160. text-transform:none;
  7161. }
  7162. #u23948_img {
  7163. border-width:0px;
  7164. position:absolute;
  7165. left:0px;
  7166. top:0px;
  7167. width:400px;
  7168. height:40px;
  7169. }
  7170. #u23948 {
  7171. border-width:0px;
  7172. position:absolute;
  7173. left:160px;
  7174. top:40px;
  7175. width:400px;
  7176. height:40px;
  7177. display:flex;
  7178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7179. font-weight:400;
  7180. font-style:normal;
  7181. font-size:14px;
  7182. text-align:left;
  7183. line-height:30px;
  7184. }
  7185. #u23948 .text {
  7186. position:absolute;
  7187. align-self:center;
  7188. padding:5px 10px 5px 10px;
  7189. box-sizing:border-box;
  7190. width:100%;
  7191. }
  7192. #u23948_text {
  7193. border-width:0px;
  7194. word-wrap:break-word;
  7195. text-transform:none;
  7196. }
  7197. #u23949_img {
  7198. border-width:0px;
  7199. position:absolute;
  7200. left:0px;
  7201. top:0px;
  7202. width:400px;
  7203. height:40px;
  7204. }
  7205. #u23949 {
  7206. border-width:0px;
  7207. position:absolute;
  7208. left:560px;
  7209. top:40px;
  7210. width:400px;
  7211. height:40px;
  7212. display:flex;
  7213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7214. font-weight:400;
  7215. font-style:normal;
  7216. font-size:14px;
  7217. text-align:left;
  7218. line-height:30px;
  7219. }
  7220. #u23949 .text {
  7221. position:absolute;
  7222. align-self:center;
  7223. padding:5px 10px 5px 10px;
  7224. box-sizing:border-box;
  7225. width:100%;
  7226. }
  7227. #u23949_text {
  7228. border-width:0px;
  7229. word-wrap:break-word;
  7230. text-transform:none;
  7231. }
  7232. #u23950_img {
  7233. border-width:0px;
  7234. position:absolute;
  7235. left:0px;
  7236. top:0px;
  7237. width:160px;
  7238. height:100px;
  7239. }
  7240. #u23950 {
  7241. border-width:0px;
  7242. position:absolute;
  7243. left:0px;
  7244. top:80px;
  7245. width:160px;
  7246. height:100px;
  7247. display:flex;
  7248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7249. font-weight:400;
  7250. font-style:normal;
  7251. font-size:14px;
  7252. text-align:left;
  7253. line-height:30px;
  7254. }
  7255. #u23950 .text {
  7256. position:absolute;
  7257. align-self:center;
  7258. padding:5px 10px 5px 10px;
  7259. box-sizing:border-box;
  7260. width:100%;
  7261. }
  7262. #u23950_text {
  7263. border-width:0px;
  7264. word-wrap:break-word;
  7265. text-transform:none;
  7266. }
  7267. #u23951_img {
  7268. border-width:0px;
  7269. position:absolute;
  7270. left:0px;
  7271. top:0px;
  7272. width:400px;
  7273. height:100px;
  7274. }
  7275. #u23951 {
  7276. border-width:0px;
  7277. position:absolute;
  7278. left:160px;
  7279. top:80px;
  7280. width:400px;
  7281. height:100px;
  7282. display:flex;
  7283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7284. font-weight:400;
  7285. font-style:normal;
  7286. font-size:14px;
  7287. text-align:left;
  7288. line-height:30px;
  7289. }
  7290. #u23951 .text {
  7291. position:absolute;
  7292. align-self:center;
  7293. padding:5px 10px 5px 10px;
  7294. box-sizing:border-box;
  7295. width:100%;
  7296. }
  7297. #u23951_text {
  7298. border-width:0px;
  7299. word-wrap:break-word;
  7300. text-transform:none;
  7301. }
  7302. #u23952_img {
  7303. border-width:0px;
  7304. position:absolute;
  7305. left:0px;
  7306. top:0px;
  7307. width:400px;
  7308. height:100px;
  7309. }
  7310. #u23952 {
  7311. border-width:0px;
  7312. position:absolute;
  7313. left:560px;
  7314. top:80px;
  7315. width:400px;
  7316. height:100px;
  7317. display:flex;
  7318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7319. font-weight:400;
  7320. font-style:normal;
  7321. font-size:14px;
  7322. text-align:left;
  7323. line-height:30px;
  7324. }
  7325. #u23952 .text {
  7326. position:absolute;
  7327. align-self:center;
  7328. padding:5px 10px 5px 10px;
  7329. box-sizing:border-box;
  7330. width:100%;
  7331. }
  7332. #u23952_text {
  7333. border-width:0px;
  7334. word-wrap:break-word;
  7335. text-transform:none;
  7336. }
  7337. #u23953_img {
  7338. border-width:0px;
  7339. position:absolute;
  7340. left:0px;
  7341. top:0px;
  7342. width:160px;
  7343. height:40px;
  7344. }
  7345. #u23953 {
  7346. border-width:0px;
  7347. position:absolute;
  7348. left:0px;
  7349. top:180px;
  7350. width:160px;
  7351. height:40px;
  7352. display:flex;
  7353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7354. font-weight:400;
  7355. font-style:normal;
  7356. font-size:14px;
  7357. text-align:left;
  7358. line-height:30px;
  7359. }
  7360. #u23953 .text {
  7361. position:absolute;
  7362. align-self:center;
  7363. padding:5px 10px 5px 10px;
  7364. box-sizing:border-box;
  7365. width:100%;
  7366. }
  7367. #u23953_text {
  7368. border-width:0px;
  7369. word-wrap:break-word;
  7370. text-transform:none;
  7371. }
  7372. #u23954_img {
  7373. border-width:0px;
  7374. position:absolute;
  7375. left:0px;
  7376. top:0px;
  7377. width:400px;
  7378. height:40px;
  7379. }
  7380. #u23954 {
  7381. border-width:0px;
  7382. position:absolute;
  7383. left:160px;
  7384. top:180px;
  7385. width:400px;
  7386. height:40px;
  7387. display:flex;
  7388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7389. font-weight:400;
  7390. font-style:normal;
  7391. font-size:14px;
  7392. text-align:left;
  7393. line-height:30px;
  7394. }
  7395. #u23954 .text {
  7396. position:absolute;
  7397. align-self:center;
  7398. padding:5px 10px 5px 10px;
  7399. box-sizing:border-box;
  7400. width:100%;
  7401. }
  7402. #u23954_text {
  7403. border-width:0px;
  7404. word-wrap:break-word;
  7405. text-transform:none;
  7406. }
  7407. #u23955_img {
  7408. border-width:0px;
  7409. position:absolute;
  7410. left:0px;
  7411. top:0px;
  7412. width:400px;
  7413. height:40px;
  7414. }
  7415. #u23955 {
  7416. border-width:0px;
  7417. position:absolute;
  7418. left:560px;
  7419. top:180px;
  7420. width:400px;
  7421. height:40px;
  7422. display:flex;
  7423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7424. font-weight:400;
  7425. font-style:normal;
  7426. font-size:14px;
  7427. text-align:left;
  7428. line-height:30px;
  7429. }
  7430. #u23955 .text {
  7431. position:absolute;
  7432. align-self:center;
  7433. padding:5px 10px 5px 10px;
  7434. box-sizing:border-box;
  7435. width:100%;
  7436. }
  7437. #u23955_text {
  7438. border-width:0px;
  7439. word-wrap:break-word;
  7440. text-transform:none;
  7441. visibility:hidden;
  7442. }
  7443. #u23956_img {
  7444. border-width:0px;
  7445. position:absolute;
  7446. left:0px;
  7447. top:0px;
  7448. width:160px;
  7449. height:40px;
  7450. }
  7451. #u23956 {
  7452. border-width:0px;
  7453. position:absolute;
  7454. left:0px;
  7455. top:220px;
  7456. width:160px;
  7457. height:40px;
  7458. display:flex;
  7459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7460. font-weight:400;
  7461. font-style:normal;
  7462. font-size:14px;
  7463. text-align:left;
  7464. line-height:30px;
  7465. }
  7466. #u23956 .text {
  7467. position:absolute;
  7468. align-self:center;
  7469. padding:5px 10px 5px 10px;
  7470. box-sizing:border-box;
  7471. width:100%;
  7472. }
  7473. #u23956_text {
  7474. border-width:0px;
  7475. word-wrap:break-word;
  7476. text-transform:none;
  7477. }
  7478. #u23957_img {
  7479. border-width:0px;
  7480. position:absolute;
  7481. left:0px;
  7482. top:0px;
  7483. width:400px;
  7484. height:40px;
  7485. }
  7486. #u23957 {
  7487. border-width:0px;
  7488. position:absolute;
  7489. left:160px;
  7490. top:220px;
  7491. width:400px;
  7492. height:40px;
  7493. display:flex;
  7494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7495. font-weight:400;
  7496. font-style:normal;
  7497. font-size:14px;
  7498. text-align:left;
  7499. line-height:30px;
  7500. }
  7501. #u23957 .text {
  7502. position:absolute;
  7503. align-self:center;
  7504. padding:5px 10px 5px 10px;
  7505. box-sizing:border-box;
  7506. width:100%;
  7507. }
  7508. #u23957_text {
  7509. border-width:0px;
  7510. word-wrap:break-word;
  7511. text-transform:none;
  7512. }
  7513. #u23958_img {
  7514. border-width:0px;
  7515. position:absolute;
  7516. left:0px;
  7517. top:0px;
  7518. width:400px;
  7519. height:40px;
  7520. }
  7521. #u23958 {
  7522. border-width:0px;
  7523. position:absolute;
  7524. left:560px;
  7525. top:220px;
  7526. width:400px;
  7527. height:40px;
  7528. display:flex;
  7529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7530. font-weight:400;
  7531. font-style:normal;
  7532. font-size:14px;
  7533. text-align:left;
  7534. line-height:30px;
  7535. }
  7536. #u23958 .text {
  7537. position:absolute;
  7538. align-self:center;
  7539. padding:5px 10px 5px 10px;
  7540. box-sizing:border-box;
  7541. width:100%;
  7542. }
  7543. #u23958_text {
  7544. border-width:0px;
  7545. word-wrap:break-word;
  7546. text-transform:none;
  7547. }
  7548. #u23959 {
  7549. border-width:0px;
  7550. position:absolute;
  7551. left:1550px;
  7552. top:975px;
  7553. width:960px;
  7554. height:200px;
  7555. }
  7556. #u23960_img {
  7557. border-width:0px;
  7558. position:absolute;
  7559. left:0px;
  7560. top:0px;
  7561. width:160px;
  7562. height:40px;
  7563. }
  7564. #u23960 {
  7565. border-width:0px;
  7566. position:absolute;
  7567. left:0px;
  7568. top:0px;
  7569. width:160px;
  7570. height:40px;
  7571. display:flex;
  7572. font-size:14px;
  7573. color:#FFFFFF;
  7574. text-align:left;
  7575. line-height:30px;
  7576. }
  7577. #u23960 .text {
  7578. position:absolute;
  7579. align-self:center;
  7580. padding:5px 10px 5px 10px;
  7581. box-sizing:border-box;
  7582. width:100%;
  7583. }
  7584. #u23960_text {
  7585. border-width:0px;
  7586. word-wrap:break-word;
  7587. text-transform:none;
  7588. }
  7589. #u23961_img {
  7590. border-width:0px;
  7591. position:absolute;
  7592. left:0px;
  7593. top:0px;
  7594. width:400px;
  7595. height:40px;
  7596. }
  7597. #u23961 {
  7598. border-width:0px;
  7599. position:absolute;
  7600. left:160px;
  7601. top:0px;
  7602. width:400px;
  7603. height:40px;
  7604. display:flex;
  7605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7606. font-weight:400;
  7607. font-style:normal;
  7608. font-size:14px;
  7609. color:#FFFFFF;
  7610. text-align:left;
  7611. line-height:30px;
  7612. }
  7613. #u23961 .text {
  7614. position:absolute;
  7615. align-self:center;
  7616. padding:5px 10px 5px 10px;
  7617. box-sizing:border-box;
  7618. width:100%;
  7619. }
  7620. #u23961_text {
  7621. border-width:0px;
  7622. word-wrap:break-word;
  7623. text-transform:none;
  7624. }
  7625. #u23962_img {
  7626. border-width:0px;
  7627. position:absolute;
  7628. left:0px;
  7629. top:0px;
  7630. width:400px;
  7631. height:40px;
  7632. }
  7633. #u23962 {
  7634. border-width:0px;
  7635. position:absolute;
  7636. left:560px;
  7637. top:0px;
  7638. width:400px;
  7639. height:40px;
  7640. display:flex;
  7641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7642. font-weight:400;
  7643. font-style:normal;
  7644. font-size:14px;
  7645. color:#FFFFFF;
  7646. text-align:left;
  7647. line-height:30px;
  7648. }
  7649. #u23962 .text {
  7650. position:absolute;
  7651. align-self:center;
  7652. padding:5px 10px 5px 10px;
  7653. box-sizing:border-box;
  7654. width:100%;
  7655. }
  7656. #u23962_text {
  7657. border-width:0px;
  7658. word-wrap:break-word;
  7659. text-transform:none;
  7660. }
  7661. #u23963_img {
  7662. border-width:0px;
  7663. position:absolute;
  7664. left:0px;
  7665. top:0px;
  7666. width:160px;
  7667. height:40px;
  7668. }
  7669. #u23963 {
  7670. border-width:0px;
  7671. position:absolute;
  7672. left:0px;
  7673. top:40px;
  7674. width:160px;
  7675. height:40px;
  7676. display:flex;
  7677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7678. font-weight:400;
  7679. font-style:normal;
  7680. font-size:14px;
  7681. text-align:left;
  7682. line-height:30px;
  7683. }
  7684. #u23963 .text {
  7685. position:absolute;
  7686. align-self:center;
  7687. padding:5px 10px 5px 10px;
  7688. box-sizing:border-box;
  7689. width:100%;
  7690. }
  7691. #u23963_text {
  7692. border-width:0px;
  7693. word-wrap:break-word;
  7694. text-transform:none;
  7695. }
  7696. #u23964_img {
  7697. border-width:0px;
  7698. position:absolute;
  7699. left:0px;
  7700. top:0px;
  7701. width:400px;
  7702. height:40px;
  7703. }
  7704. #u23964 {
  7705. border-width:0px;
  7706. position:absolute;
  7707. left:160px;
  7708. top:40px;
  7709. width:400px;
  7710. height:40px;
  7711. display:flex;
  7712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7713. font-weight:400;
  7714. font-style:normal;
  7715. font-size:14px;
  7716. text-align:left;
  7717. line-height:30px;
  7718. }
  7719. #u23964 .text {
  7720. position:absolute;
  7721. align-self:center;
  7722. padding:5px 10px 5px 10px;
  7723. box-sizing:border-box;
  7724. width:100%;
  7725. }
  7726. #u23964_text {
  7727. border-width:0px;
  7728. word-wrap:break-word;
  7729. text-transform:none;
  7730. visibility:hidden;
  7731. }
  7732. #u23965_img {
  7733. border-width:0px;
  7734. position:absolute;
  7735. left:0px;
  7736. top:0px;
  7737. width:400px;
  7738. height:40px;
  7739. }
  7740. #u23965 {
  7741. border-width:0px;
  7742. position:absolute;
  7743. left:560px;
  7744. top:40px;
  7745. width:400px;
  7746. height:40px;
  7747. display:flex;
  7748. font-size:14px;
  7749. text-align:left;
  7750. line-height:30px;
  7751. }
  7752. #u23965 .text {
  7753. position:absolute;
  7754. align-self:center;
  7755. padding:5px 10px 5px 10px;
  7756. box-sizing:border-box;
  7757. width:100%;
  7758. }
  7759. #u23965_text {
  7760. border-width:0px;
  7761. word-wrap:break-word;
  7762. text-transform:none;
  7763. visibility:hidden;
  7764. }
  7765. #u23966_img {
  7766. border-width:0px;
  7767. position:absolute;
  7768. left:0px;
  7769. top:0px;
  7770. width:160px;
  7771. height:40px;
  7772. }
  7773. #u23966 {
  7774. border-width:0px;
  7775. position:absolute;
  7776. left:0px;
  7777. top:80px;
  7778. width:160px;
  7779. height:40px;
  7780. display:flex;
  7781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7782. font-weight:400;
  7783. font-style:normal;
  7784. font-size:14px;
  7785. text-align:left;
  7786. line-height:30px;
  7787. }
  7788. #u23966 .text {
  7789. position:absolute;
  7790. align-self:center;
  7791. padding:5px 10px 5px 10px;
  7792. box-sizing:border-box;
  7793. width:100%;
  7794. }
  7795. #u23966_text {
  7796. border-width:0px;
  7797. word-wrap:break-word;
  7798. text-transform:none;
  7799. }
  7800. #u23967_img {
  7801. border-width:0px;
  7802. position:absolute;
  7803. left:0px;
  7804. top:0px;
  7805. width:400px;
  7806. height:40px;
  7807. }
  7808. #u23967 {
  7809. border-width:0px;
  7810. position:absolute;
  7811. left:160px;
  7812. top:80px;
  7813. width:400px;
  7814. height:40px;
  7815. display:flex;
  7816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7817. font-weight:400;
  7818. font-style:normal;
  7819. font-size:14px;
  7820. text-align:left;
  7821. line-height:30px;
  7822. }
  7823. #u23967 .text {
  7824. position:absolute;
  7825. align-self:center;
  7826. padding:5px 10px 5px 10px;
  7827. box-sizing:border-box;
  7828. width:100%;
  7829. }
  7830. #u23967_text {
  7831. border-width:0px;
  7832. word-wrap:break-word;
  7833. text-transform:none;
  7834. visibility:hidden;
  7835. }
  7836. #u23968_img {
  7837. border-width:0px;
  7838. position:absolute;
  7839. left:0px;
  7840. top:0px;
  7841. width:400px;
  7842. height:40px;
  7843. }
  7844. #u23968 {
  7845. border-width:0px;
  7846. position:absolute;
  7847. left:560px;
  7848. top:80px;
  7849. width:400px;
  7850. height:40px;
  7851. display:flex;
  7852. font-size:14px;
  7853. text-align:left;
  7854. line-height:30px;
  7855. }
  7856. #u23968 .text {
  7857. position:absolute;
  7858. align-self:center;
  7859. padding:5px 10px 5px 10px;
  7860. box-sizing:border-box;
  7861. width:100%;
  7862. }
  7863. #u23968_text {
  7864. border-width:0px;
  7865. word-wrap:break-word;
  7866. text-transform:none;
  7867. visibility:hidden;
  7868. }
  7869. #u23969_img {
  7870. border-width:0px;
  7871. position:absolute;
  7872. left:0px;
  7873. top:0px;
  7874. width:160px;
  7875. height:40px;
  7876. }
  7877. #u23969 {
  7878. border-width:0px;
  7879. position:absolute;
  7880. left:0px;
  7881. top:120px;
  7882. width:160px;
  7883. height:40px;
  7884. display:flex;
  7885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7886. font-weight:400;
  7887. font-style:normal;
  7888. font-size:14px;
  7889. text-align:left;
  7890. line-height:30px;
  7891. }
  7892. #u23969 .text {
  7893. position:absolute;
  7894. align-self:center;
  7895. padding:5px 10px 5px 10px;
  7896. box-sizing:border-box;
  7897. width:100%;
  7898. }
  7899. #u23969_text {
  7900. border-width:0px;
  7901. word-wrap:break-word;
  7902. text-transform:none;
  7903. }
  7904. #u23970_img {
  7905. border-width:0px;
  7906. position:absolute;
  7907. left:0px;
  7908. top:0px;
  7909. width:400px;
  7910. height:40px;
  7911. }
  7912. #u23970 {
  7913. border-width:0px;
  7914. position:absolute;
  7915. left:160px;
  7916. top:120px;
  7917. width:400px;
  7918. height:40px;
  7919. display:flex;
  7920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7921. font-weight:400;
  7922. font-style:normal;
  7923. font-size:14px;
  7924. text-align:left;
  7925. line-height:30px;
  7926. }
  7927. #u23970 .text {
  7928. position:absolute;
  7929. align-self:center;
  7930. padding:5px 10px 5px 10px;
  7931. box-sizing:border-box;
  7932. width:100%;
  7933. }
  7934. #u23970_text {
  7935. border-width:0px;
  7936. word-wrap:break-word;
  7937. text-transform:none;
  7938. visibility:hidden;
  7939. }
  7940. #u23971_img {
  7941. border-width:0px;
  7942. position:absolute;
  7943. left:0px;
  7944. top:0px;
  7945. width:400px;
  7946. height:40px;
  7947. }
  7948. #u23971 {
  7949. border-width:0px;
  7950. position:absolute;
  7951. left:560px;
  7952. top:120px;
  7953. width:400px;
  7954. height:40px;
  7955. display:flex;
  7956. font-size:14px;
  7957. text-align:left;
  7958. line-height:30px;
  7959. }
  7960. #u23971 .text {
  7961. position:absolute;
  7962. align-self:center;
  7963. padding:5px 10px 5px 10px;
  7964. box-sizing:border-box;
  7965. width:100%;
  7966. }
  7967. #u23971_text {
  7968. border-width:0px;
  7969. word-wrap:break-word;
  7970. text-transform:none;
  7971. visibility:hidden;
  7972. }
  7973. #u23972_img {
  7974. border-width:0px;
  7975. position:absolute;
  7976. left:0px;
  7977. top:0px;
  7978. width:160px;
  7979. height:40px;
  7980. }
  7981. #u23972 {
  7982. border-width:0px;
  7983. position:absolute;
  7984. left:0px;
  7985. top:160px;
  7986. width:160px;
  7987. height:40px;
  7988. display:flex;
  7989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7990. font-weight:400;
  7991. font-style:normal;
  7992. font-size:14px;
  7993. text-align:left;
  7994. line-height:30px;
  7995. }
  7996. #u23972 .text {
  7997. position:absolute;
  7998. align-self:center;
  7999. padding:5px 10px 5px 10px;
  8000. box-sizing:border-box;
  8001. width:100%;
  8002. }
  8003. #u23972_text {
  8004. border-width:0px;
  8005. word-wrap:break-word;
  8006. text-transform:none;
  8007. }
  8008. #u23973_img {
  8009. border-width:0px;
  8010. position:absolute;
  8011. left:0px;
  8012. top:0px;
  8013. width:400px;
  8014. height:40px;
  8015. }
  8016. #u23973 {
  8017. border-width:0px;
  8018. position:absolute;
  8019. left:160px;
  8020. top:160px;
  8021. width:400px;
  8022. height:40px;
  8023. display:flex;
  8024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8025. font-weight:400;
  8026. font-style:normal;
  8027. font-size:14px;
  8028. text-align:left;
  8029. line-height:30px;
  8030. }
  8031. #u23973 .text {
  8032. position:absolute;
  8033. align-self:center;
  8034. padding:5px 10px 5px 10px;
  8035. box-sizing:border-box;
  8036. width:100%;
  8037. }
  8038. #u23973_text {
  8039. border-width:0px;
  8040. word-wrap:break-word;
  8041. text-transform:none;
  8042. }
  8043. #u23974_img {
  8044. border-width:0px;
  8045. position:absolute;
  8046. left:0px;
  8047. top:0px;
  8048. width:400px;
  8049. height:40px;
  8050. }
  8051. #u23974 {
  8052. border-width:0px;
  8053. position:absolute;
  8054. left:560px;
  8055. top:160px;
  8056. width:400px;
  8057. height:40px;
  8058. display:flex;
  8059. font-size:14px;
  8060. text-align:left;
  8061. line-height:30px;
  8062. }
  8063. #u23974 .text {
  8064. position:absolute;
  8065. align-self:center;
  8066. padding:5px 10px 5px 10px;
  8067. box-sizing:border-box;
  8068. width:100%;
  8069. }
  8070. #u23974_text {
  8071. border-width:0px;
  8072. word-wrap:break-word;
  8073. text-transform:none;
  8074. visibility:hidden;
  8075. }
  8076. #u23975 {
  8077. border-width:0px;
  8078. position:absolute;
  8079. left:2608px;
  8080. top:518px;
  8081. width:728px;
  8082. height:240px;
  8083. }
  8084. #u23976_img {
  8085. border-width:0px;
  8086. position:absolute;
  8087. left:0px;
  8088. top:0px;
  8089. width:112px;
  8090. height:40px;
  8091. }
  8092. #u23976 {
  8093. border-width:0px;
  8094. position:absolute;
  8095. left:0px;
  8096. top:0px;
  8097. width:112px;
  8098. height:40px;
  8099. display:flex;
  8100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8101. font-weight:400;
  8102. font-style:normal;
  8103. font-size:14px;
  8104. color:#FFFFFF;
  8105. text-align:left;
  8106. line-height:30px;
  8107. }
  8108. #u23976 .text {
  8109. position:absolute;
  8110. align-self:center;
  8111. padding:5px 10px 5px 10px;
  8112. box-sizing:border-box;
  8113. width:100%;
  8114. }
  8115. #u23976_text {
  8116. border-width:0px;
  8117. word-wrap:break-word;
  8118. text-transform:none;
  8119. }
  8120. #u23977_img {
  8121. border-width:0px;
  8122. position:absolute;
  8123. left:0px;
  8124. top:0px;
  8125. width:131px;
  8126. height:40px;
  8127. }
  8128. #u23977 {
  8129. border-width:0px;
  8130. position:absolute;
  8131. left:112px;
  8132. top:0px;
  8133. width:131px;
  8134. height:40px;
  8135. display:flex;
  8136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8137. font-weight:400;
  8138. font-style:normal;
  8139. font-size:14px;
  8140. color:#FFFFFF;
  8141. text-align:left;
  8142. line-height:30px;
  8143. }
  8144. #u23977 .text {
  8145. position:absolute;
  8146. align-self:center;
  8147. padding:5px 10px 5px 10px;
  8148. box-sizing:border-box;
  8149. width:100%;
  8150. }
  8151. #u23977_text {
  8152. border-width:0px;
  8153. word-wrap:break-word;
  8154. text-transform:none;
  8155. }
  8156. #u23978_img {
  8157. border-width:0px;
  8158. position:absolute;
  8159. left:0px;
  8160. top:0px;
  8161. width:99px;
  8162. height:40px;
  8163. }
  8164. #u23978 {
  8165. border-width:0px;
  8166. position:absolute;
  8167. left:243px;
  8168. top:0px;
  8169. width:99px;
  8170. height:40px;
  8171. display:flex;
  8172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8173. font-weight:400;
  8174. font-style:normal;
  8175. font-size:14px;
  8176. color:#FFFFFF;
  8177. text-align:left;
  8178. line-height:30px;
  8179. }
  8180. #u23978 .text {
  8181. position:absolute;
  8182. align-self:center;
  8183. padding:5px 10px 5px 10px;
  8184. box-sizing:border-box;
  8185. width:100%;
  8186. }
  8187. #u23978_text {
  8188. border-width:0px;
  8189. word-wrap:break-word;
  8190. text-transform:none;
  8191. }
  8192. #u23979_img {
  8193. border-width:0px;
  8194. position:absolute;
  8195. left:0px;
  8196. top:0px;
  8197. width:299px;
  8198. height:40px;
  8199. }
  8200. #u23979 {
  8201. border-width:0px;
  8202. position:absolute;
  8203. left:342px;
  8204. top:0px;
  8205. width:299px;
  8206. height:40px;
  8207. display:flex;
  8208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8209. font-weight:400;
  8210. font-style:normal;
  8211. font-size:14px;
  8212. color:#FFFFFF;
  8213. text-align:left;
  8214. line-height:30px;
  8215. }
  8216. #u23979 .text {
  8217. position:absolute;
  8218. align-self:center;
  8219. padding:5px 10px 5px 10px;
  8220. box-sizing:border-box;
  8221. width:100%;
  8222. }
  8223. #u23979_text {
  8224. border-width:0px;
  8225. word-wrap:break-word;
  8226. text-transform:none;
  8227. }
  8228. #u23980_img {
  8229. border-width:0px;
  8230. position:absolute;
  8231. left:0px;
  8232. top:0px;
  8233. width:87px;
  8234. height:40px;
  8235. }
  8236. #u23980 {
  8237. border-width:0px;
  8238. position:absolute;
  8239. left:641px;
  8240. top:0px;
  8241. width:87px;
  8242. height:40px;
  8243. display:flex;
  8244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8245. font-weight:400;
  8246. font-style:normal;
  8247. font-size:14px;
  8248. color:#FFFFFF;
  8249. text-align:left;
  8250. line-height:30px;
  8251. }
  8252. #u23980 .text {
  8253. position:absolute;
  8254. align-self:center;
  8255. padding:5px 10px 5px 10px;
  8256. box-sizing:border-box;
  8257. width:100%;
  8258. }
  8259. #u23980_text {
  8260. border-width:0px;
  8261. word-wrap:break-word;
  8262. text-transform:none;
  8263. }
  8264. #u23981_img {
  8265. border-width:0px;
  8266. position:absolute;
  8267. left:0px;
  8268. top:0px;
  8269. width:112px;
  8270. height:40px;
  8271. }
  8272. #u23981 {
  8273. border-width:0px;
  8274. position:absolute;
  8275. left:0px;
  8276. top:40px;
  8277. width:112px;
  8278. height:40px;
  8279. display:flex;
  8280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8281. font-weight:400;
  8282. font-style:normal;
  8283. font-size:14px;
  8284. text-align:left;
  8285. line-height:30px;
  8286. }
  8287. #u23981 .text {
  8288. position:absolute;
  8289. align-self:center;
  8290. padding:5px 10px 5px 10px;
  8291. box-sizing:border-box;
  8292. width:100%;
  8293. }
  8294. #u23981_text {
  8295. border-width:0px;
  8296. word-wrap:break-word;
  8297. text-transform:none;
  8298. }
  8299. #u23982_img {
  8300. border-width:0px;
  8301. position:absolute;
  8302. left:0px;
  8303. top:0px;
  8304. width:131px;
  8305. height:40px;
  8306. }
  8307. #u23982 {
  8308. border-width:0px;
  8309. position:absolute;
  8310. left:112px;
  8311. top:40px;
  8312. width:131px;
  8313. height:40px;
  8314. display:flex;
  8315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8316. font-weight:400;
  8317. font-style:normal;
  8318. font-size:14px;
  8319. text-align:left;
  8320. line-height:30px;
  8321. }
  8322. #u23982 .text {
  8323. position:absolute;
  8324. align-self:center;
  8325. padding:5px 10px 5px 10px;
  8326. box-sizing:border-box;
  8327. width:100%;
  8328. }
  8329. #u23982_text {
  8330. border-width:0px;
  8331. word-wrap:break-word;
  8332. text-transform:none;
  8333. }
  8334. #u23983_img {
  8335. border-width:0px;
  8336. position:absolute;
  8337. left:0px;
  8338. top:0px;
  8339. width:99px;
  8340. height:40px;
  8341. }
  8342. #u23983 {
  8343. border-width:0px;
  8344. position:absolute;
  8345. left:243px;
  8346. top:40px;
  8347. width:99px;
  8348. height:40px;
  8349. display:flex;
  8350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8351. font-weight:400;
  8352. font-style:normal;
  8353. font-size:14px;
  8354. text-align:left;
  8355. line-height:30px;
  8356. }
  8357. #u23983 .text {
  8358. position:absolute;
  8359. align-self:center;
  8360. padding:5px 10px 5px 10px;
  8361. box-sizing:border-box;
  8362. width:100%;
  8363. }
  8364. #u23983_text {
  8365. border-width:0px;
  8366. word-wrap:break-word;
  8367. text-transform:none;
  8368. }
  8369. #u23984_img {
  8370. border-width:0px;
  8371. position:absolute;
  8372. left:0px;
  8373. top:0px;
  8374. width:299px;
  8375. height:40px;
  8376. }
  8377. #u23984 {
  8378. border-width:0px;
  8379. position:absolute;
  8380. left:342px;
  8381. top:40px;
  8382. width:299px;
  8383. height:40px;
  8384. display:flex;
  8385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8386. font-weight:400;
  8387. font-style:normal;
  8388. font-size:14px;
  8389. text-align:left;
  8390. line-height:30px;
  8391. }
  8392. #u23984 .text {
  8393. position:absolute;
  8394. align-self:center;
  8395. padding:5px 10px 5px 10px;
  8396. box-sizing:border-box;
  8397. width:100%;
  8398. }
  8399. #u23984_text {
  8400. border-width:0px;
  8401. word-wrap:break-word;
  8402. text-transform:none;
  8403. visibility:hidden;
  8404. }
  8405. #u23985_img {
  8406. border-width:0px;
  8407. position:absolute;
  8408. left:0px;
  8409. top:0px;
  8410. width:87px;
  8411. height:40px;
  8412. }
  8413. #u23985 {
  8414. border-width:0px;
  8415. position:absolute;
  8416. left:641px;
  8417. top:40px;
  8418. width:87px;
  8419. height:40px;
  8420. display:flex;
  8421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8422. font-weight:400;
  8423. font-style:normal;
  8424. font-size:14px;
  8425. text-align:left;
  8426. line-height:30px;
  8427. }
  8428. #u23985 .text {
  8429. position:absolute;
  8430. align-self:center;
  8431. padding:5px 10px 5px 10px;
  8432. box-sizing:border-box;
  8433. width:100%;
  8434. }
  8435. #u23985_text {
  8436. border-width:0px;
  8437. word-wrap:break-word;
  8438. text-transform:none;
  8439. }
  8440. #u23986_img {
  8441. border-width:0px;
  8442. position:absolute;
  8443. left:0px;
  8444. top:0px;
  8445. width:112px;
  8446. height:40px;
  8447. }
  8448. #u23986 {
  8449. border-width:0px;
  8450. position:absolute;
  8451. left:0px;
  8452. top:80px;
  8453. width:112px;
  8454. height:40px;
  8455. display:flex;
  8456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8457. font-weight:400;
  8458. font-style:normal;
  8459. font-size:14px;
  8460. text-align:left;
  8461. line-height:30px;
  8462. }
  8463. #u23986 .text {
  8464. position:absolute;
  8465. align-self:center;
  8466. padding:5px 10px 5px 10px;
  8467. box-sizing:border-box;
  8468. width:100%;
  8469. }
  8470. #u23986_text {
  8471. border-width:0px;
  8472. word-wrap:break-word;
  8473. text-transform:none;
  8474. }
  8475. #u23987_img {
  8476. border-width:0px;
  8477. position:absolute;
  8478. left:0px;
  8479. top:0px;
  8480. width:131px;
  8481. height:40px;
  8482. }
  8483. #u23987 {
  8484. border-width:0px;
  8485. position:absolute;
  8486. left:112px;
  8487. top:80px;
  8488. width:131px;
  8489. height:40px;
  8490. display:flex;
  8491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8492. font-weight:400;
  8493. font-style:normal;
  8494. font-size:14px;
  8495. text-align:left;
  8496. line-height:30px;
  8497. }
  8498. #u23987 .text {
  8499. position:absolute;
  8500. align-self:center;
  8501. padding:5px 10px 5px 10px;
  8502. box-sizing:border-box;
  8503. width:100%;
  8504. }
  8505. #u23987_text {
  8506. border-width:0px;
  8507. word-wrap:break-word;
  8508. text-transform:none;
  8509. }
  8510. #u23988_img {
  8511. border-width:0px;
  8512. position:absolute;
  8513. left:0px;
  8514. top:0px;
  8515. width:99px;
  8516. height:40px;
  8517. }
  8518. #u23988 {
  8519. border-width:0px;
  8520. position:absolute;
  8521. left:243px;
  8522. top:80px;
  8523. width:99px;
  8524. height:40px;
  8525. display:flex;
  8526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8527. font-weight:400;
  8528. font-style:normal;
  8529. font-size:14px;
  8530. text-align:left;
  8531. line-height:30px;
  8532. }
  8533. #u23988 .text {
  8534. position:absolute;
  8535. align-self:center;
  8536. padding:5px 10px 5px 10px;
  8537. box-sizing:border-box;
  8538. width:100%;
  8539. }
  8540. #u23988_text {
  8541. border-width:0px;
  8542. word-wrap:break-word;
  8543. text-transform:none;
  8544. }
  8545. #u23989_img {
  8546. border-width:0px;
  8547. position:absolute;
  8548. left:0px;
  8549. top:0px;
  8550. width:299px;
  8551. height:40px;
  8552. }
  8553. #u23989 {
  8554. border-width:0px;
  8555. position:absolute;
  8556. left:342px;
  8557. top:80px;
  8558. width:299px;
  8559. height:40px;
  8560. display:flex;
  8561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8562. font-weight:400;
  8563. font-style:normal;
  8564. font-size:14px;
  8565. text-align:left;
  8566. line-height:30px;
  8567. }
  8568. #u23989 .text {
  8569. position:absolute;
  8570. align-self:center;
  8571. padding:5px 10px 5px 10px;
  8572. box-sizing:border-box;
  8573. width:100%;
  8574. }
  8575. #u23989_text {
  8576. border-width:0px;
  8577. word-wrap:break-word;
  8578. text-transform:none;
  8579. }
  8580. #u23990_img {
  8581. border-width:0px;
  8582. position:absolute;
  8583. left:0px;
  8584. top:0px;
  8585. width:87px;
  8586. height:40px;
  8587. }
  8588. #u23990 {
  8589. border-width:0px;
  8590. position:absolute;
  8591. left:641px;
  8592. top:80px;
  8593. width:87px;
  8594. height:40px;
  8595. display:flex;
  8596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8597. font-weight:400;
  8598. font-style:normal;
  8599. font-size:14px;
  8600. text-align:left;
  8601. line-height:30px;
  8602. }
  8603. #u23990 .text {
  8604. position:absolute;
  8605. align-self:center;
  8606. padding:5px 10px 5px 10px;
  8607. box-sizing:border-box;
  8608. width:100%;
  8609. }
  8610. #u23990_text {
  8611. border-width:0px;
  8612. word-wrap:break-word;
  8613. text-transform:none;
  8614. visibility:hidden;
  8615. }
  8616. #u23991_img {
  8617. border-width:0px;
  8618. position:absolute;
  8619. left:0px;
  8620. top:0px;
  8621. width:112px;
  8622. height:40px;
  8623. }
  8624. #u23991 {
  8625. border-width:0px;
  8626. position:absolute;
  8627. left:0px;
  8628. top:120px;
  8629. width:112px;
  8630. height:40px;
  8631. display:flex;
  8632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8633. font-weight:400;
  8634. font-style:normal;
  8635. font-size:14px;
  8636. text-align:left;
  8637. line-height:30px;
  8638. }
  8639. #u23991 .text {
  8640. position:absolute;
  8641. align-self:center;
  8642. padding:5px 10px 5px 10px;
  8643. box-sizing:border-box;
  8644. width:100%;
  8645. }
  8646. #u23991_text {
  8647. border-width:0px;
  8648. word-wrap:break-word;
  8649. text-transform:none;
  8650. }
  8651. #u23992_img {
  8652. border-width:0px;
  8653. position:absolute;
  8654. left:0px;
  8655. top:0px;
  8656. width:131px;
  8657. height:40px;
  8658. }
  8659. #u23992 {
  8660. border-width:0px;
  8661. position:absolute;
  8662. left:112px;
  8663. top:120px;
  8664. width:131px;
  8665. height:40px;
  8666. display:flex;
  8667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8668. font-weight:400;
  8669. font-style:normal;
  8670. font-size:14px;
  8671. text-align:left;
  8672. line-height:30px;
  8673. }
  8674. #u23992 .text {
  8675. position:absolute;
  8676. align-self:center;
  8677. padding:5px 10px 5px 10px;
  8678. box-sizing:border-box;
  8679. width:100%;
  8680. }
  8681. #u23992_text {
  8682. border-width:0px;
  8683. word-wrap:break-word;
  8684. text-transform:none;
  8685. }
  8686. #u23993_img {
  8687. border-width:0px;
  8688. position:absolute;
  8689. left:0px;
  8690. top:0px;
  8691. width:99px;
  8692. height:40px;
  8693. }
  8694. #u23993 {
  8695. border-width:0px;
  8696. position:absolute;
  8697. left:243px;
  8698. top:120px;
  8699. width:99px;
  8700. height:40px;
  8701. display:flex;
  8702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8703. font-weight:400;
  8704. font-style:normal;
  8705. font-size:14px;
  8706. text-align:left;
  8707. line-height:30px;
  8708. }
  8709. #u23993 .text {
  8710. position:absolute;
  8711. align-self:center;
  8712. padding:5px 10px 5px 10px;
  8713. box-sizing:border-box;
  8714. width:100%;
  8715. }
  8716. #u23993_text {
  8717. border-width:0px;
  8718. word-wrap:break-word;
  8719. text-transform:none;
  8720. }
  8721. #u23994_img {
  8722. border-width:0px;
  8723. position:absolute;
  8724. left:0px;
  8725. top:0px;
  8726. width:299px;
  8727. height:40px;
  8728. }
  8729. #u23994 {
  8730. border-width:0px;
  8731. position:absolute;
  8732. left:342px;
  8733. top:120px;
  8734. width:299px;
  8735. height:40px;
  8736. display:flex;
  8737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8738. font-weight:400;
  8739. font-style:normal;
  8740. font-size:14px;
  8741. text-align:left;
  8742. line-height:30px;
  8743. }
  8744. #u23994 .text {
  8745. position:absolute;
  8746. align-self:center;
  8747. padding:5px 10px 5px 10px;
  8748. box-sizing:border-box;
  8749. width:100%;
  8750. }
  8751. #u23994_text {
  8752. border-width:0px;
  8753. word-wrap:break-word;
  8754. text-transform:none;
  8755. }
  8756. #u23995_img {
  8757. border-width:0px;
  8758. position:absolute;
  8759. left:0px;
  8760. top:0px;
  8761. width:87px;
  8762. height:40px;
  8763. }
  8764. #u23995 {
  8765. border-width:0px;
  8766. position:absolute;
  8767. left:641px;
  8768. top:120px;
  8769. width:87px;
  8770. height:40px;
  8771. display:flex;
  8772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8773. font-weight:400;
  8774. font-style:normal;
  8775. font-size:14px;
  8776. text-align:left;
  8777. line-height:30px;
  8778. }
  8779. #u23995 .text {
  8780. position:absolute;
  8781. align-self:center;
  8782. padding:5px 10px 5px 10px;
  8783. box-sizing:border-box;
  8784. width:100%;
  8785. }
  8786. #u23995_text {
  8787. border-width:0px;
  8788. word-wrap:break-word;
  8789. text-transform:none;
  8790. }
  8791. #u23996_img {
  8792. border-width:0px;
  8793. position:absolute;
  8794. left:0px;
  8795. top:0px;
  8796. width:112px;
  8797. height:40px;
  8798. }
  8799. #u23996 {
  8800. border-width:0px;
  8801. position:absolute;
  8802. left:0px;
  8803. top:160px;
  8804. width:112px;
  8805. height:40px;
  8806. display:flex;
  8807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8808. font-weight:400;
  8809. font-style:normal;
  8810. font-size:14px;
  8811. text-align:left;
  8812. line-height:30px;
  8813. }
  8814. #u23996 .text {
  8815. position:absolute;
  8816. align-self:center;
  8817. padding:5px 10px 5px 10px;
  8818. box-sizing:border-box;
  8819. width:100%;
  8820. }
  8821. #u23996_text {
  8822. border-width:0px;
  8823. word-wrap:break-word;
  8824. text-transform:none;
  8825. }
  8826. #u23997_img {
  8827. border-width:0px;
  8828. position:absolute;
  8829. left:0px;
  8830. top:0px;
  8831. width:131px;
  8832. height:40px;
  8833. }
  8834. #u23997 {
  8835. border-width:0px;
  8836. position:absolute;
  8837. left:112px;
  8838. top:160px;
  8839. width:131px;
  8840. height:40px;
  8841. display:flex;
  8842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8843. font-weight:400;
  8844. font-style:normal;
  8845. font-size:14px;
  8846. text-align:left;
  8847. line-height:30px;
  8848. }
  8849. #u23997 .text {
  8850. position:absolute;
  8851. align-self:center;
  8852. padding:5px 10px 5px 10px;
  8853. box-sizing:border-box;
  8854. width:100%;
  8855. }
  8856. #u23997_text {
  8857. border-width:0px;
  8858. word-wrap:break-word;
  8859. text-transform:none;
  8860. }
  8861. #u23998_img {
  8862. border-width:0px;
  8863. position:absolute;
  8864. left:0px;
  8865. top:0px;
  8866. width:99px;
  8867. height:40px;
  8868. }
  8869. #u23998 {
  8870. border-width:0px;
  8871. position:absolute;
  8872. left:243px;
  8873. top:160px;
  8874. width:99px;
  8875. height:40px;
  8876. display:flex;
  8877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8878. font-weight:400;
  8879. font-style:normal;
  8880. font-size:14px;
  8881. text-align:left;
  8882. line-height:30px;
  8883. }
  8884. #u23998 .text {
  8885. position:absolute;
  8886. align-self:center;
  8887. padding:5px 10px 5px 10px;
  8888. box-sizing:border-box;
  8889. width:100%;
  8890. }
  8891. #u23998_text {
  8892. border-width:0px;
  8893. word-wrap:break-word;
  8894. text-transform:none;
  8895. }
  8896. #u23999_img {
  8897. border-width:0px;
  8898. position:absolute;
  8899. left:0px;
  8900. top:0px;
  8901. width:299px;
  8902. height:40px;
  8903. }
  8904. #u23999 {
  8905. border-width:0px;
  8906. position:absolute;
  8907. left:342px;
  8908. top:160px;
  8909. width:299px;
  8910. height:40px;
  8911. display:flex;
  8912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8913. font-weight:400;
  8914. font-style:normal;
  8915. font-size:14px;
  8916. text-align:left;
  8917. line-height:30px;
  8918. }
  8919. #u23999 .text {
  8920. position:absolute;
  8921. align-self:center;
  8922. padding:5px 10px 5px 10px;
  8923. box-sizing:border-box;
  8924. width:100%;
  8925. }
  8926. #u23999_text {
  8927. border-width:0px;
  8928. word-wrap:break-word;
  8929. text-transform:none;
  8930. }
  8931. #u24000_img {
  8932. border-width:0px;
  8933. position:absolute;
  8934. left:0px;
  8935. top:0px;
  8936. width:87px;
  8937. height:40px;
  8938. }
  8939. #u24000 {
  8940. border-width:0px;
  8941. position:absolute;
  8942. left:641px;
  8943. top:160px;
  8944. width:87px;
  8945. height:40px;
  8946. display:flex;
  8947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8948. font-weight:400;
  8949. font-style:normal;
  8950. font-size:14px;
  8951. text-align:left;
  8952. line-height:30px;
  8953. }
  8954. #u24000 .text {
  8955. position:absolute;
  8956. align-self:center;
  8957. padding:5px 10px 5px 10px;
  8958. box-sizing:border-box;
  8959. width:100%;
  8960. }
  8961. #u24000_text {
  8962. border-width:0px;
  8963. word-wrap:break-word;
  8964. text-transform:none;
  8965. }
  8966. #u24001_img {
  8967. border-width:0px;
  8968. position:absolute;
  8969. left:0px;
  8970. top:0px;
  8971. width:112px;
  8972. height:40px;
  8973. }
  8974. #u24001 {
  8975. border-width:0px;
  8976. position:absolute;
  8977. left:0px;
  8978. top:200px;
  8979. width:112px;
  8980. height:40px;
  8981. display:flex;
  8982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8983. font-weight:400;
  8984. font-style:normal;
  8985. font-size:14px;
  8986. text-align:left;
  8987. line-height:30px;
  8988. }
  8989. #u24001 .text {
  8990. position:absolute;
  8991. align-self:center;
  8992. padding:5px 10px 5px 10px;
  8993. box-sizing:border-box;
  8994. width:100%;
  8995. }
  8996. #u24001_text {
  8997. border-width:0px;
  8998. word-wrap:break-word;
  8999. text-transform:none;
  9000. }
  9001. #u24002_img {
  9002. border-width:0px;
  9003. position:absolute;
  9004. left:0px;
  9005. top:0px;
  9006. width:131px;
  9007. height:40px;
  9008. }
  9009. #u24002 {
  9010. border-width:0px;
  9011. position:absolute;
  9012. left:112px;
  9013. top:200px;
  9014. width:131px;
  9015. height:40px;
  9016. display:flex;
  9017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9018. font-weight:400;
  9019. font-style:normal;
  9020. font-size:14px;
  9021. text-align:left;
  9022. line-height:20px;
  9023. }
  9024. #u24002 .text {
  9025. position:absolute;
  9026. align-self:center;
  9027. padding:5px 10px 5px 10px;
  9028. box-sizing:border-box;
  9029. width:100%;
  9030. }
  9031. #u24002_text {
  9032. border-width:0px;
  9033. word-wrap:break-word;
  9034. text-transform:none;
  9035. }
  9036. #u24003_img {
  9037. border-width:0px;
  9038. position:absolute;
  9039. left:0px;
  9040. top:0px;
  9041. width:99px;
  9042. height:40px;
  9043. }
  9044. #u24003 {
  9045. border-width:0px;
  9046. position:absolute;
  9047. left:243px;
  9048. top:200px;
  9049. width:99px;
  9050. height:40px;
  9051. display:flex;
  9052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9053. font-weight:400;
  9054. font-style:normal;
  9055. font-size:14px;
  9056. text-align:left;
  9057. line-height:20px;
  9058. }
  9059. #u24003 .text {
  9060. position:absolute;
  9061. align-self:center;
  9062. padding:5px 10px 5px 10px;
  9063. box-sizing:border-box;
  9064. width:100%;
  9065. }
  9066. #u24003_text {
  9067. border-width:0px;
  9068. word-wrap:break-word;
  9069. text-transform:none;
  9070. visibility:hidden;
  9071. }
  9072. #u24004_img {
  9073. border-width:0px;
  9074. position:absolute;
  9075. left:0px;
  9076. top:0px;
  9077. width:299px;
  9078. height:40px;
  9079. }
  9080. #u24004 {
  9081. border-width:0px;
  9082. position:absolute;
  9083. left:342px;
  9084. top:200px;
  9085. width:299px;
  9086. height:40px;
  9087. display:flex;
  9088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9089. font-weight:400;
  9090. font-style:normal;
  9091. font-size:14px;
  9092. text-align:left;
  9093. line-height:30px;
  9094. }
  9095. #u24004 .text {
  9096. position:absolute;
  9097. align-self:center;
  9098. padding:5px 10px 5px 10px;
  9099. box-sizing:border-box;
  9100. width:100%;
  9101. }
  9102. #u24004_text {
  9103. border-width:0px;
  9104. word-wrap:break-word;
  9105. text-transform:none;
  9106. visibility:hidden;
  9107. }
  9108. #u24005_img {
  9109. border-width:0px;
  9110. position:absolute;
  9111. left:0px;
  9112. top:0px;
  9113. width:87px;
  9114. height:40px;
  9115. }
  9116. #u24005 {
  9117. border-width:0px;
  9118. position:absolute;
  9119. left:641px;
  9120. top:200px;
  9121. width:87px;
  9122. height:40px;
  9123. display:flex;
  9124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9125. font-weight:400;
  9126. font-style:normal;
  9127. font-size:14px;
  9128. text-align:left;
  9129. line-height:30px;
  9130. }
  9131. #u24005 .text {
  9132. position:absolute;
  9133. align-self:center;
  9134. padding:5px 10px 5px 10px;
  9135. box-sizing:border-box;
  9136. width:100%;
  9137. }
  9138. #u24005_text {
  9139. border-width:0px;
  9140. word-wrap:break-word;
  9141. text-transform:none;
  9142. visibility:hidden;
  9143. }
  9144. #u24006_div {
  9145. border-width:0px;
  9146. position:absolute;
  9147. left:0px;
  9148. top:0px;
  9149. width:729px;
  9150. height:40px;
  9151. background:inherit;
  9152. background-color:rgba(127, 127, 127, 1);
  9153. border:none;
  9154. border-radius:0px;
  9155. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  9156. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  9157. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  9158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9159. font-weight:400;
  9160. font-style:normal;
  9161. font-size:14px;
  9162. color:#FFFFFF;
  9163. line-height:20px;
  9164. }
  9165. #u24006 {
  9166. border-width:0px;
  9167. position:absolute;
  9168. left:2608px;
  9169. top:472px;
  9170. width:729px;
  9171. height:40px;
  9172. display:flex;
  9173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9174. font-weight:400;
  9175. font-style:normal;
  9176. font-size:14px;
  9177. color:#FFFFFF;
  9178. line-height:20px;
  9179. }
  9180. #u24006 .text {
  9181. position:absolute;
  9182. align-self:flex-start;
  9183. padding:10px 10px 10px 10px;
  9184. box-sizing:border-box;
  9185. width:100%;
  9186. }
  9187. #u24006_text {
  9188. border-width:0px;
  9189. word-wrap:break-word;
  9190. text-transform:none;
  9191. }
  9192. #u24007 {
  9193. border-width:0px;
  9194. position:absolute;
  9195. left:0px;
  9196. top:0px;
  9197. width:0px;
  9198. height:0px;
  9199. }
  9200. #u24008_div {
  9201. border-width:0px;
  9202. position:absolute;
  9203. left:0px;
  9204. top:0px;
  9205. width:200px;
  9206. height:1192px;
  9207. background:inherit;
  9208. background-color:rgba(255, 255, 255, 1);
  9209. border:none;
  9210. border-radius:0px;
  9211. -moz-box-shadow:none;
  9212. -webkit-box-shadow:none;
  9213. box-shadow:none;
  9214. }
  9215. #u24008 {
  9216. border-width:0px;
  9217. position:absolute;
  9218. left:120px;
  9219. top:50px;
  9220. width:200px;
  9221. height:1192px;
  9222. display:flex;
  9223. }
  9224. #u24008 .text {
  9225. position:absolute;
  9226. align-self:center;
  9227. padding:2px 2px 2px 2px;
  9228. box-sizing:border-box;
  9229. width:100%;
  9230. }
  9231. #u24008_text {
  9232. border-width:0px;
  9233. word-wrap:break-word;
  9234. text-transform:none;
  9235. visibility:hidden;
  9236. }
  9237. #u24009_div {
  9238. border-width:0px;
  9239. position:absolute;
  9240. left:0px;
  9241. top:0px;
  9242. width:200px;
  9243. height:60px;
  9244. background:inherit;
  9245. background-color:rgba(224, 231, 247, 1);
  9246. border:none;
  9247. border-radius:0px;
  9248. -moz-box-shadow:none;
  9249. -webkit-box-shadow:none;
  9250. box-shadow:none;
  9251. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9252. font-weight:500;
  9253. font-style:normal;
  9254. font-size:18px;
  9255. }
  9256. #u24009 {
  9257. border-width:0px;
  9258. position:absolute;
  9259. left:120px;
  9260. top:50px;
  9261. width:200px;
  9262. height:60px;
  9263. display:flex;
  9264. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9265. font-weight:500;
  9266. font-style:normal;
  9267. font-size:18px;
  9268. }
  9269. #u24009 .text {
  9270. position:absolute;
  9271. align-self:center;
  9272. padding:0px 0px 0px 20px;
  9273. box-sizing:border-box;
  9274. width:100%;
  9275. }
  9276. #u24009_text {
  9277. border-width:0px;
  9278. word-wrap:break-word;
  9279. text-transform:none;
  9280. }
  9281. #u24010_div {
  9282. border-width:0px;
  9283. position:absolute;
  9284. left:0px;
  9285. top:0px;
  9286. width:65px;
  9287. height:22px;
  9288. background:inherit;
  9289. background-color:rgba(255, 255, 255, 0);
  9290. border:none;
  9291. border-radius:0px;
  9292. -moz-box-shadow:none;
  9293. -webkit-box-shadow:none;
  9294. box-shadow:none;
  9295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9296. font-weight:400;
  9297. font-style:normal;
  9298. font-size:16px;
  9299. }
  9300. #u24010 {
  9301. border-width:0px;
  9302. position:absolute;
  9303. left:150px;
  9304. top:166px;
  9305. width:65px;
  9306. height:22px;
  9307. display:flex;
  9308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9309. font-weight:400;
  9310. font-style:normal;
  9311. font-size:16px;
  9312. }
  9313. #u24010 .text {
  9314. position:absolute;
  9315. align-self:flex-start;
  9316. padding:0px 0px 0px 0px;
  9317. box-sizing:border-box;
  9318. width:100%;
  9319. }
  9320. #u24010_text {
  9321. border-width:0px;
  9322. white-space:nowrap;
  9323. text-transform:none;
  9324. }
  9325. #u24011_div {
  9326. border-width:0px;
  9327. position:absolute;
  9328. left:0px;
  9329. top:0px;
  9330. width:25px;
  9331. height:17px;
  9332. background:inherit;
  9333. background-color:rgba(255, 255, 255, 0);
  9334. border:none;
  9335. border-radius:0px;
  9336. -moz-box-shadow:none;
  9337. -webkit-box-shadow:none;
  9338. box-shadow:none;
  9339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9340. font-weight:400;
  9341. font-style:normal;
  9342. font-size:12px;
  9343. color:#AAAAAA;
  9344. }
  9345. #u24011 {
  9346. border-width:0px;
  9347. position:absolute;
  9348. left:150px;
  9349. top:130px;
  9350. width:25px;
  9351. height:17px;
  9352. display:flex;
  9353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9354. font-weight:400;
  9355. font-style:normal;
  9356. font-size:12px;
  9357. color:#AAAAAA;
  9358. }
  9359. #u24011 .text {
  9360. position:absolute;
  9361. align-self:flex-start;
  9362. padding:0px 0px 0px 0px;
  9363. box-sizing:border-box;
  9364. width:100%;
  9365. }
  9366. #u24011_text {
  9367. border-width:0px;
  9368. white-space:nowrap;
  9369. text-transform:none;
  9370. }
  9371. #u24012_div {
  9372. border-width:0px;
  9373. position:absolute;
  9374. left:0px;
  9375. top:0px;
  9376. width:65px;
  9377. height:22px;
  9378. background:inherit;
  9379. background-color:rgba(255, 255, 255, 0);
  9380. border:none;
  9381. border-radius:0px;
  9382. -moz-box-shadow:none;
  9383. -webkit-box-shadow:none;
  9384. box-shadow:none;
  9385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9386. font-weight:400;
  9387. font-style:normal;
  9388. font-size:16px;
  9389. }
  9390. #u24012 {
  9391. border-width:0px;
  9392. position:absolute;
  9393. left:150px;
  9394. top:208px;
  9395. width:65px;
  9396. height:22px;
  9397. display:flex;
  9398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9399. font-weight:400;
  9400. font-style:normal;
  9401. font-size:16px;
  9402. }
  9403. #u24012 .text {
  9404. position:absolute;
  9405. align-self:flex-start;
  9406. padding:0px 0px 0px 0px;
  9407. box-sizing:border-box;
  9408. width:100%;
  9409. }
  9410. #u24012_text {
  9411. border-width:0px;
  9412. white-space:nowrap;
  9413. text-transform:none;
  9414. }
  9415. #u24013_img {
  9416. border-width:0px;
  9417. position:absolute;
  9418. left:0px;
  9419. top:0px;
  9420. width:201px;
  9421. height:2px;
  9422. }
  9423. #u24013 {
  9424. border-width:0px;
  9425. position:absolute;
  9426. left:120px;
  9427. top:250px;
  9428. width:200px;
  9429. height:1px;
  9430. display:flex;
  9431. }
  9432. #u24013 .text {
  9433. position:absolute;
  9434. align-self:center;
  9435. padding:2px 2px 2px 2px;
  9436. box-sizing:border-box;
  9437. width:100%;
  9438. }
  9439. #u24013_text {
  9440. border-width:0px;
  9441. word-wrap:break-word;
  9442. text-transform:none;
  9443. visibility:hidden;
  9444. }
  9445. #u24014_div {
  9446. border-width:0px;
  9447. position:absolute;
  9448. left:0px;
  9449. top:0px;
  9450. width:65px;
  9451. height:22px;
  9452. background:inherit;
  9453. background-color:rgba(255, 255, 255, 0);
  9454. border:none;
  9455. border-radius:0px;
  9456. -moz-box-shadow:none;
  9457. -webkit-box-shadow:none;
  9458. box-shadow:none;
  9459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9460. font-weight:400;
  9461. font-style:normal;
  9462. font-size:16px;
  9463. }
  9464. #u24014 {
  9465. border-width:0px;
  9466. position:absolute;
  9467. left:150px;
  9468. top:306px;
  9469. width:65px;
  9470. height:22px;
  9471. display:flex;
  9472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9473. font-weight:400;
  9474. font-style:normal;
  9475. font-size:16px;
  9476. }
  9477. #u24014 .text {
  9478. position:absolute;
  9479. align-self:flex-start;
  9480. padding:0px 0px 0px 0px;
  9481. box-sizing:border-box;
  9482. width:100%;
  9483. }
  9484. #u24014_text {
  9485. border-width:0px;
  9486. white-space:nowrap;
  9487. text-transform:none;
  9488. }
  9489. #u24015_div {
  9490. border-width:0px;
  9491. position:absolute;
  9492. left:0px;
  9493. top:0px;
  9494. width:25px;
  9495. height:17px;
  9496. background:inherit;
  9497. background-color:rgba(255, 255, 255, 0);
  9498. border:none;
  9499. border-radius:0px;
  9500. -moz-box-shadow:none;
  9501. -webkit-box-shadow:none;
  9502. box-shadow:none;
  9503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9504. font-weight:400;
  9505. font-style:normal;
  9506. font-size:12px;
  9507. color:#AAAAAA;
  9508. }
  9509. #u24015 {
  9510. border-width:0px;
  9511. position:absolute;
  9512. left:150px;
  9513. top:270px;
  9514. width:25px;
  9515. height:17px;
  9516. display:flex;
  9517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9518. font-weight:400;
  9519. font-style:normal;
  9520. font-size:12px;
  9521. color:#AAAAAA;
  9522. }
  9523. #u24015 .text {
  9524. position:absolute;
  9525. align-self:flex-start;
  9526. padding:0px 0px 0px 0px;
  9527. box-sizing:border-box;
  9528. width:100%;
  9529. }
  9530. #u24015_text {
  9531. border-width:0px;
  9532. white-space:nowrap;
  9533. text-transform:none;
  9534. }
  9535. #u24016_div {
  9536. border-width:0px;
  9537. position:absolute;
  9538. left:0px;
  9539. top:0px;
  9540. width:65px;
  9541. height:22px;
  9542. background:inherit;
  9543. background-color:rgba(255, 255, 255, 0);
  9544. border:none;
  9545. border-radius:0px;
  9546. -moz-box-shadow:none;
  9547. -webkit-box-shadow:none;
  9548. box-shadow:none;
  9549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9550. font-weight:400;
  9551. font-style:normal;
  9552. font-size:16px;
  9553. }
  9554. #u24016 {
  9555. border-width:0px;
  9556. position:absolute;
  9557. left:150px;
  9558. top:348px;
  9559. width:65px;
  9560. height:22px;
  9561. display:flex;
  9562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9563. font-weight:400;
  9564. font-style:normal;
  9565. font-size:16px;
  9566. }
  9567. #u24016 .text {
  9568. position:absolute;
  9569. align-self:flex-start;
  9570. padding:0px 0px 0px 0px;
  9571. box-sizing:border-box;
  9572. width:100%;
  9573. }
  9574. #u24016_text {
  9575. border-width:0px;
  9576. white-space:nowrap;
  9577. text-transform:none;
  9578. }