styles.css 201 KB

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