styles.css 197 KB

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