styles.css 116 KB

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