styles.css 170 KB

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