styles.css 199 KB

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