styles.css 120 KB

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