styles.css 124 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-79px;
  6. width:2314px;
  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. #u17645 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u17646_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1000px;
  33. height:1201px;
  34. background:inherit;
  35. background-color:rgba(242, 242, 242, 1);
  36. box-sizing:border-box;
  37. border-width:1px;
  38. border-style:solid;
  39. border-color:rgba(215, 215, 215, 1);
  40. border-radius:0px;
  41. filter:drop-shadow(none);
  42. transition:none;
  43. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  44. font-weight:400;
  45. font-style:normal;
  46. font-size:14px;
  47. color:#AAAAAA;
  48. text-align:center;
  49. line-height:30px;
  50. }
  51. #u17646 {
  52. border-width:0px;
  53. position:absolute;
  54. left:79px;
  55. top:49px;
  56. width:1000px;
  57. height:1201px;
  58. display:flex;
  59. transition:none;
  60. transform-origin:50% 50%;
  61. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  62. font-weight:400;
  63. font-style:normal;
  64. font-size:14px;
  65. color:#AAAAAA;
  66. text-align:center;
  67. line-height:30px;
  68. }
  69. #u17646 .text {
  70. position:absolute;
  71. align-self:center;
  72. padding:5px 10px 5px 10px;
  73. box-sizing:border-box;
  74. width:100%;
  75. }
  76. #u17646_text {
  77. border-width:0px;
  78. word-wrap:break-word;
  79. text-transform:none;
  80. visibility:hidden;
  81. }
  82. #u17647_div {
  83. border-width:0px;
  84. position:absolute;
  85. left:0px;
  86. top:0px;
  87. width:1000px;
  88. height:1201px;
  89. background:inherit;
  90. background-color:rgba(255, 255, 255, 1);
  91. box-sizing:border-box;
  92. border-width:1px;
  93. border-style:solid;
  94. border-color:rgba(215, 215, 215, 1);
  95. border-radius:0px;
  96. filter:drop-shadow(none);
  97. transition:none;
  98. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  99. font-weight:400;
  100. font-style:normal;
  101. font-size:14px;
  102. color:#AAAAAA;
  103. text-align:center;
  104. line-height:30px;
  105. }
  106. #u17647 {
  107. border-width:0px;
  108. position:absolute;
  109. left:79px;
  110. top:49px;
  111. width:1000px;
  112. height:1201px;
  113. display:flex;
  114. transition:none;
  115. transform-origin:50% 50%;
  116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  117. font-weight:400;
  118. font-style:normal;
  119. font-size:14px;
  120. color:#AAAAAA;
  121. text-align:center;
  122. line-height:30px;
  123. }
  124. #u17647 .text {
  125. position:absolute;
  126. align-self:center;
  127. padding:5px 10px 5px 10px;
  128. box-sizing:border-box;
  129. width:100%;
  130. }
  131. #u17647_text {
  132. border-width:0px;
  133. word-wrap:break-word;
  134. text-transform:none;
  135. visibility:hidden;
  136. }
  137. #u17648_div {
  138. border-width:0px;
  139. position:absolute;
  140. left:0px;
  141. top:0px;
  142. width:119px;
  143. height:35px;
  144. background:inherit;
  145. background-color:rgba(255, 255, 255, 0);
  146. border-top:0px;
  147. border-right:0px;
  148. border-bottom:0px;
  149. border-radius:0px;
  150. border-top-left-radius:0px;
  151. border-bottom-left-radius:0px;
  152. filter:drop-shadow(none);
  153. transition:none;
  154. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  155. font-weight:500;
  156. font-style:normal;
  157. font-size:18px;
  158. }
  159. #u17648 {
  160. border-width:0px;
  161. position:absolute;
  162. left:99px;
  163. top:67px;
  164. width:119px;
  165. height:35px;
  166. display:flex;
  167. transition:none;
  168. transform-origin:50% 50%;
  169. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  170. font-weight:500;
  171. font-style:normal;
  172. font-size:18px;
  173. }
  174. #u17648 .text {
  175. position:absolute;
  176. align-self:center;
  177. padding:5px 10px 5px 0px;
  178. box-sizing:border-box;
  179. width:100%;
  180. }
  181. #u17648_text {
  182. border-width:0px;
  183. white-space:nowrap;
  184. text-transform:none;
  185. }
  186. #u17649 {
  187. border-width:0px;
  188. position:absolute;
  189. left:0px;
  190. top:0px;
  191. width:0px;
  192. height:0px;
  193. }
  194. #u17650_div {
  195. border-width:0px;
  196. position:absolute;
  197. left:0px;
  198. top:0px;
  199. width:40px;
  200. height:40px;
  201. background:inherit;
  202. background-color:rgba(255, 255, 255, 0);
  203. border-top:0px;
  204. border-right:0px;
  205. border-bottom:0px;
  206. border-radius:0px;
  207. border-top-left-radius:0px;
  208. border-bottom-left-radius:0px;
  209. filter:drop-shadow(none);
  210. transition:none;
  211. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  212. font-weight:500;
  213. font-style:normal;
  214. font-size:14px;
  215. text-align:center;
  216. }
  217. #u17650 {
  218. border-width:0px;
  219. position:absolute;
  220. left:1039px;
  221. top:49px;
  222. width:40px;
  223. height:40px;
  224. display:flex;
  225. transition:none;
  226. transform-origin:50% 50%;
  227. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  228. font-weight:500;
  229. font-style:normal;
  230. font-size:14px;
  231. text-align:center;
  232. }
  233. #u17650 .text {
  234. position:absolute;
  235. align-self:center;
  236. padding:5px 10px 5px 0px;
  237. box-sizing:border-box;
  238. width:100%;
  239. }
  240. #u17650_text {
  241. border-width:0px;
  242. word-wrap:break-word;
  243. text-transform:none;
  244. }
  245. #u17651 {
  246. border-width:0px;
  247. position:absolute;
  248. left:1027px;
  249. top:65px;
  250. width:13px;
  251. height:13px;
  252. display:flex;
  253. transition:none;
  254. font-size:14px;
  255. }
  256. #u17651 .text {
  257. position:absolute;
  258. align-self:center;
  259. padding:2px 2px 2px 2px;
  260. box-sizing:border-box;
  261. width:100%;
  262. }
  263. #u17651_img {
  264. border-width:0px;
  265. position:absolute;
  266. left:0px;
  267. top:0px;
  268. width:13px;
  269. height:13px;
  270. }
  271. #u17651_text {
  272. border-width:0px;
  273. word-wrap:break-word;
  274. text-transform:none;
  275. visibility:hidden;
  276. }
  277. #u17652_div {
  278. border-width:0px;
  279. position:absolute;
  280. left:0px;
  281. top:0px;
  282. width:213px;
  283. height:43px;
  284. background:inherit;
  285. background-color:rgba(255, 255, 255, 0);
  286. border-top:0px;
  287. border-right:0px;
  288. border-bottom:0px;
  289. border-radius:0px;
  290. border-top-left-radius:0px;
  291. border-bottom-left-radius:0px;
  292. filter:drop-shadow(none);
  293. transition:none;
  294. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  295. font-weight:500;
  296. font-style:normal;
  297. font-size:24px;
  298. }
  299. #u17652 {
  300. border-width:0px;
  301. position:absolute;
  302. left:109px;
  303. top:118px;
  304. width:213px;
  305. height:43px;
  306. display:flex;
  307. transition:none;
  308. transform-origin:50% 50%;
  309. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  310. font-weight:500;
  311. font-style:normal;
  312. font-size:24px;
  313. }
  314. #u17652 .text {
  315. position:absolute;
  316. align-self:center;
  317. padding:5px 10px 5px 0px;
  318. box-sizing:border-box;
  319. width:100%;
  320. }
  321. #u17652_text {
  322. border-width:0px;
  323. white-space:nowrap;
  324. text-transform:none;
  325. }
  326. #u17653 {
  327. border-width:0px;
  328. position:absolute;
  329. left:929px;
  330. top:119px;
  331. width:108px;
  332. height:108px;
  333. display:flex;
  334. -webkit-transform:rotate(315deg);
  335. -moz-transform:rotate(315deg);
  336. -ms-transform:rotate(315deg);
  337. transform:rotate(315deg);
  338. transition:none;
  339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  340. font-weight:400;
  341. font-style:normal;
  342. font-size:28px;
  343. color:#F59A23;
  344. }
  345. #u17653 .text {
  346. position:absolute;
  347. align-self:center;
  348. padding:2px 2px 2px 2px;
  349. box-sizing:border-box;
  350. width:100%;
  351. }
  352. #u17653_img {
  353. border-width:0px;
  354. position:absolute;
  355. left:0px;
  356. top:0px;
  357. width:108px;
  358. height:108px;
  359. }
  360. #u17653_text {
  361. border-width:0px;
  362. word-wrap:break-word;
  363. text-transform:none;
  364. }
  365. #u17654 {
  366. border-width:0px;
  367. position:absolute;
  368. left:0px;
  369. top:0px;
  370. width:0px;
  371. height:0px;
  372. }
  373. #u17655_div {
  374. border-width:0px;
  375. position:absolute;
  376. left:0px;
  377. top:0px;
  378. width:1000px;
  379. height:60px;
  380. background:inherit;
  381. background-color:rgba(255, 255, 255, 1);
  382. box-sizing:border-box;
  383. border-width:1px;
  384. border-style:solid;
  385. border-color:rgba(215, 215, 215, 1);
  386. border-radius:0px;
  387. filter:drop-shadow(none);
  388. transition:none;
  389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  390. font-weight:400;
  391. font-style:normal;
  392. font-size:14px;
  393. color:#AAAAAA;
  394. text-align:center;
  395. line-height:30px;
  396. }
  397. #u17655 {
  398. border-width:0px;
  399. position:absolute;
  400. left:79px;
  401. top:1190px;
  402. width:1000px;
  403. height:60px;
  404. display:flex;
  405. transition:none;
  406. transform-origin:50% 50%;
  407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  408. font-weight:400;
  409. font-style:normal;
  410. font-size:14px;
  411. color:#AAAAAA;
  412. text-align:center;
  413. line-height:30px;
  414. }
  415. #u17655 .text {
  416. position:absolute;
  417. align-self:center;
  418. padding:5px 10px 5px 10px;
  419. box-sizing:border-box;
  420. width:100%;
  421. }
  422. #u17655_text {
  423. border-width:0px;
  424. word-wrap:break-word;
  425. text-transform:none;
  426. visibility:hidden;
  427. }
  428. #u17656_div {
  429. border-width:0px;
  430. position:absolute;
  431. left:0px;
  432. top:0px;
  433. width:80px;
  434. height:30px;
  435. background:inherit;
  436. background-color:rgba(24, 144, 255, 1);
  437. border-radius:4px;
  438. filter:drop-shadow(none);
  439. transition:none;
  440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  441. font-weight:400;
  442. font-style:normal;
  443. font-size:14px;
  444. color:#FFFFFF;
  445. }
  446. #u17656 {
  447. border-width:0px;
  448. position:absolute;
  449. left:973px;
  450. top:1205px;
  451. width:80px;
  452. height:30px;
  453. display:flex;
  454. transition:none;
  455. transform-origin:50% 50%;
  456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  457. font-weight:400;
  458. font-style:normal;
  459. font-size:14px;
  460. color:#FFFFFF;
  461. }
  462. #u17656 .text {
  463. position:absolute;
  464. align-self:center;
  465. padding:2px 2px 2px 2px;
  466. box-sizing:border-box;
  467. width:100%;
  468. }
  469. #u17656_text {
  470. border-width:0px;
  471. word-wrap:break-word;
  472. text-transform:none;
  473. }
  474. #u17657_div {
  475. border-width:0px;
  476. position:absolute;
  477. left:0px;
  478. top:0px;
  479. width:80px;
  480. height:30px;
  481. background:inherit;
  482. background-color:rgba(245, 154, 35, 1);
  483. border-radius:4px;
  484. filter:drop-shadow(none);
  485. transition:none;
  486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  487. font-weight:400;
  488. font-style:normal;
  489. font-size:14px;
  490. color:#FFFFFF;
  491. }
  492. #u17657 {
  493. border-width:0px;
  494. position:absolute;
  495. left:883px;
  496. top:1205px;
  497. width:80px;
  498. height:30px;
  499. display:flex;
  500. transition:none;
  501. transform-origin:50% 50%;
  502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  503. font-weight:400;
  504. font-style:normal;
  505. font-size:14px;
  506. color:#FFFFFF;
  507. }
  508. #u17657 .text {
  509. position:absolute;
  510. align-self:center;
  511. padding:2px 2px 2px 2px;
  512. box-sizing:border-box;
  513. width:100%;
  514. }
  515. #u17657_text {
  516. border-width:0px;
  517. word-wrap:break-word;
  518. text-transform:none;
  519. }
  520. #u17658_div {
  521. border-width:0px;
  522. position:absolute;
  523. left:0px;
  524. top:0px;
  525. width:80px;
  526. height:30px;
  527. background:inherit;
  528. background-color:rgba(255, 255, 255, 1);
  529. box-sizing:border-box;
  530. border-width:1px;
  531. border-style:solid;
  532. border-color:rgba(170, 170, 170, 1);
  533. border-radius:4px;
  534. filter:drop-shadow(none);
  535. transition:none;
  536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  537. font-weight:400;
  538. font-style:normal;
  539. font-size:14px;
  540. }
  541. #u17658 {
  542. border-width:0px;
  543. position:absolute;
  544. left:793px;
  545. top:1205px;
  546. width:80px;
  547. height:30px;
  548. display:flex;
  549. transition:none;
  550. transform-origin:50% 50%;
  551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  552. font-weight:400;
  553. font-style:normal;
  554. font-size:14px;
  555. }
  556. #u17658 .text {
  557. position:absolute;
  558. align-self:center;
  559. padding:2px 2px 2px 2px;
  560. box-sizing:border-box;
  561. width:100%;
  562. }
  563. #u17658_text {
  564. border-width:0px;
  565. word-wrap:break-word;
  566. text-transform:none;
  567. }
  568. #u17659_div {
  569. border-width:0px;
  570. position:absolute;
  571. left:0px;
  572. top:0px;
  573. width:80px;
  574. height:30px;
  575. background:inherit;
  576. background-color:rgba(255, 255, 255, 0);
  577. border-left:0px;
  578. border-top:0px;
  579. border-right:0px;
  580. border-radius:0px;
  581. border-bottom-right-radius:0px;
  582. border-bottom-left-radius:0px;
  583. filter:drop-shadow(none);
  584. transition:none;
  585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  586. font-weight:400;
  587. font-style:normal;
  588. font-size:14px;
  589. color:#7F7F7F;
  590. line-height:30px;
  591. }
  592. #u17659 {
  593. border-width:0px;
  594. position:absolute;
  595. left:109px;
  596. top:181px;
  597. width:80px;
  598. height:30px;
  599. display:flex;
  600. transition:none;
  601. transform-origin:50% 50%;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:14px;
  606. color:#7F7F7F;
  607. line-height:30px;
  608. }
  609. #u17659 .text {
  610. position:absolute;
  611. align-self:flex-start;
  612. padding:0px 0px 0px 0px;
  613. box-sizing:border-box;
  614. width:100%;
  615. }
  616. #u17659_text {
  617. border-width:0px;
  618. word-wrap:break-word;
  619. text-transform:none;
  620. }
  621. #u17660_div {
  622. border-width:0px;
  623. position:absolute;
  624. left:0px;
  625. top:0px;
  626. width:85px;
  627. height:30px;
  628. background:inherit;
  629. background-color:rgba(255, 255, 255, 0);
  630. border-left:0px;
  631. border-top:0px;
  632. border-right:0px;
  633. border-radius:0px;
  634. border-bottom-right-radius:0px;
  635. border-bottom-left-radius:0px;
  636. filter:drop-shadow(none);
  637. transition:none;
  638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  639. font-weight:400;
  640. font-style:normal;
  641. font-size:14px;
  642. line-height:30px;
  643. }
  644. #u17660 {
  645. border-width:0px;
  646. position:absolute;
  647. left:189px;
  648. top:181px;
  649. width:85px;
  650. height:30px;
  651. display:flex;
  652. transition:none;
  653. transform-origin:50% 50%;
  654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  655. font-weight:400;
  656. font-style:normal;
  657. font-size:14px;
  658. line-height:30px;
  659. }
  660. #u17660 .text {
  661. position:absolute;
  662. align-self:flex-start;
  663. padding:0px 0px 0px 0px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u17660_text {
  668. border-width:0px;
  669. white-space:nowrap;
  670. text-transform:none;
  671. }
  672. #u17661_div {
  673. border-width:0px;
  674. position:absolute;
  675. left:0px;
  676. top:0px;
  677. width:80px;
  678. height:30px;
  679. background:inherit;
  680. background-color:rgba(255, 255, 255, 0);
  681. border-left:0px;
  682. border-top:0px;
  683. border-right:0px;
  684. border-radius:0px;
  685. border-bottom-right-radius:0px;
  686. border-bottom-left-radius:0px;
  687. filter:drop-shadow(none);
  688. transition:none;
  689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  690. font-weight:400;
  691. font-style:normal;
  692. font-size:14px;
  693. color:#7F7F7F;
  694. line-height:30px;
  695. }
  696. #u17661 {
  697. border-width:0px;
  698. position:absolute;
  699. left:109px;
  700. top:396px;
  701. width:80px;
  702. height:30px;
  703. display:flex;
  704. transition:none;
  705. transform-origin:50% 50%;
  706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  707. font-weight:400;
  708. font-style:normal;
  709. font-size:14px;
  710. color:#7F7F7F;
  711. line-height:30px;
  712. }
  713. #u17661 .text {
  714. position:absolute;
  715. align-self:flex-start;
  716. padding:0px 0px 0px 0px;
  717. box-sizing:border-box;
  718. width:100%;
  719. }
  720. #u17661_text {
  721. border-width:0px;
  722. word-wrap:break-word;
  723. text-transform:none;
  724. }
  725. #u17662_div {
  726. border-width:0px;
  727. position:absolute;
  728. left:0px;
  729. top:0px;
  730. width:71px;
  731. height:30px;
  732. background:inherit;
  733. background-color:rgba(255, 255, 255, 0);
  734. border-left:0px;
  735. border-top:0px;
  736. border-right:0px;
  737. border-radius:0px;
  738. border-bottom-right-radius:0px;
  739. border-bottom-left-radius:0px;
  740. filter:drop-shadow(none);
  741. transition:none;
  742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  743. font-weight:400;
  744. font-style:normal;
  745. font-size:14px;
  746. line-height:30px;
  747. }
  748. #u17662 {
  749. border-width:0px;
  750. position:absolute;
  751. left:189px;
  752. top:396px;
  753. width:71px;
  754. height:30px;
  755. display:flex;
  756. transition:none;
  757. transform-origin:50% 50%;
  758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  759. font-weight:400;
  760. font-style:normal;
  761. font-size:14px;
  762. line-height:30px;
  763. }
  764. #u17662 .text {
  765. position:absolute;
  766. align-self:flex-start;
  767. padding:0px 0px 0px 0px;
  768. box-sizing:border-box;
  769. width:100%;
  770. }
  771. #u17662_text {
  772. border-width:0px;
  773. white-space:nowrap;
  774. text-transform:none;
  775. }
  776. #u17663_div {
  777. border-width:0px;
  778. position:absolute;
  779. left:0px;
  780. top:0px;
  781. width:40px;
  782. height:17px;
  783. background:inherit;
  784. background-color:rgba(85, 85, 85, 1);
  785. border-radius:20px;
  786. filter:drop-shadow(none);
  787. transition:none;
  788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  789. font-weight:400;
  790. font-style:normal;
  791. font-size:12px;
  792. color:#FFFFFF;
  793. text-align:center;
  794. }
  795. #u17663 {
  796. border-width:0px;
  797. position:absolute;
  798. left:332px;
  799. top:131px;
  800. width:40px;
  801. height:17px;
  802. display:flex;
  803. transition:none;
  804. transform-origin:50% 50%;
  805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  806. font-weight:400;
  807. font-style:normal;
  808. font-size:12px;
  809. color:#FFFFFF;
  810. text-align:center;
  811. }
  812. #u17663 .text {
  813. position:absolute;
  814. align-self:flex-start;
  815. padding:0px 0px 0px 0px;
  816. box-sizing:border-box;
  817. width:100%;
  818. }
  819. #u17663_text {
  820. border-width:0px;
  821. word-wrap:break-word;
  822. text-transform:none;
  823. }
  824. #u17664_div {
  825. border-width:0px;
  826. position:absolute;
  827. left:0px;
  828. top:0px;
  829. width:57px;
  830. height:30px;
  831. background:inherit;
  832. background-color:rgba(255, 255, 255, 0);
  833. border-left:0px;
  834. border-top:0px;
  835. border-right:0px;
  836. border-radius:0px;
  837. border-bottom-right-radius:0px;
  838. border-bottom-left-radius:0px;
  839. filter:drop-shadow(none);
  840. transition:none;
  841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  842. font-weight:400;
  843. font-style:normal;
  844. font-size:14px;
  845. color:#7F7F7F;
  846. line-height:30px;
  847. }
  848. #u17664 {
  849. border-width:0px;
  850. position:absolute;
  851. left:109px;
  852. top:221px;
  853. width:57px;
  854. height:30px;
  855. display:flex;
  856. transition:none;
  857. transform-origin:50% 50%;
  858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  859. font-weight:400;
  860. font-style:normal;
  861. font-size:14px;
  862. color:#7F7F7F;
  863. line-height:30px;
  864. }
  865. #u17664 .text {
  866. position:absolute;
  867. align-self:flex-start;
  868. padding:0px 0px 0px 0px;
  869. box-sizing:border-box;
  870. width:100%;
  871. }
  872. #u17664_text {
  873. border-width:0px;
  874. white-space:nowrap;
  875. text-transform:none;
  876. }
  877. #u17665_div {
  878. border-width:0px;
  879. position:absolute;
  880. left:0px;
  881. top:0px;
  882. width:41px;
  883. height:30px;
  884. background:inherit;
  885. background-color:rgba(255, 255, 255, 0);
  886. border-left:0px;
  887. border-top:0px;
  888. border-right:0px;
  889. border-radius:0px;
  890. border-bottom-right-radius:0px;
  891. border-bottom-left-radius:0px;
  892. filter:drop-shadow(none);
  893. transition:none;
  894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  895. font-weight:400;
  896. font-style:normal;
  897. font-size:14px;
  898. line-height:30px;
  899. }
  900. #u17665 {
  901. border-width:0px;
  902. position:absolute;
  903. left:189px;
  904. top:221px;
  905. width:41px;
  906. height:30px;
  907. display:flex;
  908. transition:none;
  909. transform-origin:50% 50%;
  910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  911. font-weight:400;
  912. font-style:normal;
  913. font-size:14px;
  914. line-height:30px;
  915. }
  916. #u17665 .text {
  917. position:absolute;
  918. align-self:flex-start;
  919. padding:0px 0px 0px 0px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u17665_text {
  924. border-width:0px;
  925. white-space:nowrap;
  926. text-transform:none;
  927. }
  928. #u17666_div {
  929. border-width:0px;
  930. position:absolute;
  931. left:0px;
  932. top:0px;
  933. width:80px;
  934. height:30px;
  935. background:inherit;
  936. background-color:rgba(255, 255, 255, 0);
  937. border-left:0px;
  938. border-top:0px;
  939. border-right:0px;
  940. border-radius:0px;
  941. border-bottom-right-radius:0px;
  942. border-bottom-left-radius:0px;
  943. filter:drop-shadow(none);
  944. transition:none;
  945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  946. font-weight:400;
  947. font-style:normal;
  948. font-size:14px;
  949. color:#7F7F7F;
  950. line-height:30px;
  951. }
  952. #u17666 {
  953. border-width:0px;
  954. position:absolute;
  955. left:548px;
  956. top:181px;
  957. width:80px;
  958. height:30px;
  959. display:flex;
  960. transition:none;
  961. transform-origin:50% 50%;
  962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  963. font-weight:400;
  964. font-style:normal;
  965. font-size:14px;
  966. color:#7F7F7F;
  967. line-height:30px;
  968. }
  969. #u17666 .text {
  970. position:absolute;
  971. align-self:flex-start;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u17666_text {
  977. border-width:0px;
  978. word-wrap:break-word;
  979. text-transform:none;
  980. }
  981. #u17667_div {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:57px;
  987. height:30px;
  988. background:inherit;
  989. background-color:rgba(255, 255, 255, 0);
  990. border-left:0px;
  991. border-top:0px;
  992. border-right:0px;
  993. border-radius:0px;
  994. border-bottom-right-radius:0px;
  995. border-bottom-left-radius:0px;
  996. filter:drop-shadow(none);
  997. transition:none;
  998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  999. font-weight:400;
  1000. font-style:normal;
  1001. font-size:14px;
  1002. line-height:30px;
  1003. }
  1004. #u17667 {
  1005. border-width:0px;
  1006. position:absolute;
  1007. left:628px;
  1008. top:181px;
  1009. width:57px;
  1010. height:30px;
  1011. display:flex;
  1012. transition:none;
  1013. transform-origin:50% 50%;
  1014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1015. font-weight:400;
  1016. font-style:normal;
  1017. font-size:14px;
  1018. line-height:30px;
  1019. }
  1020. #u17667 .text {
  1021. position:absolute;
  1022. align-self:flex-start;
  1023. padding:0px 0px 0px 0px;
  1024. box-sizing:border-box;
  1025. width:100%;
  1026. }
  1027. #u17667_text {
  1028. border-width:0px;
  1029. white-space:nowrap;
  1030. text-transform:none;
  1031. }
  1032. #u17668_div {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:0px;
  1036. top:0px;
  1037. width:71px;
  1038. height:30px;
  1039. background:inherit;
  1040. background-color:rgba(255, 255, 255, 0);
  1041. border-left:0px;
  1042. border-top:0px;
  1043. border-right:0px;
  1044. border-radius:0px;
  1045. border-bottom-right-radius:0px;
  1046. border-bottom-left-radius:0px;
  1047. filter:drop-shadow(none);
  1048. transition:none;
  1049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1050. font-weight:400;
  1051. font-style:normal;
  1052. font-size:14px;
  1053. color:#7F7F7F;
  1054. line-height:30px;
  1055. }
  1056. #u17668 {
  1057. border-width:0px;
  1058. position:absolute;
  1059. left:547px;
  1060. top:276px;
  1061. width:71px;
  1062. height:30px;
  1063. display:flex;
  1064. transition:none;
  1065. transform-origin:50% 50%;
  1066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1067. font-weight:400;
  1068. font-style:normal;
  1069. font-size:14px;
  1070. color:#7F7F7F;
  1071. line-height:30px;
  1072. }
  1073. #u17668 .text {
  1074. position:absolute;
  1075. align-self:flex-start;
  1076. padding:0px 0px 0px 0px;
  1077. box-sizing:border-box;
  1078. width:100%;
  1079. }
  1080. #u17668_text {
  1081. border-width:0px;
  1082. white-space:nowrap;
  1083. text-transform:none;
  1084. }
  1085. #u17669_div {
  1086. border-width:0px;
  1087. position:absolute;
  1088. left:0px;
  1089. top:0px;
  1090. width:29px;
  1091. height:30px;
  1092. background:inherit;
  1093. background-color:rgba(255, 255, 255, 0);
  1094. border-left:0px;
  1095. border-top:0px;
  1096. border-right:0px;
  1097. border-radius:0px;
  1098. border-bottom-right-radius:0px;
  1099. border-bottom-left-radius:0px;
  1100. filter:drop-shadow(none);
  1101. transition:none;
  1102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1103. font-weight:400;
  1104. font-style:normal;
  1105. font-size:14px;
  1106. line-height:30px;
  1107. }
  1108. #u17669 {
  1109. border-width:0px;
  1110. position:absolute;
  1111. left:627px;
  1112. top:276px;
  1113. width:29px;
  1114. height:30px;
  1115. display:flex;
  1116. transition:none;
  1117. transform-origin:50% 50%;
  1118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1119. font-weight:400;
  1120. font-style:normal;
  1121. font-size:14px;
  1122. line-height:30px;
  1123. }
  1124. #u17669 .text {
  1125. position:absolute;
  1126. align-self:flex-start;
  1127. padding:0px 0px 0px 0px;
  1128. box-sizing:border-box;
  1129. width:100%;
  1130. }
  1131. #u17669_text {
  1132. border-width:0px;
  1133. white-space:nowrap;
  1134. text-transform:none;
  1135. }
  1136. #u17670_div {
  1137. border-width:0px;
  1138. position:absolute;
  1139. left:0px;
  1140. top:0px;
  1141. width:43px;
  1142. height:30px;
  1143. background:inherit;
  1144. background-color:rgba(255, 255, 255, 0);
  1145. border-left:0px;
  1146. border-top:0px;
  1147. border-right:0px;
  1148. border-radius:0px;
  1149. border-bottom-right-radius:0px;
  1150. border-bottom-left-radius:0px;
  1151. filter:drop-shadow(none);
  1152. transition:none;
  1153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1154. font-weight:400;
  1155. font-style:normal;
  1156. font-size:14px;
  1157. color:#7F7F7F;
  1158. line-height:30px;
  1159. }
  1160. #u17670 {
  1161. border-width:0px;
  1162. position:absolute;
  1163. left:109px;
  1164. top:316px;
  1165. width:43px;
  1166. height:30px;
  1167. display:flex;
  1168. transition:none;
  1169. transform-origin:50% 50%;
  1170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1171. font-weight:400;
  1172. font-style:normal;
  1173. font-size:14px;
  1174. color:#7F7F7F;
  1175. line-height:30px;
  1176. }
  1177. #u17670 .text {
  1178. position:absolute;
  1179. align-self:flex-start;
  1180. padding:0px 0px 0px 0px;
  1181. box-sizing:border-box;
  1182. width:100%;
  1183. }
  1184. #u17670_text {
  1185. border-width:0px;
  1186. white-space:nowrap;
  1187. text-transform:none;
  1188. }
  1189. #u17671_div {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:0px;
  1193. top:0px;
  1194. width:15px;
  1195. height:30px;
  1196. background:inherit;
  1197. background-color:rgba(255, 255, 255, 0);
  1198. border-left:0px;
  1199. border-top:0px;
  1200. border-right:0px;
  1201. border-radius:0px;
  1202. border-bottom-right-radius:0px;
  1203. border-bottom-left-radius:0px;
  1204. filter:drop-shadow(none);
  1205. transition:none;
  1206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1207. font-weight:400;
  1208. font-style:normal;
  1209. font-size:14px;
  1210. line-height:30px;
  1211. }
  1212. #u17671 {
  1213. border-width:0px;
  1214. position:absolute;
  1215. left:189px;
  1216. top:316px;
  1217. width:15px;
  1218. height:30px;
  1219. display:flex;
  1220. transition:none;
  1221. transform-origin:50% 50%;
  1222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1223. font-weight:400;
  1224. font-style:normal;
  1225. font-size:14px;
  1226. line-height:30px;
  1227. }
  1228. #u17671 .text {
  1229. position:absolute;
  1230. align-self:flex-start;
  1231. padding:0px 0px 0px 0px;
  1232. box-sizing:border-box;
  1233. width:100%;
  1234. }
  1235. #u17671_text {
  1236. border-width:0px;
  1237. white-space:nowrap;
  1238. text-transform:none;
  1239. }
  1240. #u17672_div {
  1241. border-width:0px;
  1242. position:absolute;
  1243. left:0px;
  1244. top:0px;
  1245. width:71px;
  1246. height:30px;
  1247. background:inherit;
  1248. background-color:rgba(255, 255, 255, 0);
  1249. border-left:0px;
  1250. border-top:0px;
  1251. border-right:0px;
  1252. border-radius:0px;
  1253. border-bottom-right-radius:0px;
  1254. border-bottom-left-radius:0px;
  1255. filter:drop-shadow(none);
  1256. transition:none;
  1257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1258. font-weight:400;
  1259. font-style:normal;
  1260. font-size:14px;
  1261. color:#7F7F7F;
  1262. line-height:30px;
  1263. }
  1264. #u17672 {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:109px;
  1268. top:356px;
  1269. width:71px;
  1270. height:30px;
  1271. display:flex;
  1272. transition:none;
  1273. transform-origin:50% 50%;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:14px;
  1278. color:#7F7F7F;
  1279. line-height:30px;
  1280. }
  1281. #u17672 .text {
  1282. position:absolute;
  1283. align-self:flex-start;
  1284. padding:0px 0px 0px 0px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u17672_text {
  1289. border-width:0px;
  1290. white-space:nowrap;
  1291. text-transform:none;
  1292. }
  1293. #u17673_div {
  1294. border-width:0px;
  1295. position:absolute;
  1296. left:0px;
  1297. top:0px;
  1298. width:43px;
  1299. height:30px;
  1300. background:inherit;
  1301. background-color:rgba(255, 255, 255, 0);
  1302. border-left:0px;
  1303. border-top:0px;
  1304. border-right:0px;
  1305. border-radius:0px;
  1306. border-bottom-right-radius:0px;
  1307. border-bottom-left-radius:0px;
  1308. filter:drop-shadow(none);
  1309. transition:none;
  1310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1311. font-weight:400;
  1312. font-style:normal;
  1313. font-size:14px;
  1314. line-height:30px;
  1315. }
  1316. #u17673 {
  1317. border-width:0px;
  1318. position:absolute;
  1319. left:189px;
  1320. top:356px;
  1321. width:43px;
  1322. height:30px;
  1323. display:flex;
  1324. transition:none;
  1325. transform-origin:50% 50%;
  1326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1327. font-weight:400;
  1328. font-style:normal;
  1329. font-size:14px;
  1330. line-height:30px;
  1331. }
  1332. #u17673 .text {
  1333. position:absolute;
  1334. align-self:flex-start;
  1335. padding:0px 0px 0px 0px;
  1336. box-sizing:border-box;
  1337. width:100%;
  1338. }
  1339. #u17673_text {
  1340. border-width:0px;
  1341. white-space:nowrap;
  1342. text-transform:none;
  1343. }
  1344. #u17674_div {
  1345. border-width:0px;
  1346. position:absolute;
  1347. left:0px;
  1348. top:0px;
  1349. width:71px;
  1350. height:30px;
  1351. background:inherit;
  1352. background-color:rgba(255, 255, 255, 0);
  1353. border-left:0px;
  1354. border-top:0px;
  1355. border-right:0px;
  1356. border-radius:0px;
  1357. border-bottom-right-radius:0px;
  1358. border-bottom-left-radius:0px;
  1359. filter:drop-shadow(none);
  1360. transition:none;
  1361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1362. font-weight:400;
  1363. font-style:normal;
  1364. font-size:14px;
  1365. color:#7F7F7F;
  1366. line-height:30px;
  1367. }
  1368. #u17674 {
  1369. border-width:0px;
  1370. position:absolute;
  1371. left:547px;
  1372. top:356px;
  1373. width:71px;
  1374. height:30px;
  1375. display:flex;
  1376. transition:none;
  1377. transform-origin:50% 50%;
  1378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1379. font-weight:400;
  1380. font-style:normal;
  1381. font-size:14px;
  1382. color:#7F7F7F;
  1383. line-height:30px;
  1384. }
  1385. #u17674 .text {
  1386. position:absolute;
  1387. align-self:flex-start;
  1388. padding:0px 0px 0px 0px;
  1389. box-sizing:border-box;
  1390. width:100%;
  1391. }
  1392. #u17674_text {
  1393. border-width:0px;
  1394. white-space:nowrap;
  1395. text-transform:none;
  1396. }
  1397. #u17675_div {
  1398. border-width:0px;
  1399. position:absolute;
  1400. left:0px;
  1401. top:0px;
  1402. width:57px;
  1403. height:30px;
  1404. background:inherit;
  1405. background-color:rgba(255, 255, 255, 0);
  1406. border-left:0px;
  1407. border-top:0px;
  1408. border-right:0px;
  1409. border-radius:0px;
  1410. border-bottom-right-radius:0px;
  1411. border-bottom-left-radius:0px;
  1412. filter:drop-shadow(none);
  1413. transition:none;
  1414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1415. font-weight:400;
  1416. font-style:normal;
  1417. font-size:14px;
  1418. line-height:30px;
  1419. }
  1420. #u17675 {
  1421. border-width:0px;
  1422. position:absolute;
  1423. left:627px;
  1424. top:356px;
  1425. width:57px;
  1426. height:30px;
  1427. display:flex;
  1428. transition:none;
  1429. transform-origin:50% 50%;
  1430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1431. font-weight:400;
  1432. font-style:normal;
  1433. font-size:14px;
  1434. line-height:30px;
  1435. }
  1436. #u17675 .text {
  1437. position:absolute;
  1438. align-self:flex-start;
  1439. padding:0px 0px 0px 0px;
  1440. box-sizing:border-box;
  1441. width:100%;
  1442. }
  1443. #u17675_text {
  1444. border-width:0px;
  1445. white-space:nowrap;
  1446. text-transform:none;
  1447. }
  1448. #u17676_div {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:0px;
  1452. top:0px;
  1453. width:71px;
  1454. height:30px;
  1455. background:inherit;
  1456. background-color:rgba(255, 255, 255, 0);
  1457. border-left:0px;
  1458. border-top:0px;
  1459. border-right:0px;
  1460. border-radius:0px;
  1461. border-bottom-right-radius:0px;
  1462. border-bottom-left-radius:0px;
  1463. filter:drop-shadow(none);
  1464. transition:none;
  1465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1466. font-weight:400;
  1467. font-style:normal;
  1468. font-size:14px;
  1469. color:#7F7F7F;
  1470. line-height:30px;
  1471. }
  1472. #u17676 {
  1473. border-width:0px;
  1474. position:absolute;
  1475. left:547px;
  1476. top:316px;
  1477. width:71px;
  1478. height:30px;
  1479. display:flex;
  1480. transition:none;
  1481. transform-origin:50% 50%;
  1482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1483. font-weight:400;
  1484. font-style:normal;
  1485. font-size:14px;
  1486. color:#7F7F7F;
  1487. line-height:30px;
  1488. }
  1489. #u17676 .text {
  1490. position:absolute;
  1491. align-self:flex-start;
  1492. padding:0px 0px 0px 0px;
  1493. box-sizing:border-box;
  1494. width:100%;
  1495. }
  1496. #u17676_text {
  1497. border-width:0px;
  1498. white-space:nowrap;
  1499. text-transform:none;
  1500. }
  1501. #u17677_div {
  1502. border-width:0px;
  1503. position:absolute;
  1504. left:0px;
  1505. top:0px;
  1506. width:82px;
  1507. height:30px;
  1508. background:inherit;
  1509. background-color:rgba(255, 255, 255, 0);
  1510. border-left:0px;
  1511. border-top:0px;
  1512. border-right:0px;
  1513. border-radius:0px;
  1514. border-bottom-right-radius:0px;
  1515. border-bottom-left-radius:0px;
  1516. filter:drop-shadow(none);
  1517. transition:none;
  1518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1519. font-weight:400;
  1520. font-style:normal;
  1521. font-size:14px;
  1522. line-height:30px;
  1523. }
  1524. #u17677 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:627px;
  1528. top:316px;
  1529. width:82px;
  1530. height:30px;
  1531. display:flex;
  1532. transition:none;
  1533. transform-origin:50% 50%;
  1534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1535. font-weight:400;
  1536. font-style:normal;
  1537. font-size:14px;
  1538. line-height:30px;
  1539. }
  1540. #u17677 .text {
  1541. position:absolute;
  1542. align-self:flex-start;
  1543. padding:0px 0px 0px 0px;
  1544. box-sizing:border-box;
  1545. width:100%;
  1546. }
  1547. #u17677_text {
  1548. border-width:0px;
  1549. white-space:nowrap;
  1550. text-transform:none;
  1551. }
  1552. #u17678_div {
  1553. border-width:0px;
  1554. position:absolute;
  1555. left:0px;
  1556. top:0px;
  1557. width:71px;
  1558. height:30px;
  1559. background:inherit;
  1560. background-color:rgba(255, 255, 255, 0);
  1561. border-left:0px;
  1562. border-top:0px;
  1563. border-right:0px;
  1564. border-radius:0px;
  1565. border-bottom-right-radius:0px;
  1566. border-bottom-left-radius:0px;
  1567. filter:drop-shadow(none);
  1568. transition:none;
  1569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1570. font-weight:400;
  1571. font-style:normal;
  1572. font-size:14px;
  1573. color:#7F7F7F;
  1574. line-height:30px;
  1575. }
  1576. #u17678 {
  1577. border-width:0px;
  1578. position:absolute;
  1579. left:109px;
  1580. top:276px;
  1581. width:71px;
  1582. height:30px;
  1583. display:flex;
  1584. transition:none;
  1585. transform-origin:50% 50%;
  1586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1587. font-weight:400;
  1588. font-style:normal;
  1589. font-size:14px;
  1590. color:#7F7F7F;
  1591. line-height:30px;
  1592. }
  1593. #u17678 .text {
  1594. position:absolute;
  1595. align-self:flex-start;
  1596. padding:0px 0px 0px 0px;
  1597. box-sizing:border-box;
  1598. width:100%;
  1599. }
  1600. #u17678_text {
  1601. border-width:0px;
  1602. white-space:nowrap;
  1603. text-transform:none;
  1604. }
  1605. #u17679_div {
  1606. border-width:0px;
  1607. position:absolute;
  1608. left:0px;
  1609. top:0px;
  1610. width:57px;
  1611. height:30px;
  1612. background:inherit;
  1613. background-color:rgba(255, 255, 255, 0);
  1614. border-left:0px;
  1615. border-top:0px;
  1616. border-right:0px;
  1617. border-radius:0px;
  1618. border-bottom-right-radius:0px;
  1619. border-bottom-left-radius:0px;
  1620. filter:drop-shadow(none);
  1621. transition:none;
  1622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1623. font-weight:400;
  1624. font-style:normal;
  1625. font-size:14px;
  1626. line-height:30px;
  1627. }
  1628. #u17679 {
  1629. border-width:0px;
  1630. position:absolute;
  1631. left:189px;
  1632. top:276px;
  1633. width:57px;
  1634. height:30px;
  1635. display:flex;
  1636. transition:none;
  1637. transform-origin:50% 50%;
  1638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1639. font-weight:400;
  1640. font-style:normal;
  1641. font-size:14px;
  1642. line-height:30px;
  1643. }
  1644. #u17679 .text {
  1645. position:absolute;
  1646. align-self:flex-start;
  1647. padding:0px 0px 0px 0px;
  1648. box-sizing:border-box;
  1649. width:100%;
  1650. }
  1651. #u17679_text {
  1652. border-width:0px;
  1653. white-space:nowrap;
  1654. text-transform:none;
  1655. }
  1656. #u17680_div {
  1657. border-width:0px;
  1658. position:absolute;
  1659. left:0px;
  1660. top:0px;
  1661. width:85px;
  1662. height:30px;
  1663. background:inherit;
  1664. background-color:rgba(255, 255, 255, 0);
  1665. border-left:0px;
  1666. border-top:0px;
  1667. border-right:0px;
  1668. border-radius:0px;
  1669. border-bottom-right-radius:0px;
  1670. border-bottom-left-radius:0px;
  1671. filter:drop-shadow(none);
  1672. transition:none;
  1673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1674. font-weight:400;
  1675. font-style:normal;
  1676. font-size:14px;
  1677. color:#7F7F7F;
  1678. line-height:30px;
  1679. }
  1680. #u17680 {
  1681. border-width:0px;
  1682. position:absolute;
  1683. left:548px;
  1684. top:221px;
  1685. width:85px;
  1686. height:30px;
  1687. display:flex;
  1688. transition:none;
  1689. transform-origin:50% 50%;
  1690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1691. font-weight:400;
  1692. font-style:normal;
  1693. font-size:14px;
  1694. color:#7F7F7F;
  1695. line-height:30px;
  1696. }
  1697. #u17680 .text {
  1698. position:absolute;
  1699. align-self:flex-start;
  1700. padding:0px 0px 0px 0px;
  1701. box-sizing:border-box;
  1702. width:100%;
  1703. }
  1704. #u17680_text {
  1705. border-width:0px;
  1706. white-space:nowrap;
  1707. text-transform:none;
  1708. }
  1709. #u17681_div {
  1710. border-width:0px;
  1711. position:absolute;
  1712. left:0px;
  1713. top:0px;
  1714. width:197px;
  1715. height:30px;
  1716. background:inherit;
  1717. background-color:rgba(255, 255, 255, 0);
  1718. border-left:0px;
  1719. border-top:0px;
  1720. border-right:0px;
  1721. border-radius:0px;
  1722. border-bottom-right-radius:0px;
  1723. border-bottom-left-radius:0px;
  1724. filter:drop-shadow(none);
  1725. transition:none;
  1726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1727. font-weight:400;
  1728. font-style:normal;
  1729. font-size:14px;
  1730. line-height:30px;
  1731. }
  1732. #u17681 {
  1733. border-width:0px;
  1734. position:absolute;
  1735. left:628px;
  1736. top:221px;
  1737. width:197px;
  1738. height:30px;
  1739. display:flex;
  1740. transition:none;
  1741. transform-origin:50% 50%;
  1742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1743. font-weight:400;
  1744. font-style:normal;
  1745. font-size:14px;
  1746. line-height:30px;
  1747. }
  1748. #u17681 .text {
  1749. position:absolute;
  1750. align-self:flex-start;
  1751. padding:0px 0px 0px 0px;
  1752. box-sizing:border-box;
  1753. width:100%;
  1754. }
  1755. #u17681_text {
  1756. border-width:0px;
  1757. white-space:nowrap;
  1758. text-transform:none;
  1759. }
  1760. #u17682_div {
  1761. border-width:0px;
  1762. position:absolute;
  1763. left:0px;
  1764. top:0px;
  1765. width:71px;
  1766. height:30px;
  1767. background:inherit;
  1768. background-color:rgba(255, 255, 255, 0);
  1769. border-left:0px;
  1770. border-top:0px;
  1771. border-right:0px;
  1772. border-radius:0px;
  1773. border-bottom-right-radius:0px;
  1774. border-bottom-left-radius:0px;
  1775. filter:drop-shadow(none);
  1776. transition:none;
  1777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1778. font-weight:400;
  1779. font-style:normal;
  1780. font-size:14px;
  1781. color:#7F7F7F;
  1782. line-height:30px;
  1783. }
  1784. #u17682 {
  1785. border-width:0px;
  1786. position:absolute;
  1787. left:109px;
  1788. top:436px;
  1789. width:71px;
  1790. height:30px;
  1791. display:flex;
  1792. transition:none;
  1793. transform-origin:50% 50%;
  1794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1795. font-weight:400;
  1796. font-style:normal;
  1797. font-size:14px;
  1798. color:#7F7F7F;
  1799. line-height:30px;
  1800. }
  1801. #u17682 .text {
  1802. position:absolute;
  1803. align-self:flex-start;
  1804. padding:0px 0px 0px 0px;
  1805. box-sizing:border-box;
  1806. width:100%;
  1807. }
  1808. #u17682_text {
  1809. border-width:0px;
  1810. white-space:nowrap;
  1811. text-transform:none;
  1812. }
  1813. #u17683_div {
  1814. border-width:0px;
  1815. position:absolute;
  1816. left:0px;
  1817. top:0px;
  1818. width:337px;
  1819. height:30px;
  1820. background:inherit;
  1821. background-color:rgba(255, 255, 255, 0);
  1822. border-left:0px;
  1823. border-top:0px;
  1824. border-right:0px;
  1825. border-radius:0px;
  1826. border-bottom-right-radius:0px;
  1827. border-bottom-left-radius:0px;
  1828. filter:drop-shadow(none);
  1829. transition:none;
  1830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1831. font-weight:400;
  1832. font-style:normal;
  1833. font-size:14px;
  1834. line-height:30px;
  1835. }
  1836. #u17683 {
  1837. border-width:0px;
  1838. position:absolute;
  1839. left:189px;
  1840. top:436px;
  1841. width:337px;
  1842. height:30px;
  1843. display:flex;
  1844. transition:none;
  1845. transform-origin:50% 50%;
  1846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1847. font-weight:400;
  1848. font-style:normal;
  1849. font-size:14px;
  1850. line-height:30px;
  1851. }
  1852. #u17683 .text {
  1853. position:absolute;
  1854. align-self:flex-start;
  1855. padding:0px 0px 0px 0px;
  1856. box-sizing:border-box;
  1857. width:100%;
  1858. }
  1859. #u17683_text {
  1860. border-width:0px;
  1861. white-space:nowrap;
  1862. text-transform:none;
  1863. }
  1864. #u17684_div {
  1865. border-width:0px;
  1866. position:absolute;
  1867. left:0px;
  1868. top:0px;
  1869. width:99px;
  1870. height:30px;
  1871. background:inherit;
  1872. background-color:rgba(255, 255, 255, 0);
  1873. border-left:0px;
  1874. border-top:0px;
  1875. border-right:0px;
  1876. border-radius:0px;
  1877. border-bottom-right-radius:0px;
  1878. border-bottom-left-radius:0px;
  1879. filter:drop-shadow(none);
  1880. transition:none;
  1881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1882. font-weight:400;
  1883. font-style:normal;
  1884. font-size:14px;
  1885. color:#7F7F7F;
  1886. line-height:30px;
  1887. }
  1888. #u17684 {
  1889. border-width:0px;
  1890. position:absolute;
  1891. left:547px;
  1892. top:396px;
  1893. width:99px;
  1894. height:30px;
  1895. display:flex;
  1896. transition:none;
  1897. transform-origin:50% 50%;
  1898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1899. font-weight:400;
  1900. font-style:normal;
  1901. font-size:14px;
  1902. color:#7F7F7F;
  1903. line-height:30px;
  1904. }
  1905. #u17684 .text {
  1906. position:absolute;
  1907. align-self:flex-start;
  1908. padding:0px 0px 0px 0px;
  1909. box-sizing:border-box;
  1910. width:100%;
  1911. }
  1912. #u17684_text {
  1913. border-width:0px;
  1914. white-space:nowrap;
  1915. text-transform:none;
  1916. }
  1917. #u17685_div {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:0px;
  1921. top:0px;
  1922. width:169px;
  1923. height:30px;
  1924. background:inherit;
  1925. background-color:rgba(255, 255, 255, 0);
  1926. border-left:0px;
  1927. border-top:0px;
  1928. border-right:0px;
  1929. border-radius:0px;
  1930. border-bottom-right-radius:0px;
  1931. border-bottom-left-radius:0px;
  1932. filter:drop-shadow(none);
  1933. transition:none;
  1934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1935. font-weight:400;
  1936. font-style:normal;
  1937. font-size:14px;
  1938. line-height:30px;
  1939. }
  1940. #u17685 {
  1941. border-width:0px;
  1942. position:absolute;
  1943. left:646px;
  1944. top:396px;
  1945. width:169px;
  1946. height:30px;
  1947. display:flex;
  1948. transition:none;
  1949. transform-origin:50% 50%;
  1950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1951. font-weight:400;
  1952. font-style:normal;
  1953. font-size:14px;
  1954. line-height:30px;
  1955. }
  1956. #u17685 .text {
  1957. position:absolute;
  1958. align-self:flex-start;
  1959. padding:0px 0px 0px 0px;
  1960. box-sizing:border-box;
  1961. width:100%;
  1962. }
  1963. #u17685_text {
  1964. border-width:0px;
  1965. white-space:nowrap;
  1966. text-transform:none;
  1967. }
  1968. #u17686_div {
  1969. border-width:0px;
  1970. position:absolute;
  1971. left:0px;
  1972. top:0px;
  1973. width:85px;
  1974. height:30px;
  1975. background:inherit;
  1976. background-color:rgba(255, 255, 255, 0);
  1977. border-left:0px;
  1978. border-top:0px;
  1979. border-right:0px;
  1980. border-radius:0px;
  1981. border-bottom-right-radius:0px;
  1982. border-bottom-left-radius:0px;
  1983. filter:drop-shadow(none);
  1984. transition:none;
  1985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1986. font-weight:400;
  1987. font-style:normal;
  1988. font-size:14px;
  1989. color:#7F7F7F;
  1990. line-height:30px;
  1991. }
  1992. #u17686 {
  1993. border-width:0px;
  1994. position:absolute;
  1995. left:547px;
  1996. top:486px;
  1997. width:85px;
  1998. height:30px;
  1999. display:flex;
  2000. transition:none;
  2001. transform-origin:50% 50%;
  2002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2003. font-weight:400;
  2004. font-style:normal;
  2005. font-size:14px;
  2006. color:#7F7F7F;
  2007. line-height:30px;
  2008. }
  2009. #u17686 .text {
  2010. position:absolute;
  2011. align-self:flex-start;
  2012. padding:0px 0px 0px 0px;
  2013. box-sizing:border-box;
  2014. width:100%;
  2015. }
  2016. #u17686_text {
  2017. border-width:0px;
  2018. white-space:nowrap;
  2019. text-transform:none;
  2020. }
  2021. #u17687 {
  2022. border-width:0px;
  2023. position:absolute;
  2024. left:547px;
  2025. top:516px;
  2026. width:153px;
  2027. height:107px;
  2028. display:flex;
  2029. transition:none;
  2030. }
  2031. #u17687 .text {
  2032. position:absolute;
  2033. align-self:center;
  2034. padding:2px 2px 2px 2px;
  2035. box-sizing:border-box;
  2036. width:100%;
  2037. }
  2038. #u17687_img {
  2039. border-width:0px;
  2040. position:absolute;
  2041. left:0px;
  2042. top:0px;
  2043. width:153px;
  2044. height:107px;
  2045. }
  2046. #u17687_text {
  2047. border-width:0px;
  2048. word-wrap:break-word;
  2049. text-transform:none;
  2050. visibility:hidden;
  2051. }
  2052. #u17688 {
  2053. border-width:0px;
  2054. position:absolute;
  2055. left:710px;
  2056. top:516px;
  2057. width:153px;
  2058. height:107px;
  2059. display:flex;
  2060. transition:none;
  2061. }
  2062. #u17688 .text {
  2063. position:absolute;
  2064. align-self:center;
  2065. padding:2px 2px 2px 2px;
  2066. box-sizing:border-box;
  2067. width:100%;
  2068. }
  2069. #u17688_img {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:0px;
  2073. top:0px;
  2074. width:153px;
  2075. height:107px;
  2076. }
  2077. #u17688_text {
  2078. border-width:0px;
  2079. word-wrap:break-word;
  2080. text-transform:none;
  2081. visibility:hidden;
  2082. }
  2083. #u17689_div {
  2084. border-width:0px;
  2085. position:absolute;
  2086. left:0px;
  2087. top:0px;
  2088. width:71px;
  2089. height:30px;
  2090. background:inherit;
  2091. background-color:rgba(255, 255, 255, 0);
  2092. border-left:0px;
  2093. border-top:0px;
  2094. border-right:0px;
  2095. border-radius:0px;
  2096. border-bottom-right-radius:0px;
  2097. border-bottom-left-radius:0px;
  2098. filter:drop-shadow(none);
  2099. transition:none;
  2100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2101. font-weight:400;
  2102. font-style:normal;
  2103. font-size:14px;
  2104. color:#7F7F7F;
  2105. line-height:30px;
  2106. }
  2107. #u17689 {
  2108. border-width:0px;
  2109. position:absolute;
  2110. left:109px;
  2111. top:643px;
  2112. width:71px;
  2113. height:30px;
  2114. display:flex;
  2115. transition:none;
  2116. transform-origin:50% 50%;
  2117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2118. font-weight:400;
  2119. font-style:normal;
  2120. font-size:14px;
  2121. color:#7F7F7F;
  2122. line-height:30px;
  2123. }
  2124. #u17689 .text {
  2125. position:absolute;
  2126. align-self:flex-start;
  2127. padding:0px 0px 0px 0px;
  2128. box-sizing:border-box;
  2129. width:100%;
  2130. }
  2131. #u17689_text {
  2132. border-width:0px;
  2133. white-space:nowrap;
  2134. text-transform:none;
  2135. }
  2136. #u17690 {
  2137. border-width:0px;
  2138. position:absolute;
  2139. left:109px;
  2140. top:673px;
  2141. width:146px;
  2142. height:102px;
  2143. display:flex;
  2144. transition:none;
  2145. }
  2146. #u17690 .text {
  2147. position:absolute;
  2148. align-self:center;
  2149. padding:2px 2px 2px 2px;
  2150. box-sizing:border-box;
  2151. width:100%;
  2152. }
  2153. #u17690_img {
  2154. border-width:0px;
  2155. position:absolute;
  2156. left:0px;
  2157. top:0px;
  2158. width:146px;
  2159. height:102px;
  2160. }
  2161. #u17690_text {
  2162. border-width:0px;
  2163. word-wrap:break-word;
  2164. text-transform:none;
  2165. visibility:hidden;
  2166. }
  2167. #u17691 {
  2168. border-width:0px;
  2169. position:absolute;
  2170. left:265px;
  2171. top:673px;
  2172. width:146px;
  2173. height:102px;
  2174. display:flex;
  2175. transition:none;
  2176. }
  2177. #u17691 .text {
  2178. position:absolute;
  2179. align-self:center;
  2180. padding:2px 2px 2px 2px;
  2181. box-sizing:border-box;
  2182. width:100%;
  2183. }
  2184. #u17691_img {
  2185. border-width:0px;
  2186. position:absolute;
  2187. left:0px;
  2188. top:0px;
  2189. width:146px;
  2190. height:102px;
  2191. }
  2192. #u17691_text {
  2193. border-width:0px;
  2194. word-wrap:break-word;
  2195. text-transform:none;
  2196. visibility:hidden;
  2197. }
  2198. #u17692 {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:421px;
  2202. top:673px;
  2203. width:146px;
  2204. height:102px;
  2205. display:flex;
  2206. transition:none;
  2207. }
  2208. #u17692 .text {
  2209. position:absolute;
  2210. align-self:center;
  2211. padding:2px 2px 2px 2px;
  2212. box-sizing:border-box;
  2213. width:100%;
  2214. }
  2215. #u17692_img {
  2216. border-width:0px;
  2217. position:absolute;
  2218. left:0px;
  2219. top:0px;
  2220. width:146px;
  2221. height:102px;
  2222. }
  2223. #u17692_text {
  2224. border-width:0px;
  2225. word-wrap:break-word;
  2226. text-transform:none;
  2227. visibility:hidden;
  2228. }
  2229. #u17693_div {
  2230. border-width:0px;
  2231. position:absolute;
  2232. left:0px;
  2233. top:0px;
  2234. width:57px;
  2235. height:30px;
  2236. background:inherit;
  2237. background-color:rgba(255, 255, 255, 0);
  2238. border-left:0px;
  2239. border-top:0px;
  2240. border-right:0px;
  2241. border-radius:0px;
  2242. border-bottom-right-radius:0px;
  2243. border-bottom-left-radius:0px;
  2244. filter:drop-shadow(none);
  2245. transition:none;
  2246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2247. font-weight:400;
  2248. font-style:normal;
  2249. font-size:14px;
  2250. color:#7F7F7F;
  2251. line-height:30px;
  2252. }
  2253. #u17693 {
  2254. border-width:0px;
  2255. position:absolute;
  2256. left:109px;
  2257. top:486px;
  2258. width:57px;
  2259. height:30px;
  2260. display:flex;
  2261. transition:none;
  2262. transform-origin:50% 50%;
  2263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2264. font-weight:400;
  2265. font-style:normal;
  2266. font-size:14px;
  2267. color:#7F7F7F;
  2268. line-height:30px;
  2269. }
  2270. #u17693 .text {
  2271. position:absolute;
  2272. align-self:flex-start;
  2273. padding:0px 0px 0px 0px;
  2274. box-sizing:border-box;
  2275. width:100%;
  2276. }
  2277. #u17693_text {
  2278. border-width:0px;
  2279. white-space:nowrap;
  2280. text-transform:none;
  2281. }
  2282. #u17694 {
  2283. border-width:0px;
  2284. position:absolute;
  2285. left:109px;
  2286. top:516px;
  2287. width:153px;
  2288. height:107px;
  2289. display:flex;
  2290. transition:none;
  2291. }
  2292. #u17694 .text {
  2293. position:absolute;
  2294. align-self:center;
  2295. padding:2px 2px 2px 2px;
  2296. box-sizing:border-box;
  2297. width:100%;
  2298. }
  2299. #u17694_img {
  2300. border-width:0px;
  2301. position:absolute;
  2302. left:0px;
  2303. top:0px;
  2304. width:153px;
  2305. height:107px;
  2306. }
  2307. #u17694_text {
  2308. border-width:0px;
  2309. word-wrap:break-word;
  2310. text-transform:none;
  2311. visibility:hidden;
  2312. }
  2313. #u17695 {
  2314. border-width:0px;
  2315. position:absolute;
  2316. left:0px;
  2317. top:0px;
  2318. width:0px;
  2319. height:0px;
  2320. }
  2321. #u17696_div {
  2322. border-width:0px;
  2323. position:absolute;
  2324. left:0px;
  2325. top:0px;
  2326. width:360px;
  2327. height:300px;
  2328. background:inherit;
  2329. background-color:rgba(255, 255, 255, 1);
  2330. border-radius:6px;
  2331. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  2332. transition:none;
  2333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2334. font-weight:400;
  2335. font-style:normal;
  2336. font-size:12px;
  2337. color:#FFFFFF;
  2338. }
  2339. #u17696 {
  2340. border-width:0px;
  2341. position:absolute;
  2342. left:574px;
  2343. top:884px;
  2344. width:360px;
  2345. height:300px;
  2346. display:flex;
  2347. transition:none;
  2348. transform-origin:50% 50%;
  2349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2350. font-weight:400;
  2351. font-style:normal;
  2352. font-size:12px;
  2353. color:#FFFFFF;
  2354. }
  2355. #u17696 .text {
  2356. position:absolute;
  2357. align-self:center;
  2358. padding:2px 2px 2px 2px;
  2359. box-sizing:border-box;
  2360. width:100%;
  2361. }
  2362. #u17696_text {
  2363. border-width:0px;
  2364. word-wrap:break-word;
  2365. text-transform:none;
  2366. visibility:hidden;
  2367. }
  2368. #u17697_div {
  2369. border-width:0px;
  2370. position:absolute;
  2371. left:0px;
  2372. top:0px;
  2373. width:37px;
  2374. height:25px;
  2375. background:inherit;
  2376. background-color:rgba(255, 255, 255, 0);
  2377. border-radius:0px;
  2378. filter:drop-shadow(none);
  2379. transition:none;
  2380. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2381. font-weight:500;
  2382. font-style:normal;
  2383. font-size:18px;
  2384. }
  2385. #u17697 {
  2386. border-width:0px;
  2387. position:absolute;
  2388. left:597px;
  2389. top:900px;
  2390. width:37px;
  2391. height:25px;
  2392. display:flex;
  2393. transition:none;
  2394. transform-origin:50% 50%;
  2395. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2396. font-weight:500;
  2397. font-style:normal;
  2398. font-size:18px;
  2399. }
  2400. #u17697 .text {
  2401. position:absolute;
  2402. align-self:flex-start;
  2403. padding:0px 0px 0px 0px;
  2404. box-sizing:border-box;
  2405. width:100%;
  2406. }
  2407. #u17697_text {
  2408. border-width:0px;
  2409. white-space:nowrap;
  2410. text-transform:none;
  2411. }
  2412. #u17698 {
  2413. border-width:0px;
  2414. position:absolute;
  2415. left:911px;
  2416. top:896px;
  2417. width:8px;
  2418. height:8px;
  2419. display:flex;
  2420. opacity:0.5;
  2421. transition:none;
  2422. }
  2423. #u17698 .text {
  2424. position:absolute;
  2425. align-self:center;
  2426. padding:2px 2px 2px 2px;
  2427. box-sizing:border-box;
  2428. width:100%;
  2429. }
  2430. #u17698_img {
  2431. border-width:0px;
  2432. position:absolute;
  2433. left:0px;
  2434. top:0px;
  2435. width:8px;
  2436. height:8px;
  2437. }
  2438. #u17698_text {
  2439. border-width:0px;
  2440. word-wrap:break-word;
  2441. text-transform:none;
  2442. visibility:hidden;
  2443. }
  2444. #u17699_div {
  2445. border-width:0px;
  2446. position:absolute;
  2447. left:0px;
  2448. top:0px;
  2449. width:80px;
  2450. height:30px;
  2451. background:inherit;
  2452. background-color:rgba(51, 153, 255, 1);
  2453. border-radius:4px;
  2454. filter:drop-shadow(none);
  2455. transition:none;
  2456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2457. font-weight:400;
  2458. font-style:normal;
  2459. font-size:14px;
  2460. color:#FFFFFF;
  2461. }
  2462. #u17699 {
  2463. border-width:0px;
  2464. position:absolute;
  2465. left:839px;
  2466. top:1134px;
  2467. width:80px;
  2468. height:30px;
  2469. display:flex;
  2470. transition:none;
  2471. transform-origin:50% 50%;
  2472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2473. font-weight:400;
  2474. font-style:normal;
  2475. font-size:14px;
  2476. color:#FFFFFF;
  2477. }
  2478. #u17699 .text {
  2479. position:absolute;
  2480. align-self:center;
  2481. padding:8px 0px 8px 0px;
  2482. box-sizing:border-box;
  2483. width:100%;
  2484. }
  2485. #u17699_text {
  2486. border-width:0px;
  2487. word-wrap:break-word;
  2488. text-transform:none;
  2489. }
  2490. #u17700 {
  2491. border-width:0px;
  2492. position:absolute;
  2493. left:0px;
  2494. top:0px;
  2495. width:0px;
  2496. height:0px;
  2497. }
  2498. #u17701_div {
  2499. border-width:0px;
  2500. position:absolute;
  2501. left:0px;
  2502. top:0px;
  2503. width:322px;
  2504. height:80px;
  2505. background:inherit;
  2506. background-color:rgba(255, 255, 255, 1);
  2507. box-sizing:border-box;
  2508. border-width:1px;
  2509. border-style:solid;
  2510. border-color:rgba(51, 153, 255, 1);
  2511. border-radius:2px;
  2512. filter:drop-shadow(none);
  2513. transition:none;
  2514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2515. font-weight:400;
  2516. font-style:normal;
  2517. font-size:12px;
  2518. color:#FFFFFF;
  2519. text-align:left;
  2520. }
  2521. #u17701 {
  2522. border-width:0px;
  2523. position:absolute;
  2524. left:597px;
  2525. top:1034px;
  2526. width:322px;
  2527. height:80px;
  2528. display:flex;
  2529. transition:none;
  2530. transform-origin:50% 50%;
  2531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2532. font-weight:400;
  2533. font-style:normal;
  2534. font-size:12px;
  2535. color:#FFFFFF;
  2536. text-align:left;
  2537. }
  2538. #u17701 .text {
  2539. position:absolute;
  2540. align-self:center;
  2541. padding:8px 15px 8px 15px;
  2542. box-sizing:border-box;
  2543. width:100%;
  2544. }
  2545. #u17701_text {
  2546. border-width:0px;
  2547. word-wrap:break-word;
  2548. text-transform:none;
  2549. }
  2550. #u17702_div {
  2551. border-width:0px;
  2552. position:absolute;
  2553. left:0px;
  2554. top:0px;
  2555. width:99px;
  2556. height:20px;
  2557. background:inherit;
  2558. background-color:rgba(255, 255, 255, 0);
  2559. border-radius:0px;
  2560. filter:drop-shadow(none);
  2561. transition:none;
  2562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2563. font-weight:400;
  2564. font-style:normal;
  2565. color:#D7D7D7;
  2566. }
  2567. #u17702 {
  2568. border-width:0px;
  2569. position:absolute;
  2570. left:608px;
  2571. top:1045px;
  2572. width:99px;
  2573. height:20px;
  2574. display:flex;
  2575. transition:none;
  2576. transform-origin:50% 50%;
  2577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2578. font-weight:400;
  2579. font-style:normal;
  2580. color:#D7D7D7;
  2581. }
  2582. #u17702 .text {
  2583. position:absolute;
  2584. align-self:flex-start;
  2585. padding:0px 0px 0px 0px;
  2586. box-sizing:border-box;
  2587. width:100%;
  2588. }
  2589. #u17702_text {
  2590. border-width:0px;
  2591. white-space:nowrap;
  2592. text-transform:none;
  2593. }
  2594. #u17703_div {
  2595. border-width:0px;
  2596. position:absolute;
  2597. left:0px;
  2598. top:0px;
  2599. width:60px;
  2600. height:30px;
  2601. background:inherit;
  2602. background-color:rgba(255, 255, 255, 1);
  2603. box-sizing:border-box;
  2604. border-width:1px;
  2605. border-style:solid;
  2606. border-color:rgba(170, 170, 170, 1);
  2607. border-radius:4px;
  2608. filter:drop-shadow(none);
  2609. transition:none;
  2610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2611. font-weight:400;
  2612. font-style:normal;
  2613. font-size:14px;
  2614. }
  2615. #u17703 {
  2616. border-width:0px;
  2617. position:absolute;
  2618. left:769px;
  2619. top:1134px;
  2620. width:60px;
  2621. height:30px;
  2622. display:flex;
  2623. transition:none;
  2624. transform-origin:50% 50%;
  2625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2626. font-weight:400;
  2627. font-style:normal;
  2628. font-size:14px;
  2629. }
  2630. #u17703 .text {
  2631. position:absolute;
  2632. align-self:center;
  2633. padding:2px 2px 2px 2px;
  2634. box-sizing:border-box;
  2635. width:100%;
  2636. }
  2637. #u17703_text {
  2638. border-width:0px;
  2639. word-wrap:break-word;
  2640. text-transform:none;
  2641. }
  2642. #u17704_div {
  2643. border-width:0px;
  2644. position:absolute;
  2645. left:0px;
  2646. top:0px;
  2647. width:319px;
  2648. height:75px;
  2649. background:inherit;
  2650. background-color:rgba(255, 255, 255, 0);
  2651. border-radius:0px;
  2652. filter:drop-shadow(none);
  2653. transition:none;
  2654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2655. font-weight:400;
  2656. font-style:normal;
  2657. font-size:14px;
  2658. line-height:25px;
  2659. }
  2660. #u17704 {
  2661. border-width:0px;
  2662. position:absolute;
  2663. left:597px;
  2664. top:939px;
  2665. width:319px;
  2666. height:75px;
  2667. display:flex;
  2668. transition:none;
  2669. transform-origin:50% 50%;
  2670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2671. font-weight:400;
  2672. font-style:normal;
  2673. font-size:14px;
  2674. line-height:25px;
  2675. }
  2676. #u17704 .text {
  2677. position:absolute;
  2678. align-self:flex-start;
  2679. padding:0px 0px 0px 0px;
  2680. box-sizing:border-box;
  2681. width:100%;
  2682. }
  2683. #u17704_text {
  2684. border-width:0px;
  2685. word-wrap:break-word;
  2686. text-transform:none;
  2687. }
  2688. #u17705 {
  2689. border-width:0px;
  2690. position:absolute;
  2691. left:0px;
  2692. top:0px;
  2693. width:0px;
  2694. height:0px;
  2695. }
  2696. #u17706_div {
  2697. border-width:0px;
  2698. position:absolute;
  2699. left:0px;
  2700. top:0px;
  2701. width:360px;
  2702. height:190px;
  2703. background:inherit;
  2704. background-color:rgba(255, 255, 255, 1);
  2705. border-radius:6px;
  2706. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  2707. transition:none;
  2708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2709. font-weight:400;
  2710. font-style:normal;
  2711. font-size:12px;
  2712. color:#FFFFFF;
  2713. }
  2714. #u17706 {
  2715. border-width:0px;
  2716. position:absolute;
  2717. left:184px;
  2718. top:884px;
  2719. width:360px;
  2720. height:190px;
  2721. display:flex;
  2722. transition:none;
  2723. transform-origin:50% 50%;
  2724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2725. font-weight:400;
  2726. font-style:normal;
  2727. font-size:12px;
  2728. color:#FFFFFF;
  2729. }
  2730. #u17706 .text {
  2731. position:absolute;
  2732. align-self:center;
  2733. padding:2px 2px 2px 2px;
  2734. box-sizing:border-box;
  2735. width:100%;
  2736. }
  2737. #u17706_text {
  2738. border-width:0px;
  2739. word-wrap:break-word;
  2740. text-transform:none;
  2741. visibility:hidden;
  2742. }
  2743. #u17707_div {
  2744. border-width:0px;
  2745. position:absolute;
  2746. left:0px;
  2747. top:0px;
  2748. width:37px;
  2749. height:25px;
  2750. background:inherit;
  2751. background-color:rgba(255, 255, 255, 0);
  2752. border-radius:0px;
  2753. filter:drop-shadow(none);
  2754. transition:none;
  2755. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2756. font-weight:500;
  2757. font-style:normal;
  2758. font-size:18px;
  2759. }
  2760. #u17707 {
  2761. border-width:0px;
  2762. position:absolute;
  2763. left:207px;
  2764. top:900px;
  2765. width:37px;
  2766. height:25px;
  2767. display:flex;
  2768. transition:none;
  2769. transform-origin:50% 50%;
  2770. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2771. font-weight:500;
  2772. font-style:normal;
  2773. font-size:18px;
  2774. }
  2775. #u17707 .text {
  2776. position:absolute;
  2777. align-self:flex-start;
  2778. padding:0px 0px 0px 0px;
  2779. box-sizing:border-box;
  2780. width:100%;
  2781. }
  2782. #u17707_text {
  2783. border-width:0px;
  2784. white-space:nowrap;
  2785. text-transform:none;
  2786. }
  2787. #u17708 {
  2788. border-width:0px;
  2789. position:absolute;
  2790. left:521px;
  2791. top:896px;
  2792. width:8px;
  2793. height:8px;
  2794. display:flex;
  2795. opacity:0.5;
  2796. transition:none;
  2797. }
  2798. #u17708 .text {
  2799. position:absolute;
  2800. align-self:center;
  2801. padding:2px 2px 2px 2px;
  2802. box-sizing:border-box;
  2803. width:100%;
  2804. }
  2805. #u17708_img {
  2806. border-width:0px;
  2807. position:absolute;
  2808. left:0px;
  2809. top:0px;
  2810. width:8px;
  2811. height:8px;
  2812. }
  2813. #u17708_text {
  2814. border-width:0px;
  2815. word-wrap:break-word;
  2816. text-transform:none;
  2817. visibility:hidden;
  2818. }
  2819. #u17709_div {
  2820. border-width:0px;
  2821. position:absolute;
  2822. left:0px;
  2823. top:0px;
  2824. width:80px;
  2825. height:30px;
  2826. background:inherit;
  2827. background-color:rgba(51, 153, 255, 1);
  2828. border-radius:4px;
  2829. filter:drop-shadow(none);
  2830. transition:none;
  2831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2832. font-weight:400;
  2833. font-style:normal;
  2834. font-size:14px;
  2835. color:#FFFFFF;
  2836. }
  2837. #u17709 {
  2838. border-width:0px;
  2839. position:absolute;
  2840. left:449px;
  2841. top:1028px;
  2842. width:80px;
  2843. height:30px;
  2844. display:flex;
  2845. transition:none;
  2846. transform-origin:50% 50%;
  2847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2848. font-weight:400;
  2849. font-style:normal;
  2850. font-size:14px;
  2851. color:#FFFFFF;
  2852. }
  2853. #u17709 .text {
  2854. position:absolute;
  2855. align-self:center;
  2856. padding:8px 0px 8px 0px;
  2857. box-sizing:border-box;
  2858. width:100%;
  2859. }
  2860. #u17709_text {
  2861. border-width:0px;
  2862. word-wrap:break-word;
  2863. text-transform:none;
  2864. }
  2865. #u17710_div {
  2866. border-width:0px;
  2867. position:absolute;
  2868. left:0px;
  2869. top:0px;
  2870. width:322px;
  2871. height:80px;
  2872. background:inherit;
  2873. background-color:rgba(255, 255, 255, 1);
  2874. box-sizing:border-box;
  2875. border-width:1px;
  2876. border-style:solid;
  2877. border-color:rgba(51, 153, 255, 1);
  2878. border-radius:2px;
  2879. filter:drop-shadow(none);
  2880. transition:none;
  2881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2882. font-weight:400;
  2883. font-style:normal;
  2884. font-size:12px;
  2885. color:#FFFFFF;
  2886. text-align:left;
  2887. }
  2888. #u17710 {
  2889. border-width:0px;
  2890. position:absolute;
  2891. left:207px;
  2892. top:935px;
  2893. width:322px;
  2894. height:80px;
  2895. display:flex;
  2896. transition:none;
  2897. transform-origin:50% 50%;
  2898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2899. font-weight:400;
  2900. font-style:normal;
  2901. font-size:12px;
  2902. color:#FFFFFF;
  2903. text-align:left;
  2904. }
  2905. #u17710 .text {
  2906. position:absolute;
  2907. align-self:center;
  2908. padding:8px 15px 8px 15px;
  2909. box-sizing:border-box;
  2910. width:100%;
  2911. }
  2912. #u17710_text {
  2913. border-width:0px;
  2914. word-wrap:break-word;
  2915. text-transform:none;
  2916. }
  2917. #u17711_div {
  2918. border-width:0px;
  2919. position:absolute;
  2920. left:0px;
  2921. top:0px;
  2922. width:99px;
  2923. height:20px;
  2924. background:inherit;
  2925. background-color:rgba(255, 255, 255, 0);
  2926. border-radius:0px;
  2927. filter:drop-shadow(none);
  2928. transition:none;
  2929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2930. font-weight:400;
  2931. font-style:normal;
  2932. color:#D7D7D7;
  2933. }
  2934. #u17711 {
  2935. border-width:0px;
  2936. position:absolute;
  2937. left:218px;
  2938. top:946px;
  2939. width:99px;
  2940. height:20px;
  2941. display:flex;
  2942. transition:none;
  2943. transform-origin:50% 50%;
  2944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2945. font-weight:400;
  2946. font-style:normal;
  2947. color:#D7D7D7;
  2948. }
  2949. #u17711 .text {
  2950. position:absolute;
  2951. align-self:flex-start;
  2952. padding:0px 0px 0px 0px;
  2953. box-sizing:border-box;
  2954. width:100%;
  2955. }
  2956. #u17711_text {
  2957. border-width:0px;
  2958. white-space:nowrap;
  2959. text-transform:none;
  2960. }
  2961. #u17712_div {
  2962. border-width:0px;
  2963. position:absolute;
  2964. left:0px;
  2965. top:0px;
  2966. width:60px;
  2967. height:30px;
  2968. background:inherit;
  2969. background-color:rgba(255, 255, 255, 1);
  2970. box-sizing:border-box;
  2971. border-width:1px;
  2972. border-style:solid;
  2973. border-color:rgba(170, 170, 170, 1);
  2974. border-radius:4px;
  2975. filter:drop-shadow(none);
  2976. transition:none;
  2977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2978. font-weight:400;
  2979. font-style:normal;
  2980. font-size:14px;
  2981. }
  2982. #u17712 {
  2983. border-width:0px;
  2984. position:absolute;
  2985. left:379px;
  2986. top:1028px;
  2987. width:60px;
  2988. height:30px;
  2989. display:flex;
  2990. transition:none;
  2991. transform-origin:50% 50%;
  2992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2993. font-weight:400;
  2994. font-style:normal;
  2995. font-size:14px;
  2996. }
  2997. #u17712 .text {
  2998. position:absolute;
  2999. align-self:center;
  3000. padding:2px 2px 2px 2px;
  3001. box-sizing:border-box;
  3002. width:100%;
  3003. }
  3004. #u17712_text {
  3005. border-width:0px;
  3006. word-wrap:break-word;
  3007. text-transform:none;
  3008. }
  3009. #u17713 {
  3010. border-width:0px;
  3011. position:absolute;
  3012. left:0px;
  3013. top:0px;
  3014. width:0px;
  3015. height:0px;
  3016. }
  3017. #u17714_div {
  3018. border-width:0px;
  3019. position:absolute;
  3020. left:0px;
  3021. top:0px;
  3022. width:1000px;
  3023. height:1201px;
  3024. background:inherit;
  3025. background-color:rgba(242, 242, 242, 1);
  3026. box-sizing:border-box;
  3027. border-width:1px;
  3028. border-style:solid;
  3029. border-color:rgba(215, 215, 215, 1);
  3030. border-radius:0px;
  3031. filter:drop-shadow(none);
  3032. transition:none;
  3033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3034. font-weight:400;
  3035. font-style:normal;
  3036. font-size:14px;
  3037. color:#AAAAAA;
  3038. text-align:center;
  3039. line-height:30px;
  3040. }
  3041. #u17714 {
  3042. border-width:0px;
  3043. position:absolute;
  3044. left:1109px;
  3045. top:49px;
  3046. width:1000px;
  3047. height:1201px;
  3048. display:flex;
  3049. transition:none;
  3050. transform-origin:50% 50%;
  3051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3052. font-weight:400;
  3053. font-style:normal;
  3054. font-size:14px;
  3055. color:#AAAAAA;
  3056. text-align:center;
  3057. line-height:30px;
  3058. }
  3059. #u17714 .text {
  3060. position:absolute;
  3061. align-self:center;
  3062. padding:5px 10px 5px 10px;
  3063. box-sizing:border-box;
  3064. width:100%;
  3065. }
  3066. #u17714_text {
  3067. border-width:0px;
  3068. word-wrap:break-word;
  3069. text-transform:none;
  3070. visibility:hidden;
  3071. }
  3072. #u17715_div {
  3073. border-width:0px;
  3074. position:absolute;
  3075. left:0px;
  3076. top:0px;
  3077. width:1000px;
  3078. height:1201px;
  3079. background:inherit;
  3080. background-color:rgba(255, 255, 255, 1);
  3081. box-sizing:border-box;
  3082. border-width:1px;
  3083. border-style:solid;
  3084. border-color:rgba(215, 215, 215, 1);
  3085. border-radius:0px;
  3086. filter:drop-shadow(none);
  3087. transition:none;
  3088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3089. font-weight:400;
  3090. font-style:normal;
  3091. font-size:14px;
  3092. color:#AAAAAA;
  3093. text-align:center;
  3094. line-height:30px;
  3095. }
  3096. #u17715 {
  3097. border-width:0px;
  3098. position:absolute;
  3099. left:1109px;
  3100. top:49px;
  3101. width:1000px;
  3102. height:1201px;
  3103. display:flex;
  3104. transition:none;
  3105. transform-origin:50% 50%;
  3106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3107. font-weight:400;
  3108. font-style:normal;
  3109. font-size:14px;
  3110. color:#AAAAAA;
  3111. text-align:center;
  3112. line-height:30px;
  3113. }
  3114. #u17715 .text {
  3115. position:absolute;
  3116. align-self:center;
  3117. padding:5px 10px 5px 10px;
  3118. box-sizing:border-box;
  3119. width:100%;
  3120. }
  3121. #u17715_text {
  3122. border-width:0px;
  3123. word-wrap:break-word;
  3124. text-transform:none;
  3125. visibility:hidden;
  3126. }
  3127. #u17716_div {
  3128. border-width:0px;
  3129. position:absolute;
  3130. left:0px;
  3131. top:0px;
  3132. width:119px;
  3133. height:35px;
  3134. background:inherit;
  3135. background-color:rgba(255, 255, 255, 0);
  3136. border-top:0px;
  3137. border-right:0px;
  3138. border-bottom:0px;
  3139. border-radius:0px;
  3140. border-top-left-radius:0px;
  3141. border-bottom-left-radius:0px;
  3142. filter:drop-shadow(none);
  3143. transition:none;
  3144. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3145. font-weight:500;
  3146. font-style:normal;
  3147. font-size:18px;
  3148. }
  3149. #u17716 {
  3150. border-width:0px;
  3151. position:absolute;
  3152. left:1129px;
  3153. top:67px;
  3154. width:119px;
  3155. height:35px;
  3156. display:flex;
  3157. transition:none;
  3158. transform-origin:50% 50%;
  3159. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3160. font-weight:500;
  3161. font-style:normal;
  3162. font-size:18px;
  3163. }
  3164. #u17716 .text {
  3165. position:absolute;
  3166. align-self:center;
  3167. padding:5px 10px 5px 0px;
  3168. box-sizing:border-box;
  3169. width:100%;
  3170. }
  3171. #u17716_text {
  3172. border-width:0px;
  3173. white-space:nowrap;
  3174. text-transform:none;
  3175. }
  3176. #u17717 {
  3177. border-width:0px;
  3178. position:absolute;
  3179. left:0px;
  3180. top:0px;
  3181. width:0px;
  3182. height:0px;
  3183. }
  3184. #u17718_div {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:0px;
  3188. top:0px;
  3189. width:40px;
  3190. height:40px;
  3191. background:inherit;
  3192. background-color:rgba(255, 255, 255, 0);
  3193. border-top:0px;
  3194. border-right:0px;
  3195. border-bottom:0px;
  3196. border-radius:0px;
  3197. border-top-left-radius:0px;
  3198. border-bottom-left-radius:0px;
  3199. filter:drop-shadow(none);
  3200. transition:none;
  3201. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3202. font-weight:500;
  3203. font-style:normal;
  3204. font-size:14px;
  3205. text-align:center;
  3206. }
  3207. #u17718 {
  3208. border-width:0px;
  3209. position:absolute;
  3210. left:2069px;
  3211. top:49px;
  3212. width:40px;
  3213. height:40px;
  3214. display:flex;
  3215. transition:none;
  3216. transform-origin:50% 50%;
  3217. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3218. font-weight:500;
  3219. font-style:normal;
  3220. font-size:14px;
  3221. text-align:center;
  3222. }
  3223. #u17718 .text {
  3224. position:absolute;
  3225. align-self:center;
  3226. padding:5px 10px 5px 0px;
  3227. box-sizing:border-box;
  3228. width:100%;
  3229. }
  3230. #u17718_text {
  3231. border-width:0px;
  3232. word-wrap:break-word;
  3233. text-transform:none;
  3234. }
  3235. #u17719 {
  3236. border-width:0px;
  3237. position:absolute;
  3238. left:2057px;
  3239. top:65px;
  3240. width:13px;
  3241. height:13px;
  3242. display:flex;
  3243. transition:none;
  3244. font-size:14px;
  3245. }
  3246. #u17719 .text {
  3247. position:absolute;
  3248. align-self:center;
  3249. padding:2px 2px 2px 2px;
  3250. box-sizing:border-box;
  3251. width:100%;
  3252. }
  3253. #u17719_img {
  3254. border-width:0px;
  3255. position:absolute;
  3256. left:0px;
  3257. top:0px;
  3258. width:13px;
  3259. height:13px;
  3260. }
  3261. #u17719_text {
  3262. border-width:0px;
  3263. word-wrap:break-word;
  3264. text-transform:none;
  3265. visibility:hidden;
  3266. }
  3267. #u17720_div {
  3268. border-width:0px;
  3269. position:absolute;
  3270. left:0px;
  3271. top:0px;
  3272. width:213px;
  3273. height:43px;
  3274. background:inherit;
  3275. background-color:rgba(255, 255, 255, 0);
  3276. border-top:0px;
  3277. border-right:0px;
  3278. border-bottom:0px;
  3279. border-radius:0px;
  3280. border-top-left-radius:0px;
  3281. border-bottom-left-radius:0px;
  3282. filter:drop-shadow(none);
  3283. transition:none;
  3284. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3285. font-weight:500;
  3286. font-style:normal;
  3287. font-size:24px;
  3288. }
  3289. #u17720 {
  3290. border-width:0px;
  3291. position:absolute;
  3292. left:1139px;
  3293. top:118px;
  3294. width:213px;
  3295. height:43px;
  3296. display:flex;
  3297. transition:none;
  3298. transform-origin:50% 50%;
  3299. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3300. font-weight:500;
  3301. font-style:normal;
  3302. font-size:24px;
  3303. }
  3304. #u17720 .text {
  3305. position:absolute;
  3306. align-self:center;
  3307. padding:5px 10px 5px 0px;
  3308. box-sizing:border-box;
  3309. width:100%;
  3310. }
  3311. #u17720_text {
  3312. border-width:0px;
  3313. white-space:nowrap;
  3314. text-transform:none;
  3315. }
  3316. #u17721 {
  3317. border-width:0px;
  3318. position:absolute;
  3319. left:1959px;
  3320. top:119px;
  3321. width:108px;
  3322. height:108px;
  3323. display:flex;
  3324. -webkit-transform:rotate(315deg);
  3325. -moz-transform:rotate(315deg);
  3326. -ms-transform:rotate(315deg);
  3327. transform:rotate(315deg);
  3328. transition:none;
  3329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3330. font-weight:400;
  3331. font-style:normal;
  3332. font-size:28px;
  3333. color:#F59A23;
  3334. }
  3335. #u17721 .text {
  3336. position:absolute;
  3337. align-self:center;
  3338. padding:2px 2px 2px 2px;
  3339. box-sizing:border-box;
  3340. width:100%;
  3341. }
  3342. #u17721_img {
  3343. border-width:0px;
  3344. position:absolute;
  3345. left:0px;
  3346. top:0px;
  3347. width:108px;
  3348. height:108px;
  3349. }
  3350. #u17721_text {
  3351. border-width:0px;
  3352. word-wrap:break-word;
  3353. text-transform:none;
  3354. }
  3355. #u17722 {
  3356. border-width:0px;
  3357. position:absolute;
  3358. left:0px;
  3359. top:0px;
  3360. width:0px;
  3361. height:0px;
  3362. }
  3363. #u17723_div {
  3364. border-width:0px;
  3365. position:absolute;
  3366. left:0px;
  3367. top:0px;
  3368. width:1000px;
  3369. height:60px;
  3370. background:inherit;
  3371. background-color:rgba(255, 255, 255, 1);
  3372. box-sizing:border-box;
  3373. border-width:1px;
  3374. border-style:solid;
  3375. border-color:rgba(215, 215, 215, 1);
  3376. border-radius:0px;
  3377. filter:drop-shadow(none);
  3378. transition:none;
  3379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3380. font-weight:400;
  3381. font-style:normal;
  3382. font-size:14px;
  3383. color:#AAAAAA;
  3384. text-align:center;
  3385. line-height:30px;
  3386. }
  3387. #u17723 {
  3388. border-width:0px;
  3389. position:absolute;
  3390. left:1109px;
  3391. top:1190px;
  3392. width:1000px;
  3393. height:60px;
  3394. display:flex;
  3395. transition:none;
  3396. transform-origin:50% 50%;
  3397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3398. font-weight:400;
  3399. font-style:normal;
  3400. font-size:14px;
  3401. color:#AAAAAA;
  3402. text-align:center;
  3403. line-height:30px;
  3404. }
  3405. #u17723 .text {
  3406. position:absolute;
  3407. align-self:center;
  3408. padding:5px 10px 5px 10px;
  3409. box-sizing:border-box;
  3410. width:100%;
  3411. }
  3412. #u17723_text {
  3413. border-width:0px;
  3414. word-wrap:break-word;
  3415. text-transform:none;
  3416. visibility:hidden;
  3417. }
  3418. #u17724_div {
  3419. border-width:0px;
  3420. position:absolute;
  3421. left:0px;
  3422. top:0px;
  3423. width:80px;
  3424. height:30px;
  3425. background:inherit;
  3426. background-color:rgba(24, 144, 255, 1);
  3427. border-radius:4px;
  3428. filter:drop-shadow(none);
  3429. transition:none;
  3430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3431. font-weight:400;
  3432. font-style:normal;
  3433. font-size:14px;
  3434. color:#FFFFFF;
  3435. }
  3436. #u17724 {
  3437. border-width:0px;
  3438. position:absolute;
  3439. left:2003px;
  3440. top:1205px;
  3441. width:80px;
  3442. height:30px;
  3443. display:flex;
  3444. transition:none;
  3445. transform-origin:50% 50%;
  3446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3447. font-weight:400;
  3448. font-style:normal;
  3449. font-size:14px;
  3450. color:#FFFFFF;
  3451. }
  3452. #u17724 .text {
  3453. position:absolute;
  3454. align-self:center;
  3455. padding:2px 2px 2px 2px;
  3456. box-sizing:border-box;
  3457. width:100%;
  3458. }
  3459. #u17724_text {
  3460. border-width:0px;
  3461. word-wrap:break-word;
  3462. text-transform:none;
  3463. }
  3464. #u17725_div {
  3465. border-width:0px;
  3466. position:absolute;
  3467. left:0px;
  3468. top:0px;
  3469. width:80px;
  3470. height:30px;
  3471. background:inherit;
  3472. background-color:rgba(245, 154, 35, 1);
  3473. border-radius:4px;
  3474. filter:drop-shadow(none);
  3475. transition:none;
  3476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3477. font-weight:400;
  3478. font-style:normal;
  3479. font-size:14px;
  3480. color:#FFFFFF;
  3481. }
  3482. #u17725 {
  3483. border-width:0px;
  3484. position:absolute;
  3485. left:1913px;
  3486. top:1205px;
  3487. width:80px;
  3488. height:30px;
  3489. display:flex;
  3490. transition:none;
  3491. transform-origin:50% 50%;
  3492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3493. font-weight:400;
  3494. font-style:normal;
  3495. font-size:14px;
  3496. color:#FFFFFF;
  3497. }
  3498. #u17725 .text {
  3499. position:absolute;
  3500. align-self:center;
  3501. padding:2px 2px 2px 2px;
  3502. box-sizing:border-box;
  3503. width:100%;
  3504. }
  3505. #u17725_text {
  3506. border-width:0px;
  3507. word-wrap:break-word;
  3508. text-transform:none;
  3509. }
  3510. #u17726_div {
  3511. border-width:0px;
  3512. position:absolute;
  3513. left:0px;
  3514. top:0px;
  3515. width:80px;
  3516. height:30px;
  3517. background:inherit;
  3518. background-color:rgba(255, 255, 255, 1);
  3519. box-sizing:border-box;
  3520. border-width:1px;
  3521. border-style:solid;
  3522. border-color:rgba(170, 170, 170, 1);
  3523. border-radius:4px;
  3524. filter:drop-shadow(none);
  3525. transition:none;
  3526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3527. font-weight:400;
  3528. font-style:normal;
  3529. font-size:14px;
  3530. }
  3531. #u17726 {
  3532. border-width:0px;
  3533. position:absolute;
  3534. left:1823px;
  3535. top:1205px;
  3536. width:80px;
  3537. height:30px;
  3538. display:flex;
  3539. transition:none;
  3540. transform-origin:50% 50%;
  3541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3542. font-weight:400;
  3543. font-style:normal;
  3544. font-size:14px;
  3545. }
  3546. #u17726 .text {
  3547. position:absolute;
  3548. align-self:center;
  3549. padding:2px 2px 2px 2px;
  3550. box-sizing:border-box;
  3551. width:100%;
  3552. }
  3553. #u17726_text {
  3554. border-width:0px;
  3555. word-wrap:break-word;
  3556. text-transform:none;
  3557. }
  3558. #u17727_div {
  3559. border-width:0px;
  3560. position:absolute;
  3561. left:0px;
  3562. top:0px;
  3563. width:80px;
  3564. height:30px;
  3565. background:inherit;
  3566. background-color:rgba(255, 255, 255, 0);
  3567. border-left:0px;
  3568. border-top:0px;
  3569. border-right:0px;
  3570. border-radius:0px;
  3571. border-bottom-right-radius:0px;
  3572. border-bottom-left-radius:0px;
  3573. filter:drop-shadow(none);
  3574. transition:none;
  3575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3576. font-weight:400;
  3577. font-style:normal;
  3578. font-size:14px;
  3579. color:#7F7F7F;
  3580. line-height:30px;
  3581. }
  3582. #u17727 {
  3583. border-width:0px;
  3584. position:absolute;
  3585. left:1139px;
  3586. top:181px;
  3587. width:80px;
  3588. height:30px;
  3589. display:flex;
  3590. transition:none;
  3591. transform-origin:50% 50%;
  3592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3593. font-weight:400;
  3594. font-style:normal;
  3595. font-size:14px;
  3596. color:#7F7F7F;
  3597. line-height:30px;
  3598. }
  3599. #u17727 .text {
  3600. position:absolute;
  3601. align-self:flex-start;
  3602. padding:0px 0px 0px 0px;
  3603. box-sizing:border-box;
  3604. width:100%;
  3605. }
  3606. #u17727_text {
  3607. border-width:0px;
  3608. word-wrap:break-word;
  3609. text-transform:none;
  3610. }
  3611. #u17728_div {
  3612. border-width:0px;
  3613. position:absolute;
  3614. left:0px;
  3615. top:0px;
  3616. width:85px;
  3617. height:30px;
  3618. background:inherit;
  3619. background-color:rgba(255, 255, 255, 0);
  3620. border-left:0px;
  3621. border-top:0px;
  3622. border-right:0px;
  3623. border-radius:0px;
  3624. border-bottom-right-radius:0px;
  3625. border-bottom-left-radius:0px;
  3626. filter:drop-shadow(none);
  3627. transition:none;
  3628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3629. font-weight:400;
  3630. font-style:normal;
  3631. font-size:14px;
  3632. line-height:30px;
  3633. }
  3634. #u17728 {
  3635. border-width:0px;
  3636. position:absolute;
  3637. left:1219px;
  3638. top:181px;
  3639. width:85px;
  3640. height:30px;
  3641. display:flex;
  3642. transition:none;
  3643. transform-origin:50% 50%;
  3644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3645. font-weight:400;
  3646. font-style:normal;
  3647. font-size:14px;
  3648. line-height:30px;
  3649. }
  3650. #u17728 .text {
  3651. position:absolute;
  3652. align-self:flex-start;
  3653. padding:0px 0px 0px 0px;
  3654. box-sizing:border-box;
  3655. width:100%;
  3656. }
  3657. #u17728_text {
  3658. border-width:0px;
  3659. white-space:nowrap;
  3660. text-transform:none;
  3661. }
  3662. #u17729_div {
  3663. border-width:0px;
  3664. position:absolute;
  3665. left:0px;
  3666. top:0px;
  3667. width:80px;
  3668. height:30px;
  3669. background:inherit;
  3670. background-color:rgba(255, 255, 255, 0);
  3671. border-left:0px;
  3672. border-top:0px;
  3673. border-right:0px;
  3674. border-radius:0px;
  3675. border-bottom-right-radius:0px;
  3676. border-bottom-left-radius:0px;
  3677. filter:drop-shadow(none);
  3678. transition:none;
  3679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3680. font-weight:400;
  3681. font-style:normal;
  3682. font-size:14px;
  3683. color:#7F7F7F;
  3684. line-height:30px;
  3685. }
  3686. #u17729 {
  3687. border-width:0px;
  3688. position:absolute;
  3689. left:1577px;
  3690. top:356px;
  3691. width:80px;
  3692. height:30px;
  3693. display:flex;
  3694. transition:none;
  3695. transform-origin:50% 50%;
  3696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3697. font-weight:400;
  3698. font-style:normal;
  3699. font-size:14px;
  3700. color:#7F7F7F;
  3701. line-height:30px;
  3702. }
  3703. #u17729 .text {
  3704. position:absolute;
  3705. align-self:flex-start;
  3706. padding:0px 0px 0px 0px;
  3707. box-sizing:border-box;
  3708. width:100%;
  3709. }
  3710. #u17729_text {
  3711. border-width:0px;
  3712. word-wrap:break-word;
  3713. text-transform:none;
  3714. }
  3715. #u17730_div {
  3716. border-width:0px;
  3717. position:absolute;
  3718. left:0px;
  3719. top:0px;
  3720. width:71px;
  3721. height:30px;
  3722. background:inherit;
  3723. background-color:rgba(255, 255, 255, 0);
  3724. border-left:0px;
  3725. border-top:0px;
  3726. border-right:0px;
  3727. border-radius:0px;
  3728. border-bottom-right-radius:0px;
  3729. border-bottom-left-radius:0px;
  3730. filter:drop-shadow(none);
  3731. transition:none;
  3732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3733. font-weight:400;
  3734. font-style:normal;
  3735. font-size:14px;
  3736. line-height:30px;
  3737. }
  3738. #u17730 {
  3739. border-width:0px;
  3740. position:absolute;
  3741. left:1657px;
  3742. top:356px;
  3743. width:71px;
  3744. height:30px;
  3745. display:flex;
  3746. transition:none;
  3747. transform-origin:50% 50%;
  3748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3749. font-weight:400;
  3750. font-style:normal;
  3751. font-size:14px;
  3752. line-height:30px;
  3753. }
  3754. #u17730 .text {
  3755. position:absolute;
  3756. align-self:flex-start;
  3757. padding:0px 0px 0px 0px;
  3758. box-sizing:border-box;
  3759. width:100%;
  3760. }
  3761. #u17730_text {
  3762. border-width:0px;
  3763. white-space:nowrap;
  3764. text-transform:none;
  3765. }
  3766. #u17731_div {
  3767. border-width:0px;
  3768. position:absolute;
  3769. left:0px;
  3770. top:0px;
  3771. width:40px;
  3772. height:17px;
  3773. background:inherit;
  3774. background-color:rgba(85, 85, 85, 1);
  3775. border-radius:20px;
  3776. filter:drop-shadow(none);
  3777. transition:none;
  3778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3779. font-weight:400;
  3780. font-style:normal;
  3781. font-size:12px;
  3782. color:#FFFFFF;
  3783. text-align:center;
  3784. }
  3785. #u17731 {
  3786. border-width:0px;
  3787. position:absolute;
  3788. left:1362px;
  3789. top:131px;
  3790. width:40px;
  3791. height:17px;
  3792. display:flex;
  3793. transition:none;
  3794. transform-origin:50% 50%;
  3795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3796. font-weight:400;
  3797. font-style:normal;
  3798. font-size:12px;
  3799. color:#FFFFFF;
  3800. text-align:center;
  3801. }
  3802. #u17731 .text {
  3803. position:absolute;
  3804. align-self:flex-start;
  3805. padding:0px 0px 0px 0px;
  3806. box-sizing:border-box;
  3807. width:100%;
  3808. }
  3809. #u17731_text {
  3810. border-width:0px;
  3811. word-wrap:break-word;
  3812. text-transform:none;
  3813. }
  3814. #u17732_div {
  3815. border-width:0px;
  3816. position:absolute;
  3817. left:0px;
  3818. top:0px;
  3819. width:57px;
  3820. height:30px;
  3821. background:inherit;
  3822. background-color:rgba(255, 255, 255, 0);
  3823. border-left:0px;
  3824. border-top:0px;
  3825. border-right:0px;
  3826. border-radius:0px;
  3827. border-bottom-right-radius:0px;
  3828. border-bottom-left-radius:0px;
  3829. filter:drop-shadow(none);
  3830. transition:none;
  3831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3832. font-weight:400;
  3833. font-style:normal;
  3834. font-size:14px;
  3835. color:#7F7F7F;
  3836. line-height:30px;
  3837. }
  3838. #u17732 {
  3839. border-width:0px;
  3840. position:absolute;
  3841. left:1139px;
  3842. top:221px;
  3843. width:57px;
  3844. height:30px;
  3845. display:flex;
  3846. transition:none;
  3847. transform-origin:50% 50%;
  3848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3849. font-weight:400;
  3850. font-style:normal;
  3851. font-size:14px;
  3852. color:#7F7F7F;
  3853. line-height:30px;
  3854. }
  3855. #u17732 .text {
  3856. position:absolute;
  3857. align-self:flex-start;
  3858. padding:0px 0px 0px 0px;
  3859. box-sizing:border-box;
  3860. width:100%;
  3861. }
  3862. #u17732_text {
  3863. border-width:0px;
  3864. white-space:nowrap;
  3865. text-transform:none;
  3866. }
  3867. #u17733_div {
  3868. border-width:0px;
  3869. position:absolute;
  3870. left:0px;
  3871. top:0px;
  3872. width:41px;
  3873. height:30px;
  3874. background:inherit;
  3875. background-color:rgba(255, 255, 255, 0);
  3876. border-left:0px;
  3877. border-top:0px;
  3878. border-right:0px;
  3879. border-radius:0px;
  3880. border-bottom-right-radius:0px;
  3881. border-bottom-left-radius:0px;
  3882. filter:drop-shadow(none);
  3883. transition:none;
  3884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3885. font-weight:400;
  3886. font-style:normal;
  3887. font-size:14px;
  3888. line-height:30px;
  3889. }
  3890. #u17733 {
  3891. border-width:0px;
  3892. position:absolute;
  3893. left:1219px;
  3894. top:221px;
  3895. width:41px;
  3896. height:30px;
  3897. display:flex;
  3898. transition:none;
  3899. transform-origin:50% 50%;
  3900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3901. font-weight:400;
  3902. font-style:normal;
  3903. font-size:14px;
  3904. line-height:30px;
  3905. }
  3906. #u17733 .text {
  3907. position:absolute;
  3908. align-self:flex-start;
  3909. padding:0px 0px 0px 0px;
  3910. box-sizing:border-box;
  3911. width:100%;
  3912. }
  3913. #u17733_text {
  3914. border-width:0px;
  3915. white-space:nowrap;
  3916. text-transform:none;
  3917. }
  3918. #u17734_div {
  3919. border-width:0px;
  3920. position:absolute;
  3921. left:0px;
  3922. top:0px;
  3923. width:80px;
  3924. height:30px;
  3925. background:inherit;
  3926. background-color:rgba(255, 255, 255, 0);
  3927. border-left:0px;
  3928. border-top:0px;
  3929. border-right:0px;
  3930. border-radius:0px;
  3931. border-bottom-right-radius:0px;
  3932. border-bottom-left-radius:0px;
  3933. filter:drop-shadow(none);
  3934. transition:none;
  3935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3936. font-weight:400;
  3937. font-style:normal;
  3938. font-size:14px;
  3939. color:#7F7F7F;
  3940. line-height:30px;
  3941. }
  3942. #u17734 {
  3943. border-width:0px;
  3944. position:absolute;
  3945. left:1578px;
  3946. top:181px;
  3947. width:80px;
  3948. height:30px;
  3949. display:flex;
  3950. transition:none;
  3951. transform-origin:50% 50%;
  3952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3953. font-weight:400;
  3954. font-style:normal;
  3955. font-size:14px;
  3956. color:#7F7F7F;
  3957. line-height:30px;
  3958. }
  3959. #u17734 .text {
  3960. position:absolute;
  3961. align-self:flex-start;
  3962. padding:0px 0px 0px 0px;
  3963. box-sizing:border-box;
  3964. width:100%;
  3965. }
  3966. #u17734_text {
  3967. border-width:0px;
  3968. word-wrap:break-word;
  3969. text-transform:none;
  3970. }
  3971. #u17735_div {
  3972. border-width:0px;
  3973. position:absolute;
  3974. left:0px;
  3975. top:0px;
  3976. width:57px;
  3977. height:30px;
  3978. background:inherit;
  3979. background-color:rgba(255, 255, 255, 0);
  3980. border-left:0px;
  3981. border-top:0px;
  3982. border-right:0px;
  3983. border-radius:0px;
  3984. border-bottom-right-radius:0px;
  3985. border-bottom-left-radius:0px;
  3986. filter:drop-shadow(none);
  3987. transition:none;
  3988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3989. font-weight:400;
  3990. font-style:normal;
  3991. font-size:14px;
  3992. line-height:30px;
  3993. }
  3994. #u17735 {
  3995. border-width:0px;
  3996. position:absolute;
  3997. left:1658px;
  3998. top:181px;
  3999. width:57px;
  4000. height:30px;
  4001. display:flex;
  4002. transition:none;
  4003. transform-origin:50% 50%;
  4004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4005. font-weight:400;
  4006. font-style:normal;
  4007. font-size:14px;
  4008. line-height:30px;
  4009. }
  4010. #u17735 .text {
  4011. position:absolute;
  4012. align-self:flex-start;
  4013. padding:0px 0px 0px 0px;
  4014. box-sizing:border-box;
  4015. width:100%;
  4016. }
  4017. #u17735_text {
  4018. border-width:0px;
  4019. white-space:nowrap;
  4020. text-transform:none;
  4021. }
  4022. #u17736_div {
  4023. border-width:0px;
  4024. position:absolute;
  4025. left:0px;
  4026. top:0px;
  4027. width:71px;
  4028. height:30px;
  4029. background:inherit;
  4030. background-color:rgba(255, 255, 255, 0);
  4031. border-left:0px;
  4032. border-top:0px;
  4033. border-right:0px;
  4034. border-radius:0px;
  4035. border-bottom-right-radius:0px;
  4036. border-bottom-left-radius:0px;
  4037. filter:drop-shadow(none);
  4038. transition:none;
  4039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4040. font-weight:400;
  4041. font-style:normal;
  4042. font-size:14px;
  4043. color:#7F7F7F;
  4044. line-height:30px;
  4045. }
  4046. #u17736 {
  4047. border-width:0px;
  4048. position:absolute;
  4049. left:1577px;
  4050. top:276px;
  4051. width:71px;
  4052. height:30px;
  4053. display:flex;
  4054. transition:none;
  4055. transform-origin:50% 50%;
  4056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4057. font-weight:400;
  4058. font-style:normal;
  4059. font-size:14px;
  4060. color:#7F7F7F;
  4061. line-height:30px;
  4062. }
  4063. #u17736 .text {
  4064. position:absolute;
  4065. align-self:flex-start;
  4066. padding:0px 0px 0px 0px;
  4067. box-sizing:border-box;
  4068. width:100%;
  4069. }
  4070. #u17736_text {
  4071. border-width:0px;
  4072. white-space:nowrap;
  4073. text-transform:none;
  4074. }
  4075. #u17737_div {
  4076. border-width:0px;
  4077. position:absolute;
  4078. left:0px;
  4079. top:0px;
  4080. width:141px;
  4081. height:30px;
  4082. background:inherit;
  4083. background-color:rgba(255, 255, 255, 0);
  4084. border-left:0px;
  4085. border-top:0px;
  4086. border-right:0px;
  4087. border-radius:0px;
  4088. border-bottom-right-radius:0px;
  4089. border-bottom-left-radius:0px;
  4090. filter:drop-shadow(none);
  4091. transition:none;
  4092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4093. font-weight:400;
  4094. font-style:normal;
  4095. font-size:14px;
  4096. line-height:30px;
  4097. }
  4098. #u17737 {
  4099. border-width:0px;
  4100. position:absolute;
  4101. left:1657px;
  4102. top:276px;
  4103. width:141px;
  4104. height:30px;
  4105. display:flex;
  4106. transition:none;
  4107. transform-origin:50% 50%;
  4108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4109. font-weight:400;
  4110. font-style:normal;
  4111. font-size:14px;
  4112. line-height:30px;
  4113. }
  4114. #u17737 .text {
  4115. position:absolute;
  4116. align-self:flex-start;
  4117. padding:0px 0px 0px 0px;
  4118. box-sizing:border-box;
  4119. width:100%;
  4120. }
  4121. #u17737_text {
  4122. border-width:0px;
  4123. white-space:nowrap;
  4124. text-transform:none;
  4125. }
  4126. #u17738_div {
  4127. border-width:0px;
  4128. position:absolute;
  4129. left:0px;
  4130. top:0px;
  4131. width:71px;
  4132. height:30px;
  4133. background:inherit;
  4134. background-color:rgba(255, 255, 255, 0);
  4135. border-left:0px;
  4136. border-top:0px;
  4137. border-right:0px;
  4138. border-radius:0px;
  4139. border-bottom-right-radius:0px;
  4140. border-bottom-left-radius:0px;
  4141. filter:drop-shadow(none);
  4142. transition:none;
  4143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4144. font-weight:400;
  4145. font-style:normal;
  4146. font-size:14px;
  4147. color:#7F7F7F;
  4148. line-height:30px;
  4149. }
  4150. #u17738 {
  4151. border-width:0px;
  4152. position:absolute;
  4153. left:1139px;
  4154. top:356px;
  4155. width:71px;
  4156. height:30px;
  4157. display:flex;
  4158. transition:none;
  4159. transform-origin:50% 50%;
  4160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4161. font-weight:400;
  4162. font-style:normal;
  4163. font-size:14px;
  4164. color:#7F7F7F;
  4165. line-height:30px;
  4166. }
  4167. #u17738 .text {
  4168. position:absolute;
  4169. align-self:flex-start;
  4170. padding:0px 0px 0px 0px;
  4171. box-sizing:border-box;
  4172. width:100%;
  4173. }
  4174. #u17738_text {
  4175. border-width:0px;
  4176. white-space:nowrap;
  4177. text-transform:none;
  4178. }
  4179. #u17739_div {
  4180. border-width:0px;
  4181. position:absolute;
  4182. left:0px;
  4183. top:0px;
  4184. width:29px;
  4185. height:30px;
  4186. background:inherit;
  4187. background-color:rgba(255, 255, 255, 0);
  4188. border-left:0px;
  4189. border-top:0px;
  4190. border-right:0px;
  4191. border-radius:0px;
  4192. border-bottom-right-radius:0px;
  4193. border-bottom-left-radius:0px;
  4194. filter:drop-shadow(none);
  4195. transition:none;
  4196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4197. font-weight:400;
  4198. font-style:normal;
  4199. font-size:14px;
  4200. line-height:30px;
  4201. }
  4202. #u17739 {
  4203. border-width:0px;
  4204. position:absolute;
  4205. left:1219px;
  4206. top:356px;
  4207. width:29px;
  4208. height:30px;
  4209. display:flex;
  4210. transition:none;
  4211. transform-origin:50% 50%;
  4212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4213. font-weight:400;
  4214. font-style:normal;
  4215. font-size:14px;
  4216. line-height:30px;
  4217. }
  4218. #u17739 .text {
  4219. position:absolute;
  4220. align-self:flex-start;
  4221. padding:0px 0px 0px 0px;
  4222. box-sizing:border-box;
  4223. width:100%;
  4224. }
  4225. #u17739_text {
  4226. border-width:0px;
  4227. white-space:nowrap;
  4228. text-transform:none;
  4229. }
  4230. #u17740_div {
  4231. border-width:0px;
  4232. position:absolute;
  4233. left:0px;
  4234. top:0px;
  4235. width:71px;
  4236. height:30px;
  4237. background:inherit;
  4238. background-color:rgba(255, 255, 255, 0);
  4239. border-left:0px;
  4240. border-top:0px;
  4241. border-right:0px;
  4242. border-radius:0px;
  4243. border-bottom-right-radius:0px;
  4244. border-bottom-left-radius:0px;
  4245. filter:drop-shadow(none);
  4246. transition:none;
  4247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4248. font-weight:400;
  4249. font-style:normal;
  4250. font-size:14px;
  4251. color:#7F7F7F;
  4252. line-height:30px;
  4253. }
  4254. #u17740 {
  4255. border-width:0px;
  4256. position:absolute;
  4257. left:1139px;
  4258. top:316px;
  4259. width:71px;
  4260. height:30px;
  4261. display:flex;
  4262. transition:none;
  4263. transform-origin:50% 50%;
  4264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4265. font-weight:400;
  4266. font-style:normal;
  4267. font-size:14px;
  4268. color:#7F7F7F;
  4269. line-height:30px;
  4270. }
  4271. #u17740 .text {
  4272. position:absolute;
  4273. align-self:flex-start;
  4274. padding:0px 0px 0px 0px;
  4275. box-sizing:border-box;
  4276. width:100%;
  4277. }
  4278. #u17740_text {
  4279. border-width:0px;
  4280. white-space:nowrap;
  4281. text-transform:none;
  4282. }
  4283. #u17741_div {
  4284. border-width:0px;
  4285. position:absolute;
  4286. left:0px;
  4287. top:0px;
  4288. width:57px;
  4289. height:30px;
  4290. background:inherit;
  4291. background-color:rgba(255, 255, 255, 0);
  4292. border-left:0px;
  4293. border-top:0px;
  4294. border-right:0px;
  4295. border-radius:0px;
  4296. border-bottom-right-radius:0px;
  4297. border-bottom-left-radius:0px;
  4298. filter:drop-shadow(none);
  4299. transition:none;
  4300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4301. font-weight:400;
  4302. font-style:normal;
  4303. font-size:14px;
  4304. line-height:30px;
  4305. }
  4306. #u17741 {
  4307. border-width:0px;
  4308. position:absolute;
  4309. left:1219px;
  4310. top:316px;
  4311. width:57px;
  4312. height:30px;
  4313. display:flex;
  4314. transition:none;
  4315. transform-origin:50% 50%;
  4316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4317. font-weight:400;
  4318. font-style:normal;
  4319. font-size:14px;
  4320. line-height:30px;
  4321. }
  4322. #u17741 .text {
  4323. position:absolute;
  4324. align-self:flex-start;
  4325. padding:0px 0px 0px 0px;
  4326. box-sizing:border-box;
  4327. width:100%;
  4328. }
  4329. #u17741_text {
  4330. border-width:0px;
  4331. white-space:nowrap;
  4332. text-transform:none;
  4333. }
  4334. #u17742_div {
  4335. border-width:0px;
  4336. position:absolute;
  4337. left:0px;
  4338. top:0px;
  4339. width:71px;
  4340. height:30px;
  4341. background:inherit;
  4342. background-color:rgba(255, 255, 255, 0);
  4343. border-left:0px;
  4344. border-top:0px;
  4345. border-right:0px;
  4346. border-radius:0px;
  4347. border-bottom-right-radius:0px;
  4348. border-bottom-left-radius:0px;
  4349. filter:drop-shadow(none);
  4350. transition:none;
  4351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4352. font-weight:400;
  4353. font-style:normal;
  4354. font-size:14px;
  4355. color:#7F7F7F;
  4356. line-height:30px;
  4357. }
  4358. #u17742 {
  4359. border-width:0px;
  4360. position:absolute;
  4361. left:1577px;
  4362. top:316px;
  4363. width:71px;
  4364. height:30px;
  4365. display:flex;
  4366. transition:none;
  4367. transform-origin:50% 50%;
  4368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4369. font-weight:400;
  4370. font-style:normal;
  4371. font-size:14px;
  4372. color:#7F7F7F;
  4373. line-height:30px;
  4374. }
  4375. #u17742 .text {
  4376. position:absolute;
  4377. align-self:flex-start;
  4378. padding:0px 0px 0px 0px;
  4379. box-sizing:border-box;
  4380. width:100%;
  4381. }
  4382. #u17742_text {
  4383. border-width:0px;
  4384. white-space:nowrap;
  4385. text-transform:none;
  4386. }
  4387. #u17743_div {
  4388. border-width:0px;
  4389. position:absolute;
  4390. left:0px;
  4391. top:0px;
  4392. width:57px;
  4393. height:30px;
  4394. background:inherit;
  4395. background-color:rgba(255, 255, 255, 0);
  4396. border-left:0px;
  4397. border-top:0px;
  4398. border-right:0px;
  4399. border-radius:0px;
  4400. border-bottom-right-radius:0px;
  4401. border-bottom-left-radius:0px;
  4402. filter:drop-shadow(none);
  4403. transition:none;
  4404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4405. font-weight:400;
  4406. font-style:normal;
  4407. font-size:14px;
  4408. line-height:30px;
  4409. }
  4410. #u17743 {
  4411. border-width:0px;
  4412. position:absolute;
  4413. left:1657px;
  4414. top:316px;
  4415. width:57px;
  4416. height:30px;
  4417. display:flex;
  4418. transition:none;
  4419. transform-origin:50% 50%;
  4420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4421. font-weight:400;
  4422. font-style:normal;
  4423. font-size:14px;
  4424. line-height:30px;
  4425. }
  4426. #u17743 .text {
  4427. position:absolute;
  4428. align-self:flex-start;
  4429. padding:0px 0px 0px 0px;
  4430. box-sizing:border-box;
  4431. width:100%;
  4432. }
  4433. #u17743_text {
  4434. border-width:0px;
  4435. white-space:nowrap;
  4436. text-transform:none;
  4437. }
  4438. #u17744_div {
  4439. border-width:0px;
  4440. position:absolute;
  4441. left:0px;
  4442. top:0px;
  4443. width:71px;
  4444. height:30px;
  4445. background:inherit;
  4446. background-color:rgba(255, 255, 255, 0);
  4447. border-left:0px;
  4448. border-top:0px;
  4449. border-right:0px;
  4450. border-radius:0px;
  4451. border-bottom-right-radius:0px;
  4452. border-bottom-left-radius:0px;
  4453. filter:drop-shadow(none);
  4454. transition:none;
  4455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4456. font-weight:400;
  4457. font-style:normal;
  4458. font-size:14px;
  4459. color:#7F7F7F;
  4460. line-height:30px;
  4461. }
  4462. #u17744 {
  4463. border-width:0px;
  4464. position:absolute;
  4465. left:1139px;
  4466. top:276px;
  4467. width:71px;
  4468. height:30px;
  4469. display:flex;
  4470. transition:none;
  4471. transform-origin:50% 50%;
  4472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4473. font-weight:400;
  4474. font-style:normal;
  4475. font-size:14px;
  4476. color:#7F7F7F;
  4477. line-height:30px;
  4478. }
  4479. #u17744 .text {
  4480. position:absolute;
  4481. align-self:flex-start;
  4482. padding:0px 0px 0px 0px;
  4483. box-sizing:border-box;
  4484. width:100%;
  4485. }
  4486. #u17744_text {
  4487. border-width:0px;
  4488. white-space:nowrap;
  4489. text-transform:none;
  4490. }
  4491. #u17745_div {
  4492. border-width:0px;
  4493. position:absolute;
  4494. left:0px;
  4495. top:0px;
  4496. width:57px;
  4497. height:30px;
  4498. background:inherit;
  4499. background-color:rgba(255, 255, 255, 0);
  4500. border-left:0px;
  4501. border-top:0px;
  4502. border-right:0px;
  4503. border-radius:0px;
  4504. border-bottom-right-radius:0px;
  4505. border-bottom-left-radius:0px;
  4506. filter:drop-shadow(none);
  4507. transition:none;
  4508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4509. font-weight:400;
  4510. font-style:normal;
  4511. font-size:14px;
  4512. line-height:30px;
  4513. }
  4514. #u17745 {
  4515. border-width:0px;
  4516. position:absolute;
  4517. left:1219px;
  4518. top:276px;
  4519. width:57px;
  4520. height:30px;
  4521. display:flex;
  4522. transition:none;
  4523. transform-origin:50% 50%;
  4524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4525. font-weight:400;
  4526. font-style:normal;
  4527. font-size:14px;
  4528. line-height:30px;
  4529. }
  4530. #u17745 .text {
  4531. position:absolute;
  4532. align-self:flex-start;
  4533. padding:0px 0px 0px 0px;
  4534. box-sizing:border-box;
  4535. width:100%;
  4536. }
  4537. #u17745_text {
  4538. border-width:0px;
  4539. white-space:nowrap;
  4540. text-transform:none;
  4541. }
  4542. #u17746_div {
  4543. border-width:0px;
  4544. position:absolute;
  4545. left:0px;
  4546. top:0px;
  4547. width:85px;
  4548. height:30px;
  4549. background:inherit;
  4550. background-color:rgba(255, 255, 255, 0);
  4551. border-left:0px;
  4552. border-top:0px;
  4553. border-right:0px;
  4554. border-radius:0px;
  4555. border-bottom-right-radius:0px;
  4556. border-bottom-left-radius:0px;
  4557. filter:drop-shadow(none);
  4558. transition:none;
  4559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4560. font-weight:400;
  4561. font-style:normal;
  4562. font-size:14px;
  4563. color:#7F7F7F;
  4564. line-height:30px;
  4565. }
  4566. #u17746 {
  4567. border-width:0px;
  4568. position:absolute;
  4569. left:1578px;
  4570. top:221px;
  4571. width:85px;
  4572. height:30px;
  4573. display:flex;
  4574. transition:none;
  4575. transform-origin:50% 50%;
  4576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4577. font-weight:400;
  4578. font-style:normal;
  4579. font-size:14px;
  4580. color:#7F7F7F;
  4581. line-height:30px;
  4582. }
  4583. #u17746 .text {
  4584. position:absolute;
  4585. align-self:flex-start;
  4586. padding:0px 0px 0px 0px;
  4587. box-sizing:border-box;
  4588. width:100%;
  4589. }
  4590. #u17746_text {
  4591. border-width:0px;
  4592. white-space:nowrap;
  4593. text-transform:none;
  4594. }
  4595. #u17747_div {
  4596. border-width:0px;
  4597. position:absolute;
  4598. left:0px;
  4599. top:0px;
  4600. width:197px;
  4601. height:30px;
  4602. background:inherit;
  4603. background-color:rgba(255, 255, 255, 0);
  4604. border-left:0px;
  4605. border-top:0px;
  4606. border-right:0px;
  4607. border-radius:0px;
  4608. border-bottom-right-radius:0px;
  4609. border-bottom-left-radius:0px;
  4610. filter:drop-shadow(none);
  4611. transition:none;
  4612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4613. font-weight:400;
  4614. font-style:normal;
  4615. font-size:14px;
  4616. line-height:30px;
  4617. }
  4618. #u17747 {
  4619. border-width:0px;
  4620. position:absolute;
  4621. left:1658px;
  4622. top:221px;
  4623. width:197px;
  4624. height:30px;
  4625. display:flex;
  4626. transition:none;
  4627. transform-origin:50% 50%;
  4628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4629. font-weight:400;
  4630. font-style:normal;
  4631. font-size:14px;
  4632. line-height:30px;
  4633. }
  4634. #u17747 .text {
  4635. position:absolute;
  4636. align-self:flex-start;
  4637. padding:0px 0px 0px 0px;
  4638. box-sizing:border-box;
  4639. width:100%;
  4640. }
  4641. #u17747_text {
  4642. border-width:0px;
  4643. white-space:nowrap;
  4644. text-transform:none;
  4645. }
  4646. #u17748_div {
  4647. border-width:0px;
  4648. position:absolute;
  4649. left:0px;
  4650. top:0px;
  4651. width:71px;
  4652. height:30px;
  4653. background:inherit;
  4654. background-color:rgba(255, 255, 255, 0);
  4655. border-left:0px;
  4656. border-top:0px;
  4657. border-right:0px;
  4658. border-radius:0px;
  4659. border-bottom-right-radius:0px;
  4660. border-bottom-left-radius:0px;
  4661. filter:drop-shadow(none);
  4662. transition:none;
  4663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4664. font-weight:400;
  4665. font-style:normal;
  4666. font-size:14px;
  4667. color:#7F7F7F;
  4668. line-height:30px;
  4669. }
  4670. #u17748 {
  4671. border-width:0px;
  4672. position:absolute;
  4673. left:1139px;
  4674. top:476px;
  4675. width:71px;
  4676. height:30px;
  4677. display:flex;
  4678. transition:none;
  4679. transform-origin:50% 50%;
  4680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4681. font-weight:400;
  4682. font-style:normal;
  4683. font-size:14px;
  4684. color:#7F7F7F;
  4685. line-height:30px;
  4686. }
  4687. #u17748 .text {
  4688. position:absolute;
  4689. align-self:flex-start;
  4690. padding:0px 0px 0px 0px;
  4691. box-sizing:border-box;
  4692. width:100%;
  4693. }
  4694. #u17748_text {
  4695. border-width:0px;
  4696. white-space:nowrap;
  4697. text-transform:none;
  4698. }
  4699. #u17749_div {
  4700. border-width:0px;
  4701. position:absolute;
  4702. left:0px;
  4703. top:0px;
  4704. width:337px;
  4705. height:30px;
  4706. background:inherit;
  4707. background-color:rgba(255, 255, 255, 0);
  4708. border-left:0px;
  4709. border-top:0px;
  4710. border-right:0px;
  4711. border-radius:0px;
  4712. border-bottom-right-radius:0px;
  4713. border-bottom-left-radius:0px;
  4714. filter:drop-shadow(none);
  4715. transition:none;
  4716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4717. font-weight:400;
  4718. font-style:normal;
  4719. font-size:14px;
  4720. line-height:30px;
  4721. }
  4722. #u17749 {
  4723. border-width:0px;
  4724. position:absolute;
  4725. left:1219px;
  4726. top:476px;
  4727. width:337px;
  4728. height:30px;
  4729. display:flex;
  4730. transition:none;
  4731. transform-origin:50% 50%;
  4732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4733. font-weight:400;
  4734. font-style:normal;
  4735. font-size:14px;
  4736. line-height:30px;
  4737. }
  4738. #u17749 .text {
  4739. position:absolute;
  4740. align-self:flex-start;
  4741. padding:0px 0px 0px 0px;
  4742. box-sizing:border-box;
  4743. width:100%;
  4744. }
  4745. #u17749_text {
  4746. border-width:0px;
  4747. white-space:nowrap;
  4748. text-transform:none;
  4749. }
  4750. #u17750_div {
  4751. border-width:0px;
  4752. position:absolute;
  4753. left:0px;
  4754. top:0px;
  4755. width:80px;
  4756. height:30px;
  4757. background:inherit;
  4758. background-color:rgba(255, 255, 255, 0);
  4759. border-left:0px;
  4760. border-top:0px;
  4761. border-right:0px;
  4762. border-radius:0px;
  4763. border-bottom-right-radius:0px;
  4764. border-bottom-left-radius:0px;
  4765. filter:drop-shadow(none);
  4766. transition:none;
  4767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4768. font-weight:400;
  4769. font-style:normal;
  4770. font-size:14px;
  4771. color:#7F7F7F;
  4772. line-height:30px;
  4773. }
  4774. #u17750 {
  4775. border-width:0px;
  4776. position:absolute;
  4777. left:1577px;
  4778. top:396px;
  4779. width:80px;
  4780. height:30px;
  4781. display:flex;
  4782. transition:none;
  4783. transform-origin:50% 50%;
  4784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4785. font-weight:400;
  4786. font-style:normal;
  4787. font-size:14px;
  4788. color:#7F7F7F;
  4789. line-height:30px;
  4790. }
  4791. #u17750 .text {
  4792. position:absolute;
  4793. align-self:flex-start;
  4794. padding:0px 0px 0px 0px;
  4795. box-sizing:border-box;
  4796. width:100%;
  4797. }
  4798. #u17750_text {
  4799. border-width:0px;
  4800. word-wrap:break-word;
  4801. text-transform:none;
  4802. }
  4803. #u17751_div {
  4804. border-width:0px;
  4805. position:absolute;
  4806. left:0px;
  4807. top:0px;
  4808. width:82px;
  4809. height:30px;
  4810. background:inherit;
  4811. background-color:rgba(255, 255, 255, 0);
  4812. border-left:0px;
  4813. border-top:0px;
  4814. border-right:0px;
  4815. border-radius:0px;
  4816. border-bottom-right-radius:0px;
  4817. border-bottom-left-radius:0px;
  4818. filter:drop-shadow(none);
  4819. transition:none;
  4820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4821. font-weight:400;
  4822. font-style:normal;
  4823. font-size:14px;
  4824. line-height:30px;
  4825. }
  4826. #u17751 {
  4827. border-width:0px;
  4828. position:absolute;
  4829. left:1657px;
  4830. top:396px;
  4831. width:82px;
  4832. height:30px;
  4833. display:flex;
  4834. transition:none;
  4835. transform-origin:50% 50%;
  4836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4837. font-weight:400;
  4838. font-style:normal;
  4839. font-size:14px;
  4840. line-height:30px;
  4841. }
  4842. #u17751 .text {
  4843. position:absolute;
  4844. align-self:flex-start;
  4845. padding:0px 0px 0px 0px;
  4846. box-sizing:border-box;
  4847. width:100%;
  4848. }
  4849. #u17751_text {
  4850. border-width:0px;
  4851. white-space:nowrap;
  4852. text-transform:none;
  4853. }
  4854. #u17752_div {
  4855. border-width:0px;
  4856. position:absolute;
  4857. left:0px;
  4858. top:0px;
  4859. width:57px;
  4860. height:30px;
  4861. background:inherit;
  4862. background-color:rgba(255, 255, 255, 0);
  4863. border-left:0px;
  4864. border-top:0px;
  4865. border-right:0px;
  4866. border-radius:0px;
  4867. border-bottom-right-radius:0px;
  4868. border-bottom-left-radius:0px;
  4869. filter:drop-shadow(none);
  4870. transition:none;
  4871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4872. font-weight:400;
  4873. font-style:normal;
  4874. font-size:14px;
  4875. color:#7F7F7F;
  4876. line-height:30px;
  4877. }
  4878. #u17752 {
  4879. border-width:0px;
  4880. position:absolute;
  4881. left:1139px;
  4882. top:396px;
  4883. width:57px;
  4884. height:30px;
  4885. display:flex;
  4886. transition:none;
  4887. transform-origin:50% 50%;
  4888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4889. font-weight:400;
  4890. font-style:normal;
  4891. font-size:14px;
  4892. color:#7F7F7F;
  4893. line-height:30px;
  4894. }
  4895. #u17752 .text {
  4896. position:absolute;
  4897. align-self:flex-start;
  4898. padding:0px 0px 0px 0px;
  4899. box-sizing:border-box;
  4900. width:100%;
  4901. }
  4902. #u17752_text {
  4903. border-width:0px;
  4904. white-space:nowrap;
  4905. text-transform:none;
  4906. }
  4907. #u17753_div {
  4908. border-width:0px;
  4909. position:absolute;
  4910. left:0px;
  4911. top:0px;
  4912. width:29px;
  4913. height:30px;
  4914. background:inherit;
  4915. background-color:rgba(255, 255, 255, 0);
  4916. border-left:0px;
  4917. border-top:0px;
  4918. border-right:0px;
  4919. border-radius:0px;
  4920. border-bottom-right-radius:0px;
  4921. border-bottom-left-radius:0px;
  4922. filter:drop-shadow(none);
  4923. transition:none;
  4924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4925. font-weight:400;
  4926. font-style:normal;
  4927. font-size:14px;
  4928. line-height:30px;
  4929. }
  4930. #u17753 {
  4931. border-width:0px;
  4932. position:absolute;
  4933. left:1219px;
  4934. top:396px;
  4935. width:29px;
  4936. height:30px;
  4937. display:flex;
  4938. transition:none;
  4939. transform-origin:50% 50%;
  4940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4941. font-weight:400;
  4942. font-style:normal;
  4943. font-size:14px;
  4944. line-height:30px;
  4945. }
  4946. #u17753 .text {
  4947. position:absolute;
  4948. align-self:flex-start;
  4949. padding:0px 0px 0px 0px;
  4950. box-sizing:border-box;
  4951. width:100%;
  4952. }
  4953. #u17753_text {
  4954. border-width:0px;
  4955. white-space:nowrap;
  4956. text-transform:none;
  4957. }
  4958. #u17754_div {
  4959. border-width:0px;
  4960. position:absolute;
  4961. left:0px;
  4962. top:0px;
  4963. width:80px;
  4964. height:30px;
  4965. background:inherit;
  4966. background-color:rgba(255, 255, 255, 0);
  4967. border-left:0px;
  4968. border-top:0px;
  4969. border-right:0px;
  4970. border-radius:0px;
  4971. border-bottom-right-radius:0px;
  4972. border-bottom-left-radius:0px;
  4973. filter:drop-shadow(none);
  4974. transition:none;
  4975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4976. font-weight:400;
  4977. font-style:normal;
  4978. font-size:14px;
  4979. color:#7F7F7F;
  4980. line-height:30px;
  4981. }
  4982. #u17754 {
  4983. border-width:0px;
  4984. position:absolute;
  4985. left:1577px;
  4986. top:436px;
  4987. width:80px;
  4988. height:30px;
  4989. display:flex;
  4990. transition:none;
  4991. transform-origin:50% 50%;
  4992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4993. font-weight:400;
  4994. font-style:normal;
  4995. font-size:14px;
  4996. color:#7F7F7F;
  4997. line-height:30px;
  4998. }
  4999. #u17754 .text {
  5000. position:absolute;
  5001. align-self:flex-start;
  5002. padding:0px 0px 0px 0px;
  5003. box-sizing:border-box;
  5004. width:100%;
  5005. }
  5006. #u17754_text {
  5007. border-width:0px;
  5008. word-wrap:break-word;
  5009. text-transform:none;
  5010. }
  5011. #u17755_div {
  5012. border-width:0px;
  5013. position:absolute;
  5014. left:0px;
  5015. top:0px;
  5016. width:239px;
  5017. height:30px;
  5018. background:inherit;
  5019. background-color:rgba(255, 255, 255, 0);
  5020. border-left:0px;
  5021. border-top:0px;
  5022. border-right:0px;
  5023. border-radius:0px;
  5024. border-bottom-right-radius:0px;
  5025. border-bottom-left-radius:0px;
  5026. filter:drop-shadow(none);
  5027. transition:none;
  5028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5029. font-weight:400;
  5030. font-style:normal;
  5031. font-size:14px;
  5032. line-height:30px;
  5033. }
  5034. #u17755 {
  5035. border-width:0px;
  5036. position:absolute;
  5037. left:1657px;
  5038. top:436px;
  5039. width:239px;
  5040. height:30px;
  5041. display:flex;
  5042. transition:none;
  5043. transform-origin:50% 50%;
  5044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5045. font-weight:400;
  5046. font-style:normal;
  5047. font-size:14px;
  5048. line-height:30px;
  5049. }
  5050. #u17755 .text {
  5051. position:absolute;
  5052. align-self:flex-start;
  5053. padding:0px 0px 0px 0px;
  5054. box-sizing:border-box;
  5055. width:100%;
  5056. }
  5057. #u17755_text {
  5058. border-width:0px;
  5059. white-space:nowrap;
  5060. text-transform:none;
  5061. }
  5062. #u17756_div {
  5063. border-width:0px;
  5064. position:absolute;
  5065. left:0px;
  5066. top:0px;
  5067. width:85px;
  5068. height:30px;
  5069. background:inherit;
  5070. background-color:rgba(255, 255, 255, 0);
  5071. border-left:0px;
  5072. border-top:0px;
  5073. border-right:0px;
  5074. border-radius:0px;
  5075. border-bottom-right-radius:0px;
  5076. border-bottom-left-radius:0px;
  5077. filter:drop-shadow(none);
  5078. transition:none;
  5079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5080. font-weight:400;
  5081. font-style:normal;
  5082. font-size:14px;
  5083. color:#7F7F7F;
  5084. line-height:30px;
  5085. }
  5086. #u17756 {
  5087. border-width:0px;
  5088. position:absolute;
  5089. left:1139px;
  5090. top:436px;
  5091. width:85px;
  5092. height:30px;
  5093. display:flex;
  5094. transition:none;
  5095. transform-origin:50% 50%;
  5096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5097. font-weight:400;
  5098. font-style:normal;
  5099. font-size:14px;
  5100. color:#7F7F7F;
  5101. line-height:30px;
  5102. }
  5103. #u17756 .text {
  5104. position:absolute;
  5105. align-self:flex-start;
  5106. padding:0px 0px 0px 0px;
  5107. box-sizing:border-box;
  5108. width:100%;
  5109. }
  5110. #u17756_text {
  5111. border-width:0px;
  5112. white-space:nowrap;
  5113. text-transform:none;
  5114. }
  5115. #u17757_div {
  5116. border-width:0px;
  5117. position:absolute;
  5118. left:0px;
  5119. top:0px;
  5120. width:71px;
  5121. height:30px;
  5122. background:inherit;
  5123. background-color:rgba(255, 255, 255, 0);
  5124. border-left:0px;
  5125. border-top:0px;
  5126. border-right:0px;
  5127. border-radius:0px;
  5128. border-bottom-right-radius:0px;
  5129. border-bottom-left-radius:0px;
  5130. filter:drop-shadow(none);
  5131. transition:none;
  5132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5133. font-weight:400;
  5134. font-style:normal;
  5135. font-size:14px;
  5136. line-height:30px;
  5137. }
  5138. #u17757 {
  5139. border-width:0px;
  5140. position:absolute;
  5141. left:1219px;
  5142. top:436px;
  5143. width:71px;
  5144. height:30px;
  5145. display:flex;
  5146. transition:none;
  5147. transform-origin:50% 50%;
  5148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5149. font-weight:400;
  5150. font-style:normal;
  5151. font-size:14px;
  5152. line-height:30px;
  5153. }
  5154. #u17757 .text {
  5155. position:absolute;
  5156. align-self:flex-start;
  5157. padding:0px 0px 0px 0px;
  5158. box-sizing:border-box;
  5159. width:100%;
  5160. }
  5161. #u17757_text {
  5162. border-width:0px;
  5163. white-space:nowrap;
  5164. text-transform:none;
  5165. }
  5166. #u17758_div {
  5167. border-width:0px;
  5168. position:absolute;
  5169. left:0px;
  5170. top:0px;
  5171. width:85px;
  5172. height:30px;
  5173. background:inherit;
  5174. background-color:rgba(255, 255, 255, 0);
  5175. border-left:0px;
  5176. border-top:0px;
  5177. border-right:0px;
  5178. border-radius:0px;
  5179. border-bottom-right-radius:0px;
  5180. border-bottom-left-radius:0px;
  5181. filter:drop-shadow(none);
  5182. transition:none;
  5183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5184. font-weight:400;
  5185. font-style:normal;
  5186. font-size:14px;
  5187. color:#7F7F7F;
  5188. line-height:30px;
  5189. }
  5190. #u17758 {
  5191. border-width:0px;
  5192. position:absolute;
  5193. left:1577px;
  5194. top:536px;
  5195. width:85px;
  5196. height:30px;
  5197. display:flex;
  5198. transition:none;
  5199. transform-origin:50% 50%;
  5200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5201. font-weight:400;
  5202. font-style:normal;
  5203. font-size:14px;
  5204. color:#7F7F7F;
  5205. line-height:30px;
  5206. }
  5207. #u17758 .text {
  5208. position:absolute;
  5209. align-self:flex-start;
  5210. padding:0px 0px 0px 0px;
  5211. box-sizing:border-box;
  5212. width:100%;
  5213. }
  5214. #u17758_text {
  5215. border-width:0px;
  5216. white-space:nowrap;
  5217. text-transform:none;
  5218. }
  5219. #u17759 {
  5220. border-width:0px;
  5221. position:absolute;
  5222. left:1577px;
  5223. top:566px;
  5224. width:153px;
  5225. height:107px;
  5226. display:flex;
  5227. transition:none;
  5228. }
  5229. #u17759 .text {
  5230. position:absolute;
  5231. align-self:center;
  5232. padding:2px 2px 2px 2px;
  5233. box-sizing:border-box;
  5234. width:100%;
  5235. }
  5236. #u17759_img {
  5237. border-width:0px;
  5238. position:absolute;
  5239. left:0px;
  5240. top:0px;
  5241. width:153px;
  5242. height:107px;
  5243. }
  5244. #u17759_text {
  5245. border-width:0px;
  5246. word-wrap:break-word;
  5247. text-transform:none;
  5248. visibility:hidden;
  5249. }
  5250. #u17760 {
  5251. border-width:0px;
  5252. position:absolute;
  5253. left:1740px;
  5254. top:566px;
  5255. width:153px;
  5256. height:107px;
  5257. display:flex;
  5258. transition:none;
  5259. }
  5260. #u17760 .text {
  5261. position:absolute;
  5262. align-self:center;
  5263. padding:2px 2px 2px 2px;
  5264. box-sizing:border-box;
  5265. width:100%;
  5266. }
  5267. #u17760_img {
  5268. border-width:0px;
  5269. position:absolute;
  5270. left:0px;
  5271. top:0px;
  5272. width:153px;
  5273. height:107px;
  5274. }
  5275. #u17760_text {
  5276. border-width:0px;
  5277. word-wrap:break-word;
  5278. text-transform:none;
  5279. visibility:hidden;
  5280. }
  5281. #u17761_div {
  5282. border-width:0px;
  5283. position:absolute;
  5284. left:0px;
  5285. top:0px;
  5286. width:71px;
  5287. height:30px;
  5288. background:inherit;
  5289. background-color:rgba(255, 255, 255, 0);
  5290. border-left:0px;
  5291. border-top:0px;
  5292. border-right:0px;
  5293. border-radius:0px;
  5294. border-bottom-right-radius:0px;
  5295. border-bottom-left-radius:0px;
  5296. filter:drop-shadow(none);
  5297. transition:none;
  5298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5299. font-weight:400;
  5300. font-style:normal;
  5301. font-size:14px;
  5302. color:#7F7F7F;
  5303. line-height:30px;
  5304. }
  5305. #u17761 {
  5306. border-width:0px;
  5307. position:absolute;
  5308. left:1139px;
  5309. top:693px;
  5310. width:71px;
  5311. height:30px;
  5312. display:flex;
  5313. transition:none;
  5314. transform-origin:50% 50%;
  5315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5316. font-weight:400;
  5317. font-style:normal;
  5318. font-size:14px;
  5319. color:#7F7F7F;
  5320. line-height:30px;
  5321. }
  5322. #u17761 .text {
  5323. position:absolute;
  5324. align-self:flex-start;
  5325. padding:0px 0px 0px 0px;
  5326. box-sizing:border-box;
  5327. width:100%;
  5328. }
  5329. #u17761_text {
  5330. border-width:0px;
  5331. white-space:nowrap;
  5332. text-transform:none;
  5333. }
  5334. #u17762 {
  5335. border-width:0px;
  5336. position:absolute;
  5337. left:1139px;
  5338. top:723px;
  5339. width:146px;
  5340. height:102px;
  5341. display:flex;
  5342. transition:none;
  5343. }
  5344. #u17762 .text {
  5345. position:absolute;
  5346. align-self:center;
  5347. padding:2px 2px 2px 2px;
  5348. box-sizing:border-box;
  5349. width:100%;
  5350. }
  5351. #u17762_img {
  5352. border-width:0px;
  5353. position:absolute;
  5354. left:0px;
  5355. top:0px;
  5356. width:146px;
  5357. height:102px;
  5358. }
  5359. #u17762_text {
  5360. border-width:0px;
  5361. word-wrap:break-word;
  5362. text-transform:none;
  5363. visibility:hidden;
  5364. }
  5365. #u17763 {
  5366. border-width:0px;
  5367. position:absolute;
  5368. left:1295px;
  5369. top:723px;
  5370. width:146px;
  5371. height:102px;
  5372. display:flex;
  5373. transition:none;
  5374. }
  5375. #u17763 .text {
  5376. position:absolute;
  5377. align-self:center;
  5378. padding:2px 2px 2px 2px;
  5379. box-sizing:border-box;
  5380. width:100%;
  5381. }
  5382. #u17763_img {
  5383. border-width:0px;
  5384. position:absolute;
  5385. left:0px;
  5386. top:0px;
  5387. width:146px;
  5388. height:102px;
  5389. }
  5390. #u17763_text {
  5391. border-width:0px;
  5392. word-wrap:break-word;
  5393. text-transform:none;
  5394. visibility:hidden;
  5395. }
  5396. #u17764 {
  5397. border-width:0px;
  5398. position:absolute;
  5399. left:1451px;
  5400. top:723px;
  5401. width:146px;
  5402. height:102px;
  5403. display:flex;
  5404. transition:none;
  5405. }
  5406. #u17764 .text {
  5407. position:absolute;
  5408. align-self:center;
  5409. padding:2px 2px 2px 2px;
  5410. box-sizing:border-box;
  5411. width:100%;
  5412. }
  5413. #u17764_img {
  5414. border-width:0px;
  5415. position:absolute;
  5416. left:0px;
  5417. top:0px;
  5418. width:146px;
  5419. height:102px;
  5420. }
  5421. #u17764_text {
  5422. border-width:0px;
  5423. word-wrap:break-word;
  5424. text-transform:none;
  5425. visibility:hidden;
  5426. }
  5427. #u17765_div {
  5428. border-width:0px;
  5429. position:absolute;
  5430. left:0px;
  5431. top:0px;
  5432. width:57px;
  5433. height:30px;
  5434. background:inherit;
  5435. background-color:rgba(255, 255, 255, 0);
  5436. border-left:0px;
  5437. border-top:0px;
  5438. border-right:0px;
  5439. border-radius:0px;
  5440. border-bottom-right-radius:0px;
  5441. border-bottom-left-radius:0px;
  5442. filter:drop-shadow(none);
  5443. transition:none;
  5444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5445. font-weight:400;
  5446. font-style:normal;
  5447. font-size:14px;
  5448. color:#7F7F7F;
  5449. line-height:30px;
  5450. }
  5451. #u17765 {
  5452. border-width:0px;
  5453. position:absolute;
  5454. left:1139px;
  5455. top:536px;
  5456. width:57px;
  5457. height:30px;
  5458. display:flex;
  5459. transition:none;
  5460. transform-origin:50% 50%;
  5461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5462. font-weight:400;
  5463. font-style:normal;
  5464. font-size:14px;
  5465. color:#7F7F7F;
  5466. line-height:30px;
  5467. }
  5468. #u17765 .text {
  5469. position:absolute;
  5470. align-self:flex-start;
  5471. padding:0px 0px 0px 0px;
  5472. box-sizing:border-box;
  5473. width:100%;
  5474. }
  5475. #u17765_text {
  5476. border-width:0px;
  5477. white-space:nowrap;
  5478. text-transform:none;
  5479. }
  5480. #u17766 {
  5481. border-width:0px;
  5482. position:absolute;
  5483. left:1139px;
  5484. top:566px;
  5485. width:153px;
  5486. height:107px;
  5487. display:flex;
  5488. transition:none;
  5489. }
  5490. #u17766 .text {
  5491. position:absolute;
  5492. align-self:center;
  5493. padding:2px 2px 2px 2px;
  5494. box-sizing:border-box;
  5495. width:100%;
  5496. }
  5497. #u17766_img {
  5498. border-width:0px;
  5499. position:absolute;
  5500. left:0px;
  5501. top:0px;
  5502. width:153px;
  5503. height:107px;
  5504. }
  5505. #u17766_text {
  5506. border-width:0px;
  5507. word-wrap:break-word;
  5508. text-transform:none;
  5509. visibility:hidden;
  5510. }
  5511. #u17767 {
  5512. border-width:0px;
  5513. position:absolute;
  5514. left:0px;
  5515. top:0px;
  5516. width:0px;
  5517. height:0px;
  5518. }
  5519. #u17768_div {
  5520. border-width:0px;
  5521. position:absolute;
  5522. left:0px;
  5523. top:0px;
  5524. width:360px;
  5525. height:300px;
  5526. background:inherit;
  5527. background-color:rgba(255, 255, 255, 1);
  5528. border-radius:6px;
  5529. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  5530. transition:none;
  5531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5532. font-weight:400;
  5533. font-style:normal;
  5534. font-size:12px;
  5535. color:#FFFFFF;
  5536. }
  5537. #u17768 {
  5538. border-width:0px;
  5539. position:absolute;
  5540. left:1627px;
  5541. top:874px;
  5542. width:360px;
  5543. height:300px;
  5544. display:flex;
  5545. transition:none;
  5546. transform-origin:50% 50%;
  5547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5548. font-weight:400;
  5549. font-style:normal;
  5550. font-size:12px;
  5551. color:#FFFFFF;
  5552. }
  5553. #u17768 .text {
  5554. position:absolute;
  5555. align-self:center;
  5556. padding:2px 2px 2px 2px;
  5557. box-sizing:border-box;
  5558. width:100%;
  5559. }
  5560. #u17768_text {
  5561. border-width:0px;
  5562. word-wrap:break-word;
  5563. text-transform:none;
  5564. visibility:hidden;
  5565. }
  5566. #u17769_div {
  5567. border-width:0px;
  5568. position:absolute;
  5569. left:0px;
  5570. top:0px;
  5571. width:37px;
  5572. height:25px;
  5573. background:inherit;
  5574. background-color:rgba(255, 255, 255, 0);
  5575. border-radius:0px;
  5576. filter:drop-shadow(none);
  5577. transition:none;
  5578. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5579. font-weight:500;
  5580. font-style:normal;
  5581. font-size:18px;
  5582. }
  5583. #u17769 {
  5584. border-width:0px;
  5585. position:absolute;
  5586. left:1650px;
  5587. top:890px;
  5588. width:37px;
  5589. height:25px;
  5590. display:flex;
  5591. transition:none;
  5592. transform-origin:50% 50%;
  5593. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5594. font-weight:500;
  5595. font-style:normal;
  5596. font-size:18px;
  5597. }
  5598. #u17769 .text {
  5599. position:absolute;
  5600. align-self:flex-start;
  5601. padding:0px 0px 0px 0px;
  5602. box-sizing:border-box;
  5603. width:100%;
  5604. }
  5605. #u17769_text {
  5606. border-width:0px;
  5607. white-space:nowrap;
  5608. text-transform:none;
  5609. }
  5610. #u17770 {
  5611. border-width:0px;
  5612. position:absolute;
  5613. left:1964px;
  5614. top:886px;
  5615. width:8px;
  5616. height:8px;
  5617. display:flex;
  5618. opacity:0.5;
  5619. transition:none;
  5620. }
  5621. #u17770 .text {
  5622. position:absolute;
  5623. align-self:center;
  5624. padding:2px 2px 2px 2px;
  5625. box-sizing:border-box;
  5626. width:100%;
  5627. }
  5628. #u17770_img {
  5629. border-width:0px;
  5630. position:absolute;
  5631. left:0px;
  5632. top:0px;
  5633. width:8px;
  5634. height:8px;
  5635. }
  5636. #u17770_text {
  5637. border-width:0px;
  5638. word-wrap:break-word;
  5639. text-transform:none;
  5640. visibility:hidden;
  5641. }
  5642. #u17771_div {
  5643. border-width:0px;
  5644. position:absolute;
  5645. left:0px;
  5646. top:0px;
  5647. width:80px;
  5648. height:30px;
  5649. background:inherit;
  5650. background-color:rgba(51, 153, 255, 1);
  5651. border-radius:4px;
  5652. filter:drop-shadow(none);
  5653. transition:none;
  5654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5655. font-weight:400;
  5656. font-style:normal;
  5657. font-size:14px;
  5658. color:#FFFFFF;
  5659. }
  5660. #u17771 {
  5661. border-width:0px;
  5662. position:absolute;
  5663. left:1892px;
  5664. top:1124px;
  5665. width:80px;
  5666. height:30px;
  5667. display:flex;
  5668. transition:none;
  5669. transform-origin:50% 50%;
  5670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5671. font-weight:400;
  5672. font-style:normal;
  5673. font-size:14px;
  5674. color:#FFFFFF;
  5675. }
  5676. #u17771 .text {
  5677. position:absolute;
  5678. align-self:center;
  5679. padding:8px 0px 8px 0px;
  5680. box-sizing:border-box;
  5681. width:100%;
  5682. }
  5683. #u17771_text {
  5684. border-width:0px;
  5685. word-wrap:break-word;
  5686. text-transform:none;
  5687. }
  5688. #u17772 {
  5689. border-width:0px;
  5690. position:absolute;
  5691. left:0px;
  5692. top:0px;
  5693. width:0px;
  5694. height:0px;
  5695. }
  5696. #u17773_div {
  5697. border-width:0px;
  5698. position:absolute;
  5699. left:0px;
  5700. top:0px;
  5701. width:322px;
  5702. height:80px;
  5703. background:inherit;
  5704. background-color:rgba(255, 255, 255, 1);
  5705. box-sizing:border-box;
  5706. border-width:1px;
  5707. border-style:solid;
  5708. border-color:rgba(51, 153, 255, 1);
  5709. border-radius:2px;
  5710. filter:drop-shadow(none);
  5711. transition:none;
  5712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5713. font-weight:400;
  5714. font-style:normal;
  5715. font-size:12px;
  5716. color:#FFFFFF;
  5717. text-align:left;
  5718. }
  5719. #u17773 {
  5720. border-width:0px;
  5721. position:absolute;
  5722. left:1650px;
  5723. top:1024px;
  5724. width:322px;
  5725. height:80px;
  5726. display:flex;
  5727. transition:none;
  5728. transform-origin:50% 50%;
  5729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5730. font-weight:400;
  5731. font-style:normal;
  5732. font-size:12px;
  5733. color:#FFFFFF;
  5734. text-align:left;
  5735. }
  5736. #u17773 .text {
  5737. position:absolute;
  5738. align-self:center;
  5739. padding:8px 15px 8px 15px;
  5740. box-sizing:border-box;
  5741. width:100%;
  5742. }
  5743. #u17773_text {
  5744. border-width:0px;
  5745. word-wrap:break-word;
  5746. text-transform:none;
  5747. }
  5748. #u17774_div {
  5749. border-width:0px;
  5750. position:absolute;
  5751. left:0px;
  5752. top:0px;
  5753. width:99px;
  5754. height:20px;
  5755. background:inherit;
  5756. background-color:rgba(255, 255, 255, 0);
  5757. border-radius:0px;
  5758. filter:drop-shadow(none);
  5759. transition:none;
  5760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5761. font-weight:400;
  5762. font-style:normal;
  5763. color:#D7D7D7;
  5764. }
  5765. #u17774 {
  5766. border-width:0px;
  5767. position:absolute;
  5768. left:1661px;
  5769. top:1035px;
  5770. width:99px;
  5771. height:20px;
  5772. display:flex;
  5773. transition:none;
  5774. transform-origin:50% 50%;
  5775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5776. font-weight:400;
  5777. font-style:normal;
  5778. color:#D7D7D7;
  5779. }
  5780. #u17774 .text {
  5781. position:absolute;
  5782. align-self:flex-start;
  5783. padding:0px 0px 0px 0px;
  5784. box-sizing:border-box;
  5785. width:100%;
  5786. }
  5787. #u17774_text {
  5788. border-width:0px;
  5789. white-space:nowrap;
  5790. text-transform:none;
  5791. }
  5792. #u17775_div {
  5793. border-width:0px;
  5794. position:absolute;
  5795. left:0px;
  5796. top:0px;
  5797. width:60px;
  5798. height:30px;
  5799. background:inherit;
  5800. background-color:rgba(255, 255, 255, 1);
  5801. box-sizing:border-box;
  5802. border-width:1px;
  5803. border-style:solid;
  5804. border-color:rgba(170, 170, 170, 1);
  5805. border-radius:4px;
  5806. filter:drop-shadow(none);
  5807. transition:none;
  5808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5809. font-weight:400;
  5810. font-style:normal;
  5811. font-size:14px;
  5812. }
  5813. #u17775 {
  5814. border-width:0px;
  5815. position:absolute;
  5816. left:1822px;
  5817. top:1124px;
  5818. width:60px;
  5819. height:30px;
  5820. display:flex;
  5821. transition:none;
  5822. transform-origin:50% 50%;
  5823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5824. font-weight:400;
  5825. font-style:normal;
  5826. font-size:14px;
  5827. }
  5828. #u17775 .text {
  5829. position:absolute;
  5830. align-self:center;
  5831. padding:2px 2px 2px 2px;
  5832. box-sizing:border-box;
  5833. width:100%;
  5834. }
  5835. #u17775_text {
  5836. border-width:0px;
  5837. word-wrap:break-word;
  5838. text-transform:none;
  5839. }
  5840. #u17776_div {
  5841. border-width:0px;
  5842. position:absolute;
  5843. left:0px;
  5844. top:0px;
  5845. width:319px;
  5846. height:75px;
  5847. background:inherit;
  5848. background-color:rgba(255, 255, 255, 0);
  5849. border-radius:0px;
  5850. filter:drop-shadow(none);
  5851. transition:none;
  5852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5853. font-weight:400;
  5854. font-style:normal;
  5855. font-size:14px;
  5856. line-height:25px;
  5857. }
  5858. #u17776 {
  5859. border-width:0px;
  5860. position:absolute;
  5861. left:1650px;
  5862. top:929px;
  5863. width:319px;
  5864. height:75px;
  5865. display:flex;
  5866. transition:none;
  5867. transform-origin:50% 50%;
  5868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5869. font-weight:400;
  5870. font-style:normal;
  5871. font-size:14px;
  5872. line-height:25px;
  5873. }
  5874. #u17776 .text {
  5875. position:absolute;
  5876. align-self:flex-start;
  5877. padding:0px 0px 0px 0px;
  5878. box-sizing:border-box;
  5879. width:100%;
  5880. }
  5881. #u17776_text {
  5882. border-width:0px;
  5883. word-wrap:break-word;
  5884. text-transform:none;
  5885. }
  5886. #u17777 {
  5887. border-width:0px;
  5888. position:absolute;
  5889. left:0px;
  5890. top:0px;
  5891. width:0px;
  5892. height:0px;
  5893. }
  5894. #u17778 {
  5895. border-width:0px;
  5896. position:absolute;
  5897. left:0px;
  5898. top:0px;
  5899. width:0px;
  5900. height:0px;
  5901. }
  5902. #u17779_div {
  5903. border-width:0px;
  5904. position:absolute;
  5905. left:0px;
  5906. top:0px;
  5907. width:380px;
  5908. height:180px;
  5909. background:inherit;
  5910. background-color:rgba(255, 255, 255, 1);
  5911. box-sizing:border-box;
  5912. border-width:1px;
  5913. border-style:solid;
  5914. border-color:rgba(204, 204, 204, 1);
  5915. border-radius:4px;
  5916. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  5917. transition:none;
  5918. font-family:"Microsoft YaHei", sans-serif;
  5919. font-weight:400;
  5920. font-style:normal;
  5921. }
  5922. #u17779 {
  5923. border-width:0px;
  5924. position:absolute;
  5925. left:531px;
  5926. top:1384px;
  5927. width:380px;
  5928. height:180px;
  5929. display:flex;
  5930. transition:none;
  5931. transform-origin:50% 50%;
  5932. font-family:"Microsoft YaHei", sans-serif;
  5933. font-weight:400;
  5934. font-style:normal;
  5935. }
  5936. #u17779 .text {
  5937. position:absolute;
  5938. align-self:center;
  5939. padding:2px 2px 2px 2px;
  5940. box-sizing:border-box;
  5941. width:100%;
  5942. }
  5943. #u17779_text {
  5944. border-width:0px;
  5945. word-wrap:break-word;
  5946. text-transform:none;
  5947. visibility:hidden;
  5948. }
  5949. #u17780_div {
  5950. border-width:0px;
  5951. position:absolute;
  5952. left:0px;
  5953. top:0px;
  5954. width:299px;
  5955. height:44px;
  5956. background:inherit;
  5957. background-color:rgba(255, 255, 255, 0);
  5958. border-radius:0px;
  5959. filter:drop-shadow(none);
  5960. transition:none;
  5961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5962. font-weight:400;
  5963. font-style:normal;
  5964. font-size:14px;
  5965. color:#666666;
  5966. line-height:22px;
  5967. }
  5968. #u17780 {
  5969. border-width:0px;
  5970. position:absolute;
  5971. left:594px;
  5972. top:1443px;
  5973. width:299px;
  5974. height:44px;
  5975. display:flex;
  5976. transition:none;
  5977. transform-origin:50% 50%;
  5978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5979. font-weight:400;
  5980. font-style:normal;
  5981. font-size:14px;
  5982. color:#666666;
  5983. line-height:22px;
  5984. }
  5985. #u17780 .text {
  5986. position:absolute;
  5987. align-self:flex-start;
  5988. padding:0px 0px 0px 0px;
  5989. box-sizing:border-box;
  5990. width:100%;
  5991. }
  5992. #u17780_text {
  5993. border-width:0px;
  5994. word-wrap:break-word;
  5995. text-transform:none;
  5996. }
  5997. #u17781_div {
  5998. border-width:0px;
  5999. position:absolute;
  6000. left:0px;
  6001. top:0px;
  6002. width:235px;
  6003. height:21px;
  6004. background:inherit;
  6005. background-color:rgba(255, 255, 255, 0);
  6006. border-radius:0px;
  6007. filter:drop-shadow(none);
  6008. transition:none;
  6009. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6010. font-weight:650;
  6011. font-style:normal;
  6012. font-size:18px;
  6013. color:#000000;
  6014. line-height:22px;
  6015. }
  6016. #u17781 {
  6017. border-width:0px;
  6018. position:absolute;
  6019. left:590px;
  6020. top:1412px;
  6021. width:235px;
  6022. height:21px;
  6023. display:flex;
  6024. transition:none;
  6025. transform-origin:50% 50%;
  6026. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6027. font-weight:650;
  6028. font-style:normal;
  6029. font-size:18px;
  6030. color:#000000;
  6031. line-height:22px;
  6032. }
  6033. #u17781 .text {
  6034. position:absolute;
  6035. align-self:flex-start;
  6036. padding:0px 0px 0px 0px;
  6037. box-sizing:border-box;
  6038. width:100%;
  6039. }
  6040. #u17781_text {
  6041. border-width:0px;
  6042. white-space:nowrap;
  6043. text-transform:none;
  6044. }
  6045. #u17782_div {
  6046. border-width:0px;
  6047. position:absolute;
  6048. left:0px;
  6049. top:0px;
  6050. width:89px;
  6051. height:30px;
  6052. background:inherit;
  6053. background-color:rgba(24, 144, 255, 1);
  6054. border-radius:4px;
  6055. filter:drop-shadow(none);
  6056. transition:none;
  6057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6058. font-weight:400;
  6059. font-style:normal;
  6060. font-size:14px;
  6061. color:#FFFFFF;
  6062. }
  6063. #u17782 {
  6064. border-width:0px;
  6065. position:absolute;
  6066. left:799px;
  6067. top:1509px;
  6068. width:89px;
  6069. height:30px;
  6070. display:flex;
  6071. transition:none;
  6072. transform-origin:50% 50%;
  6073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6074. font-weight:400;
  6075. font-style:normal;
  6076. font-size:14px;
  6077. color:#FFFFFF;
  6078. }
  6079. #u17782 .text {
  6080. position:absolute;
  6081. align-self:center;
  6082. padding:2px 16px 2px 16px;
  6083. box-sizing:border-box;
  6084. width:100%;
  6085. }
  6086. #u17782_text {
  6087. border-width:0px;
  6088. white-space:nowrap;
  6089. text-transform:none;
  6090. }
  6091. #u17783_div {
  6092. border-width:0px;
  6093. position:absolute;
  6094. left:0px;
  6095. top:0px;
  6096. width:66px;
  6097. height:30px;
  6098. background:inherit;
  6099. background-color:rgba(255, 255, 255, 1);
  6100. box-sizing:border-box;
  6101. border-width:1px;
  6102. border-style:solid;
  6103. border-color:rgba(217, 217, 217, 1);
  6104. border-radius:4px;
  6105. filter:drop-shadow(none);
  6106. transition:none;
  6107. font-family:"Microsoft YaHei", sans-serif;
  6108. font-weight:400;
  6109. font-style:normal;
  6110. font-size:14px;
  6111. color:rgba(0, 0, 0, 0.6470588235294118);
  6112. line-height:21px;
  6113. }
  6114. #u17783 {
  6115. border-width:0px;
  6116. position:absolute;
  6117. left:723px;
  6118. top:1509px;
  6119. width:66px;
  6120. height:30px;
  6121. display:flex;
  6122. transition:none;
  6123. transform-origin:50% 50%;
  6124. font-family:"Microsoft YaHei", sans-serif;
  6125. font-weight:400;
  6126. font-style:normal;
  6127. font-size:14px;
  6128. color:rgba(0, 0, 0, 0.6470588235294118);
  6129. line-height:21px;
  6130. }
  6131. #u17783 .text {
  6132. position:absolute;
  6133. align-self:center;
  6134. padding:2px 16px 2px 16px;
  6135. box-sizing:border-box;
  6136. width:100%;
  6137. }
  6138. #u17783_text {
  6139. border-width:0px;
  6140. white-space:nowrap;
  6141. text-transform:none;
  6142. }
  6143. #u17784 {
  6144. border-width:0px;
  6145. position:absolute;
  6146. left:560px;
  6147. top:1413px;
  6148. width:20px;
  6149. height:20px;
  6150. display:flex;
  6151. transition:none;
  6152. }
  6153. #u17784 .text {
  6154. position:absolute;
  6155. align-self:center;
  6156. padding:2px 2px 2px 2px;
  6157. box-sizing:border-box;
  6158. width:100%;
  6159. }
  6160. #u17784_img {
  6161. border-width:0px;
  6162. position:absolute;
  6163. left:0px;
  6164. top:0px;
  6165. width:20px;
  6166. height:20px;
  6167. }
  6168. #u17784_text {
  6169. border-width:0px;
  6170. word-wrap:break-word;
  6171. text-transform:none;
  6172. visibility:hidden;
  6173. }
  6174. #u17785 {
  6175. border-width:0px;
  6176. position:absolute;
  6177. left:0px;
  6178. top:0px;
  6179. width:0px;
  6180. height:0px;
  6181. }
  6182. #u17786 {
  6183. border-width:0px;
  6184. position:absolute;
  6185. left:0px;
  6186. top:0px;
  6187. width:0px;
  6188. height:0px;
  6189. }
  6190. #u17787_div {
  6191. border-width:0px;
  6192. position:absolute;
  6193. left:0px;
  6194. top:0px;
  6195. width:380px;
  6196. height:200px;
  6197. background:inherit;
  6198. background-color:rgba(255, 255, 255, 1);
  6199. box-sizing:border-box;
  6200. border-width:1px;
  6201. border-style:solid;
  6202. border-color:rgba(204, 204, 204, 1);
  6203. border-radius:4px;
  6204. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  6205. transition:none;
  6206. font-family:"Microsoft YaHei", sans-serif;
  6207. font-weight:400;
  6208. font-style:normal;
  6209. }
  6210. #u17787 {
  6211. border-width:0px;
  6212. position:absolute;
  6213. left:2013px;
  6214. top:874px;
  6215. width:380px;
  6216. height:200px;
  6217. display:flex;
  6218. transition:none;
  6219. transform-origin:50% 50%;
  6220. font-family:"Microsoft YaHei", sans-serif;
  6221. font-weight:400;
  6222. font-style:normal;
  6223. }
  6224. #u17787 .text {
  6225. position:absolute;
  6226. align-self:center;
  6227. padding:2px 2px 2px 2px;
  6228. box-sizing:border-box;
  6229. width:100%;
  6230. }
  6231. #u17787_text {
  6232. border-width:0px;
  6233. word-wrap:break-word;
  6234. text-transform:none;
  6235. visibility:hidden;
  6236. }
  6237. #u17788_div {
  6238. border-width:0px;
  6239. position:absolute;
  6240. left:0px;
  6241. top:0px;
  6242. width:299px;
  6243. height:66px;
  6244. background:inherit;
  6245. background-color:rgba(255, 255, 255, 0);
  6246. border-radius:0px;
  6247. filter:drop-shadow(none);
  6248. transition:none;
  6249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6250. font-weight:400;
  6251. font-style:normal;
  6252. font-size:14px;
  6253. color:#666666;
  6254. line-height:22px;
  6255. }
  6256. #u17788 {
  6257. border-width:0px;
  6258. position:absolute;
  6259. left:2076px;
  6260. top:933px;
  6261. width:299px;
  6262. height:66px;
  6263. display:flex;
  6264. transition:none;
  6265. transform-origin:50% 50%;
  6266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6267. font-weight:400;
  6268. font-style:normal;
  6269. font-size:14px;
  6270. color:#666666;
  6271. line-height:22px;
  6272. }
  6273. #u17788 .text {
  6274. position:absolute;
  6275. align-self:flex-start;
  6276. padding:0px 0px 0px 0px;
  6277. box-sizing:border-box;
  6278. width:100%;
  6279. }
  6280. #u17788_text {
  6281. border-width:0px;
  6282. word-wrap:break-word;
  6283. text-transform:none;
  6284. }
  6285. #u17789_div {
  6286. border-width:0px;
  6287. position:absolute;
  6288. left:0px;
  6289. top:0px;
  6290. width:235px;
  6291. height:21px;
  6292. background:inherit;
  6293. background-color:rgba(255, 255, 255, 0);
  6294. border-radius:0px;
  6295. filter:drop-shadow(none);
  6296. transition:none;
  6297. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6298. font-weight:650;
  6299. font-style:normal;
  6300. font-size:18px;
  6301. color:#000000;
  6302. line-height:22px;
  6303. }
  6304. #u17789 {
  6305. border-width:0px;
  6306. position:absolute;
  6307. left:2072px;
  6308. top:902px;
  6309. width:235px;
  6310. height:21px;
  6311. display:flex;
  6312. transition:none;
  6313. transform-origin:50% 50%;
  6314. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6315. font-weight:650;
  6316. font-style:normal;
  6317. font-size:18px;
  6318. color:#000000;
  6319. line-height:22px;
  6320. }
  6321. #u17789 .text {
  6322. position:absolute;
  6323. align-self:flex-start;
  6324. padding:0px 0px 0px 0px;
  6325. box-sizing:border-box;
  6326. width:100%;
  6327. }
  6328. #u17789_text {
  6329. border-width:0px;
  6330. white-space:nowrap;
  6331. text-transform:none;
  6332. }
  6333. #u17790_div {
  6334. border-width:0px;
  6335. position:absolute;
  6336. left:0px;
  6337. top:0px;
  6338. width:89px;
  6339. height:30px;
  6340. background:inherit;
  6341. background-color:rgba(24, 144, 255, 1);
  6342. border-radius:4px;
  6343. filter:drop-shadow(none);
  6344. transition:none;
  6345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6346. font-weight:400;
  6347. font-style:normal;
  6348. font-size:14px;
  6349. color:#FFFFFF;
  6350. }
  6351. #u17790 {
  6352. border-width:0px;
  6353. position:absolute;
  6354. left:2281px;
  6355. top:1019px;
  6356. width:89px;
  6357. height:30px;
  6358. display:flex;
  6359. transition:none;
  6360. transform-origin:50% 50%;
  6361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6362. font-weight:400;
  6363. font-style:normal;
  6364. font-size:14px;
  6365. color:#FFFFFF;
  6366. }
  6367. #u17790 .text {
  6368. position:absolute;
  6369. align-self:center;
  6370. padding:2px 16px 2px 16px;
  6371. box-sizing:border-box;
  6372. width:100%;
  6373. }
  6374. #u17790_text {
  6375. border-width:0px;
  6376. white-space:nowrap;
  6377. text-transform:none;
  6378. }
  6379. #u17791_div {
  6380. border-width:0px;
  6381. position:absolute;
  6382. left:0px;
  6383. top:0px;
  6384. width:66px;
  6385. height:30px;
  6386. background:inherit;
  6387. background-color:rgba(255, 255, 255, 1);
  6388. box-sizing:border-box;
  6389. border-width:1px;
  6390. border-style:solid;
  6391. border-color:rgba(217, 217, 217, 1);
  6392. border-radius:4px;
  6393. filter:drop-shadow(none);
  6394. transition:none;
  6395. font-family:"Microsoft YaHei", sans-serif;
  6396. font-weight:400;
  6397. font-style:normal;
  6398. font-size:14px;
  6399. color:rgba(0, 0, 0, 0.6470588235294118);
  6400. line-height:21px;
  6401. }
  6402. #u17791 {
  6403. border-width:0px;
  6404. position:absolute;
  6405. left:2205px;
  6406. top:1019px;
  6407. width:66px;
  6408. height:30px;
  6409. display:flex;
  6410. transition:none;
  6411. transform-origin:50% 50%;
  6412. font-family:"Microsoft YaHei", sans-serif;
  6413. font-weight:400;
  6414. font-style:normal;
  6415. font-size:14px;
  6416. color:rgba(0, 0, 0, 0.6470588235294118);
  6417. line-height:21px;
  6418. }
  6419. #u17791 .text {
  6420. position:absolute;
  6421. align-self:center;
  6422. padding:2px 16px 2px 16px;
  6423. box-sizing:border-box;
  6424. width:100%;
  6425. }
  6426. #u17791_text {
  6427. border-width:0px;
  6428. white-space:nowrap;
  6429. text-transform:none;
  6430. }
  6431. #u17792 {
  6432. border-width:0px;
  6433. position:absolute;
  6434. left:2042px;
  6435. top:903px;
  6436. width:20px;
  6437. height:20px;
  6438. display:flex;
  6439. transition:none;
  6440. }
  6441. #u17792 .text {
  6442. position:absolute;
  6443. align-self:center;
  6444. padding:2px 2px 2px 2px;
  6445. box-sizing:border-box;
  6446. width:100%;
  6447. }
  6448. #u17792_img {
  6449. border-width:0px;
  6450. position:absolute;
  6451. left:0px;
  6452. top:0px;
  6453. width:20px;
  6454. height:20px;
  6455. }
  6456. #u17792_text {
  6457. border-width:0px;
  6458. word-wrap:break-word;
  6459. text-transform:none;
  6460. visibility:hidden;
  6461. }