styles.css 121 KB

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