styles.css 261 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-48px;
  6. width:5162px;
  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. #u27753 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u27754_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1000px;
  33. height:1231px;
  34. background:inherit;
  35. background-color:rgba(242, 242, 242, 1);
  36. box-sizing:border-box;
  37. border-width:1px;
  38. border-style:solid;
  39. border-color:rgba(215, 215, 215, 1);
  40. border-radius:0px;
  41. -moz-box-shadow:none;
  42. -webkit-box-shadow:none;
  43. box-shadow:none;
  44. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  45. font-weight:400;
  46. font-style:normal;
  47. font-size:14px;
  48. color:#AAAAAA;
  49. text-align:center;
  50. line-height:30px;
  51. }
  52. #u27754 {
  53. border-width:0px;
  54. position:absolute;
  55. left:48px;
  56. top:40px;
  57. width:1000px;
  58. height:1231px;
  59. display:flex;
  60. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  61. font-weight:400;
  62. font-style:normal;
  63. font-size:14px;
  64. color:#AAAAAA;
  65. text-align:center;
  66. line-height:30px;
  67. }
  68. #u27754 .text {
  69. position:absolute;
  70. align-self:center;
  71. padding:5px 10px 5px 10px;
  72. box-sizing:border-box;
  73. width:100%;
  74. }
  75. #u27754_text {
  76. border-width:0px;
  77. word-wrap:break-word;
  78. text-transform:none;
  79. visibility:hidden;
  80. }
  81. #u27755_div {
  82. border-width:0px;
  83. position:absolute;
  84. left:0px;
  85. top:0px;
  86. width:1000px;
  87. height:200px;
  88. background:inherit;
  89. background-color:rgba(255, 255, 255, 1);
  90. box-sizing:border-box;
  91. border-width:1px;
  92. border-style:solid;
  93. border-color:rgba(215, 215, 215, 1);
  94. border-radius:0px;
  95. -moz-box-shadow:none;
  96. -webkit-box-shadow:none;
  97. box-shadow:none;
  98. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  99. font-weight:400;
  100. font-style:normal;
  101. font-size:14px;
  102. color:#AAAAAA;
  103. text-align:center;
  104. line-height:30px;
  105. }
  106. #u27755 {
  107. border-width:0px;
  108. position:absolute;
  109. left:48px;
  110. top:40px;
  111. width:1000px;
  112. height:200px;
  113. display:flex;
  114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  115. font-weight:400;
  116. font-style:normal;
  117. font-size:14px;
  118. color:#AAAAAA;
  119. text-align:center;
  120. line-height:30px;
  121. }
  122. #u27755 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:5px 10px 5px 10px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u27755_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u27756_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:83px;
  141. height:35px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 0);
  144. border:none;
  145. border-top:0px;
  146. border-right:0px;
  147. border-bottom:0px;
  148. border-radius:0px;
  149. border-top-left-radius:0px;
  150. border-bottom-left-radius:0px;
  151. -moz-box-shadow:none;
  152. -webkit-box-shadow:none;
  153. box-shadow:none;
  154. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  155. font-weight:500;
  156. font-style:normal;
  157. font-size:18px;
  158. }
  159. #u27756 {
  160. border-width:0px;
  161. position:absolute;
  162. left:68px;
  163. top:58px;
  164. width:83px;
  165. height:35px;
  166. display:flex;
  167. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  168. font-weight:500;
  169. font-style:normal;
  170. font-size:18px;
  171. }
  172. #u27756 .text {
  173. position:absolute;
  174. align-self:center;
  175. padding:5px 10px 5px 0px;
  176. box-sizing:border-box;
  177. width:100%;
  178. }
  179. #u27756_text {
  180. border-width:0px;
  181. white-space:nowrap;
  182. text-transform:none;
  183. }
  184. #u27757 {
  185. border-width:0px;
  186. position:absolute;
  187. left:0px;
  188. top:0px;
  189. width:0px;
  190. height:0px;
  191. }
  192. #u27758_div {
  193. border-width:0px;
  194. position:absolute;
  195. left:0px;
  196. top:0px;
  197. width:40px;
  198. height:40px;
  199. background:inherit;
  200. background-color:rgba(255, 255, 255, 0);
  201. border:none;
  202. border-top:0px;
  203. border-right:0px;
  204. border-bottom:0px;
  205. border-radius:0px;
  206. border-top-left-radius:0px;
  207. border-bottom-left-radius:0px;
  208. -moz-box-shadow:none;
  209. -webkit-box-shadow:none;
  210. box-shadow:none;
  211. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  212. font-weight:500;
  213. font-style:normal;
  214. font-size:14px;
  215. text-align:center;
  216. }
  217. #u27758 {
  218. border-width:0px;
  219. position:absolute;
  220. left:1008px;
  221. top:40px;
  222. width:40px;
  223. height:40px;
  224. display:flex;
  225. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  226. font-weight:500;
  227. font-style:normal;
  228. font-size:14px;
  229. text-align:center;
  230. }
  231. #u27758 .text {
  232. position:absolute;
  233. align-self:center;
  234. padding:5px 10px 5px 0px;
  235. box-sizing:border-box;
  236. width:100%;
  237. }
  238. #u27758_text {
  239. border-width:0px;
  240. word-wrap:break-word;
  241. text-transform:none;
  242. }
  243. #u27759_img {
  244. border-width:0px;
  245. position:absolute;
  246. left:0px;
  247. top:0px;
  248. width:13px;
  249. height:13px;
  250. }
  251. #u27759 {
  252. border-width:0px;
  253. position:absolute;
  254. left:996px;
  255. top:56px;
  256. width:13px;
  257. height:13px;
  258. display:flex;
  259. font-size:14px;
  260. }
  261. #u27759 .text {
  262. position:absolute;
  263. align-self:center;
  264. padding:2px 2px 2px 2px;
  265. box-sizing:border-box;
  266. width:100%;
  267. }
  268. #u27759_text {
  269. border-width:0px;
  270. word-wrap:break-word;
  271. text-transform:none;
  272. visibility:hidden;
  273. }
  274. #u27760_div {
  275. border-width:0px;
  276. position:absolute;
  277. left:0px;
  278. top:0px;
  279. width:338px;
  280. height:43px;
  281. background:inherit;
  282. background-color:rgba(255, 255, 255, 0);
  283. border:none;
  284. border-top:0px;
  285. border-right:0px;
  286. border-bottom:0px;
  287. border-radius:0px;
  288. border-top-left-radius:0px;
  289. border-bottom-left-radius:0px;
  290. -moz-box-shadow:none;
  291. -webkit-box-shadow:none;
  292. box-shadow:none;
  293. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  294. font-weight:500;
  295. font-style:normal;
  296. font-size:24px;
  297. }
  298. #u27760 {
  299. border-width:0px;
  300. position:absolute;
  301. left:78px;
  302. top:109px;
  303. width:338px;
  304. height:43px;
  305. display:flex;
  306. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  307. font-weight:500;
  308. font-style:normal;
  309. font-size:24px;
  310. }
  311. #u27760 .text {
  312. position:absolute;
  313. align-self:center;
  314. padding:5px 10px 5px 0px;
  315. box-sizing:border-box;
  316. width:100%;
  317. }
  318. #u27760_text {
  319. border-width:0px;
  320. white-space:nowrap;
  321. text-transform:none;
  322. }
  323. #u27761_img {
  324. border-width:0px;
  325. position:absolute;
  326. left:0px;
  327. top:0px;
  328. width:108px;
  329. height:108px;
  330. }
  331. #u27761 {
  332. border-width:0px;
  333. position:absolute;
  334. left:898px;
  335. top:110px;
  336. width:108px;
  337. height:108px;
  338. display:flex;
  339. -webkit-transform:rotate(315deg);
  340. -moz-transform:rotate(315deg);
  341. -ms-transform:rotate(315deg);
  342. transform:rotate(315deg);
  343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  344. font-weight:400;
  345. font-style:normal;
  346. font-size:28px;
  347. color:#F59A23;
  348. }
  349. #u27761 .text {
  350. position:absolute;
  351. align-self:center;
  352. padding:2px 2px 2px 2px;
  353. box-sizing:border-box;
  354. width:100%;
  355. }
  356. #u27761_text {
  357. border-width:0px;
  358. word-wrap:break-word;
  359. text-transform:none;
  360. }
  361. #u27762_div {
  362. border-width:0px;
  363. position:absolute;
  364. left:0px;
  365. top:0px;
  366. width:1000px;
  367. height:420px;
  368. background:inherit;
  369. background-color:rgba(255, 255, 255, 1);
  370. box-sizing:border-box;
  371. border-width:1px;
  372. border-style:solid;
  373. border-color:rgba(242, 242, 242, 1);
  374. border-radius:0px;
  375. -moz-box-shadow:none;
  376. -webkit-box-shadow:none;
  377. box-shadow:none;
  378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  379. font-weight:400;
  380. font-style:normal;
  381. font-size:14px;
  382. color:#AAAAAA;
  383. text-align:center;
  384. line-height:30px;
  385. }
  386. #u27762 {
  387. border-width:0px;
  388. position:absolute;
  389. left:48px;
  390. top:250px;
  391. width:1000px;
  392. height:420px;
  393. display:flex;
  394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  395. font-weight:400;
  396. font-style:normal;
  397. font-size:14px;
  398. color:#AAAAAA;
  399. text-align:center;
  400. line-height:30px;
  401. }
  402. #u27762 .text {
  403. position:absolute;
  404. align-self:center;
  405. padding:5px 10px 5px 10px;
  406. box-sizing:border-box;
  407. width:100%;
  408. }
  409. #u27762_text {
  410. border-width:0px;
  411. word-wrap:break-word;
  412. text-transform:none;
  413. visibility:hidden;
  414. }
  415. #u27763_div {
  416. border-width:0px;
  417. position:absolute;
  418. left:0px;
  419. top:0px;
  420. width:73px;
  421. height:40px;
  422. background:inherit;
  423. background-color:rgba(255, 255, 255, 0);
  424. border:none;
  425. border-left:0px;
  426. border-top:0px;
  427. border-right:0px;
  428. border-radius:0px;
  429. border-bottom-right-radius:0px;
  430. border-bottom-left-radius:0px;
  431. -moz-box-shadow:none;
  432. -webkit-box-shadow:none;
  433. box-shadow:none;
  434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  435. font-weight:400;
  436. font-style:normal;
  437. font-size:18px;
  438. }
  439. #u27763 {
  440. border-width:0px;
  441. position:absolute;
  442. left:88px;
  443. top:266px;
  444. width:73px;
  445. height:40px;
  446. display:flex;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:18px;
  451. }
  452. #u27763 .text {
  453. position:absolute;
  454. align-self:center;
  455. padding:0px 0px 0px 0px;
  456. box-sizing:border-box;
  457. width:100%;
  458. }
  459. #u27763_text {
  460. border-width:0px;
  461. white-space:nowrap;
  462. text-transform:none;
  463. }
  464. #u27764_div {
  465. border-width:0px;
  466. position:absolute;
  467. left:0px;
  468. top:0px;
  469. width:67px;
  470. height:30px;
  471. background:inherit;
  472. background-color:rgba(255, 255, 255, 0);
  473. border:none;
  474. border-top:0px;
  475. border-right:0px;
  476. border-bottom:0px;
  477. border-radius:0px;
  478. border-top-left-radius:0px;
  479. border-bottom-left-radius:0px;
  480. -moz-box-shadow:none;
  481. -webkit-box-shadow:none;
  482. box-shadow:none;
  483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  484. font-weight:400;
  485. font-style:normal;
  486. font-size:14px;
  487. color:#7F7F7F;
  488. }
  489. #u27764 {
  490. border-width:0px;
  491. position:absolute;
  492. left:88px;
  493. top:316px;
  494. width:67px;
  495. height:30px;
  496. display:flex;
  497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  498. font-weight:400;
  499. font-style:normal;
  500. font-size:14px;
  501. color:#7F7F7F;
  502. }
  503. #u27764 .text {
  504. position:absolute;
  505. align-self:center;
  506. padding:5px 10px 5px 0px;
  507. box-sizing:border-box;
  508. width:100%;
  509. }
  510. #u27764_text {
  511. border-width:0px;
  512. white-space:nowrap;
  513. text-transform:none;
  514. }
  515. #u27765_div {
  516. border-width:0px;
  517. position:absolute;
  518. left:0px;
  519. top:0px;
  520. width:39px;
  521. height:30px;
  522. background:inherit;
  523. background-color:rgba(255, 255, 255, 0);
  524. border:none;
  525. border-top:0px;
  526. border-right:0px;
  527. border-bottom:0px;
  528. border-radius:0px;
  529. border-top-left-radius:0px;
  530. border-bottom-left-radius:0px;
  531. -moz-box-shadow:none;
  532. -webkit-box-shadow:none;
  533. box-shadow:none;
  534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  535. font-weight:400;
  536. font-style:normal;
  537. font-size:14px;
  538. }
  539. #u27765 {
  540. border-width:0px;
  541. position:absolute;
  542. left:169px;
  543. top:316px;
  544. width:39px;
  545. height:30px;
  546. display:flex;
  547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  548. font-weight:400;
  549. font-style:normal;
  550. font-size:14px;
  551. }
  552. #u27765 .text {
  553. position:absolute;
  554. align-self:center;
  555. padding:5px 10px 5px 0px;
  556. box-sizing:border-box;
  557. width:100%;
  558. }
  559. #u27765_text {
  560. border-width:0px;
  561. white-space:nowrap;
  562. text-transform:none;
  563. }
  564. #u27766_div {
  565. border-width:0px;
  566. position:absolute;
  567. left:0px;
  568. top:0px;
  569. width:95px;
  570. height:30px;
  571. background:inherit;
  572. background-color:rgba(255, 255, 255, 0);
  573. border:none;
  574. border-top:0px;
  575. border-right:0px;
  576. border-bottom:0px;
  577. border-radius:0px;
  578. border-top-left-radius:0px;
  579. border-bottom-left-radius:0px;
  580. -moz-box-shadow:none;
  581. -webkit-box-shadow:none;
  582. box-shadow:none;
  583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  584. font-weight:400;
  585. font-style:normal;
  586. font-size:14px;
  587. color:#7F7F7F;
  588. }
  589. #u27766 {
  590. border-width:0px;
  591. position:absolute;
  592. left:388px;
  593. top:316px;
  594. width:95px;
  595. height:30px;
  596. display:flex;
  597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  598. font-weight:400;
  599. font-style:normal;
  600. font-size:14px;
  601. color:#7F7F7F;
  602. }
  603. #u27766 .text {
  604. position:absolute;
  605. align-self:center;
  606. padding:5px 10px 5px 0px;
  607. box-sizing:border-box;
  608. width:100%;
  609. }
  610. #u27766_text {
  611. border-width:0px;
  612. white-space:nowrap;
  613. text-transform:none;
  614. }
  615. #u27767_div {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:101px;
  621. height:30px;
  622. background:inherit;
  623. background-color:rgba(255, 255, 255, 0);
  624. border:none;
  625. border-top:0px;
  626. border-right:0px;
  627. border-bottom:0px;
  628. border-radius:0px;
  629. border-top-left-radius:0px;
  630. border-bottom-left-radius:0px;
  631. -moz-box-shadow:none;
  632. -webkit-box-shadow:none;
  633. box-shadow:none;
  634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  635. font-weight:400;
  636. font-style:normal;
  637. font-size:14px;
  638. }
  639. #u27767 {
  640. border-width:0px;
  641. position:absolute;
  642. left:469px;
  643. top:316px;
  644. width:101px;
  645. height:30px;
  646. display:flex;
  647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  648. font-weight:400;
  649. font-style:normal;
  650. font-size:14px;
  651. }
  652. #u27767 .text {
  653. position:absolute;
  654. align-self:center;
  655. padding:5px 10px 5px 0px;
  656. box-sizing:border-box;
  657. width:100%;
  658. }
  659. #u27767_text {
  660. border-width:0px;
  661. white-space:nowrap;
  662. text-transform:none;
  663. }
  664. #u27768_div {
  665. border-width:0px;
  666. position:absolute;
  667. left:0px;
  668. top:0px;
  669. width:81px;
  670. height:30px;
  671. background:inherit;
  672. background-color:rgba(255, 255, 255, 0);
  673. border:none;
  674. border-top:0px;
  675. border-right:0px;
  676. border-bottom:0px;
  677. border-radius:0px;
  678. border-top-left-radius:0px;
  679. border-bottom-left-radius:0px;
  680. -moz-box-shadow:none;
  681. -webkit-box-shadow:none;
  682. box-shadow:none;
  683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  684. font-weight:400;
  685. font-style:normal;
  686. font-size:14px;
  687. color:#7F7F7F;
  688. }
  689. #u27768 {
  690. border-width:0px;
  691. position:absolute;
  692. left:88px;
  693. top:356px;
  694. width:81px;
  695. height:30px;
  696. display:flex;
  697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  698. font-weight:400;
  699. font-style:normal;
  700. font-size:14px;
  701. color:#7F7F7F;
  702. }
  703. #u27768 .text {
  704. position:absolute;
  705. align-self:center;
  706. padding:5px 10px 5px 0px;
  707. box-sizing:border-box;
  708. width:100%;
  709. }
  710. #u27768_text {
  711. border-width:0px;
  712. white-space:nowrap;
  713. text-transform:none;
  714. }
  715. #u27769_div {
  716. border-width:0px;
  717. position:absolute;
  718. left:0px;
  719. top:0px;
  720. width:109px;
  721. height:30px;
  722. background:inherit;
  723. background-color:rgba(255, 255, 255, 0);
  724. border:none;
  725. border-top:0px;
  726. border-right:0px;
  727. border-bottom:0px;
  728. border-radius:0px;
  729. border-top-left-radius:0px;
  730. border-bottom-left-radius:0px;
  731. -moz-box-shadow:none;
  732. -webkit-box-shadow:none;
  733. box-shadow:none;
  734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  735. font-weight:400;
  736. font-style:normal;
  737. font-size:14px;
  738. color:#7F7F7F;
  739. }
  740. #u27769 {
  741. border-width:0px;
  742. position:absolute;
  743. left:705px;
  744. top:356px;
  745. width:109px;
  746. height:30px;
  747. display:flex;
  748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  749. font-weight:400;
  750. font-style:normal;
  751. font-size:14px;
  752. color:#7F7F7F;
  753. }
  754. #u27769 .text {
  755. position:absolute;
  756. align-self:center;
  757. padding:5px 10px 5px 0px;
  758. box-sizing:border-box;
  759. width:100%;
  760. }
  761. #u27769_text {
  762. border-width:0px;
  763. white-space:nowrap;
  764. text-transform:none;
  765. }
  766. #u27770_div {
  767. border-width:0px;
  768. position:absolute;
  769. left:0px;
  770. top:0px;
  771. width:185px;
  772. height:30px;
  773. background:inherit;
  774. background-color:rgba(255, 255, 255, 0);
  775. border:none;
  776. border-top:0px;
  777. border-right:0px;
  778. border-bottom:0px;
  779. border-radius:0px;
  780. border-top-left-radius:0px;
  781. border-bottom-left-radius:0px;
  782. -moz-box-shadow:none;
  783. -webkit-box-shadow:none;
  784. box-shadow:none;
  785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  786. font-weight:400;
  787. font-style:normal;
  788. font-size:14px;
  789. }
  790. #u27770 {
  791. border-width:0px;
  792. position:absolute;
  793. left:814px;
  794. top:356px;
  795. width:185px;
  796. height:30px;
  797. display:flex;
  798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  799. font-weight:400;
  800. font-style:normal;
  801. font-size:14px;
  802. }
  803. #u27770 .text {
  804. position:absolute;
  805. align-self:center;
  806. padding:5px 10px 5px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u27770_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u27771_div {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:131px;
  821. height:30px;
  822. background:inherit;
  823. background-color:rgba(255, 255, 255, 0);
  824. border:none;
  825. border-top:0px;
  826. border-right:0px;
  827. border-bottom:0px;
  828. border-radius:0px;
  829. border-top-left-radius:0px;
  830. border-bottom-left-radius:0px;
  831. -moz-box-shadow:none;
  832. -webkit-box-shadow:none;
  833. box-shadow:none;
  834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  835. font-weight:400;
  836. font-style:normal;
  837. font-size:14px;
  838. }
  839. #u27771 {
  840. border-width:0px;
  841. position:absolute;
  842. left:169px;
  843. top:356px;
  844. width:131px;
  845. height:30px;
  846. display:flex;
  847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  848. font-weight:400;
  849. font-style:normal;
  850. font-size:14px;
  851. }
  852. #u27771 .text {
  853. position:absolute;
  854. align-self:center;
  855. padding:5px 10px 5px 0px;
  856. box-sizing:border-box;
  857. width:100%;
  858. }
  859. #u27771_text {
  860. border-width:0px;
  861. white-space:nowrap;
  862. text-transform:none;
  863. }
  864. #u27772_div {
  865. border-width:0px;
  866. position:absolute;
  867. left:0px;
  868. top:0px;
  869. width:81px;
  870. height:30px;
  871. background:inherit;
  872. background-color:rgba(255, 255, 255, 0);
  873. border:none;
  874. border-top:0px;
  875. border-right:0px;
  876. border-bottom:0px;
  877. border-radius:0px;
  878. border-top-left-radius:0px;
  879. border-bottom-left-radius:0px;
  880. -moz-box-shadow:none;
  881. -webkit-box-shadow:none;
  882. box-shadow:none;
  883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  884. font-weight:400;
  885. font-style:normal;
  886. font-size:14px;
  887. color:#7F7F7F;
  888. }
  889. #u27772 {
  890. border-width:0px;
  891. position:absolute;
  892. left:88px;
  893. top:436px;
  894. width:81px;
  895. height:30px;
  896. display:flex;
  897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  898. font-weight:400;
  899. font-style:normal;
  900. font-size:14px;
  901. color:#7F7F7F;
  902. }
  903. #u27772 .text {
  904. position:absolute;
  905. align-self:center;
  906. padding:5px 10px 5px 0px;
  907. box-sizing:border-box;
  908. width:100%;
  909. }
  910. #u27772_text {
  911. border-width:0px;
  912. white-space:nowrap;
  913. text-transform:none;
  914. }
  915. #u27773_div {
  916. border-width:0px;
  917. position:absolute;
  918. left:0px;
  919. top:0px;
  920. width:263px;
  921. height:30px;
  922. background:inherit;
  923. background-color:rgba(255, 255, 255, 0);
  924. border:none;
  925. border-top:0px;
  926. border-right:0px;
  927. border-bottom:0px;
  928. border-radius:0px;
  929. border-top-left-radius:0px;
  930. border-bottom-left-radius:0px;
  931. -moz-box-shadow:none;
  932. -webkit-box-shadow:none;
  933. box-shadow:none;
  934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  935. font-weight:400;
  936. font-style:normal;
  937. font-size:14px;
  938. }
  939. #u27773 {
  940. border-width:0px;
  941. position:absolute;
  942. left:169px;
  943. top:436px;
  944. width:263px;
  945. height:30px;
  946. display:flex;
  947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  948. font-weight:400;
  949. font-style:normal;
  950. font-size:14px;
  951. }
  952. #u27773 .text {
  953. position:absolute;
  954. align-self:center;
  955. padding:5px 10px 5px 0px;
  956. box-sizing:border-box;
  957. width:100%;
  958. }
  959. #u27773_text {
  960. border-width:0px;
  961. white-space:nowrap;
  962. text-transform:none;
  963. }
  964. #u27774_div {
  965. border-width:0px;
  966. position:absolute;
  967. left:0px;
  968. top:0px;
  969. width:325px;
  970. height:60px;
  971. background:inherit;
  972. background-color:rgba(255, 255, 255, 0);
  973. border:none;
  974. border-left:0px;
  975. border-top:0px;
  976. border-right:0px;
  977. border-radius:0px;
  978. border-bottom-right-radius:0px;
  979. border-bottom-left-radius:0px;
  980. -moz-box-shadow:none;
  981. -webkit-box-shadow:none;
  982. box-shadow:none;
  983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  984. font-weight:400;
  985. font-style:normal;
  986. font-size:14px;
  987. line-height:30px;
  988. }
  989. #u27774 {
  990. border-width:0px;
  991. position:absolute;
  992. left:78px;
  993. top:164px;
  994. width:325px;
  995. height:60px;
  996. display:flex;
  997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  998. font-weight:400;
  999. font-style:normal;
  1000. font-size:14px;
  1001. line-height:30px;
  1002. }
  1003. #u27774 .text {
  1004. position:absolute;
  1005. align-self:flex-start;
  1006. padding:0px 0px 0px 0px;
  1007. box-sizing:border-box;
  1008. width:100%;
  1009. }
  1010. #u27774_text {
  1011. border-width:0px;
  1012. word-wrap:break-word;
  1013. text-transform:none;
  1014. }
  1015. #u27775 {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:0px;
  1019. top:0px;
  1020. width:0px;
  1021. height:0px;
  1022. }
  1023. #u27776_div {
  1024. border-width:0px;
  1025. position:absolute;
  1026. left:0px;
  1027. top:0px;
  1028. width:1000px;
  1029. height:60px;
  1030. background:inherit;
  1031. background-color:rgba(255, 255, 255, 1);
  1032. box-sizing:border-box;
  1033. border-width:1px;
  1034. border-style:solid;
  1035. border-color:rgba(215, 215, 215, 1);
  1036. border-radius:0px;
  1037. -moz-box-shadow:none;
  1038. -webkit-box-shadow:none;
  1039. box-shadow:none;
  1040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1041. font-weight:400;
  1042. font-style:normal;
  1043. font-size:14px;
  1044. color:#AAAAAA;
  1045. text-align:center;
  1046. line-height:30px;
  1047. }
  1048. #u27776 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:48px;
  1052. top:1211px;
  1053. width:1000px;
  1054. height:60px;
  1055. display:flex;
  1056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1057. font-weight:400;
  1058. font-style:normal;
  1059. font-size:14px;
  1060. color:#AAAAAA;
  1061. text-align:center;
  1062. line-height:30px;
  1063. }
  1064. #u27776 .text {
  1065. position:absolute;
  1066. align-self:center;
  1067. padding:5px 10px 5px 10px;
  1068. box-sizing:border-box;
  1069. width:100%;
  1070. }
  1071. #u27776_text {
  1072. border-width:0px;
  1073. word-wrap:break-word;
  1074. text-transform:none;
  1075. visibility:hidden;
  1076. }
  1077. #u27777_div {
  1078. border-width:0px;
  1079. position:absolute;
  1080. left:0px;
  1081. top:0px;
  1082. width:80px;
  1083. height:30px;
  1084. background:inherit;
  1085. background-color:rgba(0, 137, 254, 1);
  1086. border:none;
  1087. border-radius:4px;
  1088. -moz-box-shadow:none;
  1089. -webkit-box-shadow:none;
  1090. box-shadow:none;
  1091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1092. font-weight:400;
  1093. font-style:normal;
  1094. font-size:14px;
  1095. color:#FFFFFF;
  1096. }
  1097. #u27777 {
  1098. border-width:0px;
  1099. position:absolute;
  1100. left:929px;
  1101. top:1226px;
  1102. width:80px;
  1103. height:30px;
  1104. display:flex;
  1105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1106. font-weight:400;
  1107. font-style:normal;
  1108. font-size:14px;
  1109. color:#FFFFFF;
  1110. }
  1111. #u27777 .text {
  1112. position:absolute;
  1113. align-self:center;
  1114. padding:2px 2px 2px 2px;
  1115. box-sizing:border-box;
  1116. width:100%;
  1117. }
  1118. #u27777_text {
  1119. border-width:0px;
  1120. word-wrap:break-word;
  1121. text-transform:none;
  1122. }
  1123. #u27778_div {
  1124. border-width:0px;
  1125. position:absolute;
  1126. left:0px;
  1127. top:0px;
  1128. width:80px;
  1129. height:30px;
  1130. background:inherit;
  1131. background-color:rgba(255, 255, 255, 1);
  1132. box-sizing:border-box;
  1133. border-width:1px;
  1134. border-style:solid;
  1135. border-color:rgba(170, 170, 170, 1);
  1136. border-radius:4px;
  1137. -moz-box-shadow:none;
  1138. -webkit-box-shadow:none;
  1139. box-shadow:none;
  1140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1141. font-weight:400;
  1142. font-style:normal;
  1143. font-size:14px;
  1144. }
  1145. #u27778 {
  1146. border-width:0px;
  1147. position:absolute;
  1148. left:839px;
  1149. top:1226px;
  1150. width:80px;
  1151. height:30px;
  1152. display:flex;
  1153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1154. font-weight:400;
  1155. font-style:normal;
  1156. font-size:14px;
  1157. }
  1158. #u27778 .text {
  1159. position:absolute;
  1160. align-self:center;
  1161. padding:2px 2px 2px 2px;
  1162. box-sizing:border-box;
  1163. width:100%;
  1164. }
  1165. #u27778_text {
  1166. border-width:0px;
  1167. word-wrap:break-word;
  1168. text-transform:none;
  1169. }
  1170. #u27779_div {
  1171. border-width:0px;
  1172. position:absolute;
  1173. left:0px;
  1174. top:0px;
  1175. width:57px;
  1176. height:36px;
  1177. background:inherit;
  1178. background-color:rgba(255, 255, 255, 0);
  1179. border:none;
  1180. border-left:0px;
  1181. border-top:0px;
  1182. border-right:0px;
  1183. border-radius:0px;
  1184. border-bottom-right-radius:0px;
  1185. border-bottom-left-radius:0px;
  1186. -moz-box-shadow:none;
  1187. -webkit-box-shadow:none;
  1188. box-shadow:none;
  1189. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1190. font-weight:500;
  1191. font-style:normal;
  1192. font-size:14px;
  1193. line-height:40px;
  1194. }
  1195. #u27779 {
  1196. border-width:0px;
  1197. position:absolute;
  1198. left:88px;
  1199. top:476px;
  1200. width:57px;
  1201. height:36px;
  1202. display:flex;
  1203. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1204. font-weight:500;
  1205. font-style:normal;
  1206. font-size:14px;
  1207. line-height:40px;
  1208. }
  1209. #u27779 .text {
  1210. position:absolute;
  1211. align-self:flex-start;
  1212. padding:0px 0px 0px 0px;
  1213. box-sizing:border-box;
  1214. width:100%;
  1215. }
  1216. #u27779_text {
  1217. border-width:0px;
  1218. white-space:nowrap;
  1219. text-transform:none;
  1220. }
  1221. #u27780_img {
  1222. border-width:0px;
  1223. position:absolute;
  1224. left:0px;
  1225. top:0px;
  1226. width:99px;
  1227. height:85px;
  1228. }
  1229. #u27780 {
  1230. border-width:0px;
  1231. position:absolute;
  1232. left:88px;
  1233. top:556px;
  1234. width:99px;
  1235. height:85px;
  1236. display:flex;
  1237. }
  1238. #u27780 .text {
  1239. position:absolute;
  1240. align-self:center;
  1241. padding:2px 2px 2px 2px;
  1242. box-sizing:border-box;
  1243. width:100%;
  1244. }
  1245. #u27780_text {
  1246. border-width:0px;
  1247. word-wrap:break-word;
  1248. text-transform:none;
  1249. visibility:hidden;
  1250. }
  1251. #u27781_img {
  1252. border-width:0px;
  1253. position:absolute;
  1254. left:0px;
  1255. top:0px;
  1256. width:99px;
  1257. height:85px;
  1258. }
  1259. #u27781 {
  1260. border-width:0px;
  1261. position:absolute;
  1262. left:197px;
  1263. top:556px;
  1264. width:99px;
  1265. height:85px;
  1266. display:flex;
  1267. }
  1268. #u27781 .text {
  1269. position:absolute;
  1270. align-self:center;
  1271. padding:2px 2px 2px 2px;
  1272. box-sizing:border-box;
  1273. width:100%;
  1274. }
  1275. #u27781_text {
  1276. border-width:0px;
  1277. word-wrap:break-word;
  1278. text-transform:none;
  1279. visibility:hidden;
  1280. }
  1281. #u27782_div {
  1282. border-width:0px;
  1283. position:absolute;
  1284. left:0px;
  1285. top:0px;
  1286. width:1000px;
  1287. height:520px;
  1288. background:inherit;
  1289. background-color:rgba(255, 255, 255, 1);
  1290. box-sizing:border-box;
  1291. border-width:1px;
  1292. border-style:solid;
  1293. border-color:rgba(242, 242, 242, 1);
  1294. border-radius:0px;
  1295. -moz-box-shadow:none;
  1296. -webkit-box-shadow:none;
  1297. box-shadow:none;
  1298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1299. font-weight:400;
  1300. font-style:normal;
  1301. font-size:14px;
  1302. color:#AAAAAA;
  1303. text-align:center;
  1304. line-height:30px;
  1305. }
  1306. #u27782 {
  1307. border-width:0px;
  1308. position:absolute;
  1309. left:48px;
  1310. top:680px;
  1311. width:1000px;
  1312. height:520px;
  1313. display:flex;
  1314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1315. font-weight:400;
  1316. font-style:normal;
  1317. font-size:14px;
  1318. color:#AAAAAA;
  1319. text-align:center;
  1320. line-height:30px;
  1321. }
  1322. #u27782 .text {
  1323. position:absolute;
  1324. align-self:center;
  1325. padding:5px 10px 5px 10px;
  1326. box-sizing:border-box;
  1327. width:100%;
  1328. }
  1329. #u27782_text {
  1330. border-width:0px;
  1331. word-wrap:break-word;
  1332. text-transform:none;
  1333. visibility:hidden;
  1334. }
  1335. #u27783_div {
  1336. border-width:0px;
  1337. position:absolute;
  1338. left:0px;
  1339. top:0px;
  1340. width:73px;
  1341. height:40px;
  1342. background:inherit;
  1343. background-color:rgba(255, 255, 255, 0);
  1344. border:none;
  1345. border-left:0px;
  1346. border-top:0px;
  1347. border-right:0px;
  1348. border-radius:0px;
  1349. border-bottom-right-radius:0px;
  1350. border-bottom-left-radius:0px;
  1351. -moz-box-shadow:none;
  1352. -webkit-box-shadow:none;
  1353. box-shadow:none;
  1354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1355. font-weight:400;
  1356. font-style:normal;
  1357. font-size:18px;
  1358. }
  1359. #u27783 {
  1360. border-width:0px;
  1361. position:absolute;
  1362. left:88px;
  1363. top:696px;
  1364. width:73px;
  1365. height:40px;
  1366. display:flex;
  1367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1368. font-weight:400;
  1369. font-style:normal;
  1370. font-size:18px;
  1371. }
  1372. #u27783 .text {
  1373. position:absolute;
  1374. align-self:center;
  1375. padding:0px 0px 0px 0px;
  1376. box-sizing:border-box;
  1377. width:100%;
  1378. }
  1379. #u27783_text {
  1380. border-width:0px;
  1381. white-space:nowrap;
  1382. text-transform:none;
  1383. }
  1384. #u27784_div {
  1385. border-width:0px;
  1386. position:absolute;
  1387. left:0px;
  1388. top:0px;
  1389. width:123px;
  1390. height:30px;
  1391. background:inherit;
  1392. background-color:rgba(255, 255, 255, 0);
  1393. border:none;
  1394. border-top:0px;
  1395. border-right:0px;
  1396. border-bottom:0px;
  1397. border-radius:0px;
  1398. border-top-left-radius:0px;
  1399. border-bottom-left-radius:0px;
  1400. -moz-box-shadow:none;
  1401. -webkit-box-shadow:none;
  1402. box-shadow:none;
  1403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1404. font-weight:400;
  1405. font-style:normal;
  1406. font-size:14px;
  1407. color:#1890FF;
  1408. }
  1409. #u27784 {
  1410. border-width:0px;
  1411. position:absolute;
  1412. left:88px;
  1413. top:760px;
  1414. width:123px;
  1415. height:30px;
  1416. display:flex;
  1417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1418. font-weight:400;
  1419. font-style:normal;
  1420. font-size:14px;
  1421. color:#1890FF;
  1422. }
  1423. #u27784 .text {
  1424. position:absolute;
  1425. align-self:center;
  1426. padding:5px 10px 5px 0px;
  1427. box-sizing:border-box;
  1428. width:100%;
  1429. }
  1430. #u27784_text {
  1431. border-width:0px;
  1432. white-space:nowrap;
  1433. text-transform:none;
  1434. }
  1435. #u27785_div {
  1436. border-width:0px;
  1437. position:absolute;
  1438. left:0px;
  1439. top:0px;
  1440. width:95px;
  1441. height:30px;
  1442. background:inherit;
  1443. background-color:rgba(255, 255, 255, 0);
  1444. border:none;
  1445. border-top:0px;
  1446. border-right:0px;
  1447. border-bottom:0px;
  1448. border-radius:0px;
  1449. border-top-left-radius:0px;
  1450. border-bottom-left-radius:0px;
  1451. -moz-box-shadow:none;
  1452. -webkit-box-shadow:none;
  1453. box-shadow:none;
  1454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1455. font-weight:400;
  1456. font-style:normal;
  1457. font-size:14px;
  1458. color:#7F7F7F;
  1459. }
  1460. #u27785 {
  1461. border-width:0px;
  1462. position:absolute;
  1463. left:705px;
  1464. top:316px;
  1465. width:95px;
  1466. height:30px;
  1467. display:flex;
  1468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1469. font-weight:400;
  1470. font-style:normal;
  1471. font-size:14px;
  1472. color:#7F7F7F;
  1473. }
  1474. #u27785 .text {
  1475. position:absolute;
  1476. align-self:center;
  1477. padding:5px 10px 5px 0px;
  1478. box-sizing:border-box;
  1479. width:100%;
  1480. }
  1481. #u27785_text {
  1482. border-width:0px;
  1483. white-space:nowrap;
  1484. text-transform:none;
  1485. }
  1486. #u27786_div {
  1487. border-width:0px;
  1488. position:absolute;
  1489. left:0px;
  1490. top:0px;
  1491. width:101px;
  1492. height:30px;
  1493. background:inherit;
  1494. background-color:rgba(255, 255, 255, 0);
  1495. border:none;
  1496. border-top:0px;
  1497. border-right:0px;
  1498. border-bottom:0px;
  1499. border-radius:0px;
  1500. border-top-left-radius:0px;
  1501. border-bottom-left-radius:0px;
  1502. -moz-box-shadow:none;
  1503. -webkit-box-shadow:none;
  1504. box-shadow:none;
  1505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1506. font-weight:400;
  1507. font-style:normal;
  1508. font-size:14px;
  1509. }
  1510. #u27786 {
  1511. border-width:0px;
  1512. position:absolute;
  1513. left:786px;
  1514. top:316px;
  1515. width:101px;
  1516. height:30px;
  1517. display:flex;
  1518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1519. font-weight:400;
  1520. font-style:normal;
  1521. font-size:14px;
  1522. }
  1523. #u27786 .text {
  1524. position:absolute;
  1525. align-self:center;
  1526. padding:5px 10px 5px 0px;
  1527. box-sizing:border-box;
  1528. width:100%;
  1529. }
  1530. #u27786_text {
  1531. border-width:0px;
  1532. white-space:nowrap;
  1533. text-transform:none;
  1534. }
  1535. #u27787_div {
  1536. border-width:0px;
  1537. position:absolute;
  1538. left:0px;
  1539. top:0px;
  1540. width:81px;
  1541. height:30px;
  1542. background:inherit;
  1543. background-color:rgba(255, 255, 255, 0);
  1544. border:none;
  1545. border-top:0px;
  1546. border-right:0px;
  1547. border-bottom:0px;
  1548. border-radius:0px;
  1549. border-top-left-radius:0px;
  1550. border-bottom-left-radius:0px;
  1551. -moz-box-shadow:none;
  1552. -webkit-box-shadow:none;
  1553. box-shadow:none;
  1554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1555. font-weight:400;
  1556. font-style:normal;
  1557. font-size:14px;
  1558. color:#7F7F7F;
  1559. }
  1560. #u27787 {
  1561. border-width:0px;
  1562. position:absolute;
  1563. left:388px;
  1564. top:356px;
  1565. width:81px;
  1566. height:30px;
  1567. display:flex;
  1568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1569. font-weight:400;
  1570. font-style:normal;
  1571. font-size:14px;
  1572. color:#7F7F7F;
  1573. }
  1574. #u27787 .text {
  1575. position:absolute;
  1576. align-self:center;
  1577. padding:5px 10px 5px 0px;
  1578. box-sizing:border-box;
  1579. width:100%;
  1580. }
  1581. #u27787_text {
  1582. border-width:0px;
  1583. white-space:nowrap;
  1584. text-transform:none;
  1585. }
  1586. #u27788_div {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:0px;
  1590. top:0px;
  1591. width:134px;
  1592. height:30px;
  1593. background:inherit;
  1594. background-color:rgba(255, 255, 255, 0);
  1595. border:none;
  1596. border-top:0px;
  1597. border-right:0px;
  1598. border-bottom:0px;
  1599. border-radius:0px;
  1600. border-top-left-radius:0px;
  1601. border-bottom-left-radius:0px;
  1602. -moz-box-shadow:none;
  1603. -webkit-box-shadow:none;
  1604. box-shadow:none;
  1605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1606. font-weight:400;
  1607. font-style:normal;
  1608. font-size:14px;
  1609. }
  1610. #u27788 {
  1611. border-width:0px;
  1612. position:absolute;
  1613. left:469px;
  1614. top:356px;
  1615. width:134px;
  1616. height:30px;
  1617. display:flex;
  1618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1619. font-weight:400;
  1620. font-style:normal;
  1621. font-size:14px;
  1622. }
  1623. #u27788 .text {
  1624. position:absolute;
  1625. align-self:center;
  1626. padding:5px 10px 5px 0px;
  1627. box-sizing:border-box;
  1628. width:100%;
  1629. }
  1630. #u27788_text {
  1631. border-width:0px;
  1632. white-space:nowrap;
  1633. text-transform:none;
  1634. }
  1635. #u27789_div {
  1636. border-width:0px;
  1637. position:absolute;
  1638. left:0px;
  1639. top:0px;
  1640. width:81px;
  1641. height:30px;
  1642. background:inherit;
  1643. background-color:rgba(255, 255, 255, 0);
  1644. border:none;
  1645. border-top:0px;
  1646. border-right:0px;
  1647. border-bottom:0px;
  1648. border-radius:0px;
  1649. border-top-left-radius:0px;
  1650. border-bottom-left-radius:0px;
  1651. -moz-box-shadow:none;
  1652. -webkit-box-shadow:none;
  1653. box-shadow:none;
  1654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1655. font-weight:400;
  1656. font-style:normal;
  1657. font-size:14px;
  1658. color:#7F7F7F;
  1659. }
  1660. #u27789 {
  1661. border-width:0px;
  1662. position:absolute;
  1663. left:88px;
  1664. top:396px;
  1665. width:81px;
  1666. height:30px;
  1667. display:flex;
  1668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1669. font-weight:400;
  1670. font-style:normal;
  1671. font-size:14px;
  1672. color:#7F7F7F;
  1673. }
  1674. #u27789 .text {
  1675. position:absolute;
  1676. align-self:center;
  1677. padding:5px 10px 5px 0px;
  1678. box-sizing:border-box;
  1679. width:100%;
  1680. }
  1681. #u27789_text {
  1682. border-width:0px;
  1683. white-space:nowrap;
  1684. text-transform:none;
  1685. }
  1686. #u27790_div {
  1687. border-width:0px;
  1688. position:absolute;
  1689. left:0px;
  1690. top:0px;
  1691. width:33px;
  1692. height:30px;
  1693. background:inherit;
  1694. background-color:rgba(255, 255, 255, 0);
  1695. border:none;
  1696. border-top:0px;
  1697. border-right:0px;
  1698. border-bottom:0px;
  1699. border-radius:0px;
  1700. border-top-left-radius:0px;
  1701. border-bottom-left-radius:0px;
  1702. -moz-box-shadow:none;
  1703. -webkit-box-shadow:none;
  1704. box-shadow:none;
  1705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1706. font-weight:400;
  1707. font-style:normal;
  1708. font-size:14px;
  1709. }
  1710. #u27790 {
  1711. border-width:0px;
  1712. position:absolute;
  1713. left:169px;
  1714. top:396px;
  1715. width:33px;
  1716. height:30px;
  1717. display:flex;
  1718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1719. font-weight:400;
  1720. font-style:normal;
  1721. font-size:14px;
  1722. }
  1723. #u27790 .text {
  1724. position:absolute;
  1725. align-self:center;
  1726. padding:5px 10px 5px 0px;
  1727. box-sizing:border-box;
  1728. width:100%;
  1729. }
  1730. #u27790_text {
  1731. border-width:0px;
  1732. white-space:nowrap;
  1733. text-transform:none;
  1734. }
  1735. #u27791_div {
  1736. border-width:0px;
  1737. position:absolute;
  1738. left:0px;
  1739. top:0px;
  1740. width:81px;
  1741. height:30px;
  1742. background:inherit;
  1743. background-color:rgba(255, 255, 255, 0);
  1744. border:none;
  1745. border-top:0px;
  1746. border-right:0px;
  1747. border-bottom:0px;
  1748. border-radius:0px;
  1749. border-top-left-radius:0px;
  1750. border-bottom-left-radius:0px;
  1751. -moz-box-shadow:none;
  1752. -webkit-box-shadow:none;
  1753. box-shadow:none;
  1754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1755. font-weight:400;
  1756. font-style:normal;
  1757. font-size:14px;
  1758. color:#7F7F7F;
  1759. }
  1760. #u27791 {
  1761. border-width:0px;
  1762. position:absolute;
  1763. left:388px;
  1764. top:396px;
  1765. width:81px;
  1766. height:30px;
  1767. display:flex;
  1768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1769. font-weight:400;
  1770. font-style:normal;
  1771. font-size:14px;
  1772. color:#7F7F7F;
  1773. }
  1774. #u27791 .text {
  1775. position:absolute;
  1776. align-self:center;
  1777. padding:5px 10px 5px 0px;
  1778. box-sizing:border-box;
  1779. width:100%;
  1780. }
  1781. #u27791_text {
  1782. border-width:0px;
  1783. white-space:nowrap;
  1784. text-transform:none;
  1785. }
  1786. #u27792_div {
  1787. border-width:0px;
  1788. position:absolute;
  1789. left:0px;
  1790. top:0px;
  1791. width:39px;
  1792. height:30px;
  1793. background:inherit;
  1794. background-color:rgba(255, 255, 255, 0);
  1795. border:none;
  1796. border-top:0px;
  1797. border-right:0px;
  1798. border-bottom:0px;
  1799. border-radius:0px;
  1800. border-top-left-radius:0px;
  1801. border-bottom-left-radius:0px;
  1802. -moz-box-shadow:none;
  1803. -webkit-box-shadow:none;
  1804. box-shadow:none;
  1805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1806. font-weight:400;
  1807. font-style:normal;
  1808. font-size:14px;
  1809. }
  1810. #u27792 {
  1811. border-width:0px;
  1812. position:absolute;
  1813. left:469px;
  1814. top:396px;
  1815. width:39px;
  1816. height:30px;
  1817. display:flex;
  1818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1819. font-weight:400;
  1820. font-style:normal;
  1821. font-size:14px;
  1822. }
  1823. #u27792 .text {
  1824. position:absolute;
  1825. align-self:center;
  1826. padding:5px 10px 5px 0px;
  1827. box-sizing:border-box;
  1828. width:100%;
  1829. }
  1830. #u27792_text {
  1831. border-width:0px;
  1832. white-space:nowrap;
  1833. text-transform:none;
  1834. }
  1835. #u27793_div {
  1836. border-width:0px;
  1837. position:absolute;
  1838. left:0px;
  1839. top:0px;
  1840. width:81px;
  1841. height:30px;
  1842. background:inherit;
  1843. background-color:rgba(255, 255, 255, 0);
  1844. border:none;
  1845. border-top:0px;
  1846. border-right:0px;
  1847. border-bottom:0px;
  1848. border-radius:0px;
  1849. border-top-left-radius:0px;
  1850. border-bottom-left-radius:0px;
  1851. -moz-box-shadow:none;
  1852. -webkit-box-shadow:none;
  1853. box-shadow:none;
  1854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1855. font-weight:400;
  1856. font-style:normal;
  1857. font-size:14px;
  1858. color:#7F7F7F;
  1859. }
  1860. #u27793 {
  1861. border-width:0px;
  1862. position:absolute;
  1863. left:705px;
  1864. top:396px;
  1865. width:81px;
  1866. height:30px;
  1867. display:flex;
  1868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1869. font-weight:400;
  1870. font-style:normal;
  1871. font-size:14px;
  1872. color:#7F7F7F;
  1873. }
  1874. #u27793 .text {
  1875. position:absolute;
  1876. align-self:center;
  1877. padding:5px 10px 5px 0px;
  1878. box-sizing:border-box;
  1879. width:100%;
  1880. }
  1881. #u27793_text {
  1882. border-width:0px;
  1883. white-space:nowrap;
  1884. text-transform:none;
  1885. }
  1886. #u27794_div {
  1887. border-width:0px;
  1888. position:absolute;
  1889. left:0px;
  1890. top:0px;
  1891. width:126px;
  1892. height:30px;
  1893. background:inherit;
  1894. background-color:rgba(255, 255, 255, 0);
  1895. border:none;
  1896. border-top:0px;
  1897. border-right:0px;
  1898. border-bottom:0px;
  1899. border-radius:0px;
  1900. border-top-left-radius:0px;
  1901. border-bottom-left-radius:0px;
  1902. -moz-box-shadow:none;
  1903. -webkit-box-shadow:none;
  1904. box-shadow:none;
  1905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1906. font-weight:400;
  1907. font-style:normal;
  1908. font-size:14px;
  1909. }
  1910. #u27794 {
  1911. border-width:0px;
  1912. position:absolute;
  1913. left:786px;
  1914. top:396px;
  1915. width:126px;
  1916. height:30px;
  1917. display:flex;
  1918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1919. font-weight:400;
  1920. font-style:normal;
  1921. font-size:14px;
  1922. }
  1923. #u27794 .text {
  1924. position:absolute;
  1925. align-self:center;
  1926. padding:5px 10px 5px 0px;
  1927. box-sizing:border-box;
  1928. width:100%;
  1929. }
  1930. #u27794_text {
  1931. border-width:0px;
  1932. white-space:nowrap;
  1933. text-transform:none;
  1934. }
  1935. #u27795_div {
  1936. border-width:0px;
  1937. position:absolute;
  1938. left:0px;
  1939. top:0px;
  1940. width:123px;
  1941. height:30px;
  1942. background:inherit;
  1943. background-color:rgba(255, 255, 255, 0);
  1944. border:none;
  1945. border-top:0px;
  1946. border-right:0px;
  1947. border-bottom:0px;
  1948. border-radius:0px;
  1949. border-top-left-radius:0px;
  1950. border-bottom-left-radius:0px;
  1951. -moz-box-shadow:none;
  1952. -webkit-box-shadow:none;
  1953. box-shadow:none;
  1954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1955. font-weight:400;
  1956. font-style:normal;
  1957. font-size:14px;
  1958. }
  1959. #u27795 {
  1960. border-width:0px;
  1961. position:absolute;
  1962. left:88px;
  1963. top:516px;
  1964. width:123px;
  1965. height:30px;
  1966. display:flex;
  1967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1968. font-weight:400;
  1969. font-style:normal;
  1970. font-size:14px;
  1971. }
  1972. #u27795 .text {
  1973. position:absolute;
  1974. align-self:center;
  1975. padding:5px 10px 5px 0px;
  1976. box-sizing:border-box;
  1977. width:100%;
  1978. }
  1979. #u27795_text {
  1980. border-width:0px;
  1981. white-space:nowrap;
  1982. text-transform:none;
  1983. }
  1984. #u27796 {
  1985. border-width:0px;
  1986. position:absolute;
  1987. left:0px;
  1988. top:0px;
  1989. width:0px;
  1990. height:0px;
  1991. }
  1992. #u27797_div {
  1993. border-width:0px;
  1994. position:absolute;
  1995. left:0px;
  1996. top:0px;
  1997. width:1000px;
  1998. height:1231px;
  1999. background:inherit;
  2000. background-color:rgba(242, 242, 242, 1);
  2001. box-sizing:border-box;
  2002. border-width:1px;
  2003. border-style:solid;
  2004. border-color:rgba(215, 215, 215, 1);
  2005. border-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:#AAAAAA;
  2014. text-align:center;
  2015. line-height:30px;
  2016. }
  2017. #u27797 {
  2018. border-width:0px;
  2019. position:absolute;
  2020. left:1069px;
  2021. top:40px;
  2022. width:1000px;
  2023. height:1231px;
  2024. display:flex;
  2025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2026. font-weight:400;
  2027. font-style:normal;
  2028. font-size:14px;
  2029. color:#AAAAAA;
  2030. text-align:center;
  2031. line-height:30px;
  2032. }
  2033. #u27797 .text {
  2034. position:absolute;
  2035. align-self:center;
  2036. padding:5px 10px 5px 10px;
  2037. box-sizing:border-box;
  2038. width:100%;
  2039. }
  2040. #u27797_text {
  2041. border-width:0px;
  2042. word-wrap:break-word;
  2043. text-transform:none;
  2044. visibility:hidden;
  2045. }
  2046. #u27798_div {
  2047. border-width:0px;
  2048. position:absolute;
  2049. left:0px;
  2050. top:0px;
  2051. width:1000px;
  2052. height:200px;
  2053. background:inherit;
  2054. background-color:rgba(255, 255, 255, 1);
  2055. box-sizing:border-box;
  2056. border-width:1px;
  2057. border-style:solid;
  2058. border-color:rgba(215, 215, 215, 1);
  2059. border-radius:0px;
  2060. -moz-box-shadow:none;
  2061. -webkit-box-shadow:none;
  2062. box-shadow:none;
  2063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2064. font-weight:400;
  2065. font-style:normal;
  2066. font-size:14px;
  2067. color:#AAAAAA;
  2068. text-align:center;
  2069. line-height:30px;
  2070. }
  2071. #u27798 {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:1069px;
  2075. top:40px;
  2076. width:1000px;
  2077. height:200px;
  2078. display:flex;
  2079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2080. font-weight:400;
  2081. font-style:normal;
  2082. font-size:14px;
  2083. color:#AAAAAA;
  2084. text-align:center;
  2085. line-height:30px;
  2086. }
  2087. #u27798 .text {
  2088. position:absolute;
  2089. align-self:center;
  2090. padding:5px 10px 5px 10px;
  2091. box-sizing:border-box;
  2092. width:100%;
  2093. }
  2094. #u27798_text {
  2095. border-width:0px;
  2096. word-wrap:break-word;
  2097. text-transform:none;
  2098. visibility:hidden;
  2099. }
  2100. #u27799_div {
  2101. border-width:0px;
  2102. position:absolute;
  2103. left:0px;
  2104. top:0px;
  2105. width:83px;
  2106. height:35px;
  2107. background:inherit;
  2108. background-color:rgba(255, 255, 255, 0);
  2109. border:none;
  2110. border-top:0px;
  2111. border-right:0px;
  2112. border-bottom:0px;
  2113. border-radius:0px;
  2114. border-top-left-radius:0px;
  2115. border-bottom-left-radius:0px;
  2116. -moz-box-shadow:none;
  2117. -webkit-box-shadow:none;
  2118. box-shadow:none;
  2119. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2120. font-weight:500;
  2121. font-style:normal;
  2122. font-size:18px;
  2123. }
  2124. #u27799 {
  2125. border-width:0px;
  2126. position:absolute;
  2127. left:1089px;
  2128. top:58px;
  2129. width:83px;
  2130. height:35px;
  2131. display:flex;
  2132. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2133. font-weight:500;
  2134. font-style:normal;
  2135. font-size:18px;
  2136. }
  2137. #u27799 .text {
  2138. position:absolute;
  2139. align-self:center;
  2140. padding:5px 10px 5px 0px;
  2141. box-sizing:border-box;
  2142. width:100%;
  2143. }
  2144. #u27799_text {
  2145. border-width:0px;
  2146. white-space:nowrap;
  2147. text-transform:none;
  2148. }
  2149. #u27800 {
  2150. border-width:0px;
  2151. position:absolute;
  2152. left:0px;
  2153. top:0px;
  2154. width:0px;
  2155. height:0px;
  2156. }
  2157. #u27801_div {
  2158. border-width:0px;
  2159. position:absolute;
  2160. left:0px;
  2161. top:0px;
  2162. width:40px;
  2163. height:40px;
  2164. background:inherit;
  2165. background-color:rgba(255, 255, 255, 0);
  2166. border:none;
  2167. border-top:0px;
  2168. border-right:0px;
  2169. border-bottom:0px;
  2170. border-radius:0px;
  2171. border-top-left-radius:0px;
  2172. border-bottom-left-radius:0px;
  2173. -moz-box-shadow:none;
  2174. -webkit-box-shadow:none;
  2175. box-shadow:none;
  2176. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2177. font-weight:500;
  2178. font-style:normal;
  2179. font-size:14px;
  2180. text-align:center;
  2181. }
  2182. #u27801 {
  2183. border-width:0px;
  2184. position:absolute;
  2185. left:2029px;
  2186. top:40px;
  2187. width:40px;
  2188. height:40px;
  2189. display:flex;
  2190. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2191. font-weight:500;
  2192. font-style:normal;
  2193. font-size:14px;
  2194. text-align:center;
  2195. }
  2196. #u27801 .text {
  2197. position:absolute;
  2198. align-self:center;
  2199. padding:5px 10px 5px 0px;
  2200. box-sizing:border-box;
  2201. width:100%;
  2202. }
  2203. #u27801_text {
  2204. border-width:0px;
  2205. word-wrap:break-word;
  2206. text-transform:none;
  2207. }
  2208. #u27802_img {
  2209. border-width:0px;
  2210. position:absolute;
  2211. left:0px;
  2212. top:0px;
  2213. width:13px;
  2214. height:13px;
  2215. }
  2216. #u27802 {
  2217. border-width:0px;
  2218. position:absolute;
  2219. left:2017px;
  2220. top:56px;
  2221. width:13px;
  2222. height:13px;
  2223. display:flex;
  2224. font-size:14px;
  2225. }
  2226. #u27802 .text {
  2227. position:absolute;
  2228. align-self:center;
  2229. padding:2px 2px 2px 2px;
  2230. box-sizing:border-box;
  2231. width:100%;
  2232. }
  2233. #u27802_text {
  2234. border-width:0px;
  2235. word-wrap:break-word;
  2236. text-transform:none;
  2237. visibility:hidden;
  2238. }
  2239. #u27803_div {
  2240. border-width:0px;
  2241. position:absolute;
  2242. left:0px;
  2243. top:0px;
  2244. width:338px;
  2245. height:43px;
  2246. background:inherit;
  2247. background-color:rgba(255, 255, 255, 0);
  2248. border:none;
  2249. border-top:0px;
  2250. border-right:0px;
  2251. border-bottom:0px;
  2252. border-radius:0px;
  2253. border-top-left-radius:0px;
  2254. border-bottom-left-radius:0px;
  2255. -moz-box-shadow:none;
  2256. -webkit-box-shadow:none;
  2257. box-shadow:none;
  2258. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2259. font-weight:500;
  2260. font-style:normal;
  2261. font-size:24px;
  2262. }
  2263. #u27803 {
  2264. border-width:0px;
  2265. position:absolute;
  2266. left:1099px;
  2267. top:109px;
  2268. width:338px;
  2269. height:43px;
  2270. display:flex;
  2271. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2272. font-weight:500;
  2273. font-style:normal;
  2274. font-size:24px;
  2275. }
  2276. #u27803 .text {
  2277. position:absolute;
  2278. align-self:center;
  2279. padding:5px 10px 5px 0px;
  2280. box-sizing:border-box;
  2281. width:100%;
  2282. }
  2283. #u27803_text {
  2284. border-width:0px;
  2285. white-space:nowrap;
  2286. text-transform:none;
  2287. }
  2288. #u27804_img {
  2289. border-width:0px;
  2290. position:absolute;
  2291. left:0px;
  2292. top:0px;
  2293. width:108px;
  2294. height:108px;
  2295. }
  2296. #u27804 {
  2297. border-width:0px;
  2298. position:absolute;
  2299. left:1919px;
  2300. top:110px;
  2301. width:108px;
  2302. height:108px;
  2303. display:flex;
  2304. -webkit-transform:rotate(315deg);
  2305. -moz-transform:rotate(315deg);
  2306. -ms-transform:rotate(315deg);
  2307. transform:rotate(315deg);
  2308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2309. font-weight:400;
  2310. font-style:normal;
  2311. font-size:28px;
  2312. color:#F59A23;
  2313. }
  2314. #u27804 .text {
  2315. position:absolute;
  2316. align-self:center;
  2317. padding:2px 2px 2px 2px;
  2318. box-sizing:border-box;
  2319. width:100%;
  2320. }
  2321. #u27804_text {
  2322. border-width:0px;
  2323. word-wrap:break-word;
  2324. text-transform:none;
  2325. }
  2326. #u27805_div {
  2327. border-width:0px;
  2328. position:absolute;
  2329. left:0px;
  2330. top:0px;
  2331. width:1000px;
  2332. height:420px;
  2333. background:inherit;
  2334. background-color:rgba(255, 255, 255, 1);
  2335. box-sizing:border-box;
  2336. border-width:1px;
  2337. border-style:solid;
  2338. border-color:rgba(242, 242, 242, 1);
  2339. border-radius:0px;
  2340. -moz-box-shadow:none;
  2341. -webkit-box-shadow:none;
  2342. box-shadow:none;
  2343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2344. font-weight:400;
  2345. font-style:normal;
  2346. font-size:14px;
  2347. color:#AAAAAA;
  2348. text-align:center;
  2349. line-height:30px;
  2350. }
  2351. #u27805 {
  2352. border-width:0px;
  2353. position:absolute;
  2354. left:1069px;
  2355. top:250px;
  2356. width:1000px;
  2357. height:420px;
  2358. display:flex;
  2359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2360. font-weight:400;
  2361. font-style:normal;
  2362. font-size:14px;
  2363. color:#AAAAAA;
  2364. text-align:center;
  2365. line-height:30px;
  2366. }
  2367. #u27805 .text {
  2368. position:absolute;
  2369. align-self:center;
  2370. padding:5px 10px 5px 10px;
  2371. box-sizing:border-box;
  2372. width:100%;
  2373. }
  2374. #u27805_text {
  2375. border-width:0px;
  2376. word-wrap:break-word;
  2377. text-transform:none;
  2378. visibility:hidden;
  2379. }
  2380. #u27806_div {
  2381. border-width:0px;
  2382. position:absolute;
  2383. left:0px;
  2384. top:0px;
  2385. width:73px;
  2386. height:40px;
  2387. background:inherit;
  2388. background-color:rgba(255, 255, 255, 0);
  2389. border:none;
  2390. border-left:0px;
  2391. border-top:0px;
  2392. border-right:0px;
  2393. border-radius:0px;
  2394. border-bottom-right-radius:0px;
  2395. border-bottom-left-radius:0px;
  2396. -moz-box-shadow:none;
  2397. -webkit-box-shadow:none;
  2398. box-shadow:none;
  2399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2400. font-weight:400;
  2401. font-style:normal;
  2402. font-size:18px;
  2403. }
  2404. #u27806 {
  2405. border-width:0px;
  2406. position:absolute;
  2407. left:1109px;
  2408. top:266px;
  2409. width:73px;
  2410. height:40px;
  2411. display:flex;
  2412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2413. font-weight:400;
  2414. font-style:normal;
  2415. font-size:18px;
  2416. }
  2417. #u27806 .text {
  2418. position:absolute;
  2419. align-self:center;
  2420. padding:0px 0px 0px 0px;
  2421. box-sizing:border-box;
  2422. width:100%;
  2423. }
  2424. #u27806_text {
  2425. border-width:0px;
  2426. white-space:nowrap;
  2427. text-transform:none;
  2428. }
  2429. #u27807_div {
  2430. border-width:0px;
  2431. position:absolute;
  2432. left:0px;
  2433. top:0px;
  2434. width:67px;
  2435. height:30px;
  2436. background:inherit;
  2437. background-color:rgba(255, 255, 255, 0);
  2438. border:none;
  2439. border-top:0px;
  2440. border-right:0px;
  2441. border-bottom:0px;
  2442. border-radius:0px;
  2443. border-top-left-radius:0px;
  2444. border-bottom-left-radius:0px;
  2445. -moz-box-shadow:none;
  2446. -webkit-box-shadow:none;
  2447. box-shadow:none;
  2448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2449. font-weight:400;
  2450. font-style:normal;
  2451. font-size:14px;
  2452. color:#7F7F7F;
  2453. }
  2454. #u27807 {
  2455. border-width:0px;
  2456. position:absolute;
  2457. left:1109px;
  2458. top:316px;
  2459. width:67px;
  2460. height:30px;
  2461. display:flex;
  2462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2463. font-weight:400;
  2464. font-style:normal;
  2465. font-size:14px;
  2466. color:#7F7F7F;
  2467. }
  2468. #u27807 .text {
  2469. position:absolute;
  2470. align-self:center;
  2471. padding:5px 10px 5px 0px;
  2472. box-sizing:border-box;
  2473. width:100%;
  2474. }
  2475. #u27807_text {
  2476. border-width:0px;
  2477. white-space:nowrap;
  2478. text-transform:none;
  2479. }
  2480. #u27808_div {
  2481. border-width:0px;
  2482. position:absolute;
  2483. left:0px;
  2484. top:0px;
  2485. width:39px;
  2486. height:30px;
  2487. background:inherit;
  2488. background-color:rgba(255, 255, 255, 0);
  2489. border:none;
  2490. border-top:0px;
  2491. border-right:0px;
  2492. border-bottom:0px;
  2493. border-radius:0px;
  2494. border-top-left-radius:0px;
  2495. border-bottom-left-radius:0px;
  2496. -moz-box-shadow:none;
  2497. -webkit-box-shadow:none;
  2498. box-shadow:none;
  2499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2500. font-weight:400;
  2501. font-style:normal;
  2502. font-size:14px;
  2503. }
  2504. #u27808 {
  2505. border-width:0px;
  2506. position:absolute;
  2507. left:1190px;
  2508. top:316px;
  2509. width:39px;
  2510. height:30px;
  2511. display:flex;
  2512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2513. font-weight:400;
  2514. font-style:normal;
  2515. font-size:14px;
  2516. }
  2517. #u27808 .text {
  2518. position:absolute;
  2519. align-self:center;
  2520. padding:5px 10px 5px 0px;
  2521. box-sizing:border-box;
  2522. width:100%;
  2523. }
  2524. #u27808_text {
  2525. border-width:0px;
  2526. white-space:nowrap;
  2527. text-transform:none;
  2528. }
  2529. #u27809_div {
  2530. border-width:0px;
  2531. position:absolute;
  2532. left:0px;
  2533. top:0px;
  2534. width:95px;
  2535. height:30px;
  2536. background:inherit;
  2537. background-color:rgba(255, 255, 255, 0);
  2538. border:none;
  2539. border-top:0px;
  2540. border-right:0px;
  2541. border-bottom:0px;
  2542. border-radius:0px;
  2543. border-top-left-radius:0px;
  2544. border-bottom-left-radius:0px;
  2545. -moz-box-shadow:none;
  2546. -webkit-box-shadow:none;
  2547. box-shadow:none;
  2548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2549. font-weight:400;
  2550. font-style:normal;
  2551. font-size:14px;
  2552. color:#7F7F7F;
  2553. }
  2554. #u27809 {
  2555. border-width:0px;
  2556. position:absolute;
  2557. left:1409px;
  2558. top:316px;
  2559. width:95px;
  2560. height:30px;
  2561. display:flex;
  2562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2563. font-weight:400;
  2564. font-style:normal;
  2565. font-size:14px;
  2566. color:#7F7F7F;
  2567. }
  2568. #u27809 .text {
  2569. position:absolute;
  2570. align-self:center;
  2571. padding:5px 10px 5px 0px;
  2572. box-sizing:border-box;
  2573. width:100%;
  2574. }
  2575. #u27809_text {
  2576. border-width:0px;
  2577. white-space:nowrap;
  2578. text-transform:none;
  2579. }
  2580. #u27810_div {
  2581. border-width:0px;
  2582. position:absolute;
  2583. left:0px;
  2584. top:0px;
  2585. width:101px;
  2586. height:30px;
  2587. background:inherit;
  2588. background-color:rgba(255, 255, 255, 0);
  2589. border:none;
  2590. border-top:0px;
  2591. border-right:0px;
  2592. border-bottom:0px;
  2593. border-radius:0px;
  2594. border-top-left-radius:0px;
  2595. border-bottom-left-radius:0px;
  2596. -moz-box-shadow:none;
  2597. -webkit-box-shadow:none;
  2598. box-shadow:none;
  2599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2600. font-weight:400;
  2601. font-style:normal;
  2602. font-size:14px;
  2603. }
  2604. #u27810 {
  2605. border-width:0px;
  2606. position:absolute;
  2607. left:1490px;
  2608. top:316px;
  2609. width:101px;
  2610. height:30px;
  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. }
  2617. #u27810 .text {
  2618. position:absolute;
  2619. align-self:center;
  2620. padding:5px 10px 5px 0px;
  2621. box-sizing:border-box;
  2622. width:100%;
  2623. }
  2624. #u27810_text {
  2625. border-width:0px;
  2626. white-space:nowrap;
  2627. text-transform:none;
  2628. }
  2629. #u27811_div {
  2630. border-width:0px;
  2631. position:absolute;
  2632. left:0px;
  2633. top:0px;
  2634. width:81px;
  2635. height:30px;
  2636. background:inherit;
  2637. background-color:rgba(255, 255, 255, 0);
  2638. border:none;
  2639. border-top:0px;
  2640. border-right:0px;
  2641. border-bottom:0px;
  2642. border-radius:0px;
  2643. border-top-left-radius:0px;
  2644. border-bottom-left-radius:0px;
  2645. -moz-box-shadow:none;
  2646. -webkit-box-shadow:none;
  2647. box-shadow:none;
  2648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2649. font-weight:400;
  2650. font-style:normal;
  2651. font-size:14px;
  2652. color:#7F7F7F;
  2653. }
  2654. #u27811 {
  2655. border-width:0px;
  2656. position:absolute;
  2657. left:1109px;
  2658. top:356px;
  2659. width:81px;
  2660. height:30px;
  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. color:#7F7F7F;
  2667. }
  2668. #u27811 .text {
  2669. position:absolute;
  2670. align-self:center;
  2671. padding:5px 10px 5px 0px;
  2672. box-sizing:border-box;
  2673. width:100%;
  2674. }
  2675. #u27811_text {
  2676. border-width:0px;
  2677. white-space:nowrap;
  2678. text-transform:none;
  2679. }
  2680. #u27812_div {
  2681. border-width:0px;
  2682. position:absolute;
  2683. left:0px;
  2684. top:0px;
  2685. width:109px;
  2686. height:30px;
  2687. background:inherit;
  2688. background-color:rgba(255, 255, 255, 0);
  2689. border:none;
  2690. border-top:0px;
  2691. border-right:0px;
  2692. border-bottom:0px;
  2693. border-radius:0px;
  2694. border-top-left-radius:0px;
  2695. border-bottom-left-radius:0px;
  2696. -moz-box-shadow:none;
  2697. -webkit-box-shadow:none;
  2698. box-shadow:none;
  2699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2700. font-weight:400;
  2701. font-style:normal;
  2702. font-size:14px;
  2703. color:#7F7F7F;
  2704. }
  2705. #u27812 {
  2706. border-width:0px;
  2707. position:absolute;
  2708. left:1726px;
  2709. top:356px;
  2710. width:109px;
  2711. height:30px;
  2712. display:flex;
  2713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2714. font-weight:400;
  2715. font-style:normal;
  2716. font-size:14px;
  2717. color:#7F7F7F;
  2718. }
  2719. #u27812 .text {
  2720. position:absolute;
  2721. align-self:center;
  2722. padding:5px 10px 5px 0px;
  2723. box-sizing:border-box;
  2724. width:100%;
  2725. }
  2726. #u27812_text {
  2727. border-width:0px;
  2728. white-space:nowrap;
  2729. text-transform:none;
  2730. }
  2731. #u27813_div {
  2732. border-width:0px;
  2733. position:absolute;
  2734. left:0px;
  2735. top:0px;
  2736. width:185px;
  2737. height:30px;
  2738. background:inherit;
  2739. background-color:rgba(255, 255, 255, 0);
  2740. border:none;
  2741. border-top:0px;
  2742. border-right:0px;
  2743. border-bottom:0px;
  2744. border-radius:0px;
  2745. border-top-left-radius:0px;
  2746. border-bottom-left-radius:0px;
  2747. -moz-box-shadow:none;
  2748. -webkit-box-shadow:none;
  2749. box-shadow:none;
  2750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2751. font-weight:400;
  2752. font-style:normal;
  2753. font-size:14px;
  2754. }
  2755. #u27813 {
  2756. border-width:0px;
  2757. position:absolute;
  2758. left:1835px;
  2759. top:356px;
  2760. width:185px;
  2761. height:30px;
  2762. display:flex;
  2763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2764. font-weight:400;
  2765. font-style:normal;
  2766. font-size:14px;
  2767. }
  2768. #u27813 .text {
  2769. position:absolute;
  2770. align-self:center;
  2771. padding:5px 10px 5px 0px;
  2772. box-sizing:border-box;
  2773. width:100%;
  2774. }
  2775. #u27813_text {
  2776. border-width:0px;
  2777. white-space:nowrap;
  2778. text-transform:none;
  2779. }
  2780. #u27814_div {
  2781. border-width:0px;
  2782. position:absolute;
  2783. left:0px;
  2784. top:0px;
  2785. width:131px;
  2786. height:30px;
  2787. background:inherit;
  2788. background-color:rgba(255, 255, 255, 0);
  2789. border:none;
  2790. border-top:0px;
  2791. border-right:0px;
  2792. border-bottom:0px;
  2793. border-radius:0px;
  2794. border-top-left-radius:0px;
  2795. border-bottom-left-radius:0px;
  2796. -moz-box-shadow:none;
  2797. -webkit-box-shadow:none;
  2798. box-shadow:none;
  2799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2800. font-weight:400;
  2801. font-style:normal;
  2802. font-size:14px;
  2803. }
  2804. #u27814 {
  2805. border-width:0px;
  2806. position:absolute;
  2807. left:1190px;
  2808. top:356px;
  2809. width:131px;
  2810. height:30px;
  2811. display:flex;
  2812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2813. font-weight:400;
  2814. font-style:normal;
  2815. font-size:14px;
  2816. }
  2817. #u27814 .text {
  2818. position:absolute;
  2819. align-self:center;
  2820. padding:5px 10px 5px 0px;
  2821. box-sizing:border-box;
  2822. width:100%;
  2823. }
  2824. #u27814_text {
  2825. border-width:0px;
  2826. white-space:nowrap;
  2827. text-transform:none;
  2828. }
  2829. #u27815_div {
  2830. border-width:0px;
  2831. position:absolute;
  2832. left:0px;
  2833. top:0px;
  2834. width:81px;
  2835. height:30px;
  2836. background:inherit;
  2837. background-color:rgba(255, 255, 255, 0);
  2838. border:none;
  2839. border-top:0px;
  2840. border-right:0px;
  2841. border-bottom:0px;
  2842. border-radius:0px;
  2843. border-top-left-radius:0px;
  2844. border-bottom-left-radius:0px;
  2845. -moz-box-shadow:none;
  2846. -webkit-box-shadow:none;
  2847. box-shadow:none;
  2848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2849. font-weight:400;
  2850. font-style:normal;
  2851. font-size:14px;
  2852. color:#7F7F7F;
  2853. }
  2854. #u27815 {
  2855. border-width:0px;
  2856. position:absolute;
  2857. left:1109px;
  2858. top:436px;
  2859. width:81px;
  2860. height:30px;
  2861. display:flex;
  2862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2863. font-weight:400;
  2864. font-style:normal;
  2865. font-size:14px;
  2866. color:#7F7F7F;
  2867. }
  2868. #u27815 .text {
  2869. position:absolute;
  2870. align-self:center;
  2871. padding:5px 10px 5px 0px;
  2872. box-sizing:border-box;
  2873. width:100%;
  2874. }
  2875. #u27815_text {
  2876. border-width:0px;
  2877. white-space:nowrap;
  2878. text-transform:none;
  2879. }
  2880. #u27816_div {
  2881. border-width:0px;
  2882. position:absolute;
  2883. left:0px;
  2884. top:0px;
  2885. width:263px;
  2886. height:30px;
  2887. background:inherit;
  2888. background-color:rgba(255, 255, 255, 0);
  2889. border:none;
  2890. border-top:0px;
  2891. border-right:0px;
  2892. border-bottom:0px;
  2893. border-radius:0px;
  2894. border-top-left-radius:0px;
  2895. border-bottom-left-radius:0px;
  2896. -moz-box-shadow:none;
  2897. -webkit-box-shadow:none;
  2898. box-shadow:none;
  2899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2900. font-weight:400;
  2901. font-style:normal;
  2902. font-size:14px;
  2903. }
  2904. #u27816 {
  2905. border-width:0px;
  2906. position:absolute;
  2907. left:1190px;
  2908. top:436px;
  2909. width:263px;
  2910. height:30px;
  2911. display:flex;
  2912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2913. font-weight:400;
  2914. font-style:normal;
  2915. font-size:14px;
  2916. }
  2917. #u27816 .text {
  2918. position:absolute;
  2919. align-self:center;
  2920. padding:5px 10px 5px 0px;
  2921. box-sizing:border-box;
  2922. width:100%;
  2923. }
  2924. #u27816_text {
  2925. border-width:0px;
  2926. white-space:nowrap;
  2927. text-transform:none;
  2928. }
  2929. #u27817_div {
  2930. border-width:0px;
  2931. position:absolute;
  2932. left:0px;
  2933. top:0px;
  2934. width:325px;
  2935. height:60px;
  2936. background:inherit;
  2937. background-color:rgba(255, 255, 255, 0);
  2938. border:none;
  2939. border-left:0px;
  2940. border-top:0px;
  2941. border-right:0px;
  2942. border-radius:0px;
  2943. border-bottom-right-radius:0px;
  2944. border-bottom-left-radius:0px;
  2945. -moz-box-shadow:none;
  2946. -webkit-box-shadow:none;
  2947. box-shadow:none;
  2948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2949. font-weight:400;
  2950. font-style:normal;
  2951. font-size:14px;
  2952. line-height:30px;
  2953. }
  2954. #u27817 {
  2955. border-width:0px;
  2956. position:absolute;
  2957. left:1099px;
  2958. top:164px;
  2959. width:325px;
  2960. height:60px;
  2961. display:flex;
  2962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2963. font-weight:400;
  2964. font-style:normal;
  2965. font-size:14px;
  2966. line-height:30px;
  2967. }
  2968. #u27817 .text {
  2969. position:absolute;
  2970. align-self:flex-start;
  2971. padding:0px 0px 0px 0px;
  2972. box-sizing:border-box;
  2973. width:100%;
  2974. }
  2975. #u27817_text {
  2976. border-width:0px;
  2977. word-wrap:break-word;
  2978. text-transform:none;
  2979. }
  2980. #u27818 {
  2981. border-width:0px;
  2982. position:absolute;
  2983. left:0px;
  2984. top:0px;
  2985. width:0px;
  2986. height:0px;
  2987. }
  2988. #u27819_div {
  2989. border-width:0px;
  2990. position:absolute;
  2991. left:0px;
  2992. top:0px;
  2993. width:1000px;
  2994. height:60px;
  2995. background:inherit;
  2996. background-color:rgba(255, 255, 255, 1);
  2997. box-sizing:border-box;
  2998. border-width:1px;
  2999. border-style:solid;
  3000. border-color:rgba(215, 215, 215, 1);
  3001. border-radius:0px;
  3002. -moz-box-shadow:none;
  3003. -webkit-box-shadow:none;
  3004. box-shadow:none;
  3005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3006. font-weight:400;
  3007. font-style:normal;
  3008. font-size:14px;
  3009. color:#AAAAAA;
  3010. text-align:center;
  3011. line-height:30px;
  3012. }
  3013. #u27819 {
  3014. border-width:0px;
  3015. position:absolute;
  3016. left:1069px;
  3017. top:1211px;
  3018. width:1000px;
  3019. height:60px;
  3020. display:flex;
  3021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3022. font-weight:400;
  3023. font-style:normal;
  3024. font-size:14px;
  3025. color:#AAAAAA;
  3026. text-align:center;
  3027. line-height:30px;
  3028. }
  3029. #u27819 .text {
  3030. position:absolute;
  3031. align-self:center;
  3032. padding:5px 10px 5px 10px;
  3033. box-sizing:border-box;
  3034. width:100%;
  3035. }
  3036. #u27819_text {
  3037. border-width:0px;
  3038. word-wrap:break-word;
  3039. text-transform:none;
  3040. visibility:hidden;
  3041. }
  3042. #u27820_div {
  3043. border-width:0px;
  3044. position:absolute;
  3045. left:0px;
  3046. top:0px;
  3047. width:80px;
  3048. height:30px;
  3049. background:inherit;
  3050. background-color:rgba(0, 137, 254, 1);
  3051. border:none;
  3052. border-radius:4px;
  3053. -moz-box-shadow:none;
  3054. -webkit-box-shadow:none;
  3055. box-shadow:none;
  3056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3057. font-weight:400;
  3058. font-style:normal;
  3059. font-size:14px;
  3060. color:#FFFFFF;
  3061. }
  3062. #u27820 {
  3063. border-width:0px;
  3064. position:absolute;
  3065. left:1950px;
  3066. top:1226px;
  3067. width:80px;
  3068. height:30px;
  3069. display:flex;
  3070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3071. font-weight:400;
  3072. font-style:normal;
  3073. font-size:14px;
  3074. color:#FFFFFF;
  3075. }
  3076. #u27820 .text {
  3077. position:absolute;
  3078. align-self:center;
  3079. padding:2px 2px 2px 2px;
  3080. box-sizing:border-box;
  3081. width:100%;
  3082. }
  3083. #u27820_text {
  3084. border-width:0px;
  3085. word-wrap:break-word;
  3086. text-transform:none;
  3087. }
  3088. #u27821_div {
  3089. border-width:0px;
  3090. position:absolute;
  3091. left:0px;
  3092. top:0px;
  3093. width:80px;
  3094. height:30px;
  3095. background:inherit;
  3096. background-color:rgba(255, 255, 255, 1);
  3097. box-sizing:border-box;
  3098. border-width:1px;
  3099. border-style:solid;
  3100. border-color:rgba(170, 170, 170, 1);
  3101. border-radius:4px;
  3102. -moz-box-shadow:none;
  3103. -webkit-box-shadow:none;
  3104. box-shadow:none;
  3105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3106. font-weight:400;
  3107. font-style:normal;
  3108. font-size:14px;
  3109. }
  3110. #u27821 {
  3111. border-width:0px;
  3112. position:absolute;
  3113. left:1860px;
  3114. top:1226px;
  3115. width:80px;
  3116. height:30px;
  3117. display:flex;
  3118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3119. font-weight:400;
  3120. font-style:normal;
  3121. font-size:14px;
  3122. }
  3123. #u27821 .text {
  3124. position:absolute;
  3125. align-self:center;
  3126. padding:2px 2px 2px 2px;
  3127. box-sizing:border-box;
  3128. width:100%;
  3129. }
  3130. #u27821_text {
  3131. border-width:0px;
  3132. word-wrap:break-word;
  3133. text-transform:none;
  3134. }
  3135. #u27822_div {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:0px;
  3139. top:0px;
  3140. width:57px;
  3141. height:36px;
  3142. background:inherit;
  3143. background-color:rgba(255, 255, 255, 0);
  3144. border:none;
  3145. border-left:0px;
  3146. border-top:0px;
  3147. border-right:0px;
  3148. border-radius:0px;
  3149. border-bottom-right-radius:0px;
  3150. border-bottom-left-radius:0px;
  3151. -moz-box-shadow:none;
  3152. -webkit-box-shadow:none;
  3153. box-shadow:none;
  3154. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3155. font-weight:500;
  3156. font-style:normal;
  3157. font-size:14px;
  3158. line-height:40px;
  3159. }
  3160. #u27822 {
  3161. border-width:0px;
  3162. position:absolute;
  3163. left:1109px;
  3164. top:476px;
  3165. width:57px;
  3166. height:36px;
  3167. display:flex;
  3168. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3169. font-weight:500;
  3170. font-style:normal;
  3171. font-size:14px;
  3172. line-height:40px;
  3173. }
  3174. #u27822 .text {
  3175. position:absolute;
  3176. align-self:flex-start;
  3177. padding:0px 0px 0px 0px;
  3178. box-sizing:border-box;
  3179. width:100%;
  3180. }
  3181. #u27822_text {
  3182. border-width:0px;
  3183. white-space:nowrap;
  3184. text-transform:none;
  3185. }
  3186. #u27823_img {
  3187. border-width:0px;
  3188. position:absolute;
  3189. left:0px;
  3190. top:0px;
  3191. width:99px;
  3192. height:85px;
  3193. }
  3194. #u27823 {
  3195. border-width:0px;
  3196. position:absolute;
  3197. left:1109px;
  3198. top:556px;
  3199. width:99px;
  3200. height:85px;
  3201. display:flex;
  3202. }
  3203. #u27823 .text {
  3204. position:absolute;
  3205. align-self:center;
  3206. padding:2px 2px 2px 2px;
  3207. box-sizing:border-box;
  3208. width:100%;
  3209. }
  3210. #u27823_text {
  3211. border-width:0px;
  3212. word-wrap:break-word;
  3213. text-transform:none;
  3214. visibility:hidden;
  3215. }
  3216. #u27824_img {
  3217. border-width:0px;
  3218. position:absolute;
  3219. left:0px;
  3220. top:0px;
  3221. width:99px;
  3222. height:85px;
  3223. }
  3224. #u27824 {
  3225. border-width:0px;
  3226. position:absolute;
  3227. left:1218px;
  3228. top:556px;
  3229. width:99px;
  3230. height:85px;
  3231. display:flex;
  3232. }
  3233. #u27824 .text {
  3234. position:absolute;
  3235. align-self:center;
  3236. padding:2px 2px 2px 2px;
  3237. box-sizing:border-box;
  3238. width:100%;
  3239. }
  3240. #u27824_text {
  3241. border-width:0px;
  3242. word-wrap:break-word;
  3243. text-transform:none;
  3244. visibility:hidden;
  3245. }
  3246. #u27825_div {
  3247. border-width:0px;
  3248. position:absolute;
  3249. left:0px;
  3250. top:0px;
  3251. width:1000px;
  3252. height:531px;
  3253. background:inherit;
  3254. background-color:rgba(255, 255, 255, 1);
  3255. box-sizing:border-box;
  3256. border-width:1px;
  3257. border-style:solid;
  3258. border-color:rgba(242, 242, 242, 1);
  3259. border-radius:0px;
  3260. -moz-box-shadow:none;
  3261. -webkit-box-shadow:none;
  3262. box-shadow:none;
  3263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3264. font-weight:400;
  3265. font-style:normal;
  3266. font-size:14px;
  3267. color:#AAAAAA;
  3268. text-align:center;
  3269. line-height:30px;
  3270. }
  3271. #u27825 {
  3272. border-width:0px;
  3273. position:absolute;
  3274. left:1069px;
  3275. top:680px;
  3276. width:1000px;
  3277. height:531px;
  3278. display:flex;
  3279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3280. font-weight:400;
  3281. font-style:normal;
  3282. font-size:14px;
  3283. color:#AAAAAA;
  3284. text-align:center;
  3285. line-height:30px;
  3286. }
  3287. #u27825 .text {
  3288. position:absolute;
  3289. align-self:center;
  3290. padding:5px 10px 5px 10px;
  3291. box-sizing:border-box;
  3292. width:100%;
  3293. }
  3294. #u27825_text {
  3295. border-width:0px;
  3296. word-wrap:break-word;
  3297. text-transform:none;
  3298. visibility:hidden;
  3299. }
  3300. #u27826_div {
  3301. border-width:0px;
  3302. position:absolute;
  3303. left:0px;
  3304. top:0px;
  3305. width:73px;
  3306. height:40px;
  3307. background:inherit;
  3308. background-color:rgba(255, 255, 255, 0);
  3309. border:none;
  3310. border-left:0px;
  3311. border-top:0px;
  3312. border-right:0px;
  3313. border-radius:0px;
  3314. border-bottom-right-radius:0px;
  3315. border-bottom-left-radius:0px;
  3316. -moz-box-shadow:none;
  3317. -webkit-box-shadow:none;
  3318. box-shadow:none;
  3319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3320. font-weight:400;
  3321. font-style:normal;
  3322. font-size:18px;
  3323. }
  3324. #u27826 {
  3325. border-width:0px;
  3326. position:absolute;
  3327. left:1109px;
  3328. top:696px;
  3329. width:73px;
  3330. height:40px;
  3331. display:flex;
  3332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3333. font-weight:400;
  3334. font-style:normal;
  3335. font-size:18px;
  3336. }
  3337. #u27826 .text {
  3338. position:absolute;
  3339. align-self:center;
  3340. padding:0px 0px 0px 0px;
  3341. box-sizing:border-box;
  3342. width:100%;
  3343. }
  3344. #u27826_text {
  3345. border-width:0px;
  3346. white-space:nowrap;
  3347. text-transform:none;
  3348. }
  3349. #u27827_div {
  3350. border-width:0px;
  3351. position:absolute;
  3352. left:0px;
  3353. top:0px;
  3354. width:95px;
  3355. height:30px;
  3356. background:inherit;
  3357. background-color:rgba(255, 255, 255, 0);
  3358. border:none;
  3359. border-top:0px;
  3360. border-right:0px;
  3361. border-bottom:0px;
  3362. border-radius:0px;
  3363. border-top-left-radius:0px;
  3364. border-bottom-left-radius:0px;
  3365. -moz-box-shadow:none;
  3366. -webkit-box-shadow:none;
  3367. box-shadow:none;
  3368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3369. font-weight:400;
  3370. font-style:normal;
  3371. font-size:14px;
  3372. color:#7F7F7F;
  3373. }
  3374. #u27827 {
  3375. border-width:0px;
  3376. position:absolute;
  3377. left:1726px;
  3378. top:316px;
  3379. width:95px;
  3380. height:30px;
  3381. display:flex;
  3382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3383. font-weight:400;
  3384. font-style:normal;
  3385. font-size:14px;
  3386. color:#7F7F7F;
  3387. }
  3388. #u27827 .text {
  3389. position:absolute;
  3390. align-self:center;
  3391. padding:5px 10px 5px 0px;
  3392. box-sizing:border-box;
  3393. width:100%;
  3394. }
  3395. #u27827_text {
  3396. border-width:0px;
  3397. white-space:nowrap;
  3398. text-transform:none;
  3399. }
  3400. #u27828_div {
  3401. border-width:0px;
  3402. position:absolute;
  3403. left:0px;
  3404. top:0px;
  3405. width:101px;
  3406. height:30px;
  3407. background:inherit;
  3408. background-color:rgba(255, 255, 255, 0);
  3409. border:none;
  3410. border-top:0px;
  3411. border-right:0px;
  3412. border-bottom:0px;
  3413. border-radius:0px;
  3414. border-top-left-radius:0px;
  3415. border-bottom-left-radius:0px;
  3416. -moz-box-shadow:none;
  3417. -webkit-box-shadow:none;
  3418. box-shadow:none;
  3419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3420. font-weight:400;
  3421. font-style:normal;
  3422. font-size:14px;
  3423. }
  3424. #u27828 {
  3425. border-width:0px;
  3426. position:absolute;
  3427. left:1807px;
  3428. top:316px;
  3429. width:101px;
  3430. height:30px;
  3431. display:flex;
  3432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3433. font-weight:400;
  3434. font-style:normal;
  3435. font-size:14px;
  3436. }
  3437. #u27828 .text {
  3438. position:absolute;
  3439. align-self:center;
  3440. padding:5px 10px 5px 0px;
  3441. box-sizing:border-box;
  3442. width:100%;
  3443. }
  3444. #u27828_text {
  3445. border-width:0px;
  3446. white-space:nowrap;
  3447. text-transform:none;
  3448. }
  3449. #u27829_div {
  3450. border-width:0px;
  3451. position:absolute;
  3452. left:0px;
  3453. top:0px;
  3454. width:81px;
  3455. height:30px;
  3456. background:inherit;
  3457. background-color:rgba(255, 255, 255, 0);
  3458. border:none;
  3459. border-top:0px;
  3460. border-right:0px;
  3461. border-bottom:0px;
  3462. border-radius:0px;
  3463. border-top-left-radius:0px;
  3464. border-bottom-left-radius:0px;
  3465. -moz-box-shadow:none;
  3466. -webkit-box-shadow:none;
  3467. box-shadow:none;
  3468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3469. font-weight:400;
  3470. font-style:normal;
  3471. font-size:14px;
  3472. color:#7F7F7F;
  3473. }
  3474. #u27829 {
  3475. border-width:0px;
  3476. position:absolute;
  3477. left:1409px;
  3478. top:356px;
  3479. width:81px;
  3480. height:30px;
  3481. display:flex;
  3482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3483. font-weight:400;
  3484. font-style:normal;
  3485. font-size:14px;
  3486. color:#7F7F7F;
  3487. }
  3488. #u27829 .text {
  3489. position:absolute;
  3490. align-self:center;
  3491. padding:5px 10px 5px 0px;
  3492. box-sizing:border-box;
  3493. width:100%;
  3494. }
  3495. #u27829_text {
  3496. border-width:0px;
  3497. white-space:nowrap;
  3498. text-transform:none;
  3499. }
  3500. #u27830_div {
  3501. border-width:0px;
  3502. position:absolute;
  3503. left:0px;
  3504. top:0px;
  3505. width:134px;
  3506. height:30px;
  3507. background:inherit;
  3508. background-color:rgba(255, 255, 255, 0);
  3509. border:none;
  3510. border-top:0px;
  3511. border-right:0px;
  3512. border-bottom:0px;
  3513. border-radius:0px;
  3514. border-top-left-radius:0px;
  3515. border-bottom-left-radius:0px;
  3516. -moz-box-shadow:none;
  3517. -webkit-box-shadow:none;
  3518. box-shadow:none;
  3519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3520. font-weight:400;
  3521. font-style:normal;
  3522. font-size:14px;
  3523. }
  3524. #u27830 {
  3525. border-width:0px;
  3526. position:absolute;
  3527. left:1490px;
  3528. top:356px;
  3529. width:134px;
  3530. height:30px;
  3531. display:flex;
  3532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3533. font-weight:400;
  3534. font-style:normal;
  3535. font-size:14px;
  3536. }
  3537. #u27830 .text {
  3538. position:absolute;
  3539. align-self:center;
  3540. padding:5px 10px 5px 0px;
  3541. box-sizing:border-box;
  3542. width:100%;
  3543. }
  3544. #u27830_text {
  3545. border-width:0px;
  3546. white-space:nowrap;
  3547. text-transform:none;
  3548. }
  3549. #u27831_div {
  3550. border-width:0px;
  3551. position:absolute;
  3552. left:0px;
  3553. top:0px;
  3554. width:81px;
  3555. height:30px;
  3556. background:inherit;
  3557. background-color:rgba(255, 255, 255, 0);
  3558. border:none;
  3559. border-top:0px;
  3560. border-right:0px;
  3561. border-bottom:0px;
  3562. border-radius:0px;
  3563. border-top-left-radius:0px;
  3564. border-bottom-left-radius:0px;
  3565. -moz-box-shadow:none;
  3566. -webkit-box-shadow:none;
  3567. box-shadow:none;
  3568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3569. font-weight:400;
  3570. font-style:normal;
  3571. font-size:14px;
  3572. color:#7F7F7F;
  3573. }
  3574. #u27831 {
  3575. border-width:0px;
  3576. position:absolute;
  3577. left:1109px;
  3578. top:396px;
  3579. width:81px;
  3580. height:30px;
  3581. display:flex;
  3582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3583. font-weight:400;
  3584. font-style:normal;
  3585. font-size:14px;
  3586. color:#7F7F7F;
  3587. }
  3588. #u27831 .text {
  3589. position:absolute;
  3590. align-self:center;
  3591. padding:5px 10px 5px 0px;
  3592. box-sizing:border-box;
  3593. width:100%;
  3594. }
  3595. #u27831_text {
  3596. border-width:0px;
  3597. white-space:nowrap;
  3598. text-transform:none;
  3599. }
  3600. #u27832_div {
  3601. border-width:0px;
  3602. position:absolute;
  3603. left:0px;
  3604. top:0px;
  3605. width:151px;
  3606. height:30px;
  3607. background:inherit;
  3608. background-color:rgba(255, 255, 255, 0);
  3609. border:none;
  3610. border-top:0px;
  3611. border-right:0px;
  3612. border-bottom:0px;
  3613. border-radius:0px;
  3614. border-top-left-radius:0px;
  3615. border-bottom-left-radius:0px;
  3616. -moz-box-shadow:none;
  3617. -webkit-box-shadow:none;
  3618. box-shadow:none;
  3619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3620. font-weight:400;
  3621. font-style:normal;
  3622. font-size:14px;
  3623. color:#0089FE;
  3624. }
  3625. #u27832 {
  3626. border-width:0px;
  3627. position:absolute;
  3628. left:1190px;
  3629. top:396px;
  3630. width:151px;
  3631. height:30px;
  3632. display:flex;
  3633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3634. font-weight:400;
  3635. font-style:normal;
  3636. font-size:14px;
  3637. color:#0089FE;
  3638. }
  3639. #u27832 .text {
  3640. position:absolute;
  3641. align-self:center;
  3642. padding:5px 10px 5px 0px;
  3643. box-sizing:border-box;
  3644. width:100%;
  3645. }
  3646. #u27832_text {
  3647. border-width:0px;
  3648. white-space:nowrap;
  3649. text-transform:none;
  3650. }
  3651. #u27833_div {
  3652. border-width:0px;
  3653. position:absolute;
  3654. left:0px;
  3655. top:0px;
  3656. width:81px;
  3657. height:30px;
  3658. background:inherit;
  3659. background-color:rgba(255, 255, 255, 0);
  3660. border:none;
  3661. border-top:0px;
  3662. border-right:0px;
  3663. border-bottom:0px;
  3664. border-radius:0px;
  3665. border-top-left-radius:0px;
  3666. border-bottom-left-radius:0px;
  3667. -moz-box-shadow:none;
  3668. -webkit-box-shadow:none;
  3669. box-shadow:none;
  3670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3671. font-weight:400;
  3672. font-style:normal;
  3673. font-size:14px;
  3674. color:#7F7F7F;
  3675. }
  3676. #u27833 {
  3677. border-width:0px;
  3678. position:absolute;
  3679. left:1409px;
  3680. top:396px;
  3681. width:81px;
  3682. height:30px;
  3683. display:flex;
  3684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3685. font-weight:400;
  3686. font-style:normal;
  3687. font-size:14px;
  3688. color:#7F7F7F;
  3689. }
  3690. #u27833 .text {
  3691. position:absolute;
  3692. align-self:center;
  3693. padding:5px 10px 5px 0px;
  3694. box-sizing:border-box;
  3695. width:100%;
  3696. }
  3697. #u27833_text {
  3698. border-width:0px;
  3699. white-space:nowrap;
  3700. text-transform:none;
  3701. }
  3702. #u27834_div {
  3703. border-width:0px;
  3704. position:absolute;
  3705. left:0px;
  3706. top:0px;
  3707. width:39px;
  3708. height:30px;
  3709. background:inherit;
  3710. background-color:rgba(255, 255, 255, 0);
  3711. border:none;
  3712. border-top:0px;
  3713. border-right:0px;
  3714. border-bottom:0px;
  3715. border-radius:0px;
  3716. border-top-left-radius:0px;
  3717. border-bottom-left-radius:0px;
  3718. -moz-box-shadow:none;
  3719. -webkit-box-shadow:none;
  3720. box-shadow:none;
  3721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3722. font-weight:400;
  3723. font-style:normal;
  3724. font-size:14px;
  3725. }
  3726. #u27834 {
  3727. border-width:0px;
  3728. position:absolute;
  3729. left:1490px;
  3730. top:396px;
  3731. width:39px;
  3732. height:30px;
  3733. display:flex;
  3734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3735. font-weight:400;
  3736. font-style:normal;
  3737. font-size:14px;
  3738. }
  3739. #u27834 .text {
  3740. position:absolute;
  3741. align-self:center;
  3742. padding:5px 10px 5px 0px;
  3743. box-sizing:border-box;
  3744. width:100%;
  3745. }
  3746. #u27834_text {
  3747. border-width:0px;
  3748. white-space:nowrap;
  3749. text-transform:none;
  3750. }
  3751. #u27835_div {
  3752. border-width:0px;
  3753. position:absolute;
  3754. left:0px;
  3755. top:0px;
  3756. width:81px;
  3757. height:30px;
  3758. background:inherit;
  3759. background-color:rgba(255, 255, 255, 0);
  3760. border:none;
  3761. border-top:0px;
  3762. border-right:0px;
  3763. border-bottom:0px;
  3764. border-radius:0px;
  3765. border-top-left-radius:0px;
  3766. border-bottom-left-radius:0px;
  3767. -moz-box-shadow:none;
  3768. -webkit-box-shadow:none;
  3769. box-shadow:none;
  3770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3771. font-weight:400;
  3772. font-style:normal;
  3773. font-size:14px;
  3774. color:#7F7F7F;
  3775. }
  3776. #u27835 {
  3777. border-width:0px;
  3778. position:absolute;
  3779. left:1726px;
  3780. top:396px;
  3781. width:81px;
  3782. height:30px;
  3783. display:flex;
  3784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3785. font-weight:400;
  3786. font-style:normal;
  3787. font-size:14px;
  3788. color:#7F7F7F;
  3789. }
  3790. #u27835 .text {
  3791. position:absolute;
  3792. align-self:center;
  3793. padding:5px 10px 5px 0px;
  3794. box-sizing:border-box;
  3795. width:100%;
  3796. }
  3797. #u27835_text {
  3798. border-width:0px;
  3799. white-space:nowrap;
  3800. text-transform:none;
  3801. }
  3802. #u27836_div {
  3803. border-width:0px;
  3804. position:absolute;
  3805. left:0px;
  3806. top:0px;
  3807. width:126px;
  3808. height:30px;
  3809. background:inherit;
  3810. background-color:rgba(255, 255, 255, 0);
  3811. border:none;
  3812. border-top:0px;
  3813. border-right:0px;
  3814. border-bottom:0px;
  3815. border-radius:0px;
  3816. border-top-left-radius:0px;
  3817. border-bottom-left-radius:0px;
  3818. -moz-box-shadow:none;
  3819. -webkit-box-shadow:none;
  3820. box-shadow:none;
  3821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3822. font-weight:400;
  3823. font-style:normal;
  3824. font-size:14px;
  3825. }
  3826. #u27836 {
  3827. border-width:0px;
  3828. position:absolute;
  3829. left:1807px;
  3830. top:396px;
  3831. width:126px;
  3832. height:30px;
  3833. display:flex;
  3834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3835. font-weight:400;
  3836. font-style:normal;
  3837. font-size:14px;
  3838. }
  3839. #u27836 .text {
  3840. position:absolute;
  3841. align-self:center;
  3842. padding:5px 10px 5px 0px;
  3843. box-sizing:border-box;
  3844. width:100%;
  3845. }
  3846. #u27836_text {
  3847. border-width:0px;
  3848. white-space:nowrap;
  3849. text-transform:none;
  3850. }
  3851. #u27837_div {
  3852. border-width:0px;
  3853. position:absolute;
  3854. left:0px;
  3855. top:0px;
  3856. width:123px;
  3857. height:30px;
  3858. background:inherit;
  3859. background-color:rgba(255, 255, 255, 0);
  3860. border:none;
  3861. border-top:0px;
  3862. border-right:0px;
  3863. border-bottom:0px;
  3864. border-radius:0px;
  3865. border-top-left-radius:0px;
  3866. border-bottom-left-radius:0px;
  3867. -moz-box-shadow:none;
  3868. -webkit-box-shadow:none;
  3869. box-shadow:none;
  3870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3871. font-weight:400;
  3872. font-style:normal;
  3873. font-size:14px;
  3874. }
  3875. #u27837 {
  3876. border-width:0px;
  3877. position:absolute;
  3878. left:1109px;
  3879. top:516px;
  3880. width:123px;
  3881. height:30px;
  3882. display:flex;
  3883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3884. font-weight:400;
  3885. font-style:normal;
  3886. font-size:14px;
  3887. }
  3888. #u27837 .text {
  3889. position:absolute;
  3890. align-self:center;
  3891. padding:5px 10px 5px 0px;
  3892. box-sizing:border-box;
  3893. width:100%;
  3894. }
  3895. #u27837_text {
  3896. border-width:0px;
  3897. white-space:nowrap;
  3898. text-transform:none;
  3899. }
  3900. #u27838_div {
  3901. border-width:0px;
  3902. position:absolute;
  3903. left:0px;
  3904. top:0px;
  3905. width:95px;
  3906. height:30px;
  3907. background:inherit;
  3908. background-color:rgba(255, 255, 255, 0);
  3909. border:none;
  3910. border-top:0px;
  3911. border-right:0px;
  3912. border-bottom:0px;
  3913. border-radius:0px;
  3914. border-top-left-radius:0px;
  3915. border-bottom-left-radius:0px;
  3916. -moz-box-shadow:none;
  3917. -webkit-box-shadow:none;
  3918. box-shadow:none;
  3919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3920. font-weight:400;
  3921. font-style:normal;
  3922. font-size:14px;
  3923. color:#7F7F7F;
  3924. }
  3925. #u27838 {
  3926. border-width:0px;
  3927. position:absolute;
  3928. left:1109px;
  3929. top:756px;
  3930. width:95px;
  3931. height:30px;
  3932. display:flex;
  3933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3934. font-weight:400;
  3935. font-style:normal;
  3936. font-size:14px;
  3937. color:#7F7F7F;
  3938. }
  3939. #u27838 .text {
  3940. position:absolute;
  3941. align-self:center;
  3942. padding:5px 10px 5px 0px;
  3943. box-sizing:border-box;
  3944. width:100%;
  3945. }
  3946. #u27838_text {
  3947. border-width:0px;
  3948. white-space:nowrap;
  3949. text-transform:none;
  3950. }
  3951. #u27839_div {
  3952. border-width:0px;
  3953. position:absolute;
  3954. left:0px;
  3955. top:0px;
  3956. width:137px;
  3957. height:30px;
  3958. background:inherit;
  3959. background-color:rgba(255, 255, 255, 0);
  3960. border:none;
  3961. border-top:0px;
  3962. border-right:0px;
  3963. border-bottom:0px;
  3964. border-radius:0px;
  3965. border-top-left-radius:0px;
  3966. border-bottom-left-radius:0px;
  3967. -moz-box-shadow:none;
  3968. -webkit-box-shadow:none;
  3969. box-shadow:none;
  3970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3971. font-weight:400;
  3972. font-style:normal;
  3973. font-size:14px;
  3974. color:#1890FF;
  3975. }
  3976. #u27839 {
  3977. border-width:0px;
  3978. position:absolute;
  3979. left:1210px;
  3980. top:756px;
  3981. width:137px;
  3982. height:30px;
  3983. display:flex;
  3984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3985. font-weight:400;
  3986. font-style:normal;
  3987. font-size:14px;
  3988. color:#1890FF;
  3989. }
  3990. #u27839 .text {
  3991. position:absolute;
  3992. align-self:center;
  3993. padding:5px 10px 5px 0px;
  3994. box-sizing:border-box;
  3995. width:100%;
  3996. }
  3997. #u27839_text {
  3998. border-width:0px;
  3999. white-space:nowrap;
  4000. text-transform:none;
  4001. }
  4002. #u27840_div {
  4003. border-width:0px;
  4004. position:absolute;
  4005. left:0px;
  4006. top:0px;
  4007. width:81px;
  4008. height:30px;
  4009. background:inherit;
  4010. background-color:rgba(255, 255, 255, 0);
  4011. border:none;
  4012. border-top:0px;
  4013. border-right:0px;
  4014. border-bottom:0px;
  4015. border-radius:0px;
  4016. border-top-left-radius:0px;
  4017. border-bottom-left-radius:0px;
  4018. -moz-box-shadow:none;
  4019. -webkit-box-shadow:none;
  4020. box-shadow:none;
  4021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4022. font-weight:400;
  4023. font-style:normal;
  4024. font-size:14px;
  4025. color:#7F7F7F;
  4026. }
  4027. #u27840 {
  4028. border-width:0px;
  4029. position:absolute;
  4030. left:1109px;
  4031. top:796px;
  4032. width:81px;
  4033. height:30px;
  4034. display:flex;
  4035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4036. font-weight:400;
  4037. font-style:normal;
  4038. font-size:14px;
  4039. color:#7F7F7F;
  4040. }
  4041. #u27840 .text {
  4042. position:absolute;
  4043. align-self:center;
  4044. padding:5px 10px 5px 0px;
  4045. box-sizing:border-box;
  4046. width:100%;
  4047. }
  4048. #u27840_text {
  4049. border-width:0px;
  4050. white-space:nowrap;
  4051. text-transform:none;
  4052. }
  4053. #u27841_div {
  4054. border-width:0px;
  4055. position:absolute;
  4056. left:0px;
  4057. top:0px;
  4058. width:134px;
  4059. height:30px;
  4060. background:inherit;
  4061. background-color:rgba(255, 255, 255, 0);
  4062. border:none;
  4063. border-top:0px;
  4064. border-right:0px;
  4065. border-bottom:0px;
  4066. border-radius:0px;
  4067. border-top-left-radius:0px;
  4068. border-bottom-left-radius:0px;
  4069. -moz-box-shadow:none;
  4070. -webkit-box-shadow:none;
  4071. box-shadow:none;
  4072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4073. font-weight:400;
  4074. font-style:normal;
  4075. font-size:14px;
  4076. }
  4077. #u27841 {
  4078. border-width:0px;
  4079. position:absolute;
  4080. left:1210px;
  4081. top:796px;
  4082. width:134px;
  4083. height:30px;
  4084. display:flex;
  4085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4086. font-weight:400;
  4087. font-style:normal;
  4088. font-size:14px;
  4089. }
  4090. #u27841 .text {
  4091. position:absolute;
  4092. align-self:center;
  4093. padding:5px 10px 5px 0px;
  4094. box-sizing:border-box;
  4095. width:100%;
  4096. }
  4097. #u27841_text {
  4098. border-width:0px;
  4099. white-space:nowrap;
  4100. text-transform:none;
  4101. }
  4102. #u27842_div {
  4103. border-width:0px;
  4104. position:absolute;
  4105. left:0px;
  4106. top:0px;
  4107. width:81px;
  4108. height:30px;
  4109. background:inherit;
  4110. background-color:rgba(255, 255, 255, 0);
  4111. border:none;
  4112. border-top:0px;
  4113. border-right:0px;
  4114. border-bottom:0px;
  4115. border-radius:0px;
  4116. border-top-left-radius:0px;
  4117. border-bottom-left-radius:0px;
  4118. -moz-box-shadow:none;
  4119. -webkit-box-shadow:none;
  4120. box-shadow:none;
  4121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4122. font-weight:400;
  4123. font-style:normal;
  4124. font-size:14px;
  4125. color:#7F7F7F;
  4126. }
  4127. #u27842 {
  4128. border-width:0px;
  4129. position:absolute;
  4130. left:1109px;
  4131. top:836px;
  4132. width:81px;
  4133. height:30px;
  4134. display:flex;
  4135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4136. font-weight:400;
  4137. font-style:normal;
  4138. font-size:14px;
  4139. color:#7F7F7F;
  4140. }
  4141. #u27842 .text {
  4142. position:absolute;
  4143. align-self:center;
  4144. padding:5px 10px 5px 0px;
  4145. box-sizing:border-box;
  4146. width:100%;
  4147. }
  4148. #u27842_text {
  4149. border-width:0px;
  4150. white-space:nowrap;
  4151. text-transform:none;
  4152. }
  4153. #u27843_div {
  4154. border-width:0px;
  4155. position:absolute;
  4156. left:0px;
  4157. top:0px;
  4158. width:39px;
  4159. height:30px;
  4160. background:inherit;
  4161. background-color:rgba(255, 255, 255, 0);
  4162. border:none;
  4163. border-top:0px;
  4164. border-right:0px;
  4165. border-bottom:0px;
  4166. border-radius:0px;
  4167. border-top-left-radius:0px;
  4168. border-bottom-left-radius:0px;
  4169. -moz-box-shadow:none;
  4170. -webkit-box-shadow:none;
  4171. box-shadow:none;
  4172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4173. font-weight:400;
  4174. font-style:normal;
  4175. font-size:14px;
  4176. color:#0089FE;
  4177. }
  4178. #u27843 {
  4179. border-width:0px;
  4180. position:absolute;
  4181. left:1210px;
  4182. top:836px;
  4183. width:39px;
  4184. height:30px;
  4185. display:flex;
  4186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4187. font-weight:400;
  4188. font-style:normal;
  4189. font-size:14px;
  4190. color:#0089FE;
  4191. }
  4192. #u27843 .text {
  4193. position:absolute;
  4194. align-self:center;
  4195. padding:5px 10px 5px 0px;
  4196. box-sizing:border-box;
  4197. width:100%;
  4198. }
  4199. #u27843_text {
  4200. border-width:0px;
  4201. white-space:nowrap;
  4202. text-transform:none;
  4203. }
  4204. #u27844 {
  4205. border-width:0px;
  4206. position:absolute;
  4207. left:0px;
  4208. top:0px;
  4209. width:0px;
  4210. height:0px;
  4211. }
  4212. #u27845_div {
  4213. border-width:0px;
  4214. position:absolute;
  4215. left:0px;
  4216. top:0px;
  4217. width:1000px;
  4218. height:1231px;
  4219. background:inherit;
  4220. background-color:rgba(242, 242, 242, 1);
  4221. box-sizing:border-box;
  4222. border-width:1px;
  4223. border-style:solid;
  4224. border-color:rgba(215, 215, 215, 1);
  4225. border-radius:0px;
  4226. -moz-box-shadow:none;
  4227. -webkit-box-shadow:none;
  4228. box-shadow:none;
  4229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4230. font-weight:400;
  4231. font-style:normal;
  4232. font-size:14px;
  4233. color:#AAAAAA;
  4234. text-align:center;
  4235. line-height:30px;
  4236. }
  4237. #u27845 {
  4238. border-width:0px;
  4239. position:absolute;
  4240. left:2102px;
  4241. top:40px;
  4242. width:1000px;
  4243. height:1231px;
  4244. display:flex;
  4245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4246. font-weight:400;
  4247. font-style:normal;
  4248. font-size:14px;
  4249. color:#AAAAAA;
  4250. text-align:center;
  4251. line-height:30px;
  4252. }
  4253. #u27845 .text {
  4254. position:absolute;
  4255. align-self:center;
  4256. padding:5px 10px 5px 10px;
  4257. box-sizing:border-box;
  4258. width:100%;
  4259. }
  4260. #u27845_text {
  4261. border-width:0px;
  4262. word-wrap:break-word;
  4263. text-transform:none;
  4264. visibility:hidden;
  4265. }
  4266. #u27846_div {
  4267. border-width:0px;
  4268. position:absolute;
  4269. left:0px;
  4270. top:0px;
  4271. width:1000px;
  4272. height:200px;
  4273. background:inherit;
  4274. background-color:rgba(255, 255, 255, 1);
  4275. box-sizing:border-box;
  4276. border-width:1px;
  4277. border-style:solid;
  4278. border-color:rgba(215, 215, 215, 1);
  4279. border-radius:0px;
  4280. -moz-box-shadow:none;
  4281. -webkit-box-shadow:none;
  4282. box-shadow:none;
  4283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4284. font-weight:400;
  4285. font-style:normal;
  4286. font-size:14px;
  4287. color:#AAAAAA;
  4288. text-align:center;
  4289. line-height:30px;
  4290. }
  4291. #u27846 {
  4292. border-width:0px;
  4293. position:absolute;
  4294. left:2102px;
  4295. top:40px;
  4296. width:1000px;
  4297. height:200px;
  4298. display:flex;
  4299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4300. font-weight:400;
  4301. font-style:normal;
  4302. font-size:14px;
  4303. color:#AAAAAA;
  4304. text-align:center;
  4305. line-height:30px;
  4306. }
  4307. #u27846 .text {
  4308. position:absolute;
  4309. align-self:center;
  4310. padding:5px 10px 5px 10px;
  4311. box-sizing:border-box;
  4312. width:100%;
  4313. }
  4314. #u27846_text {
  4315. border-width:0px;
  4316. word-wrap:break-word;
  4317. text-transform:none;
  4318. visibility:hidden;
  4319. }
  4320. #u27847_div {
  4321. border-width:0px;
  4322. position:absolute;
  4323. left:0px;
  4324. top:0px;
  4325. width:83px;
  4326. height:35px;
  4327. background:inherit;
  4328. background-color:rgba(255, 255, 255, 0);
  4329. border:none;
  4330. border-top:0px;
  4331. border-right:0px;
  4332. border-bottom:0px;
  4333. border-radius:0px;
  4334. border-top-left-radius:0px;
  4335. border-bottom-left-radius:0px;
  4336. -moz-box-shadow:none;
  4337. -webkit-box-shadow:none;
  4338. box-shadow:none;
  4339. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4340. font-weight:500;
  4341. font-style:normal;
  4342. font-size:18px;
  4343. }
  4344. #u27847 {
  4345. border-width:0px;
  4346. position:absolute;
  4347. left:2122px;
  4348. top:58px;
  4349. width:83px;
  4350. height:35px;
  4351. display:flex;
  4352. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4353. font-weight:500;
  4354. font-style:normal;
  4355. font-size:18px;
  4356. }
  4357. #u27847 .text {
  4358. position:absolute;
  4359. align-self:center;
  4360. padding:5px 10px 5px 0px;
  4361. box-sizing:border-box;
  4362. width:100%;
  4363. }
  4364. #u27847_text {
  4365. border-width:0px;
  4366. white-space:nowrap;
  4367. text-transform:none;
  4368. }
  4369. #u27848 {
  4370. border-width:0px;
  4371. position:absolute;
  4372. left:0px;
  4373. top:0px;
  4374. width:0px;
  4375. height:0px;
  4376. }
  4377. #u27849_div {
  4378. border-width:0px;
  4379. position:absolute;
  4380. left:0px;
  4381. top:0px;
  4382. width:40px;
  4383. height:40px;
  4384. background:inherit;
  4385. background-color:rgba(255, 255, 255, 0);
  4386. border:none;
  4387. border-top:0px;
  4388. border-right:0px;
  4389. border-bottom:0px;
  4390. border-radius:0px;
  4391. border-top-left-radius:0px;
  4392. border-bottom-left-radius:0px;
  4393. -moz-box-shadow:none;
  4394. -webkit-box-shadow:none;
  4395. box-shadow:none;
  4396. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4397. font-weight:500;
  4398. font-style:normal;
  4399. font-size:14px;
  4400. text-align:center;
  4401. }
  4402. #u27849 {
  4403. border-width:0px;
  4404. position:absolute;
  4405. left:3062px;
  4406. top:40px;
  4407. width:40px;
  4408. height:40px;
  4409. display:flex;
  4410. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4411. font-weight:500;
  4412. font-style:normal;
  4413. font-size:14px;
  4414. text-align:center;
  4415. }
  4416. #u27849 .text {
  4417. position:absolute;
  4418. align-self:center;
  4419. padding:5px 10px 5px 0px;
  4420. box-sizing:border-box;
  4421. width:100%;
  4422. }
  4423. #u27849_text {
  4424. border-width:0px;
  4425. word-wrap:break-word;
  4426. text-transform:none;
  4427. }
  4428. #u27850_img {
  4429. border-width:0px;
  4430. position:absolute;
  4431. left:0px;
  4432. top:0px;
  4433. width:13px;
  4434. height:13px;
  4435. }
  4436. #u27850 {
  4437. border-width:0px;
  4438. position:absolute;
  4439. left:3050px;
  4440. top:56px;
  4441. width:13px;
  4442. height:13px;
  4443. display:flex;
  4444. font-size:14px;
  4445. }
  4446. #u27850 .text {
  4447. position:absolute;
  4448. align-self:center;
  4449. padding:2px 2px 2px 2px;
  4450. box-sizing:border-box;
  4451. width:100%;
  4452. }
  4453. #u27850_text {
  4454. border-width:0px;
  4455. word-wrap:break-word;
  4456. text-transform:none;
  4457. visibility:hidden;
  4458. }
  4459. #u27851_div {
  4460. border-width:0px;
  4461. position:absolute;
  4462. left:0px;
  4463. top:0px;
  4464. width:338px;
  4465. height:43px;
  4466. background:inherit;
  4467. background-color:rgba(255, 255, 255, 0);
  4468. border:none;
  4469. border-top:0px;
  4470. border-right:0px;
  4471. border-bottom:0px;
  4472. border-radius:0px;
  4473. border-top-left-radius:0px;
  4474. border-bottom-left-radius:0px;
  4475. -moz-box-shadow:none;
  4476. -webkit-box-shadow:none;
  4477. box-shadow:none;
  4478. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4479. font-weight:500;
  4480. font-style:normal;
  4481. font-size:24px;
  4482. }
  4483. #u27851 {
  4484. border-width:0px;
  4485. position:absolute;
  4486. left:2132px;
  4487. top:109px;
  4488. width:338px;
  4489. height:43px;
  4490. display:flex;
  4491. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4492. font-weight:500;
  4493. font-style:normal;
  4494. font-size:24px;
  4495. }
  4496. #u27851 .text {
  4497. position:absolute;
  4498. align-self:center;
  4499. padding:5px 10px 5px 0px;
  4500. box-sizing:border-box;
  4501. width:100%;
  4502. }
  4503. #u27851_text {
  4504. border-width:0px;
  4505. white-space:nowrap;
  4506. text-transform:none;
  4507. }
  4508. #u27852_img {
  4509. border-width:0px;
  4510. position:absolute;
  4511. left:0px;
  4512. top:0px;
  4513. width:108px;
  4514. height:108px;
  4515. }
  4516. #u27852 {
  4517. border-width:0px;
  4518. position:absolute;
  4519. left:2952px;
  4520. top:110px;
  4521. width:108px;
  4522. height:108px;
  4523. display:flex;
  4524. -webkit-transform:rotate(315deg);
  4525. -moz-transform:rotate(315deg);
  4526. -ms-transform:rotate(315deg);
  4527. transform:rotate(315deg);
  4528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4529. font-weight:400;
  4530. font-style:normal;
  4531. font-size:28px;
  4532. color:#F59A23;
  4533. }
  4534. #u27852 .text {
  4535. position:absolute;
  4536. align-self:center;
  4537. padding:2px 2px 2px 2px;
  4538. box-sizing:border-box;
  4539. width:100%;
  4540. }
  4541. #u27852_text {
  4542. border-width:0px;
  4543. word-wrap:break-word;
  4544. text-transform:none;
  4545. }
  4546. #u27853_div {
  4547. border-width:0px;
  4548. position:absolute;
  4549. left:0px;
  4550. top:0px;
  4551. width:1000px;
  4552. height:420px;
  4553. background:inherit;
  4554. background-color:rgba(255, 255, 255, 1);
  4555. box-sizing:border-box;
  4556. border-width:1px;
  4557. border-style:solid;
  4558. border-color:rgba(242, 242, 242, 1);
  4559. border-radius:0px;
  4560. -moz-box-shadow:none;
  4561. -webkit-box-shadow:none;
  4562. box-shadow:none;
  4563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4564. font-weight:400;
  4565. font-style:normal;
  4566. font-size:14px;
  4567. color:#AAAAAA;
  4568. text-align:center;
  4569. line-height:30px;
  4570. }
  4571. #u27853 {
  4572. border-width:0px;
  4573. position:absolute;
  4574. left:2102px;
  4575. top:250px;
  4576. width:1000px;
  4577. height:420px;
  4578. display:flex;
  4579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4580. font-weight:400;
  4581. font-style:normal;
  4582. font-size:14px;
  4583. color:#AAAAAA;
  4584. text-align:center;
  4585. line-height:30px;
  4586. }
  4587. #u27853 .text {
  4588. position:absolute;
  4589. align-self:center;
  4590. padding:5px 10px 5px 10px;
  4591. box-sizing:border-box;
  4592. width:100%;
  4593. }
  4594. #u27853_text {
  4595. border-width:0px;
  4596. word-wrap:break-word;
  4597. text-transform:none;
  4598. visibility:hidden;
  4599. }
  4600. #u27854_div {
  4601. border-width:0px;
  4602. position:absolute;
  4603. left:0px;
  4604. top:0px;
  4605. width:73px;
  4606. height:40px;
  4607. background:inherit;
  4608. background-color:rgba(255, 255, 255, 0);
  4609. border:none;
  4610. border-left:0px;
  4611. border-top:0px;
  4612. border-right:0px;
  4613. border-radius:0px;
  4614. border-bottom-right-radius:0px;
  4615. border-bottom-left-radius:0px;
  4616. -moz-box-shadow:none;
  4617. -webkit-box-shadow:none;
  4618. box-shadow:none;
  4619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4620. font-weight:400;
  4621. font-style:normal;
  4622. font-size:18px;
  4623. }
  4624. #u27854 {
  4625. border-width:0px;
  4626. position:absolute;
  4627. left:2142px;
  4628. top:266px;
  4629. width:73px;
  4630. height:40px;
  4631. display:flex;
  4632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4633. font-weight:400;
  4634. font-style:normal;
  4635. font-size:18px;
  4636. }
  4637. #u27854 .text {
  4638. position:absolute;
  4639. align-self:center;
  4640. padding:0px 0px 0px 0px;
  4641. box-sizing:border-box;
  4642. width:100%;
  4643. }
  4644. #u27854_text {
  4645. border-width:0px;
  4646. white-space:nowrap;
  4647. text-transform:none;
  4648. }
  4649. #u27855_div {
  4650. border-width:0px;
  4651. position:absolute;
  4652. left:0px;
  4653. top:0px;
  4654. width:67px;
  4655. height:30px;
  4656. background:inherit;
  4657. background-color:rgba(255, 255, 255, 0);
  4658. border:none;
  4659. border-top:0px;
  4660. border-right:0px;
  4661. border-bottom:0px;
  4662. border-radius:0px;
  4663. border-top-left-radius:0px;
  4664. border-bottom-left-radius:0px;
  4665. -moz-box-shadow:none;
  4666. -webkit-box-shadow:none;
  4667. box-shadow:none;
  4668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4669. font-weight:400;
  4670. font-style:normal;
  4671. font-size:14px;
  4672. color:#7F7F7F;
  4673. }
  4674. #u27855 {
  4675. border-width:0px;
  4676. position:absolute;
  4677. left:2142px;
  4678. top:316px;
  4679. width:67px;
  4680. height:30px;
  4681. display:flex;
  4682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4683. font-weight:400;
  4684. font-style:normal;
  4685. font-size:14px;
  4686. color:#7F7F7F;
  4687. }
  4688. #u27855 .text {
  4689. position:absolute;
  4690. align-self:center;
  4691. padding:5px 10px 5px 0px;
  4692. box-sizing:border-box;
  4693. width:100%;
  4694. }
  4695. #u27855_text {
  4696. border-width:0px;
  4697. white-space:nowrap;
  4698. text-transform:none;
  4699. }
  4700. #u27856_div {
  4701. border-width:0px;
  4702. position:absolute;
  4703. left:0px;
  4704. top:0px;
  4705. width:39px;
  4706. height:30px;
  4707. background:inherit;
  4708. background-color:rgba(255, 255, 255, 0);
  4709. border:none;
  4710. border-top:0px;
  4711. border-right:0px;
  4712. border-bottom:0px;
  4713. border-radius:0px;
  4714. border-top-left-radius:0px;
  4715. border-bottom-left-radius:0px;
  4716. -moz-box-shadow:none;
  4717. -webkit-box-shadow:none;
  4718. box-shadow:none;
  4719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4720. font-weight:400;
  4721. font-style:normal;
  4722. font-size:14px;
  4723. }
  4724. #u27856 {
  4725. border-width:0px;
  4726. position:absolute;
  4727. left:2223px;
  4728. top:316px;
  4729. width:39px;
  4730. height:30px;
  4731. display:flex;
  4732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4733. font-weight:400;
  4734. font-style:normal;
  4735. font-size:14px;
  4736. }
  4737. #u27856 .text {
  4738. position:absolute;
  4739. align-self:center;
  4740. padding:5px 10px 5px 0px;
  4741. box-sizing:border-box;
  4742. width:100%;
  4743. }
  4744. #u27856_text {
  4745. border-width:0px;
  4746. white-space:nowrap;
  4747. text-transform:none;
  4748. }
  4749. #u27857_div {
  4750. border-width:0px;
  4751. position:absolute;
  4752. left:0px;
  4753. top:0px;
  4754. width:95px;
  4755. height:30px;
  4756. background:inherit;
  4757. background-color:rgba(255, 255, 255, 0);
  4758. border:none;
  4759. border-top:0px;
  4760. border-right:0px;
  4761. border-bottom:0px;
  4762. border-radius:0px;
  4763. border-top-left-radius:0px;
  4764. border-bottom-left-radius:0px;
  4765. -moz-box-shadow:none;
  4766. -webkit-box-shadow:none;
  4767. box-shadow:none;
  4768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4769. font-weight:400;
  4770. font-style:normal;
  4771. font-size:14px;
  4772. color:#7F7F7F;
  4773. }
  4774. #u27857 {
  4775. border-width:0px;
  4776. position:absolute;
  4777. left:2442px;
  4778. top:316px;
  4779. width:95px;
  4780. height:30px;
  4781. display:flex;
  4782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4783. font-weight:400;
  4784. font-style:normal;
  4785. font-size:14px;
  4786. color:#7F7F7F;
  4787. }
  4788. #u27857 .text {
  4789. position:absolute;
  4790. align-self:center;
  4791. padding:5px 10px 5px 0px;
  4792. box-sizing:border-box;
  4793. width:100%;
  4794. }
  4795. #u27857_text {
  4796. border-width:0px;
  4797. white-space:nowrap;
  4798. text-transform:none;
  4799. }
  4800. #u27858_div {
  4801. border-width:0px;
  4802. position:absolute;
  4803. left:0px;
  4804. top:0px;
  4805. width:101px;
  4806. height:30px;
  4807. background:inherit;
  4808. background-color:rgba(255, 255, 255, 0);
  4809. border:none;
  4810. border-top:0px;
  4811. border-right:0px;
  4812. border-bottom:0px;
  4813. border-radius:0px;
  4814. border-top-left-radius:0px;
  4815. border-bottom-left-radius:0px;
  4816. -moz-box-shadow:none;
  4817. -webkit-box-shadow:none;
  4818. box-shadow:none;
  4819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4820. font-weight:400;
  4821. font-style:normal;
  4822. font-size:14px;
  4823. }
  4824. #u27858 {
  4825. border-width:0px;
  4826. position:absolute;
  4827. left:2523px;
  4828. top:316px;
  4829. width:101px;
  4830. height:30px;
  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. #u27858 .text {
  4838. position:absolute;
  4839. align-self:center;
  4840. padding:5px 10px 5px 0px;
  4841. box-sizing:border-box;
  4842. width:100%;
  4843. }
  4844. #u27858_text {
  4845. border-width:0px;
  4846. white-space:nowrap;
  4847. text-transform:none;
  4848. }
  4849. #u27859_div {
  4850. border-width:0px;
  4851. position:absolute;
  4852. left:0px;
  4853. top:0px;
  4854. width:81px;
  4855. height:30px;
  4856. background:inherit;
  4857. background-color:rgba(255, 255, 255, 0);
  4858. border:none;
  4859. border-top:0px;
  4860. border-right:0px;
  4861. border-bottom:0px;
  4862. border-radius:0px;
  4863. border-top-left-radius:0px;
  4864. border-bottom-left-radius:0px;
  4865. -moz-box-shadow:none;
  4866. -webkit-box-shadow:none;
  4867. box-shadow:none;
  4868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4869. font-weight:400;
  4870. font-style:normal;
  4871. font-size:14px;
  4872. color:#7F7F7F;
  4873. }
  4874. #u27859 {
  4875. border-width:0px;
  4876. position:absolute;
  4877. left:2142px;
  4878. top:356px;
  4879. width:81px;
  4880. height:30px;
  4881. display:flex;
  4882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4883. font-weight:400;
  4884. font-style:normal;
  4885. font-size:14px;
  4886. color:#7F7F7F;
  4887. }
  4888. #u27859 .text {
  4889. position:absolute;
  4890. align-self:center;
  4891. padding:5px 10px 5px 0px;
  4892. box-sizing:border-box;
  4893. width:100%;
  4894. }
  4895. #u27859_text {
  4896. border-width:0px;
  4897. white-space:nowrap;
  4898. text-transform:none;
  4899. }
  4900. #u27860_div {
  4901. border-width:0px;
  4902. position:absolute;
  4903. left:0px;
  4904. top:0px;
  4905. width:109px;
  4906. height:30px;
  4907. background:inherit;
  4908. background-color:rgba(255, 255, 255, 0);
  4909. border:none;
  4910. border-top:0px;
  4911. border-right:0px;
  4912. border-bottom:0px;
  4913. border-radius:0px;
  4914. border-top-left-radius:0px;
  4915. border-bottom-left-radius:0px;
  4916. -moz-box-shadow:none;
  4917. -webkit-box-shadow:none;
  4918. box-shadow:none;
  4919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4920. font-weight:400;
  4921. font-style:normal;
  4922. font-size:14px;
  4923. color:#7F7F7F;
  4924. }
  4925. #u27860 {
  4926. border-width:0px;
  4927. position:absolute;
  4928. left:2759px;
  4929. top:356px;
  4930. width:109px;
  4931. height:30px;
  4932. display:flex;
  4933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4934. font-weight:400;
  4935. font-style:normal;
  4936. font-size:14px;
  4937. color:#7F7F7F;
  4938. }
  4939. #u27860 .text {
  4940. position:absolute;
  4941. align-self:center;
  4942. padding:5px 10px 5px 0px;
  4943. box-sizing:border-box;
  4944. width:100%;
  4945. }
  4946. #u27860_text {
  4947. border-width:0px;
  4948. white-space:nowrap;
  4949. text-transform:none;
  4950. }
  4951. #u27861_div {
  4952. border-width:0px;
  4953. position:absolute;
  4954. left:0px;
  4955. top:0px;
  4956. width:185px;
  4957. height:30px;
  4958. background:inherit;
  4959. background-color:rgba(255, 255, 255, 0);
  4960. border:none;
  4961. border-top:0px;
  4962. border-right:0px;
  4963. border-bottom:0px;
  4964. border-radius:0px;
  4965. border-top-left-radius:0px;
  4966. border-bottom-left-radius:0px;
  4967. -moz-box-shadow:none;
  4968. -webkit-box-shadow:none;
  4969. box-shadow:none;
  4970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4971. font-weight:400;
  4972. font-style:normal;
  4973. font-size:14px;
  4974. }
  4975. #u27861 {
  4976. border-width:0px;
  4977. position:absolute;
  4978. left:2868px;
  4979. top:356px;
  4980. width:185px;
  4981. height:30px;
  4982. display:flex;
  4983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4984. font-weight:400;
  4985. font-style:normal;
  4986. font-size:14px;
  4987. }
  4988. #u27861 .text {
  4989. position:absolute;
  4990. align-self:center;
  4991. padding:5px 10px 5px 0px;
  4992. box-sizing:border-box;
  4993. width:100%;
  4994. }
  4995. #u27861_text {
  4996. border-width:0px;
  4997. white-space:nowrap;
  4998. text-transform:none;
  4999. }
  5000. #u27862_div {
  5001. border-width:0px;
  5002. position:absolute;
  5003. left:0px;
  5004. top:0px;
  5005. width:131px;
  5006. height:30px;
  5007. background:inherit;
  5008. background-color:rgba(255, 255, 255, 0);
  5009. border:none;
  5010. border-top:0px;
  5011. border-right:0px;
  5012. border-bottom:0px;
  5013. border-radius:0px;
  5014. border-top-left-radius:0px;
  5015. border-bottom-left-radius:0px;
  5016. -moz-box-shadow:none;
  5017. -webkit-box-shadow:none;
  5018. box-shadow:none;
  5019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5020. font-weight:400;
  5021. font-style:normal;
  5022. font-size:14px;
  5023. }
  5024. #u27862 {
  5025. border-width:0px;
  5026. position:absolute;
  5027. left:2223px;
  5028. top:356px;
  5029. width:131px;
  5030. height:30px;
  5031. display:flex;
  5032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5033. font-weight:400;
  5034. font-style:normal;
  5035. font-size:14px;
  5036. }
  5037. #u27862 .text {
  5038. position:absolute;
  5039. align-self:center;
  5040. padding:5px 10px 5px 0px;
  5041. box-sizing:border-box;
  5042. width:100%;
  5043. }
  5044. #u27862_text {
  5045. border-width:0px;
  5046. white-space:nowrap;
  5047. text-transform:none;
  5048. }
  5049. #u27863_div {
  5050. border-width:0px;
  5051. position:absolute;
  5052. left:0px;
  5053. top:0px;
  5054. width:81px;
  5055. height:30px;
  5056. background:inherit;
  5057. background-color:rgba(255, 255, 255, 0);
  5058. border:none;
  5059. border-top:0px;
  5060. border-right:0px;
  5061. border-bottom:0px;
  5062. border-radius:0px;
  5063. border-top-left-radius:0px;
  5064. border-bottom-left-radius:0px;
  5065. -moz-box-shadow:none;
  5066. -webkit-box-shadow:none;
  5067. box-shadow:none;
  5068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5069. font-weight:400;
  5070. font-style:normal;
  5071. font-size:14px;
  5072. color:#7F7F7F;
  5073. }
  5074. #u27863 {
  5075. border-width:0px;
  5076. position:absolute;
  5077. left:2142px;
  5078. top:436px;
  5079. width:81px;
  5080. height:30px;
  5081. display:flex;
  5082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5083. font-weight:400;
  5084. font-style:normal;
  5085. font-size:14px;
  5086. color:#7F7F7F;
  5087. }
  5088. #u27863 .text {
  5089. position:absolute;
  5090. align-self:center;
  5091. padding:5px 10px 5px 0px;
  5092. box-sizing:border-box;
  5093. width:100%;
  5094. }
  5095. #u27863_text {
  5096. border-width:0px;
  5097. white-space:nowrap;
  5098. text-transform:none;
  5099. }
  5100. #u27864_div {
  5101. border-width:0px;
  5102. position:absolute;
  5103. left:0px;
  5104. top:0px;
  5105. width:263px;
  5106. height:30px;
  5107. background:inherit;
  5108. background-color:rgba(255, 255, 255, 0);
  5109. border:none;
  5110. border-top:0px;
  5111. border-right:0px;
  5112. border-bottom:0px;
  5113. border-radius:0px;
  5114. border-top-left-radius:0px;
  5115. border-bottom-left-radius:0px;
  5116. -moz-box-shadow:none;
  5117. -webkit-box-shadow:none;
  5118. box-shadow:none;
  5119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5120. font-weight:400;
  5121. font-style:normal;
  5122. font-size:14px;
  5123. }
  5124. #u27864 {
  5125. border-width:0px;
  5126. position:absolute;
  5127. left:2223px;
  5128. top:436px;
  5129. width:263px;
  5130. height:30px;
  5131. display:flex;
  5132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5133. font-weight:400;
  5134. font-style:normal;
  5135. font-size:14px;
  5136. }
  5137. #u27864 .text {
  5138. position:absolute;
  5139. align-self:center;
  5140. padding:5px 10px 5px 0px;
  5141. box-sizing:border-box;
  5142. width:100%;
  5143. }
  5144. #u27864_text {
  5145. border-width:0px;
  5146. white-space:nowrap;
  5147. text-transform:none;
  5148. }
  5149. #u27865_div {
  5150. border-width:0px;
  5151. position:absolute;
  5152. left:0px;
  5153. top:0px;
  5154. width:325px;
  5155. height:60px;
  5156. background:inherit;
  5157. background-color:rgba(255, 255, 255, 0);
  5158. border:none;
  5159. border-left:0px;
  5160. border-top:0px;
  5161. border-right:0px;
  5162. border-radius:0px;
  5163. border-bottom-right-radius:0px;
  5164. border-bottom-left-radius:0px;
  5165. -moz-box-shadow:none;
  5166. -webkit-box-shadow:none;
  5167. box-shadow:none;
  5168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5169. font-weight:400;
  5170. font-style:normal;
  5171. font-size:14px;
  5172. line-height:30px;
  5173. }
  5174. #u27865 {
  5175. border-width:0px;
  5176. position:absolute;
  5177. left:2132px;
  5178. top:164px;
  5179. width:325px;
  5180. height:60px;
  5181. display:flex;
  5182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5183. font-weight:400;
  5184. font-style:normal;
  5185. font-size:14px;
  5186. line-height:30px;
  5187. }
  5188. #u27865 .text {
  5189. position:absolute;
  5190. align-self:flex-start;
  5191. padding:0px 0px 0px 0px;
  5192. box-sizing:border-box;
  5193. width:100%;
  5194. }
  5195. #u27865_text {
  5196. border-width:0px;
  5197. word-wrap:break-word;
  5198. text-transform:none;
  5199. }
  5200. #u27866 {
  5201. border-width:0px;
  5202. position:absolute;
  5203. left:0px;
  5204. top:0px;
  5205. width:0px;
  5206. height:0px;
  5207. }
  5208. #u27867_div {
  5209. border-width:0px;
  5210. position:absolute;
  5211. left:0px;
  5212. top:0px;
  5213. width:1000px;
  5214. height:60px;
  5215. background:inherit;
  5216. background-color:rgba(255, 255, 255, 1);
  5217. box-sizing:border-box;
  5218. border-width:1px;
  5219. border-style:solid;
  5220. border-color:rgba(215, 215, 215, 1);
  5221. border-radius:0px;
  5222. -moz-box-shadow:none;
  5223. -webkit-box-shadow:none;
  5224. box-shadow:none;
  5225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5226. font-weight:400;
  5227. font-style:normal;
  5228. font-size:14px;
  5229. color:#AAAAAA;
  5230. text-align:center;
  5231. line-height:30px;
  5232. }
  5233. #u27867 {
  5234. border-width:0px;
  5235. position:absolute;
  5236. left:2102px;
  5237. top:1211px;
  5238. width:1000px;
  5239. height:60px;
  5240. display:flex;
  5241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5242. font-weight:400;
  5243. font-style:normal;
  5244. font-size:14px;
  5245. color:#AAAAAA;
  5246. text-align:center;
  5247. line-height:30px;
  5248. }
  5249. #u27867 .text {
  5250. position:absolute;
  5251. align-self:center;
  5252. padding:5px 10px 5px 10px;
  5253. box-sizing:border-box;
  5254. width:100%;
  5255. }
  5256. #u27867_text {
  5257. border-width:0px;
  5258. word-wrap:break-word;
  5259. text-transform:none;
  5260. visibility:hidden;
  5261. }
  5262. #u27868_div {
  5263. border-width:0px;
  5264. position:absolute;
  5265. left:0px;
  5266. top:0px;
  5267. width:80px;
  5268. height:30px;
  5269. background:inherit;
  5270. background-color:rgba(0, 137, 254, 1);
  5271. border:none;
  5272. border-radius:4px;
  5273. -moz-box-shadow:none;
  5274. -webkit-box-shadow:none;
  5275. box-shadow:none;
  5276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5277. font-weight:400;
  5278. font-style:normal;
  5279. font-size:14px;
  5280. color:#FFFFFF;
  5281. }
  5282. #u27868 {
  5283. border-width:0px;
  5284. position:absolute;
  5285. left:2983px;
  5286. top:1226px;
  5287. width:80px;
  5288. height:30px;
  5289. display:flex;
  5290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5291. font-weight:400;
  5292. font-style:normal;
  5293. font-size:14px;
  5294. color:#FFFFFF;
  5295. }
  5296. #u27868 .text {
  5297. position:absolute;
  5298. align-self:center;
  5299. padding:2px 2px 2px 2px;
  5300. box-sizing:border-box;
  5301. width:100%;
  5302. }
  5303. #u27868_text {
  5304. border-width:0px;
  5305. word-wrap:break-word;
  5306. text-transform:none;
  5307. }
  5308. #u27869_div {
  5309. border-width:0px;
  5310. position:absolute;
  5311. left:0px;
  5312. top:0px;
  5313. width:80px;
  5314. height:30px;
  5315. background:inherit;
  5316. background-color:rgba(255, 255, 255, 1);
  5317. box-sizing:border-box;
  5318. border-width:1px;
  5319. border-style:solid;
  5320. border-color:rgba(170, 170, 170, 1);
  5321. border-radius:4px;
  5322. -moz-box-shadow:none;
  5323. -webkit-box-shadow:none;
  5324. box-shadow:none;
  5325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5326. font-weight:400;
  5327. font-style:normal;
  5328. font-size:14px;
  5329. }
  5330. #u27869 {
  5331. border-width:0px;
  5332. position:absolute;
  5333. left:2893px;
  5334. top:1226px;
  5335. width:80px;
  5336. height:30px;
  5337. display:flex;
  5338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5339. font-weight:400;
  5340. font-style:normal;
  5341. font-size:14px;
  5342. }
  5343. #u27869 .text {
  5344. position:absolute;
  5345. align-self:center;
  5346. padding:2px 2px 2px 2px;
  5347. box-sizing:border-box;
  5348. width:100%;
  5349. }
  5350. #u27869_text {
  5351. border-width:0px;
  5352. word-wrap:break-word;
  5353. text-transform:none;
  5354. }
  5355. #u27870_div {
  5356. border-width:0px;
  5357. position:absolute;
  5358. left:0px;
  5359. top:0px;
  5360. width:57px;
  5361. height:36px;
  5362. background:inherit;
  5363. background-color:rgba(255, 255, 255, 0);
  5364. border:none;
  5365. border-left:0px;
  5366. border-top:0px;
  5367. border-right:0px;
  5368. border-radius:0px;
  5369. border-bottom-right-radius:0px;
  5370. border-bottom-left-radius:0px;
  5371. -moz-box-shadow:none;
  5372. -webkit-box-shadow:none;
  5373. box-shadow:none;
  5374. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5375. font-weight:500;
  5376. font-style:normal;
  5377. font-size:14px;
  5378. line-height:40px;
  5379. }
  5380. #u27870 {
  5381. border-width:0px;
  5382. position:absolute;
  5383. left:2142px;
  5384. top:476px;
  5385. width:57px;
  5386. height:36px;
  5387. display:flex;
  5388. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5389. font-weight:500;
  5390. font-style:normal;
  5391. font-size:14px;
  5392. line-height:40px;
  5393. }
  5394. #u27870 .text {
  5395. position:absolute;
  5396. align-self:flex-start;
  5397. padding:0px 0px 0px 0px;
  5398. box-sizing:border-box;
  5399. width:100%;
  5400. }
  5401. #u27870_text {
  5402. border-width:0px;
  5403. white-space:nowrap;
  5404. text-transform:none;
  5405. }
  5406. #u27871_img {
  5407. border-width:0px;
  5408. position:absolute;
  5409. left:0px;
  5410. top:0px;
  5411. width:99px;
  5412. height:85px;
  5413. }
  5414. #u27871 {
  5415. border-width:0px;
  5416. position:absolute;
  5417. left:2142px;
  5418. top:556px;
  5419. width:99px;
  5420. height:85px;
  5421. display:flex;
  5422. }
  5423. #u27871 .text {
  5424. position:absolute;
  5425. align-self:center;
  5426. padding:2px 2px 2px 2px;
  5427. box-sizing:border-box;
  5428. width:100%;
  5429. }
  5430. #u27871_text {
  5431. border-width:0px;
  5432. word-wrap:break-word;
  5433. text-transform:none;
  5434. visibility:hidden;
  5435. }
  5436. #u27872_img {
  5437. border-width:0px;
  5438. position:absolute;
  5439. left:0px;
  5440. top:0px;
  5441. width:99px;
  5442. height:85px;
  5443. }
  5444. #u27872 {
  5445. border-width:0px;
  5446. position:absolute;
  5447. left:2251px;
  5448. top:556px;
  5449. width:99px;
  5450. height:85px;
  5451. display:flex;
  5452. }
  5453. #u27872 .text {
  5454. position:absolute;
  5455. align-self:center;
  5456. padding:2px 2px 2px 2px;
  5457. box-sizing:border-box;
  5458. width:100%;
  5459. }
  5460. #u27872_text {
  5461. border-width:0px;
  5462. word-wrap:break-word;
  5463. text-transform:none;
  5464. visibility:hidden;
  5465. }
  5466. #u27873_div {
  5467. border-width:0px;
  5468. position:absolute;
  5469. left:0px;
  5470. top:0px;
  5471. width:1000px;
  5472. height:531px;
  5473. background:inherit;
  5474. background-color:rgba(255, 255, 255, 1);
  5475. box-sizing:border-box;
  5476. border-width:1px;
  5477. border-style:solid;
  5478. border-color:rgba(242, 242, 242, 1);
  5479. border-radius:0px;
  5480. -moz-box-shadow:none;
  5481. -webkit-box-shadow:none;
  5482. box-shadow:none;
  5483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5484. font-weight:400;
  5485. font-style:normal;
  5486. font-size:14px;
  5487. color:#AAAAAA;
  5488. text-align:center;
  5489. line-height:30px;
  5490. }
  5491. #u27873 {
  5492. border-width:0px;
  5493. position:absolute;
  5494. left:2102px;
  5495. top:680px;
  5496. width:1000px;
  5497. height:531px;
  5498. display:flex;
  5499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5500. font-weight:400;
  5501. font-style:normal;
  5502. font-size:14px;
  5503. color:#AAAAAA;
  5504. text-align:center;
  5505. line-height:30px;
  5506. }
  5507. #u27873 .text {
  5508. position:absolute;
  5509. align-self:center;
  5510. padding:5px 10px 5px 10px;
  5511. box-sizing:border-box;
  5512. width:100%;
  5513. }
  5514. #u27873_text {
  5515. border-width:0px;
  5516. word-wrap:break-word;
  5517. text-transform:none;
  5518. visibility:hidden;
  5519. }
  5520. #u27874_div {
  5521. border-width:0px;
  5522. position:absolute;
  5523. left:0px;
  5524. top:0px;
  5525. width:73px;
  5526. height:40px;
  5527. background:inherit;
  5528. background-color:rgba(255, 255, 255, 0);
  5529. border:none;
  5530. border-left:0px;
  5531. border-top:0px;
  5532. border-right:0px;
  5533. border-radius:0px;
  5534. border-bottom-right-radius:0px;
  5535. border-bottom-left-radius:0px;
  5536. -moz-box-shadow:none;
  5537. -webkit-box-shadow:none;
  5538. box-shadow:none;
  5539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5540. font-weight:400;
  5541. font-style:normal;
  5542. font-size:18px;
  5543. }
  5544. #u27874 {
  5545. border-width:0px;
  5546. position:absolute;
  5547. left:2142px;
  5548. top:696px;
  5549. width:73px;
  5550. height:40px;
  5551. display:flex;
  5552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5553. font-weight:400;
  5554. font-style:normal;
  5555. font-size:18px;
  5556. }
  5557. #u27874 .text {
  5558. position:absolute;
  5559. align-self:center;
  5560. padding:0px 0px 0px 0px;
  5561. box-sizing:border-box;
  5562. width:100%;
  5563. }
  5564. #u27874_text {
  5565. border-width:0px;
  5566. white-space:nowrap;
  5567. text-transform:none;
  5568. }
  5569. #u27875_div {
  5570. border-width:0px;
  5571. position:absolute;
  5572. left:0px;
  5573. top:0px;
  5574. width:95px;
  5575. height:30px;
  5576. background:inherit;
  5577. background-color:rgba(255, 255, 255, 0);
  5578. border:none;
  5579. border-top:0px;
  5580. border-right:0px;
  5581. border-bottom:0px;
  5582. border-radius:0px;
  5583. border-top-left-radius:0px;
  5584. border-bottom-left-radius:0px;
  5585. -moz-box-shadow:none;
  5586. -webkit-box-shadow:none;
  5587. box-shadow:none;
  5588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5589. font-weight:400;
  5590. font-style:normal;
  5591. font-size:14px;
  5592. color:#7F7F7F;
  5593. }
  5594. #u27875 {
  5595. border-width:0px;
  5596. position:absolute;
  5597. left:2759px;
  5598. top:316px;
  5599. width:95px;
  5600. height:30px;
  5601. display:flex;
  5602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5603. font-weight:400;
  5604. font-style:normal;
  5605. font-size:14px;
  5606. color:#7F7F7F;
  5607. }
  5608. #u27875 .text {
  5609. position:absolute;
  5610. align-self:center;
  5611. padding:5px 10px 5px 0px;
  5612. box-sizing:border-box;
  5613. width:100%;
  5614. }
  5615. #u27875_text {
  5616. border-width:0px;
  5617. white-space:nowrap;
  5618. text-transform:none;
  5619. }
  5620. #u27876_div {
  5621. border-width:0px;
  5622. position:absolute;
  5623. left:0px;
  5624. top:0px;
  5625. width:101px;
  5626. height:30px;
  5627. background:inherit;
  5628. background-color:rgba(255, 255, 255, 0);
  5629. border:none;
  5630. border-top:0px;
  5631. border-right:0px;
  5632. border-bottom:0px;
  5633. border-radius:0px;
  5634. border-top-left-radius:0px;
  5635. border-bottom-left-radius:0px;
  5636. -moz-box-shadow:none;
  5637. -webkit-box-shadow:none;
  5638. box-shadow:none;
  5639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5640. font-weight:400;
  5641. font-style:normal;
  5642. font-size:14px;
  5643. }
  5644. #u27876 {
  5645. border-width:0px;
  5646. position:absolute;
  5647. left:2840px;
  5648. top:316px;
  5649. width:101px;
  5650. height:30px;
  5651. display:flex;
  5652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5653. font-weight:400;
  5654. font-style:normal;
  5655. font-size:14px;
  5656. }
  5657. #u27876 .text {
  5658. position:absolute;
  5659. align-self:center;
  5660. padding:5px 10px 5px 0px;
  5661. box-sizing:border-box;
  5662. width:100%;
  5663. }
  5664. #u27876_text {
  5665. border-width:0px;
  5666. white-space:nowrap;
  5667. text-transform:none;
  5668. }
  5669. #u27877_div {
  5670. border-width:0px;
  5671. position:absolute;
  5672. left:0px;
  5673. top:0px;
  5674. width:81px;
  5675. height:30px;
  5676. background:inherit;
  5677. background-color:rgba(255, 255, 255, 0);
  5678. border:none;
  5679. border-top:0px;
  5680. border-right:0px;
  5681. border-bottom:0px;
  5682. border-radius:0px;
  5683. border-top-left-radius:0px;
  5684. border-bottom-left-radius:0px;
  5685. -moz-box-shadow:none;
  5686. -webkit-box-shadow:none;
  5687. box-shadow:none;
  5688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5689. font-weight:400;
  5690. font-style:normal;
  5691. font-size:14px;
  5692. color:#7F7F7F;
  5693. }
  5694. #u27877 {
  5695. border-width:0px;
  5696. position:absolute;
  5697. left:2442px;
  5698. top:356px;
  5699. width:81px;
  5700. height:30px;
  5701. display:flex;
  5702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5703. font-weight:400;
  5704. font-style:normal;
  5705. font-size:14px;
  5706. color:#7F7F7F;
  5707. }
  5708. #u27877 .text {
  5709. position:absolute;
  5710. align-self:center;
  5711. padding:5px 10px 5px 0px;
  5712. box-sizing:border-box;
  5713. width:100%;
  5714. }
  5715. #u27877_text {
  5716. border-width:0px;
  5717. white-space:nowrap;
  5718. text-transform:none;
  5719. }
  5720. #u27878_div {
  5721. border-width:0px;
  5722. position:absolute;
  5723. left:0px;
  5724. top:0px;
  5725. width:134px;
  5726. height:30px;
  5727. background:inherit;
  5728. background-color:rgba(255, 255, 255, 0);
  5729. border:none;
  5730. border-top:0px;
  5731. border-right:0px;
  5732. border-bottom:0px;
  5733. border-radius:0px;
  5734. border-top-left-radius:0px;
  5735. border-bottom-left-radius:0px;
  5736. -moz-box-shadow:none;
  5737. -webkit-box-shadow:none;
  5738. box-shadow:none;
  5739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5740. font-weight:400;
  5741. font-style:normal;
  5742. font-size:14px;
  5743. }
  5744. #u27878 {
  5745. border-width:0px;
  5746. position:absolute;
  5747. left:2523px;
  5748. top:356px;
  5749. width:134px;
  5750. height:30px;
  5751. display:flex;
  5752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5753. font-weight:400;
  5754. font-style:normal;
  5755. font-size:14px;
  5756. }
  5757. #u27878 .text {
  5758. position:absolute;
  5759. align-self:center;
  5760. padding:5px 10px 5px 0px;
  5761. box-sizing:border-box;
  5762. width:100%;
  5763. }
  5764. #u27878_text {
  5765. border-width:0px;
  5766. white-space:nowrap;
  5767. text-transform:none;
  5768. }
  5769. #u27879_div {
  5770. border-width:0px;
  5771. position:absolute;
  5772. left:0px;
  5773. top:0px;
  5774. width:81px;
  5775. height:30px;
  5776. background:inherit;
  5777. background-color:rgba(255, 255, 255, 0);
  5778. border:none;
  5779. border-top:0px;
  5780. border-right:0px;
  5781. border-bottom:0px;
  5782. border-radius:0px;
  5783. border-top-left-radius:0px;
  5784. border-bottom-left-radius:0px;
  5785. -moz-box-shadow:none;
  5786. -webkit-box-shadow:none;
  5787. box-shadow:none;
  5788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5789. font-weight:400;
  5790. font-style:normal;
  5791. font-size:14px;
  5792. color:#7F7F7F;
  5793. }
  5794. #u27879 {
  5795. border-width:0px;
  5796. position:absolute;
  5797. left:2442px;
  5798. top:396px;
  5799. width:81px;
  5800. height:30px;
  5801. display:flex;
  5802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5803. font-weight:400;
  5804. font-style:normal;
  5805. font-size:14px;
  5806. color:#7F7F7F;
  5807. }
  5808. #u27879 .text {
  5809. position:absolute;
  5810. align-self:center;
  5811. padding:5px 10px 5px 0px;
  5812. box-sizing:border-box;
  5813. width:100%;
  5814. }
  5815. #u27879_text {
  5816. border-width:0px;
  5817. white-space:nowrap;
  5818. text-transform:none;
  5819. }
  5820. #u27880_div {
  5821. border-width:0px;
  5822. position:absolute;
  5823. left:0px;
  5824. top:0px;
  5825. width:39px;
  5826. height:30px;
  5827. background:inherit;
  5828. background-color:rgba(255, 255, 255, 0);
  5829. border:none;
  5830. border-top:0px;
  5831. border-right:0px;
  5832. border-bottom:0px;
  5833. border-radius:0px;
  5834. border-top-left-radius:0px;
  5835. border-bottom-left-radius:0px;
  5836. -moz-box-shadow:none;
  5837. -webkit-box-shadow:none;
  5838. box-shadow:none;
  5839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5840. font-weight:400;
  5841. font-style:normal;
  5842. font-size:14px;
  5843. }
  5844. #u27880 {
  5845. border-width:0px;
  5846. position:absolute;
  5847. left:2523px;
  5848. top:396px;
  5849. width:39px;
  5850. height:30px;
  5851. display:flex;
  5852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5853. font-weight:400;
  5854. font-style:normal;
  5855. font-size:14px;
  5856. }
  5857. #u27880 .text {
  5858. position:absolute;
  5859. align-self:center;
  5860. padding:5px 10px 5px 0px;
  5861. box-sizing:border-box;
  5862. width:100%;
  5863. }
  5864. #u27880_text {
  5865. border-width:0px;
  5866. white-space:nowrap;
  5867. text-transform:none;
  5868. }
  5869. #u27881_div {
  5870. border-width:0px;
  5871. position:absolute;
  5872. left:0px;
  5873. top:0px;
  5874. width:81px;
  5875. height:30px;
  5876. background:inherit;
  5877. background-color:rgba(255, 255, 255, 0);
  5878. border:none;
  5879. border-top:0px;
  5880. border-right:0px;
  5881. border-bottom:0px;
  5882. border-radius:0px;
  5883. border-top-left-radius:0px;
  5884. border-bottom-left-radius:0px;
  5885. -moz-box-shadow:none;
  5886. -webkit-box-shadow:none;
  5887. box-shadow:none;
  5888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5889. font-weight:400;
  5890. font-style:normal;
  5891. font-size:14px;
  5892. color:#7F7F7F;
  5893. }
  5894. #u27881 {
  5895. border-width:0px;
  5896. position:absolute;
  5897. left:2759px;
  5898. top:396px;
  5899. width:81px;
  5900. height:30px;
  5901. display:flex;
  5902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5903. font-weight:400;
  5904. font-style:normal;
  5905. font-size:14px;
  5906. color:#7F7F7F;
  5907. }
  5908. #u27881 .text {
  5909. position:absolute;
  5910. align-self:center;
  5911. padding:5px 10px 5px 0px;
  5912. box-sizing:border-box;
  5913. width:100%;
  5914. }
  5915. #u27881_text {
  5916. border-width:0px;
  5917. white-space:nowrap;
  5918. text-transform:none;
  5919. }
  5920. #u27882_div {
  5921. border-width:0px;
  5922. position:absolute;
  5923. left:0px;
  5924. top:0px;
  5925. width:126px;
  5926. height:30px;
  5927. background:inherit;
  5928. background-color:rgba(255, 255, 255, 0);
  5929. border:none;
  5930. border-top:0px;
  5931. border-right:0px;
  5932. border-bottom:0px;
  5933. border-radius:0px;
  5934. border-top-left-radius:0px;
  5935. border-bottom-left-radius:0px;
  5936. -moz-box-shadow:none;
  5937. -webkit-box-shadow:none;
  5938. box-shadow:none;
  5939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5940. font-weight:400;
  5941. font-style:normal;
  5942. font-size:14px;
  5943. }
  5944. #u27882 {
  5945. border-width:0px;
  5946. position:absolute;
  5947. left:2840px;
  5948. top:396px;
  5949. width:126px;
  5950. height:30px;
  5951. display:flex;
  5952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5953. font-weight:400;
  5954. font-style:normal;
  5955. font-size:14px;
  5956. }
  5957. #u27882 .text {
  5958. position:absolute;
  5959. align-self:center;
  5960. padding:5px 10px 5px 0px;
  5961. box-sizing:border-box;
  5962. width:100%;
  5963. }
  5964. #u27882_text {
  5965. border-width:0px;
  5966. white-space:nowrap;
  5967. text-transform:none;
  5968. }
  5969. #u27883_div {
  5970. border-width:0px;
  5971. position:absolute;
  5972. left:0px;
  5973. top:0px;
  5974. width:123px;
  5975. height:30px;
  5976. background:inherit;
  5977. background-color:rgba(255, 255, 255, 0);
  5978. border:none;
  5979. border-top:0px;
  5980. border-right:0px;
  5981. border-bottom:0px;
  5982. border-radius:0px;
  5983. border-top-left-radius:0px;
  5984. border-bottom-left-radius:0px;
  5985. -moz-box-shadow:none;
  5986. -webkit-box-shadow:none;
  5987. box-shadow:none;
  5988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5989. font-weight:400;
  5990. font-style:normal;
  5991. font-size:14px;
  5992. }
  5993. #u27883 {
  5994. border-width:0px;
  5995. position:absolute;
  5996. left:2142px;
  5997. top:516px;
  5998. width:123px;
  5999. height:30px;
  6000. display:flex;
  6001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6002. font-weight:400;
  6003. font-style:normal;
  6004. font-size:14px;
  6005. }
  6006. #u27883 .text {
  6007. position:absolute;
  6008. align-self:center;
  6009. padding:5px 10px 5px 0px;
  6010. box-sizing:border-box;
  6011. width:100%;
  6012. }
  6013. #u27883_text {
  6014. border-width:0px;
  6015. white-space:nowrap;
  6016. text-transform:none;
  6017. }
  6018. #u27884_div {
  6019. border-width:0px;
  6020. position:absolute;
  6021. left:0px;
  6022. top:0px;
  6023. width:95px;
  6024. height:30px;
  6025. background:inherit;
  6026. background-color:rgba(255, 255, 255, 0);
  6027. border:none;
  6028. border-top:0px;
  6029. border-right:0px;
  6030. border-bottom:0px;
  6031. border-radius:0px;
  6032. border-top-left-radius:0px;
  6033. border-bottom-left-radius:0px;
  6034. -moz-box-shadow:none;
  6035. -webkit-box-shadow:none;
  6036. box-shadow:none;
  6037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6038. font-weight:400;
  6039. font-style:normal;
  6040. font-size:14px;
  6041. color:#7F7F7F;
  6042. }
  6043. #u27884 {
  6044. border-width:0px;
  6045. position:absolute;
  6046. left:2142px;
  6047. top:756px;
  6048. width:95px;
  6049. height:30px;
  6050. display:flex;
  6051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6052. font-weight:400;
  6053. font-style:normal;
  6054. font-size:14px;
  6055. color:#7F7F7F;
  6056. }
  6057. #u27884 .text {
  6058. position:absolute;
  6059. align-self:center;
  6060. padding:5px 10px 5px 0px;
  6061. box-sizing:border-box;
  6062. width:100%;
  6063. }
  6064. #u27884_text {
  6065. border-width:0px;
  6066. white-space:nowrap;
  6067. text-transform:none;
  6068. }
  6069. #u27885_div {
  6070. border-width:0px;
  6071. position:absolute;
  6072. left:0px;
  6073. top:0px;
  6074. width:137px;
  6075. height:30px;
  6076. background:inherit;
  6077. background-color:rgba(255, 255, 255, 0);
  6078. border:none;
  6079. border-top:0px;
  6080. border-right:0px;
  6081. border-bottom:0px;
  6082. border-radius:0px;
  6083. border-top-left-radius:0px;
  6084. border-bottom-left-radius:0px;
  6085. -moz-box-shadow:none;
  6086. -webkit-box-shadow:none;
  6087. box-shadow:none;
  6088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6089. font-weight:400;
  6090. font-style:normal;
  6091. font-size:14px;
  6092. color:#1890FF;
  6093. }
  6094. #u27885 {
  6095. border-width:0px;
  6096. position:absolute;
  6097. left:2243px;
  6098. top:756px;
  6099. width:137px;
  6100. height:30px;
  6101. display:flex;
  6102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6103. font-weight:400;
  6104. font-style:normal;
  6105. font-size:14px;
  6106. color:#1890FF;
  6107. }
  6108. #u27885 .text {
  6109. position:absolute;
  6110. align-self:center;
  6111. padding:5px 10px 5px 0px;
  6112. box-sizing:border-box;
  6113. width:100%;
  6114. }
  6115. #u27885_text {
  6116. border-width:0px;
  6117. white-space:nowrap;
  6118. text-transform:none;
  6119. }
  6120. #u27886_div {
  6121. border-width:0px;
  6122. position:absolute;
  6123. left:0px;
  6124. top:0px;
  6125. width:81px;
  6126. height:30px;
  6127. background:inherit;
  6128. background-color:rgba(255, 255, 255, 0);
  6129. border:none;
  6130. border-top:0px;
  6131. border-right:0px;
  6132. border-bottom:0px;
  6133. border-radius:0px;
  6134. border-top-left-radius:0px;
  6135. border-bottom-left-radius:0px;
  6136. -moz-box-shadow:none;
  6137. -webkit-box-shadow:none;
  6138. box-shadow:none;
  6139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6140. font-weight:400;
  6141. font-style:normal;
  6142. font-size:14px;
  6143. color:#7F7F7F;
  6144. }
  6145. #u27886 {
  6146. border-width:0px;
  6147. position:absolute;
  6148. left:2142px;
  6149. top:796px;
  6150. width:81px;
  6151. height:30px;
  6152. display:flex;
  6153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6154. font-weight:400;
  6155. font-style:normal;
  6156. font-size:14px;
  6157. color:#7F7F7F;
  6158. }
  6159. #u27886 .text {
  6160. position:absolute;
  6161. align-self:center;
  6162. padding:5px 10px 5px 0px;
  6163. box-sizing:border-box;
  6164. width:100%;
  6165. }
  6166. #u27886_text {
  6167. border-width:0px;
  6168. white-space:nowrap;
  6169. text-transform:none;
  6170. }
  6171. #u27887_div {
  6172. border-width:0px;
  6173. position:absolute;
  6174. left:0px;
  6175. top:0px;
  6176. width:134px;
  6177. height:30px;
  6178. background:inherit;
  6179. background-color:rgba(255, 255, 255, 0);
  6180. border:none;
  6181. border-top:0px;
  6182. border-right:0px;
  6183. border-bottom:0px;
  6184. border-radius:0px;
  6185. border-top-left-radius:0px;
  6186. border-bottom-left-radius:0px;
  6187. -moz-box-shadow:none;
  6188. -webkit-box-shadow:none;
  6189. box-shadow:none;
  6190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6191. font-weight:400;
  6192. font-style:normal;
  6193. font-size:14px;
  6194. }
  6195. #u27887 {
  6196. border-width:0px;
  6197. position:absolute;
  6198. left:2243px;
  6199. top:796px;
  6200. width:134px;
  6201. height:30px;
  6202. display:flex;
  6203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6204. font-weight:400;
  6205. font-style:normal;
  6206. font-size:14px;
  6207. }
  6208. #u27887 .text {
  6209. position:absolute;
  6210. align-self:center;
  6211. padding:5px 10px 5px 0px;
  6212. box-sizing:border-box;
  6213. width:100%;
  6214. }
  6215. #u27887_text {
  6216. border-width:0px;
  6217. white-space:nowrap;
  6218. text-transform:none;
  6219. }
  6220. #u27888_div {
  6221. border-width:0px;
  6222. position:absolute;
  6223. left:0px;
  6224. top:0px;
  6225. width:81px;
  6226. height:30px;
  6227. background:inherit;
  6228. background-color:rgba(255, 255, 255, 0);
  6229. border:none;
  6230. border-top:0px;
  6231. border-right:0px;
  6232. border-bottom:0px;
  6233. border-radius:0px;
  6234. border-top-left-radius:0px;
  6235. border-bottom-left-radius:0px;
  6236. -moz-box-shadow:none;
  6237. -webkit-box-shadow:none;
  6238. box-shadow:none;
  6239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6240. font-weight:400;
  6241. font-style:normal;
  6242. font-size:14px;
  6243. color:#7F7F7F;
  6244. }
  6245. #u27888 {
  6246. border-width:0px;
  6247. position:absolute;
  6248. left:2142px;
  6249. top:876px;
  6250. width:81px;
  6251. height:30px;
  6252. display:flex;
  6253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6254. font-weight:400;
  6255. font-style:normal;
  6256. font-size:14px;
  6257. color:#7F7F7F;
  6258. }
  6259. #u27888 .text {
  6260. position:absolute;
  6261. align-self:center;
  6262. padding:5px 10px 5px 0px;
  6263. box-sizing:border-box;
  6264. width:100%;
  6265. }
  6266. #u27888_text {
  6267. border-width:0px;
  6268. white-space:nowrap;
  6269. text-transform:none;
  6270. }
  6271. #u27889_div {
  6272. border-width:0px;
  6273. position:absolute;
  6274. left:0px;
  6275. top:0px;
  6276. width:39px;
  6277. height:30px;
  6278. background:inherit;
  6279. background-color:rgba(255, 255, 255, 0);
  6280. border:none;
  6281. border-top:0px;
  6282. border-right:0px;
  6283. border-bottom:0px;
  6284. border-radius:0px;
  6285. border-top-left-radius:0px;
  6286. border-bottom-left-radius:0px;
  6287. -moz-box-shadow:none;
  6288. -webkit-box-shadow:none;
  6289. box-shadow:none;
  6290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6291. font-weight:400;
  6292. font-style:normal;
  6293. font-size:14px;
  6294. color:#0089FE;
  6295. }
  6296. #u27889 {
  6297. border-width:0px;
  6298. position:absolute;
  6299. left:2243px;
  6300. top:876px;
  6301. width:39px;
  6302. height:30px;
  6303. display:flex;
  6304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6305. font-weight:400;
  6306. font-style:normal;
  6307. font-size:14px;
  6308. color:#0089FE;
  6309. }
  6310. #u27889 .text {
  6311. position:absolute;
  6312. align-self:center;
  6313. padding:5px 10px 5px 0px;
  6314. box-sizing:border-box;
  6315. width:100%;
  6316. }
  6317. #u27889_text {
  6318. border-width:0px;
  6319. white-space:nowrap;
  6320. text-transform:none;
  6321. }
  6322. #u27890_div {
  6323. border-width:0px;
  6324. position:absolute;
  6325. left:0px;
  6326. top:0px;
  6327. width:81px;
  6328. height:30px;
  6329. background:inherit;
  6330. background-color:rgba(255, 255, 255, 0);
  6331. border:none;
  6332. border-top:0px;
  6333. border-right:0px;
  6334. border-bottom:0px;
  6335. border-radius:0px;
  6336. border-top-left-radius:0px;
  6337. border-bottom-left-radius:0px;
  6338. -moz-box-shadow:none;
  6339. -webkit-box-shadow:none;
  6340. box-shadow:none;
  6341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6342. font-weight:400;
  6343. font-style:normal;
  6344. font-size:14px;
  6345. color:#7F7F7F;
  6346. }
  6347. #u27890 {
  6348. border-width:0px;
  6349. position:absolute;
  6350. left:2142px;
  6351. top:836px;
  6352. width:81px;
  6353. height:30px;
  6354. display:flex;
  6355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6356. font-weight:400;
  6357. font-style:normal;
  6358. font-size:14px;
  6359. color:#7F7F7F;
  6360. }
  6361. #u27890 .text {
  6362. position:absolute;
  6363. align-self:center;
  6364. padding:5px 10px 5px 0px;
  6365. box-sizing:border-box;
  6366. width:100%;
  6367. }
  6368. #u27890_text {
  6369. border-width:0px;
  6370. white-space:nowrap;
  6371. text-transform:none;
  6372. }
  6373. #u27891_div {
  6374. border-width:0px;
  6375. position:absolute;
  6376. left:0px;
  6377. top:0px;
  6378. width:134px;
  6379. height:30px;
  6380. background:inherit;
  6381. background-color:rgba(255, 255, 255, 0);
  6382. border:none;
  6383. border-top:0px;
  6384. border-right:0px;
  6385. border-bottom:0px;
  6386. border-radius:0px;
  6387. border-top-left-radius:0px;
  6388. border-bottom-left-radius:0px;
  6389. -moz-box-shadow:none;
  6390. -webkit-box-shadow:none;
  6391. box-shadow:none;
  6392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6393. font-weight:400;
  6394. font-style:normal;
  6395. font-size:14px;
  6396. }
  6397. #u27891 {
  6398. border-width:0px;
  6399. position:absolute;
  6400. left:2243px;
  6401. top:836px;
  6402. width:134px;
  6403. height:30px;
  6404. display:flex;
  6405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6406. font-weight:400;
  6407. font-style:normal;
  6408. font-size:14px;
  6409. }
  6410. #u27891 .text {
  6411. position:absolute;
  6412. align-self:center;
  6413. padding:5px 10px 5px 0px;
  6414. box-sizing:border-box;
  6415. width:100%;
  6416. }
  6417. #u27891_text {
  6418. border-width:0px;
  6419. white-space:nowrap;
  6420. text-transform:none;
  6421. }
  6422. #u27892_div {
  6423. border-width:0px;
  6424. position:absolute;
  6425. left:0px;
  6426. top:0px;
  6427. width:81px;
  6428. height:30px;
  6429. background:inherit;
  6430. background-color:rgba(255, 255, 255, 0);
  6431. border:none;
  6432. border-top:0px;
  6433. border-right:0px;
  6434. border-bottom:0px;
  6435. border-radius:0px;
  6436. border-top-left-radius:0px;
  6437. border-bottom-left-radius:0px;
  6438. -moz-box-shadow:none;
  6439. -webkit-box-shadow:none;
  6440. box-shadow:none;
  6441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6442. font-weight:400;
  6443. font-style:normal;
  6444. font-size:14px;
  6445. color:#7F7F7F;
  6446. }
  6447. #u27892 {
  6448. border-width:0px;
  6449. position:absolute;
  6450. left:2142px;
  6451. top:396px;
  6452. width:81px;
  6453. height:30px;
  6454. display:flex;
  6455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6456. font-weight:400;
  6457. font-style:normal;
  6458. font-size:14px;
  6459. color:#7F7F7F;
  6460. }
  6461. #u27892 .text {
  6462. position:absolute;
  6463. align-self:center;
  6464. padding:5px 10px 5px 0px;
  6465. box-sizing:border-box;
  6466. width:100%;
  6467. }
  6468. #u27892_text {
  6469. border-width:0px;
  6470. white-space:nowrap;
  6471. text-transform:none;
  6472. }
  6473. #u27893_div {
  6474. border-width:0px;
  6475. position:absolute;
  6476. left:0px;
  6477. top:0px;
  6478. width:151px;
  6479. height:30px;
  6480. background:inherit;
  6481. background-color:rgba(255, 255, 255, 0);
  6482. border:none;
  6483. border-top:0px;
  6484. border-right:0px;
  6485. border-bottom:0px;
  6486. border-radius:0px;
  6487. border-top-left-radius:0px;
  6488. border-bottom-left-radius:0px;
  6489. -moz-box-shadow:none;
  6490. -webkit-box-shadow:none;
  6491. box-shadow:none;
  6492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6493. font-weight:400;
  6494. font-style:normal;
  6495. font-size:14px;
  6496. color:#0089FE;
  6497. }
  6498. #u27893 {
  6499. border-width:0px;
  6500. position:absolute;
  6501. left:2223px;
  6502. top:396px;
  6503. width:151px;
  6504. height:30px;
  6505. display:flex;
  6506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6507. font-weight:400;
  6508. font-style:normal;
  6509. font-size:14px;
  6510. color:#0089FE;
  6511. }
  6512. #u27893 .text {
  6513. position:absolute;
  6514. align-self:center;
  6515. padding:5px 10px 5px 0px;
  6516. box-sizing:border-box;
  6517. width:100%;
  6518. }
  6519. #u27893_text {
  6520. border-width:0px;
  6521. white-space:nowrap;
  6522. text-transform:none;
  6523. }
  6524. #u27894 {
  6525. border-width:0px;
  6526. position:absolute;
  6527. left:0px;
  6528. top:0px;
  6529. width:0px;
  6530. height:0px;
  6531. }
  6532. #u27895_div {
  6533. border-width:0px;
  6534. position:absolute;
  6535. left:0px;
  6536. top:0px;
  6537. width:1000px;
  6538. height:1231px;
  6539. background:inherit;
  6540. background-color:rgba(242, 242, 242, 1);
  6541. box-sizing:border-box;
  6542. border-width:1px;
  6543. border-style:solid;
  6544. border-color:rgba(215, 215, 215, 1);
  6545. border-radius:0px;
  6546. -moz-box-shadow:none;
  6547. -webkit-box-shadow:none;
  6548. box-shadow:none;
  6549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6550. font-weight:400;
  6551. font-style:normal;
  6552. font-size:14px;
  6553. color:#AAAAAA;
  6554. text-align:center;
  6555. line-height:30px;
  6556. }
  6557. #u27895 {
  6558. border-width:0px;
  6559. position:absolute;
  6560. left:3144px;
  6561. top:40px;
  6562. width:1000px;
  6563. height:1231px;
  6564. display:flex;
  6565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6566. font-weight:400;
  6567. font-style:normal;
  6568. font-size:14px;
  6569. color:#AAAAAA;
  6570. text-align:center;
  6571. line-height:30px;
  6572. }
  6573. #u27895 .text {
  6574. position:absolute;
  6575. align-self:center;
  6576. padding:5px 10px 5px 10px;
  6577. box-sizing:border-box;
  6578. width:100%;
  6579. }
  6580. #u27895_text {
  6581. border-width:0px;
  6582. word-wrap:break-word;
  6583. text-transform:none;
  6584. visibility:hidden;
  6585. }
  6586. #u27896_div {
  6587. border-width:0px;
  6588. position:absolute;
  6589. left:0px;
  6590. top:0px;
  6591. width:1000px;
  6592. height:200px;
  6593. background:inherit;
  6594. background-color:rgba(255, 255, 255, 1);
  6595. box-sizing:border-box;
  6596. border-width:1px;
  6597. border-style:solid;
  6598. border-color:rgba(215, 215, 215, 1);
  6599. border-radius:0px;
  6600. -moz-box-shadow:none;
  6601. -webkit-box-shadow:none;
  6602. box-shadow:none;
  6603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6604. font-weight:400;
  6605. font-style:normal;
  6606. font-size:14px;
  6607. color:#AAAAAA;
  6608. text-align:center;
  6609. line-height:30px;
  6610. }
  6611. #u27896 {
  6612. border-width:0px;
  6613. position:absolute;
  6614. left:3144px;
  6615. top:40px;
  6616. width:1000px;
  6617. height:200px;
  6618. display:flex;
  6619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6620. font-weight:400;
  6621. font-style:normal;
  6622. font-size:14px;
  6623. color:#AAAAAA;
  6624. text-align:center;
  6625. line-height:30px;
  6626. }
  6627. #u27896 .text {
  6628. position:absolute;
  6629. align-self:center;
  6630. padding:5px 10px 5px 10px;
  6631. box-sizing:border-box;
  6632. width:100%;
  6633. }
  6634. #u27896_text {
  6635. border-width:0px;
  6636. word-wrap:break-word;
  6637. text-transform:none;
  6638. visibility:hidden;
  6639. }
  6640. #u27897_div {
  6641. border-width:0px;
  6642. position:absolute;
  6643. left:0px;
  6644. top:0px;
  6645. width:83px;
  6646. height:35px;
  6647. background:inherit;
  6648. background-color:rgba(255, 255, 255, 0);
  6649. border:none;
  6650. border-top:0px;
  6651. border-right:0px;
  6652. border-bottom:0px;
  6653. border-radius:0px;
  6654. border-top-left-radius:0px;
  6655. border-bottom-left-radius:0px;
  6656. -moz-box-shadow:none;
  6657. -webkit-box-shadow:none;
  6658. box-shadow:none;
  6659. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6660. font-weight:500;
  6661. font-style:normal;
  6662. font-size:18px;
  6663. }
  6664. #u27897 {
  6665. border-width:0px;
  6666. position:absolute;
  6667. left:3164px;
  6668. top:58px;
  6669. width:83px;
  6670. height:35px;
  6671. display:flex;
  6672. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6673. font-weight:500;
  6674. font-style:normal;
  6675. font-size:18px;
  6676. }
  6677. #u27897 .text {
  6678. position:absolute;
  6679. align-self:center;
  6680. padding:5px 10px 5px 0px;
  6681. box-sizing:border-box;
  6682. width:100%;
  6683. }
  6684. #u27897_text {
  6685. border-width:0px;
  6686. white-space:nowrap;
  6687. text-transform:none;
  6688. }
  6689. #u27898 {
  6690. border-width:0px;
  6691. position:absolute;
  6692. left:0px;
  6693. top:0px;
  6694. width:0px;
  6695. height:0px;
  6696. }
  6697. #u27899_div {
  6698. border-width:0px;
  6699. position:absolute;
  6700. left:0px;
  6701. top:0px;
  6702. width:40px;
  6703. height:40px;
  6704. background:inherit;
  6705. background-color:rgba(255, 255, 255, 0);
  6706. border:none;
  6707. border-top:0px;
  6708. border-right:0px;
  6709. border-bottom:0px;
  6710. border-radius:0px;
  6711. border-top-left-radius:0px;
  6712. border-bottom-left-radius:0px;
  6713. -moz-box-shadow:none;
  6714. -webkit-box-shadow:none;
  6715. box-shadow:none;
  6716. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6717. font-weight:500;
  6718. font-style:normal;
  6719. font-size:14px;
  6720. text-align:center;
  6721. }
  6722. #u27899 {
  6723. border-width:0px;
  6724. position:absolute;
  6725. left:4104px;
  6726. top:40px;
  6727. width:40px;
  6728. height:40px;
  6729. display:flex;
  6730. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6731. font-weight:500;
  6732. font-style:normal;
  6733. font-size:14px;
  6734. text-align:center;
  6735. }
  6736. #u27899 .text {
  6737. position:absolute;
  6738. align-self:center;
  6739. padding:5px 10px 5px 0px;
  6740. box-sizing:border-box;
  6741. width:100%;
  6742. }
  6743. #u27899_text {
  6744. border-width:0px;
  6745. word-wrap:break-word;
  6746. text-transform:none;
  6747. }
  6748. #u27900_img {
  6749. border-width:0px;
  6750. position:absolute;
  6751. left:0px;
  6752. top:0px;
  6753. width:13px;
  6754. height:13px;
  6755. }
  6756. #u27900 {
  6757. border-width:0px;
  6758. position:absolute;
  6759. left:4092px;
  6760. top:56px;
  6761. width:13px;
  6762. height:13px;
  6763. display:flex;
  6764. font-size:14px;
  6765. }
  6766. #u27900 .text {
  6767. position:absolute;
  6768. align-self:center;
  6769. padding:2px 2px 2px 2px;
  6770. box-sizing:border-box;
  6771. width:100%;
  6772. }
  6773. #u27900_text {
  6774. border-width:0px;
  6775. word-wrap:break-word;
  6776. text-transform:none;
  6777. visibility:hidden;
  6778. }
  6779. #u27901_div {
  6780. border-width:0px;
  6781. position:absolute;
  6782. left:0px;
  6783. top:0px;
  6784. width:338px;
  6785. height:43px;
  6786. background:inherit;
  6787. background-color:rgba(255, 255, 255, 0);
  6788. border:none;
  6789. border-top:0px;
  6790. border-right:0px;
  6791. border-bottom:0px;
  6792. border-radius:0px;
  6793. border-top-left-radius:0px;
  6794. border-bottom-left-radius:0px;
  6795. -moz-box-shadow:none;
  6796. -webkit-box-shadow:none;
  6797. box-shadow:none;
  6798. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6799. font-weight:500;
  6800. font-style:normal;
  6801. font-size:24px;
  6802. }
  6803. #u27901 {
  6804. border-width:0px;
  6805. position:absolute;
  6806. left:3174px;
  6807. top:109px;
  6808. width:338px;
  6809. height:43px;
  6810. display:flex;
  6811. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6812. font-weight:500;
  6813. font-style:normal;
  6814. font-size:24px;
  6815. }
  6816. #u27901 .text {
  6817. position:absolute;
  6818. align-self:center;
  6819. padding:5px 10px 5px 0px;
  6820. box-sizing:border-box;
  6821. width:100%;
  6822. }
  6823. #u27901_text {
  6824. border-width:0px;
  6825. white-space:nowrap;
  6826. text-transform:none;
  6827. }
  6828. #u27902_img {
  6829. border-width:0px;
  6830. position:absolute;
  6831. left:0px;
  6832. top:0px;
  6833. width:108px;
  6834. height:108px;
  6835. }
  6836. #u27902 {
  6837. border-width:0px;
  6838. position:absolute;
  6839. left:3994px;
  6840. top:110px;
  6841. width:108px;
  6842. height:108px;
  6843. display:flex;
  6844. -webkit-transform:rotate(315deg);
  6845. -moz-transform:rotate(315deg);
  6846. -ms-transform:rotate(315deg);
  6847. transform:rotate(315deg);
  6848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6849. font-weight:400;
  6850. font-style:normal;
  6851. font-size:28px;
  6852. color:#F59A23;
  6853. }
  6854. #u27902 .text {
  6855. position:absolute;
  6856. align-self:center;
  6857. padding:2px 2px 2px 2px;
  6858. box-sizing:border-box;
  6859. width:100%;
  6860. }
  6861. #u27902_text {
  6862. border-width:0px;
  6863. word-wrap:break-word;
  6864. text-transform:none;
  6865. }
  6866. #u27903_div {
  6867. border-width:0px;
  6868. position:absolute;
  6869. left:0px;
  6870. top:0px;
  6871. width:1000px;
  6872. height:420px;
  6873. background:inherit;
  6874. background-color:rgba(255, 255, 255, 1);
  6875. box-sizing:border-box;
  6876. border-width:1px;
  6877. border-style:solid;
  6878. border-color:rgba(242, 242, 242, 1);
  6879. border-radius:0px;
  6880. -moz-box-shadow:none;
  6881. -webkit-box-shadow:none;
  6882. box-shadow:none;
  6883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6884. font-weight:400;
  6885. font-style:normal;
  6886. font-size:14px;
  6887. color:#AAAAAA;
  6888. text-align:center;
  6889. line-height:30px;
  6890. }
  6891. #u27903 {
  6892. border-width:0px;
  6893. position:absolute;
  6894. left:3144px;
  6895. top:250px;
  6896. width:1000px;
  6897. height:420px;
  6898. display:flex;
  6899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6900. font-weight:400;
  6901. font-style:normal;
  6902. font-size:14px;
  6903. color:#AAAAAA;
  6904. text-align:center;
  6905. line-height:30px;
  6906. }
  6907. #u27903 .text {
  6908. position:absolute;
  6909. align-self:center;
  6910. padding:5px 10px 5px 10px;
  6911. box-sizing:border-box;
  6912. width:100%;
  6913. }
  6914. #u27903_text {
  6915. border-width:0px;
  6916. word-wrap:break-word;
  6917. text-transform:none;
  6918. visibility:hidden;
  6919. }
  6920. #u27904_div {
  6921. border-width:0px;
  6922. position:absolute;
  6923. left:0px;
  6924. top:0px;
  6925. width:73px;
  6926. height:40px;
  6927. background:inherit;
  6928. background-color:rgba(255, 255, 255, 0);
  6929. border:none;
  6930. border-left:0px;
  6931. border-top:0px;
  6932. border-right:0px;
  6933. border-radius:0px;
  6934. border-bottom-right-radius:0px;
  6935. border-bottom-left-radius:0px;
  6936. -moz-box-shadow:none;
  6937. -webkit-box-shadow:none;
  6938. box-shadow:none;
  6939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6940. font-weight:400;
  6941. font-style:normal;
  6942. font-size:18px;
  6943. }
  6944. #u27904 {
  6945. border-width:0px;
  6946. position:absolute;
  6947. left:3184px;
  6948. top:266px;
  6949. width:73px;
  6950. height:40px;
  6951. display:flex;
  6952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6953. font-weight:400;
  6954. font-style:normal;
  6955. font-size:18px;
  6956. }
  6957. #u27904 .text {
  6958. position:absolute;
  6959. align-self:center;
  6960. padding:0px 0px 0px 0px;
  6961. box-sizing:border-box;
  6962. width:100%;
  6963. }
  6964. #u27904_text {
  6965. border-width:0px;
  6966. white-space:nowrap;
  6967. text-transform:none;
  6968. }
  6969. #u27905_div {
  6970. border-width:0px;
  6971. position:absolute;
  6972. left:0px;
  6973. top:0px;
  6974. width:67px;
  6975. height:30px;
  6976. background:inherit;
  6977. background-color:rgba(255, 255, 255, 0);
  6978. border:none;
  6979. border-top:0px;
  6980. border-right:0px;
  6981. border-bottom:0px;
  6982. border-radius:0px;
  6983. border-top-left-radius:0px;
  6984. border-bottom-left-radius:0px;
  6985. -moz-box-shadow:none;
  6986. -webkit-box-shadow:none;
  6987. box-shadow:none;
  6988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6989. font-weight:400;
  6990. font-style:normal;
  6991. font-size:14px;
  6992. color:#7F7F7F;
  6993. }
  6994. #u27905 {
  6995. border-width:0px;
  6996. position:absolute;
  6997. left:3184px;
  6998. top:316px;
  6999. width:67px;
  7000. height:30px;
  7001. display:flex;
  7002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7003. font-weight:400;
  7004. font-style:normal;
  7005. font-size:14px;
  7006. color:#7F7F7F;
  7007. }
  7008. #u27905 .text {
  7009. position:absolute;
  7010. align-self:center;
  7011. padding:5px 10px 5px 0px;
  7012. box-sizing:border-box;
  7013. width:100%;
  7014. }
  7015. #u27905_text {
  7016. border-width:0px;
  7017. white-space:nowrap;
  7018. text-transform:none;
  7019. }
  7020. #u27906_div {
  7021. border-width:0px;
  7022. position:absolute;
  7023. left:0px;
  7024. top:0px;
  7025. width:39px;
  7026. height:30px;
  7027. background:inherit;
  7028. background-color:rgba(255, 255, 255, 0);
  7029. border:none;
  7030. border-top:0px;
  7031. border-right:0px;
  7032. border-bottom:0px;
  7033. border-radius:0px;
  7034. border-top-left-radius:0px;
  7035. border-bottom-left-radius:0px;
  7036. -moz-box-shadow:none;
  7037. -webkit-box-shadow:none;
  7038. box-shadow:none;
  7039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7040. font-weight:400;
  7041. font-style:normal;
  7042. font-size:14px;
  7043. }
  7044. #u27906 {
  7045. border-width:0px;
  7046. position:absolute;
  7047. left:3265px;
  7048. top:316px;
  7049. width:39px;
  7050. height:30px;
  7051. display:flex;
  7052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7053. font-weight:400;
  7054. font-style:normal;
  7055. font-size:14px;
  7056. }
  7057. #u27906 .text {
  7058. position:absolute;
  7059. align-self:center;
  7060. padding:5px 10px 5px 0px;
  7061. box-sizing:border-box;
  7062. width:100%;
  7063. }
  7064. #u27906_text {
  7065. border-width:0px;
  7066. white-space:nowrap;
  7067. text-transform:none;
  7068. }
  7069. #u27907_div {
  7070. border-width:0px;
  7071. position:absolute;
  7072. left:0px;
  7073. top:0px;
  7074. width:95px;
  7075. height:30px;
  7076. background:inherit;
  7077. background-color:rgba(255, 255, 255, 0);
  7078. border:none;
  7079. border-top:0px;
  7080. border-right:0px;
  7081. border-bottom:0px;
  7082. border-radius:0px;
  7083. border-top-left-radius:0px;
  7084. border-bottom-left-radius:0px;
  7085. -moz-box-shadow:none;
  7086. -webkit-box-shadow:none;
  7087. box-shadow:none;
  7088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7089. font-weight:400;
  7090. font-style:normal;
  7091. font-size:14px;
  7092. color:#7F7F7F;
  7093. }
  7094. #u27907 {
  7095. border-width:0px;
  7096. position:absolute;
  7097. left:3484px;
  7098. top:316px;
  7099. width:95px;
  7100. height:30px;
  7101. display:flex;
  7102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7103. font-weight:400;
  7104. font-style:normal;
  7105. font-size:14px;
  7106. color:#7F7F7F;
  7107. }
  7108. #u27907 .text {
  7109. position:absolute;
  7110. align-self:center;
  7111. padding:5px 10px 5px 0px;
  7112. box-sizing:border-box;
  7113. width:100%;
  7114. }
  7115. #u27907_text {
  7116. border-width:0px;
  7117. white-space:nowrap;
  7118. text-transform:none;
  7119. }
  7120. #u27908_div {
  7121. border-width:0px;
  7122. position:absolute;
  7123. left:0px;
  7124. top:0px;
  7125. width:101px;
  7126. height:30px;
  7127. background:inherit;
  7128. background-color:rgba(255, 255, 255, 0);
  7129. border:none;
  7130. border-top:0px;
  7131. border-right:0px;
  7132. border-bottom:0px;
  7133. border-radius:0px;
  7134. border-top-left-radius:0px;
  7135. border-bottom-left-radius:0px;
  7136. -moz-box-shadow:none;
  7137. -webkit-box-shadow:none;
  7138. box-shadow:none;
  7139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7140. font-weight:400;
  7141. font-style:normal;
  7142. font-size:14px;
  7143. }
  7144. #u27908 {
  7145. border-width:0px;
  7146. position:absolute;
  7147. left:3565px;
  7148. top:316px;
  7149. width:101px;
  7150. height:30px;
  7151. display:flex;
  7152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7153. font-weight:400;
  7154. font-style:normal;
  7155. font-size:14px;
  7156. }
  7157. #u27908 .text {
  7158. position:absolute;
  7159. align-self:center;
  7160. padding:5px 10px 5px 0px;
  7161. box-sizing:border-box;
  7162. width:100%;
  7163. }
  7164. #u27908_text {
  7165. border-width:0px;
  7166. white-space:nowrap;
  7167. text-transform:none;
  7168. }
  7169. #u27909_div {
  7170. border-width:0px;
  7171. position:absolute;
  7172. left:0px;
  7173. top:0px;
  7174. width:81px;
  7175. height:30px;
  7176. background:inherit;
  7177. background-color:rgba(255, 255, 255, 0);
  7178. border:none;
  7179. border-top:0px;
  7180. border-right:0px;
  7181. border-bottom:0px;
  7182. border-radius:0px;
  7183. border-top-left-radius:0px;
  7184. border-bottom-left-radius:0px;
  7185. -moz-box-shadow:none;
  7186. -webkit-box-shadow:none;
  7187. box-shadow:none;
  7188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7189. font-weight:400;
  7190. font-style:normal;
  7191. font-size:14px;
  7192. color:#7F7F7F;
  7193. }
  7194. #u27909 {
  7195. border-width:0px;
  7196. position:absolute;
  7197. left:3184px;
  7198. top:356px;
  7199. width:81px;
  7200. height:30px;
  7201. display:flex;
  7202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7203. font-weight:400;
  7204. font-style:normal;
  7205. font-size:14px;
  7206. color:#7F7F7F;
  7207. }
  7208. #u27909 .text {
  7209. position:absolute;
  7210. align-self:center;
  7211. padding:5px 10px 5px 0px;
  7212. box-sizing:border-box;
  7213. width:100%;
  7214. }
  7215. #u27909_text {
  7216. border-width:0px;
  7217. white-space:nowrap;
  7218. text-transform:none;
  7219. }
  7220. #u27910_div {
  7221. border-width:0px;
  7222. position:absolute;
  7223. left:0px;
  7224. top:0px;
  7225. width:109px;
  7226. height:30px;
  7227. background:inherit;
  7228. background-color:rgba(255, 255, 255, 0);
  7229. border:none;
  7230. border-top:0px;
  7231. border-right:0px;
  7232. border-bottom:0px;
  7233. border-radius:0px;
  7234. border-top-left-radius:0px;
  7235. border-bottom-left-radius:0px;
  7236. -moz-box-shadow:none;
  7237. -webkit-box-shadow:none;
  7238. box-shadow:none;
  7239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7240. font-weight:400;
  7241. font-style:normal;
  7242. font-size:14px;
  7243. color:#7F7F7F;
  7244. }
  7245. #u27910 {
  7246. border-width:0px;
  7247. position:absolute;
  7248. left:3801px;
  7249. top:356px;
  7250. width:109px;
  7251. height:30px;
  7252. display:flex;
  7253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7254. font-weight:400;
  7255. font-style:normal;
  7256. font-size:14px;
  7257. color:#7F7F7F;
  7258. }
  7259. #u27910 .text {
  7260. position:absolute;
  7261. align-self:center;
  7262. padding:5px 10px 5px 0px;
  7263. box-sizing:border-box;
  7264. width:100%;
  7265. }
  7266. #u27910_text {
  7267. border-width:0px;
  7268. white-space:nowrap;
  7269. text-transform:none;
  7270. }
  7271. #u27911_div {
  7272. border-width:0px;
  7273. position:absolute;
  7274. left:0px;
  7275. top:0px;
  7276. width:185px;
  7277. height:30px;
  7278. background:inherit;
  7279. background-color:rgba(255, 255, 255, 0);
  7280. border:none;
  7281. border-top:0px;
  7282. border-right:0px;
  7283. border-bottom:0px;
  7284. border-radius:0px;
  7285. border-top-left-radius:0px;
  7286. border-bottom-left-radius:0px;
  7287. -moz-box-shadow:none;
  7288. -webkit-box-shadow:none;
  7289. box-shadow:none;
  7290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7291. font-weight:400;
  7292. font-style:normal;
  7293. font-size:14px;
  7294. }
  7295. #u27911 {
  7296. border-width:0px;
  7297. position:absolute;
  7298. left:3910px;
  7299. top:356px;
  7300. width:185px;
  7301. height:30px;
  7302. display:flex;
  7303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7304. font-weight:400;
  7305. font-style:normal;
  7306. font-size:14px;
  7307. }
  7308. #u27911 .text {
  7309. position:absolute;
  7310. align-self:center;
  7311. padding:5px 10px 5px 0px;
  7312. box-sizing:border-box;
  7313. width:100%;
  7314. }
  7315. #u27911_text {
  7316. border-width:0px;
  7317. white-space:nowrap;
  7318. text-transform:none;
  7319. }
  7320. #u27912_div {
  7321. border-width:0px;
  7322. position:absolute;
  7323. left:0px;
  7324. top:0px;
  7325. width:131px;
  7326. height:30px;
  7327. background:inherit;
  7328. background-color:rgba(255, 255, 255, 0);
  7329. border:none;
  7330. border-top:0px;
  7331. border-right:0px;
  7332. border-bottom:0px;
  7333. border-radius:0px;
  7334. border-top-left-radius:0px;
  7335. border-bottom-left-radius:0px;
  7336. -moz-box-shadow:none;
  7337. -webkit-box-shadow:none;
  7338. box-shadow:none;
  7339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7340. font-weight:400;
  7341. font-style:normal;
  7342. font-size:14px;
  7343. }
  7344. #u27912 {
  7345. border-width:0px;
  7346. position:absolute;
  7347. left:3265px;
  7348. top:356px;
  7349. width:131px;
  7350. height:30px;
  7351. display:flex;
  7352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7353. font-weight:400;
  7354. font-style:normal;
  7355. font-size:14px;
  7356. }
  7357. #u27912 .text {
  7358. position:absolute;
  7359. align-self:center;
  7360. padding:5px 10px 5px 0px;
  7361. box-sizing:border-box;
  7362. width:100%;
  7363. }
  7364. #u27912_text {
  7365. border-width:0px;
  7366. white-space:nowrap;
  7367. text-transform:none;
  7368. }
  7369. #u27913_div {
  7370. border-width:0px;
  7371. position:absolute;
  7372. left:0px;
  7373. top:0px;
  7374. width:81px;
  7375. height:30px;
  7376. background:inherit;
  7377. background-color:rgba(255, 255, 255, 0);
  7378. border:none;
  7379. border-top:0px;
  7380. border-right:0px;
  7381. border-bottom:0px;
  7382. border-radius:0px;
  7383. border-top-left-radius:0px;
  7384. border-bottom-left-radius:0px;
  7385. -moz-box-shadow:none;
  7386. -webkit-box-shadow:none;
  7387. box-shadow:none;
  7388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7389. font-weight:400;
  7390. font-style:normal;
  7391. font-size:14px;
  7392. color:#7F7F7F;
  7393. }
  7394. #u27913 {
  7395. border-width:0px;
  7396. position:absolute;
  7397. left:3184px;
  7398. top:436px;
  7399. width:81px;
  7400. height:30px;
  7401. display:flex;
  7402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7403. font-weight:400;
  7404. font-style:normal;
  7405. font-size:14px;
  7406. color:#7F7F7F;
  7407. }
  7408. #u27913 .text {
  7409. position:absolute;
  7410. align-self:center;
  7411. padding:5px 10px 5px 0px;
  7412. box-sizing:border-box;
  7413. width:100%;
  7414. }
  7415. #u27913_text {
  7416. border-width:0px;
  7417. white-space:nowrap;
  7418. text-transform:none;
  7419. }
  7420. #u27914_div {
  7421. border-width:0px;
  7422. position:absolute;
  7423. left:0px;
  7424. top:0px;
  7425. width:263px;
  7426. height:30px;
  7427. background:inherit;
  7428. background-color:rgba(255, 255, 255, 0);
  7429. border:none;
  7430. border-top:0px;
  7431. border-right:0px;
  7432. border-bottom:0px;
  7433. border-radius:0px;
  7434. border-top-left-radius:0px;
  7435. border-bottom-left-radius:0px;
  7436. -moz-box-shadow:none;
  7437. -webkit-box-shadow:none;
  7438. box-shadow:none;
  7439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7440. font-weight:400;
  7441. font-style:normal;
  7442. font-size:14px;
  7443. }
  7444. #u27914 {
  7445. border-width:0px;
  7446. position:absolute;
  7447. left:3265px;
  7448. top:436px;
  7449. width:263px;
  7450. height:30px;
  7451. display:flex;
  7452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7453. font-weight:400;
  7454. font-style:normal;
  7455. font-size:14px;
  7456. }
  7457. #u27914 .text {
  7458. position:absolute;
  7459. align-self:center;
  7460. padding:5px 10px 5px 0px;
  7461. box-sizing:border-box;
  7462. width:100%;
  7463. }
  7464. #u27914_text {
  7465. border-width:0px;
  7466. white-space:nowrap;
  7467. text-transform:none;
  7468. }
  7469. #u27915_div {
  7470. border-width:0px;
  7471. position:absolute;
  7472. left:0px;
  7473. top:0px;
  7474. width:325px;
  7475. height:60px;
  7476. background:inherit;
  7477. background-color:rgba(255, 255, 255, 0);
  7478. border:none;
  7479. border-left:0px;
  7480. border-top:0px;
  7481. border-right:0px;
  7482. border-radius:0px;
  7483. border-bottom-right-radius:0px;
  7484. border-bottom-left-radius:0px;
  7485. -moz-box-shadow:none;
  7486. -webkit-box-shadow:none;
  7487. box-shadow:none;
  7488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7489. font-weight:400;
  7490. font-style:normal;
  7491. font-size:14px;
  7492. line-height:30px;
  7493. }
  7494. #u27915 {
  7495. border-width:0px;
  7496. position:absolute;
  7497. left:3174px;
  7498. top:164px;
  7499. width:325px;
  7500. height:60px;
  7501. display:flex;
  7502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7503. font-weight:400;
  7504. font-style:normal;
  7505. font-size:14px;
  7506. line-height:30px;
  7507. }
  7508. #u27915 .text {
  7509. position:absolute;
  7510. align-self:flex-start;
  7511. padding:0px 0px 0px 0px;
  7512. box-sizing:border-box;
  7513. width:100%;
  7514. }
  7515. #u27915_text {
  7516. border-width:0px;
  7517. word-wrap:break-word;
  7518. text-transform:none;
  7519. }
  7520. #u27916 {
  7521. border-width:0px;
  7522. position:absolute;
  7523. left:0px;
  7524. top:0px;
  7525. width:0px;
  7526. height:0px;
  7527. }
  7528. #u27917_div {
  7529. border-width:0px;
  7530. position:absolute;
  7531. left:0px;
  7532. top:0px;
  7533. width:1000px;
  7534. height:60px;
  7535. background:inherit;
  7536. background-color:rgba(255, 255, 255, 1);
  7537. box-sizing:border-box;
  7538. border-width:1px;
  7539. border-style:solid;
  7540. border-color:rgba(215, 215, 215, 1);
  7541. border-radius:0px;
  7542. -moz-box-shadow:none;
  7543. -webkit-box-shadow:none;
  7544. box-shadow:none;
  7545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7546. font-weight:400;
  7547. font-style:normal;
  7548. font-size:14px;
  7549. color:#AAAAAA;
  7550. text-align:center;
  7551. line-height:30px;
  7552. }
  7553. #u27917 {
  7554. border-width:0px;
  7555. position:absolute;
  7556. left:3144px;
  7557. top:1211px;
  7558. width:1000px;
  7559. height:60px;
  7560. display:flex;
  7561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7562. font-weight:400;
  7563. font-style:normal;
  7564. font-size:14px;
  7565. color:#AAAAAA;
  7566. text-align:center;
  7567. line-height:30px;
  7568. }
  7569. #u27917 .text {
  7570. position:absolute;
  7571. align-self:center;
  7572. padding:5px 10px 5px 10px;
  7573. box-sizing:border-box;
  7574. width:100%;
  7575. }
  7576. #u27917_text {
  7577. border-width:0px;
  7578. word-wrap:break-word;
  7579. text-transform:none;
  7580. visibility:hidden;
  7581. }
  7582. #u27918_div {
  7583. border-width:0px;
  7584. position:absolute;
  7585. left:0px;
  7586. top:0px;
  7587. width:80px;
  7588. height:30px;
  7589. background:inherit;
  7590. background-color:rgba(0, 137, 254, 1);
  7591. border:none;
  7592. border-radius:4px;
  7593. -moz-box-shadow:none;
  7594. -webkit-box-shadow:none;
  7595. box-shadow:none;
  7596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7597. font-weight:400;
  7598. font-style:normal;
  7599. font-size:14px;
  7600. color:#FFFFFF;
  7601. }
  7602. #u27918 {
  7603. border-width:0px;
  7604. position:absolute;
  7605. left:4025px;
  7606. top:1226px;
  7607. width:80px;
  7608. height:30px;
  7609. display:flex;
  7610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7611. font-weight:400;
  7612. font-style:normal;
  7613. font-size:14px;
  7614. color:#FFFFFF;
  7615. }
  7616. #u27918 .text {
  7617. position:absolute;
  7618. align-self:center;
  7619. padding:2px 2px 2px 2px;
  7620. box-sizing:border-box;
  7621. width:100%;
  7622. }
  7623. #u27918_text {
  7624. border-width:0px;
  7625. word-wrap:break-word;
  7626. text-transform:none;
  7627. }
  7628. #u27919_div {
  7629. border-width:0px;
  7630. position:absolute;
  7631. left:0px;
  7632. top:0px;
  7633. width:80px;
  7634. height:30px;
  7635. background:inherit;
  7636. background-color:rgba(255, 255, 255, 1);
  7637. box-sizing:border-box;
  7638. border-width:1px;
  7639. border-style:solid;
  7640. border-color:rgba(170, 170, 170, 1);
  7641. border-radius:4px;
  7642. -moz-box-shadow:none;
  7643. -webkit-box-shadow:none;
  7644. box-shadow:none;
  7645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7646. font-weight:400;
  7647. font-style:normal;
  7648. font-size:14px;
  7649. }
  7650. #u27919 {
  7651. border-width:0px;
  7652. position:absolute;
  7653. left:3935px;
  7654. top:1226px;
  7655. width:80px;
  7656. height:30px;
  7657. display:flex;
  7658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7659. font-weight:400;
  7660. font-style:normal;
  7661. font-size:14px;
  7662. }
  7663. #u27919 .text {
  7664. position:absolute;
  7665. align-self:center;
  7666. padding:2px 2px 2px 2px;
  7667. box-sizing:border-box;
  7668. width:100%;
  7669. }
  7670. #u27919_text {
  7671. border-width:0px;
  7672. word-wrap:break-word;
  7673. text-transform:none;
  7674. }
  7675. #u27920_div {
  7676. border-width:0px;
  7677. position:absolute;
  7678. left:0px;
  7679. top:0px;
  7680. width:57px;
  7681. height:36px;
  7682. background:inherit;
  7683. background-color:rgba(255, 255, 255, 0);
  7684. border:none;
  7685. border-left:0px;
  7686. border-top:0px;
  7687. border-right:0px;
  7688. border-radius:0px;
  7689. border-bottom-right-radius:0px;
  7690. border-bottom-left-radius:0px;
  7691. -moz-box-shadow:none;
  7692. -webkit-box-shadow:none;
  7693. box-shadow:none;
  7694. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7695. font-weight:500;
  7696. font-style:normal;
  7697. font-size:14px;
  7698. line-height:40px;
  7699. }
  7700. #u27920 {
  7701. border-width:0px;
  7702. position:absolute;
  7703. left:3184px;
  7704. top:476px;
  7705. width:57px;
  7706. height:36px;
  7707. display:flex;
  7708. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7709. font-weight:500;
  7710. font-style:normal;
  7711. font-size:14px;
  7712. line-height:40px;
  7713. }
  7714. #u27920 .text {
  7715. position:absolute;
  7716. align-self:flex-start;
  7717. padding:0px 0px 0px 0px;
  7718. box-sizing:border-box;
  7719. width:100%;
  7720. }
  7721. #u27920_text {
  7722. border-width:0px;
  7723. white-space:nowrap;
  7724. text-transform:none;
  7725. }
  7726. #u27921_img {
  7727. border-width:0px;
  7728. position:absolute;
  7729. left:0px;
  7730. top:0px;
  7731. width:99px;
  7732. height:85px;
  7733. }
  7734. #u27921 {
  7735. border-width:0px;
  7736. position:absolute;
  7737. left:3184px;
  7738. top:556px;
  7739. width:99px;
  7740. height:85px;
  7741. display:flex;
  7742. }
  7743. #u27921 .text {
  7744. position:absolute;
  7745. align-self:center;
  7746. padding:2px 2px 2px 2px;
  7747. box-sizing:border-box;
  7748. width:100%;
  7749. }
  7750. #u27921_text {
  7751. border-width:0px;
  7752. word-wrap:break-word;
  7753. text-transform:none;
  7754. visibility:hidden;
  7755. }
  7756. #u27922_img {
  7757. border-width:0px;
  7758. position:absolute;
  7759. left:0px;
  7760. top:0px;
  7761. width:99px;
  7762. height:85px;
  7763. }
  7764. #u27922 {
  7765. border-width:0px;
  7766. position:absolute;
  7767. left:3293px;
  7768. top:556px;
  7769. width:99px;
  7770. height:85px;
  7771. display:flex;
  7772. }
  7773. #u27922 .text {
  7774. position:absolute;
  7775. align-self:center;
  7776. padding:2px 2px 2px 2px;
  7777. box-sizing:border-box;
  7778. width:100%;
  7779. }
  7780. #u27922_text {
  7781. border-width:0px;
  7782. word-wrap:break-word;
  7783. text-transform:none;
  7784. visibility:hidden;
  7785. }
  7786. #u27923_div {
  7787. border-width:0px;
  7788. position:absolute;
  7789. left:0px;
  7790. top:0px;
  7791. width:1000px;
  7792. height:531px;
  7793. background:inherit;
  7794. background-color:rgba(255, 255, 255, 1);
  7795. box-sizing:border-box;
  7796. border-width:1px;
  7797. border-style:solid;
  7798. border-color:rgba(242, 242, 242, 1);
  7799. border-radius:0px;
  7800. -moz-box-shadow:none;
  7801. -webkit-box-shadow:none;
  7802. box-shadow:none;
  7803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7804. font-weight:400;
  7805. font-style:normal;
  7806. font-size:14px;
  7807. color:#AAAAAA;
  7808. text-align:center;
  7809. line-height:30px;
  7810. }
  7811. #u27923 {
  7812. border-width:0px;
  7813. position:absolute;
  7814. left:3144px;
  7815. top:680px;
  7816. width:1000px;
  7817. height:531px;
  7818. display:flex;
  7819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7820. font-weight:400;
  7821. font-style:normal;
  7822. font-size:14px;
  7823. color:#AAAAAA;
  7824. text-align:center;
  7825. line-height:30px;
  7826. }
  7827. #u27923 .text {
  7828. position:absolute;
  7829. align-self:center;
  7830. padding:5px 10px 5px 10px;
  7831. box-sizing:border-box;
  7832. width:100%;
  7833. }
  7834. #u27923_text {
  7835. border-width:0px;
  7836. word-wrap:break-word;
  7837. text-transform:none;
  7838. visibility:hidden;
  7839. }
  7840. #u27924_div {
  7841. border-width:0px;
  7842. position:absolute;
  7843. left:0px;
  7844. top:0px;
  7845. width:73px;
  7846. height:40px;
  7847. background:inherit;
  7848. background-color:rgba(255, 255, 255, 0);
  7849. border:none;
  7850. border-left:0px;
  7851. border-top:0px;
  7852. border-right:0px;
  7853. border-radius:0px;
  7854. border-bottom-right-radius:0px;
  7855. border-bottom-left-radius:0px;
  7856. -moz-box-shadow:none;
  7857. -webkit-box-shadow:none;
  7858. box-shadow:none;
  7859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7860. font-weight:400;
  7861. font-style:normal;
  7862. font-size:18px;
  7863. }
  7864. #u27924 {
  7865. border-width:0px;
  7866. position:absolute;
  7867. left:3184px;
  7868. top:696px;
  7869. width:73px;
  7870. height:40px;
  7871. display:flex;
  7872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7873. font-weight:400;
  7874. font-style:normal;
  7875. font-size:18px;
  7876. }
  7877. #u27924 .text {
  7878. position:absolute;
  7879. align-self:center;
  7880. padding:0px 0px 0px 0px;
  7881. box-sizing:border-box;
  7882. width:100%;
  7883. }
  7884. #u27924_text {
  7885. border-width:0px;
  7886. white-space:nowrap;
  7887. text-transform:none;
  7888. }
  7889. #u27925_div {
  7890. border-width:0px;
  7891. position:absolute;
  7892. left:0px;
  7893. top:0px;
  7894. width:95px;
  7895. height:30px;
  7896. background:inherit;
  7897. background-color:rgba(255, 255, 255, 0);
  7898. border:none;
  7899. border-top:0px;
  7900. border-right:0px;
  7901. border-bottom:0px;
  7902. border-radius:0px;
  7903. border-top-left-radius:0px;
  7904. border-bottom-left-radius:0px;
  7905. -moz-box-shadow:none;
  7906. -webkit-box-shadow:none;
  7907. box-shadow:none;
  7908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7909. font-weight:400;
  7910. font-style:normal;
  7911. font-size:14px;
  7912. color:#7F7F7F;
  7913. }
  7914. #u27925 {
  7915. border-width:0px;
  7916. position:absolute;
  7917. left:3801px;
  7918. top:316px;
  7919. width:95px;
  7920. height:30px;
  7921. display:flex;
  7922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7923. font-weight:400;
  7924. font-style:normal;
  7925. font-size:14px;
  7926. color:#7F7F7F;
  7927. }
  7928. #u27925 .text {
  7929. position:absolute;
  7930. align-self:center;
  7931. padding:5px 10px 5px 0px;
  7932. box-sizing:border-box;
  7933. width:100%;
  7934. }
  7935. #u27925_text {
  7936. border-width:0px;
  7937. white-space:nowrap;
  7938. text-transform:none;
  7939. }
  7940. #u27926_div {
  7941. border-width:0px;
  7942. position:absolute;
  7943. left:0px;
  7944. top:0px;
  7945. width:101px;
  7946. height:30px;
  7947. background:inherit;
  7948. background-color:rgba(255, 255, 255, 0);
  7949. border:none;
  7950. border-top:0px;
  7951. border-right:0px;
  7952. border-bottom:0px;
  7953. border-radius:0px;
  7954. border-top-left-radius:0px;
  7955. border-bottom-left-radius:0px;
  7956. -moz-box-shadow:none;
  7957. -webkit-box-shadow:none;
  7958. box-shadow:none;
  7959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7960. font-weight:400;
  7961. font-style:normal;
  7962. font-size:14px;
  7963. }
  7964. #u27926 {
  7965. border-width:0px;
  7966. position:absolute;
  7967. left:3882px;
  7968. top:316px;
  7969. width:101px;
  7970. height:30px;
  7971. display:flex;
  7972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7973. font-weight:400;
  7974. font-style:normal;
  7975. font-size:14px;
  7976. }
  7977. #u27926 .text {
  7978. position:absolute;
  7979. align-self:center;
  7980. padding:5px 10px 5px 0px;
  7981. box-sizing:border-box;
  7982. width:100%;
  7983. }
  7984. #u27926_text {
  7985. border-width:0px;
  7986. white-space:nowrap;
  7987. text-transform:none;
  7988. }
  7989. #u27927_div {
  7990. border-width:0px;
  7991. position:absolute;
  7992. left:0px;
  7993. top:0px;
  7994. width:81px;
  7995. height:30px;
  7996. background:inherit;
  7997. background-color:rgba(255, 255, 255, 0);
  7998. border:none;
  7999. border-top:0px;
  8000. border-right:0px;
  8001. border-bottom:0px;
  8002. border-radius:0px;
  8003. border-top-left-radius:0px;
  8004. border-bottom-left-radius:0px;
  8005. -moz-box-shadow:none;
  8006. -webkit-box-shadow:none;
  8007. box-shadow:none;
  8008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8009. font-weight:400;
  8010. font-style:normal;
  8011. font-size:14px;
  8012. color:#7F7F7F;
  8013. }
  8014. #u27927 {
  8015. border-width:0px;
  8016. position:absolute;
  8017. left:3484px;
  8018. top:356px;
  8019. width:81px;
  8020. height:30px;
  8021. display:flex;
  8022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8023. font-weight:400;
  8024. font-style:normal;
  8025. font-size:14px;
  8026. color:#7F7F7F;
  8027. }
  8028. #u27927 .text {
  8029. position:absolute;
  8030. align-self:center;
  8031. padding:5px 10px 5px 0px;
  8032. box-sizing:border-box;
  8033. width:100%;
  8034. }
  8035. #u27927_text {
  8036. border-width:0px;
  8037. white-space:nowrap;
  8038. text-transform:none;
  8039. }
  8040. #u27928_div {
  8041. border-width:0px;
  8042. position:absolute;
  8043. left:0px;
  8044. top:0px;
  8045. width:134px;
  8046. height:30px;
  8047. background:inherit;
  8048. background-color:rgba(255, 255, 255, 0);
  8049. border:none;
  8050. border-top:0px;
  8051. border-right:0px;
  8052. border-bottom:0px;
  8053. border-radius:0px;
  8054. border-top-left-radius:0px;
  8055. border-bottom-left-radius:0px;
  8056. -moz-box-shadow:none;
  8057. -webkit-box-shadow:none;
  8058. box-shadow:none;
  8059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8060. font-weight:400;
  8061. font-style:normal;
  8062. font-size:14px;
  8063. }
  8064. #u27928 {
  8065. border-width:0px;
  8066. position:absolute;
  8067. left:3565px;
  8068. top:356px;
  8069. width:134px;
  8070. height:30px;
  8071. display:flex;
  8072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8073. font-weight:400;
  8074. font-style:normal;
  8075. font-size:14px;
  8076. }
  8077. #u27928 .text {
  8078. position:absolute;
  8079. align-self:center;
  8080. padding:5px 10px 5px 0px;
  8081. box-sizing:border-box;
  8082. width:100%;
  8083. }
  8084. #u27928_text {
  8085. border-width:0px;
  8086. white-space:nowrap;
  8087. text-transform:none;
  8088. }
  8089. #u27929_div {
  8090. border-width:0px;
  8091. position:absolute;
  8092. left:0px;
  8093. top:0px;
  8094. width:81px;
  8095. height:30px;
  8096. background:inherit;
  8097. background-color:rgba(255, 255, 255, 0);
  8098. border:none;
  8099. border-top:0px;
  8100. border-right:0px;
  8101. border-bottom:0px;
  8102. border-radius:0px;
  8103. border-top-left-radius:0px;
  8104. border-bottom-left-radius:0px;
  8105. -moz-box-shadow:none;
  8106. -webkit-box-shadow:none;
  8107. box-shadow:none;
  8108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8109. font-weight:400;
  8110. font-style:normal;
  8111. font-size:14px;
  8112. color:#7F7F7F;
  8113. }
  8114. #u27929 {
  8115. border-width:0px;
  8116. position:absolute;
  8117. left:3484px;
  8118. top:396px;
  8119. width:81px;
  8120. height:30px;
  8121. display:flex;
  8122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8123. font-weight:400;
  8124. font-style:normal;
  8125. font-size:14px;
  8126. color:#7F7F7F;
  8127. }
  8128. #u27929 .text {
  8129. position:absolute;
  8130. align-self:center;
  8131. padding:5px 10px 5px 0px;
  8132. box-sizing:border-box;
  8133. width:100%;
  8134. }
  8135. #u27929_text {
  8136. border-width:0px;
  8137. white-space:nowrap;
  8138. text-transform:none;
  8139. }
  8140. #u27930_div {
  8141. border-width:0px;
  8142. position:absolute;
  8143. left:0px;
  8144. top:0px;
  8145. width:39px;
  8146. height:30px;
  8147. background:inherit;
  8148. background-color:rgba(255, 255, 255, 0);
  8149. border:none;
  8150. border-top:0px;
  8151. border-right:0px;
  8152. border-bottom:0px;
  8153. border-radius:0px;
  8154. border-top-left-radius:0px;
  8155. border-bottom-left-radius:0px;
  8156. -moz-box-shadow:none;
  8157. -webkit-box-shadow:none;
  8158. box-shadow:none;
  8159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8160. font-weight:400;
  8161. font-style:normal;
  8162. font-size:14px;
  8163. }
  8164. #u27930 {
  8165. border-width:0px;
  8166. position:absolute;
  8167. left:3565px;
  8168. top:396px;
  8169. width:39px;
  8170. height:30px;
  8171. display:flex;
  8172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8173. font-weight:400;
  8174. font-style:normal;
  8175. font-size:14px;
  8176. }
  8177. #u27930 .text {
  8178. position:absolute;
  8179. align-self:center;
  8180. padding:5px 10px 5px 0px;
  8181. box-sizing:border-box;
  8182. width:100%;
  8183. }
  8184. #u27930_text {
  8185. border-width:0px;
  8186. white-space:nowrap;
  8187. text-transform:none;
  8188. }
  8189. #u27931_div {
  8190. border-width:0px;
  8191. position:absolute;
  8192. left:0px;
  8193. top:0px;
  8194. width:81px;
  8195. height:30px;
  8196. background:inherit;
  8197. background-color:rgba(255, 255, 255, 0);
  8198. border:none;
  8199. border-top:0px;
  8200. border-right:0px;
  8201. border-bottom:0px;
  8202. border-radius:0px;
  8203. border-top-left-radius:0px;
  8204. border-bottom-left-radius:0px;
  8205. -moz-box-shadow:none;
  8206. -webkit-box-shadow:none;
  8207. box-shadow:none;
  8208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8209. font-weight:400;
  8210. font-style:normal;
  8211. font-size:14px;
  8212. color:#7F7F7F;
  8213. }
  8214. #u27931 {
  8215. border-width:0px;
  8216. position:absolute;
  8217. left:3801px;
  8218. top:396px;
  8219. width:81px;
  8220. height:30px;
  8221. display:flex;
  8222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8223. font-weight:400;
  8224. font-style:normal;
  8225. font-size:14px;
  8226. color:#7F7F7F;
  8227. }
  8228. #u27931 .text {
  8229. position:absolute;
  8230. align-self:center;
  8231. padding:5px 10px 5px 0px;
  8232. box-sizing:border-box;
  8233. width:100%;
  8234. }
  8235. #u27931_text {
  8236. border-width:0px;
  8237. white-space:nowrap;
  8238. text-transform:none;
  8239. }
  8240. #u27932_div {
  8241. border-width:0px;
  8242. position:absolute;
  8243. left:0px;
  8244. top:0px;
  8245. width:126px;
  8246. height:30px;
  8247. background:inherit;
  8248. background-color:rgba(255, 255, 255, 0);
  8249. border:none;
  8250. border-top:0px;
  8251. border-right:0px;
  8252. border-bottom:0px;
  8253. border-radius:0px;
  8254. border-top-left-radius:0px;
  8255. border-bottom-left-radius:0px;
  8256. -moz-box-shadow:none;
  8257. -webkit-box-shadow:none;
  8258. box-shadow:none;
  8259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8260. font-weight:400;
  8261. font-style:normal;
  8262. font-size:14px;
  8263. }
  8264. #u27932 {
  8265. border-width:0px;
  8266. position:absolute;
  8267. left:3882px;
  8268. top:396px;
  8269. width:126px;
  8270. height:30px;
  8271. display:flex;
  8272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8273. font-weight:400;
  8274. font-style:normal;
  8275. font-size:14px;
  8276. }
  8277. #u27932 .text {
  8278. position:absolute;
  8279. align-self:center;
  8280. padding:5px 10px 5px 0px;
  8281. box-sizing:border-box;
  8282. width:100%;
  8283. }
  8284. #u27932_text {
  8285. border-width:0px;
  8286. white-space:nowrap;
  8287. text-transform:none;
  8288. }
  8289. #u27933_div {
  8290. border-width:0px;
  8291. position:absolute;
  8292. left:0px;
  8293. top:0px;
  8294. width:123px;
  8295. height:30px;
  8296. background:inherit;
  8297. background-color:rgba(255, 255, 255, 0);
  8298. border:none;
  8299. border-top:0px;
  8300. border-right:0px;
  8301. border-bottom:0px;
  8302. border-radius:0px;
  8303. border-top-left-radius:0px;
  8304. border-bottom-left-radius:0px;
  8305. -moz-box-shadow:none;
  8306. -webkit-box-shadow:none;
  8307. box-shadow:none;
  8308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8309. font-weight:400;
  8310. font-style:normal;
  8311. font-size:14px;
  8312. }
  8313. #u27933 {
  8314. border-width:0px;
  8315. position:absolute;
  8316. left:3184px;
  8317. top:516px;
  8318. width:123px;
  8319. height:30px;
  8320. display:flex;
  8321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8322. font-weight:400;
  8323. font-style:normal;
  8324. font-size:14px;
  8325. }
  8326. #u27933 .text {
  8327. position:absolute;
  8328. align-self:center;
  8329. padding:5px 10px 5px 0px;
  8330. box-sizing:border-box;
  8331. width:100%;
  8332. }
  8333. #u27933_text {
  8334. border-width:0px;
  8335. white-space:nowrap;
  8336. text-transform:none;
  8337. }
  8338. #u27934_div {
  8339. border-width:0px;
  8340. position:absolute;
  8341. left:0px;
  8342. top:0px;
  8343. width:95px;
  8344. height:30px;
  8345. background:inherit;
  8346. background-color:rgba(255, 255, 255, 0);
  8347. border:none;
  8348. border-top:0px;
  8349. border-right:0px;
  8350. border-bottom:0px;
  8351. border-radius:0px;
  8352. border-top-left-radius:0px;
  8353. border-bottom-left-radius:0px;
  8354. -moz-box-shadow:none;
  8355. -webkit-box-shadow:none;
  8356. box-shadow:none;
  8357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8358. font-weight:400;
  8359. font-style:normal;
  8360. font-size:14px;
  8361. color:#7F7F7F;
  8362. }
  8363. #u27934 {
  8364. border-width:0px;
  8365. position:absolute;
  8366. left:3184px;
  8367. top:756px;
  8368. width:95px;
  8369. height:30px;
  8370. display:flex;
  8371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8372. font-weight:400;
  8373. font-style:normal;
  8374. font-size:14px;
  8375. color:#7F7F7F;
  8376. }
  8377. #u27934 .text {
  8378. position:absolute;
  8379. align-self:center;
  8380. padding:5px 10px 5px 0px;
  8381. box-sizing:border-box;
  8382. width:100%;
  8383. }
  8384. #u27934_text {
  8385. border-width:0px;
  8386. white-space:nowrap;
  8387. text-transform:none;
  8388. }
  8389. #u27935_div {
  8390. border-width:0px;
  8391. position:absolute;
  8392. left:0px;
  8393. top:0px;
  8394. width:137px;
  8395. height:30px;
  8396. background:inherit;
  8397. background-color:rgba(255, 255, 255, 0);
  8398. border:none;
  8399. border-top:0px;
  8400. border-right:0px;
  8401. border-bottom:0px;
  8402. border-radius:0px;
  8403. border-top-left-radius:0px;
  8404. border-bottom-left-radius:0px;
  8405. -moz-box-shadow:none;
  8406. -webkit-box-shadow:none;
  8407. box-shadow:none;
  8408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8409. font-weight:400;
  8410. font-style:normal;
  8411. font-size:14px;
  8412. color:#1890FF;
  8413. }
  8414. #u27935 {
  8415. border-width:0px;
  8416. position:absolute;
  8417. left:3285px;
  8418. top:756px;
  8419. width:137px;
  8420. height:30px;
  8421. display:flex;
  8422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8423. font-weight:400;
  8424. font-style:normal;
  8425. font-size:14px;
  8426. color:#1890FF;
  8427. }
  8428. #u27935 .text {
  8429. position:absolute;
  8430. align-self:center;
  8431. padding:5px 10px 5px 0px;
  8432. box-sizing:border-box;
  8433. width:100%;
  8434. }
  8435. #u27935_text {
  8436. border-width:0px;
  8437. white-space:nowrap;
  8438. text-transform:none;
  8439. }
  8440. #u27936_div {
  8441. border-width:0px;
  8442. position:absolute;
  8443. left:0px;
  8444. top:0px;
  8445. width:81px;
  8446. height:30px;
  8447. background:inherit;
  8448. background-color:rgba(255, 255, 255, 0);
  8449. border:none;
  8450. border-top:0px;
  8451. border-right:0px;
  8452. border-bottom:0px;
  8453. border-radius:0px;
  8454. border-top-left-radius:0px;
  8455. border-bottom-left-radius:0px;
  8456. -moz-box-shadow:none;
  8457. -webkit-box-shadow:none;
  8458. box-shadow:none;
  8459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8460. font-weight:400;
  8461. font-style:normal;
  8462. font-size:14px;
  8463. color:#7F7F7F;
  8464. }
  8465. #u27936 {
  8466. border-width:0px;
  8467. position:absolute;
  8468. left:3184px;
  8469. top:796px;
  8470. width:81px;
  8471. height:30px;
  8472. display:flex;
  8473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8474. font-weight:400;
  8475. font-style:normal;
  8476. font-size:14px;
  8477. color:#7F7F7F;
  8478. }
  8479. #u27936 .text {
  8480. position:absolute;
  8481. align-self:center;
  8482. padding:5px 10px 5px 0px;
  8483. box-sizing:border-box;
  8484. width:100%;
  8485. }
  8486. #u27936_text {
  8487. border-width:0px;
  8488. white-space:nowrap;
  8489. text-transform:none;
  8490. }
  8491. #u27937_div {
  8492. border-width:0px;
  8493. position:absolute;
  8494. left:0px;
  8495. top:0px;
  8496. width:134px;
  8497. height:30px;
  8498. background:inherit;
  8499. background-color:rgba(255, 255, 255, 0);
  8500. border:none;
  8501. border-top:0px;
  8502. border-right:0px;
  8503. border-bottom:0px;
  8504. border-radius:0px;
  8505. border-top-left-radius:0px;
  8506. border-bottom-left-radius:0px;
  8507. -moz-box-shadow:none;
  8508. -webkit-box-shadow:none;
  8509. box-shadow:none;
  8510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8511. font-weight:400;
  8512. font-style:normal;
  8513. font-size:14px;
  8514. }
  8515. #u27937 {
  8516. border-width:0px;
  8517. position:absolute;
  8518. left:3285px;
  8519. top:796px;
  8520. width:134px;
  8521. height:30px;
  8522. display:flex;
  8523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8524. font-weight:400;
  8525. font-style:normal;
  8526. font-size:14px;
  8527. }
  8528. #u27937 .text {
  8529. position:absolute;
  8530. align-self:center;
  8531. padding:5px 10px 5px 0px;
  8532. box-sizing:border-box;
  8533. width:100%;
  8534. }
  8535. #u27937_text {
  8536. border-width:0px;
  8537. white-space:nowrap;
  8538. text-transform:none;
  8539. }
  8540. #u27938_div {
  8541. border-width:0px;
  8542. position:absolute;
  8543. left:0px;
  8544. top:0px;
  8545. width:81px;
  8546. height:30px;
  8547. background:inherit;
  8548. background-color:rgba(255, 255, 255, 0);
  8549. border:none;
  8550. border-top:0px;
  8551. border-right:0px;
  8552. border-bottom:0px;
  8553. border-radius:0px;
  8554. border-top-left-radius:0px;
  8555. border-bottom-left-radius:0px;
  8556. -moz-box-shadow:none;
  8557. -webkit-box-shadow:none;
  8558. box-shadow:none;
  8559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8560. font-weight:400;
  8561. font-style:normal;
  8562. font-size:14px;
  8563. color:#7F7F7F;
  8564. }
  8565. #u27938 {
  8566. border-width:0px;
  8567. position:absolute;
  8568. left:3184px;
  8569. top:836px;
  8570. width:81px;
  8571. height:30px;
  8572. display:flex;
  8573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8574. font-weight:400;
  8575. font-style:normal;
  8576. font-size:14px;
  8577. color:#7F7F7F;
  8578. }
  8579. #u27938 .text {
  8580. position:absolute;
  8581. align-self:center;
  8582. padding:5px 10px 5px 0px;
  8583. box-sizing:border-box;
  8584. width:100%;
  8585. }
  8586. #u27938_text {
  8587. border-width:0px;
  8588. white-space:nowrap;
  8589. text-transform:none;
  8590. }
  8591. #u27939_div {
  8592. border-width:0px;
  8593. position:absolute;
  8594. left:0px;
  8595. top:0px;
  8596. width:134px;
  8597. height:30px;
  8598. background:inherit;
  8599. background-color:rgba(255, 255, 255, 0);
  8600. border:none;
  8601. border-top:0px;
  8602. border-right:0px;
  8603. border-bottom:0px;
  8604. border-radius:0px;
  8605. border-top-left-radius:0px;
  8606. border-bottom-left-radius:0px;
  8607. -moz-box-shadow:none;
  8608. -webkit-box-shadow:none;
  8609. box-shadow:none;
  8610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8611. font-weight:400;
  8612. font-style:normal;
  8613. font-size:14px;
  8614. }
  8615. #u27939 {
  8616. border-width:0px;
  8617. position:absolute;
  8618. left:3285px;
  8619. top:836px;
  8620. width:134px;
  8621. height:30px;
  8622. display:flex;
  8623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8624. font-weight:400;
  8625. font-style:normal;
  8626. font-size:14px;
  8627. }
  8628. #u27939 .text {
  8629. position:absolute;
  8630. align-self:center;
  8631. padding:5px 10px 5px 0px;
  8632. box-sizing:border-box;
  8633. width:100%;
  8634. }
  8635. #u27939_text {
  8636. border-width:0px;
  8637. white-space:nowrap;
  8638. text-transform:none;
  8639. }
  8640. #u27940_div {
  8641. border-width:0px;
  8642. position:absolute;
  8643. left:0px;
  8644. top:0px;
  8645. width:81px;
  8646. height:30px;
  8647. background:inherit;
  8648. background-color:rgba(255, 255, 255, 0);
  8649. border:none;
  8650. border-top:0px;
  8651. border-right:0px;
  8652. border-bottom:0px;
  8653. border-radius:0px;
  8654. border-top-left-radius:0px;
  8655. border-bottom-left-radius:0px;
  8656. -moz-box-shadow:none;
  8657. -webkit-box-shadow:none;
  8658. box-shadow:none;
  8659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8660. font-weight:400;
  8661. font-style:normal;
  8662. font-size:14px;
  8663. color:#7F7F7F;
  8664. }
  8665. #u27940 {
  8666. border-width:0px;
  8667. position:absolute;
  8668. left:3184px;
  8669. top:876px;
  8670. width:81px;
  8671. height:30px;
  8672. display:flex;
  8673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8674. font-weight:400;
  8675. font-style:normal;
  8676. font-size:14px;
  8677. color:#7F7F7F;
  8678. }
  8679. #u27940 .text {
  8680. position:absolute;
  8681. align-self:center;
  8682. padding:5px 10px 5px 0px;
  8683. box-sizing:border-box;
  8684. width:100%;
  8685. }
  8686. #u27940_text {
  8687. border-width:0px;
  8688. white-space:nowrap;
  8689. text-transform:none;
  8690. }
  8691. #u27941_div {
  8692. border-width:0px;
  8693. position:absolute;
  8694. left:0px;
  8695. top:0px;
  8696. width:134px;
  8697. height:30px;
  8698. background:inherit;
  8699. background-color:rgba(255, 255, 255, 0);
  8700. border:none;
  8701. border-top:0px;
  8702. border-right:0px;
  8703. border-bottom:0px;
  8704. border-radius:0px;
  8705. border-top-left-radius:0px;
  8706. border-bottom-left-radius:0px;
  8707. -moz-box-shadow:none;
  8708. -webkit-box-shadow:none;
  8709. box-shadow:none;
  8710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8711. font-weight:400;
  8712. font-style:normal;
  8713. font-size:14px;
  8714. }
  8715. #u27941 {
  8716. border-width:0px;
  8717. position:absolute;
  8718. left:3285px;
  8719. top:876px;
  8720. width:134px;
  8721. height:30px;
  8722. display:flex;
  8723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8724. font-weight:400;
  8725. font-style:normal;
  8726. font-size:14px;
  8727. }
  8728. #u27941 .text {
  8729. position:absolute;
  8730. align-self:center;
  8731. padding:5px 10px 5px 0px;
  8732. box-sizing:border-box;
  8733. width:100%;
  8734. }
  8735. #u27941_text {
  8736. border-width:0px;
  8737. white-space:nowrap;
  8738. text-transform:none;
  8739. }
  8740. #u27942_div {
  8741. border-width:0px;
  8742. position:absolute;
  8743. left:0px;
  8744. top:0px;
  8745. width:81px;
  8746. height:30px;
  8747. background:inherit;
  8748. background-color:rgba(255, 255, 255, 0);
  8749. border:none;
  8750. border-top:0px;
  8751. border-right:0px;
  8752. border-bottom:0px;
  8753. border-radius:0px;
  8754. border-top-left-radius:0px;
  8755. border-bottom-left-radius:0px;
  8756. -moz-box-shadow:none;
  8757. -webkit-box-shadow:none;
  8758. box-shadow:none;
  8759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8760. font-weight:400;
  8761. font-style:normal;
  8762. font-size:14px;
  8763. color:#7F7F7F;
  8764. }
  8765. #u27942 {
  8766. border-width:0px;
  8767. position:absolute;
  8768. left:3184px;
  8769. top:396px;
  8770. width:81px;
  8771. height:30px;
  8772. display:flex;
  8773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8774. font-weight:400;
  8775. font-style:normal;
  8776. font-size:14px;
  8777. color:#7F7F7F;
  8778. }
  8779. #u27942 .text {
  8780. position:absolute;
  8781. align-self:center;
  8782. padding:5px 10px 5px 0px;
  8783. box-sizing:border-box;
  8784. width:100%;
  8785. }
  8786. #u27942_text {
  8787. border-width:0px;
  8788. white-space:nowrap;
  8789. text-transform:none;
  8790. }
  8791. #u27943_div {
  8792. border-width:0px;
  8793. position:absolute;
  8794. left:0px;
  8795. top:0px;
  8796. width:151px;
  8797. height:30px;
  8798. background:inherit;
  8799. background-color:rgba(255, 255, 255, 0);
  8800. border:none;
  8801. border-top:0px;
  8802. border-right:0px;
  8803. border-bottom:0px;
  8804. border-radius:0px;
  8805. border-top-left-radius:0px;
  8806. border-bottom-left-radius:0px;
  8807. -moz-box-shadow:none;
  8808. -webkit-box-shadow:none;
  8809. box-shadow:none;
  8810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8811. font-weight:400;
  8812. font-style:normal;
  8813. font-size:14px;
  8814. color:#0089FE;
  8815. }
  8816. #u27943 {
  8817. border-width:0px;
  8818. position:absolute;
  8819. left:3265px;
  8820. top:396px;
  8821. width:151px;
  8822. height:30px;
  8823. display:flex;
  8824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8825. font-weight:400;
  8826. font-style:normal;
  8827. font-size:14px;
  8828. color:#0089FE;
  8829. }
  8830. #u27943 .text {
  8831. position:absolute;
  8832. align-self:center;
  8833. padding:5px 10px 5px 0px;
  8834. box-sizing:border-box;
  8835. width:100%;
  8836. }
  8837. #u27943_text {
  8838. border-width:0px;
  8839. white-space:nowrap;
  8840. text-transform:none;
  8841. }
  8842. #u27944 {
  8843. border-width:0px;
  8844. position:absolute;
  8845. left:0px;
  8846. top:0px;
  8847. width:0px;
  8848. height:0px;
  8849. }
  8850. #u27945_div {
  8851. border-width:0px;
  8852. position:absolute;
  8853. left:0px;
  8854. top:0px;
  8855. width:1000px;
  8856. height:1231px;
  8857. background:inherit;
  8858. background-color:rgba(242, 242, 242, 1);
  8859. box-sizing:border-box;
  8860. border-width:1px;
  8861. border-style:solid;
  8862. border-color:rgba(215, 215, 215, 1);
  8863. border-radius:0px;
  8864. -moz-box-shadow:none;
  8865. -webkit-box-shadow:none;
  8866. box-shadow:none;
  8867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8868. font-weight:400;
  8869. font-style:normal;
  8870. font-size:14px;
  8871. color:#AAAAAA;
  8872. text-align:center;
  8873. line-height:30px;
  8874. }
  8875. #u27945 {
  8876. border-width:0px;
  8877. position:absolute;
  8878. left:4210px;
  8879. top:40px;
  8880. width:1000px;
  8881. height:1231px;
  8882. display:flex;
  8883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8884. font-weight:400;
  8885. font-style:normal;
  8886. font-size:14px;
  8887. color:#AAAAAA;
  8888. text-align:center;
  8889. line-height:30px;
  8890. }
  8891. #u27945 .text {
  8892. position:absolute;
  8893. align-self:center;
  8894. padding:5px 10px 5px 10px;
  8895. box-sizing:border-box;
  8896. width:100%;
  8897. }
  8898. #u27945_text {
  8899. border-width:0px;
  8900. word-wrap:break-word;
  8901. text-transform:none;
  8902. visibility:hidden;
  8903. }
  8904. #u27946_div {
  8905. border-width:0px;
  8906. position:absolute;
  8907. left:0px;
  8908. top:0px;
  8909. width:1000px;
  8910. height:200px;
  8911. background:inherit;
  8912. background-color:rgba(255, 255, 255, 1);
  8913. box-sizing:border-box;
  8914. border-width:1px;
  8915. border-style:solid;
  8916. border-color:rgba(215, 215, 215, 1);
  8917. border-radius:0px;
  8918. -moz-box-shadow:none;
  8919. -webkit-box-shadow:none;
  8920. box-shadow:none;
  8921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8922. font-weight:400;
  8923. font-style:normal;
  8924. font-size:14px;
  8925. color:#AAAAAA;
  8926. text-align:center;
  8927. line-height:30px;
  8928. }
  8929. #u27946 {
  8930. border-width:0px;
  8931. position:absolute;
  8932. left:4210px;
  8933. top:40px;
  8934. width:1000px;
  8935. height:200px;
  8936. display:flex;
  8937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8938. font-weight:400;
  8939. font-style:normal;
  8940. font-size:14px;
  8941. color:#AAAAAA;
  8942. text-align:center;
  8943. line-height:30px;
  8944. }
  8945. #u27946 .text {
  8946. position:absolute;
  8947. align-self:center;
  8948. padding:5px 10px 5px 10px;
  8949. box-sizing:border-box;
  8950. width:100%;
  8951. }
  8952. #u27946_text {
  8953. border-width:0px;
  8954. word-wrap:break-word;
  8955. text-transform:none;
  8956. visibility:hidden;
  8957. }
  8958. #u27947_div {
  8959. border-width:0px;
  8960. position:absolute;
  8961. left:0px;
  8962. top:0px;
  8963. width:83px;
  8964. height:35px;
  8965. background:inherit;
  8966. background-color:rgba(255, 255, 255, 0);
  8967. border:none;
  8968. border-top:0px;
  8969. border-right:0px;
  8970. border-bottom:0px;
  8971. border-radius:0px;
  8972. border-top-left-radius:0px;
  8973. border-bottom-left-radius:0px;
  8974. -moz-box-shadow:none;
  8975. -webkit-box-shadow:none;
  8976. box-shadow:none;
  8977. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8978. font-weight:500;
  8979. font-style:normal;
  8980. font-size:18px;
  8981. }
  8982. #u27947 {
  8983. border-width:0px;
  8984. position:absolute;
  8985. left:4230px;
  8986. top:58px;
  8987. width:83px;
  8988. height:35px;
  8989. display:flex;
  8990. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8991. font-weight:500;
  8992. font-style:normal;
  8993. font-size:18px;
  8994. }
  8995. #u27947 .text {
  8996. position:absolute;
  8997. align-self:center;
  8998. padding:5px 10px 5px 0px;
  8999. box-sizing:border-box;
  9000. width:100%;
  9001. }
  9002. #u27947_text {
  9003. border-width:0px;
  9004. white-space:nowrap;
  9005. text-transform:none;
  9006. }
  9007. #u27948 {
  9008. border-width:0px;
  9009. position:absolute;
  9010. left:0px;
  9011. top:0px;
  9012. width:0px;
  9013. height:0px;
  9014. }
  9015. #u27949_div {
  9016. border-width:0px;
  9017. position:absolute;
  9018. left:0px;
  9019. top:0px;
  9020. width:40px;
  9021. height:40px;
  9022. background:inherit;
  9023. background-color:rgba(255, 255, 255, 0);
  9024. border:none;
  9025. border-top:0px;
  9026. border-right:0px;
  9027. border-bottom:0px;
  9028. border-radius:0px;
  9029. border-top-left-radius:0px;
  9030. border-bottom-left-radius:0px;
  9031. -moz-box-shadow:none;
  9032. -webkit-box-shadow:none;
  9033. box-shadow:none;
  9034. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9035. font-weight:500;
  9036. font-style:normal;
  9037. font-size:14px;
  9038. text-align:center;
  9039. }
  9040. #u27949 {
  9041. border-width:0px;
  9042. position:absolute;
  9043. left:5170px;
  9044. top:40px;
  9045. width:40px;
  9046. height:40px;
  9047. display:flex;
  9048. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9049. font-weight:500;
  9050. font-style:normal;
  9051. font-size:14px;
  9052. text-align:center;
  9053. }
  9054. #u27949 .text {
  9055. position:absolute;
  9056. align-self:center;
  9057. padding:5px 10px 5px 0px;
  9058. box-sizing:border-box;
  9059. width:100%;
  9060. }
  9061. #u27949_text {
  9062. border-width:0px;
  9063. word-wrap:break-word;
  9064. text-transform:none;
  9065. }
  9066. #u27950_img {
  9067. border-width:0px;
  9068. position:absolute;
  9069. left:0px;
  9070. top:0px;
  9071. width:13px;
  9072. height:13px;
  9073. }
  9074. #u27950 {
  9075. border-width:0px;
  9076. position:absolute;
  9077. left:5158px;
  9078. top:56px;
  9079. width:13px;
  9080. height:13px;
  9081. display:flex;
  9082. font-size:14px;
  9083. }
  9084. #u27950 .text {
  9085. position:absolute;
  9086. align-self:center;
  9087. padding:2px 2px 2px 2px;
  9088. box-sizing:border-box;
  9089. width:100%;
  9090. }
  9091. #u27950_text {
  9092. border-width:0px;
  9093. word-wrap:break-word;
  9094. text-transform:none;
  9095. visibility:hidden;
  9096. }
  9097. #u27951_div {
  9098. border-width:0px;
  9099. position:absolute;
  9100. left:0px;
  9101. top:0px;
  9102. width:338px;
  9103. height:43px;
  9104. background:inherit;
  9105. background-color:rgba(255, 255, 255, 0);
  9106. border:none;
  9107. border-top:0px;
  9108. border-right:0px;
  9109. border-bottom:0px;
  9110. border-radius:0px;
  9111. border-top-left-radius:0px;
  9112. border-bottom-left-radius:0px;
  9113. -moz-box-shadow:none;
  9114. -webkit-box-shadow:none;
  9115. box-shadow:none;
  9116. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9117. font-weight:500;
  9118. font-style:normal;
  9119. font-size:24px;
  9120. }
  9121. #u27951 {
  9122. border-width:0px;
  9123. position:absolute;
  9124. left:4240px;
  9125. top:109px;
  9126. width:338px;
  9127. height:43px;
  9128. display:flex;
  9129. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9130. font-weight:500;
  9131. font-style:normal;
  9132. font-size:24px;
  9133. }
  9134. #u27951 .text {
  9135. position:absolute;
  9136. align-self:center;
  9137. padding:5px 10px 5px 0px;
  9138. box-sizing:border-box;
  9139. width:100%;
  9140. }
  9141. #u27951_text {
  9142. border-width:0px;
  9143. white-space:nowrap;
  9144. text-transform:none;
  9145. }
  9146. #u27952_img {
  9147. border-width:0px;
  9148. position:absolute;
  9149. left:0px;
  9150. top:0px;
  9151. width:108px;
  9152. height:108px;
  9153. }
  9154. #u27952 {
  9155. border-width:0px;
  9156. position:absolute;
  9157. left:5060px;
  9158. top:110px;
  9159. width:108px;
  9160. height:108px;
  9161. display:flex;
  9162. -webkit-transform:rotate(315deg);
  9163. -moz-transform:rotate(315deg);
  9164. -ms-transform:rotate(315deg);
  9165. transform:rotate(315deg);
  9166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9167. font-weight:400;
  9168. font-style:normal;
  9169. font-size:28px;
  9170. color:#F59A23;
  9171. }
  9172. #u27952 .text {
  9173. position:absolute;
  9174. align-self:center;
  9175. padding:2px 2px 2px 2px;
  9176. box-sizing:border-box;
  9177. width:100%;
  9178. }
  9179. #u27952_text {
  9180. border-width:0px;
  9181. word-wrap:break-word;
  9182. text-transform:none;
  9183. }
  9184. #u27953_div {
  9185. border-width:0px;
  9186. position:absolute;
  9187. left:0px;
  9188. top:0px;
  9189. width:1000px;
  9190. height:420px;
  9191. background:inherit;
  9192. background-color:rgba(255, 255, 255, 1);
  9193. box-sizing:border-box;
  9194. border-width:1px;
  9195. border-style:solid;
  9196. border-color:rgba(242, 242, 242, 1);
  9197. border-radius:0px;
  9198. -moz-box-shadow:none;
  9199. -webkit-box-shadow:none;
  9200. box-shadow:none;
  9201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9202. font-weight:400;
  9203. font-style:normal;
  9204. font-size:14px;
  9205. color:#AAAAAA;
  9206. text-align:center;
  9207. line-height:30px;
  9208. }
  9209. #u27953 {
  9210. border-width:0px;
  9211. position:absolute;
  9212. left:4210px;
  9213. top:250px;
  9214. width:1000px;
  9215. height:420px;
  9216. display:flex;
  9217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9218. font-weight:400;
  9219. font-style:normal;
  9220. font-size:14px;
  9221. color:#AAAAAA;
  9222. text-align:center;
  9223. line-height:30px;
  9224. }
  9225. #u27953 .text {
  9226. position:absolute;
  9227. align-self:center;
  9228. padding:5px 10px 5px 10px;
  9229. box-sizing:border-box;
  9230. width:100%;
  9231. }
  9232. #u27953_text {
  9233. border-width:0px;
  9234. word-wrap:break-word;
  9235. text-transform:none;
  9236. visibility:hidden;
  9237. }
  9238. #u27954_div {
  9239. border-width:0px;
  9240. position:absolute;
  9241. left:0px;
  9242. top:0px;
  9243. width:73px;
  9244. height:40px;
  9245. background:inherit;
  9246. background-color:rgba(255, 255, 255, 0);
  9247. border:none;
  9248. border-left:0px;
  9249. border-top:0px;
  9250. border-right:0px;
  9251. border-radius:0px;
  9252. border-bottom-right-radius:0px;
  9253. border-bottom-left-radius:0px;
  9254. -moz-box-shadow:none;
  9255. -webkit-box-shadow:none;
  9256. box-shadow:none;
  9257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9258. font-weight:400;
  9259. font-style:normal;
  9260. font-size:18px;
  9261. }
  9262. #u27954 {
  9263. border-width:0px;
  9264. position:absolute;
  9265. left:4250px;
  9266. top:266px;
  9267. width:73px;
  9268. height:40px;
  9269. display:flex;
  9270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9271. font-weight:400;
  9272. font-style:normal;
  9273. font-size:18px;
  9274. }
  9275. #u27954 .text {
  9276. position:absolute;
  9277. align-self:center;
  9278. padding:0px 0px 0px 0px;
  9279. box-sizing:border-box;
  9280. width:100%;
  9281. }
  9282. #u27954_text {
  9283. border-width:0px;
  9284. white-space:nowrap;
  9285. text-transform:none;
  9286. }
  9287. #u27955_div {
  9288. border-width:0px;
  9289. position:absolute;
  9290. left:0px;
  9291. top:0px;
  9292. width:67px;
  9293. height:30px;
  9294. background:inherit;
  9295. background-color:rgba(255, 255, 255, 0);
  9296. border:none;
  9297. border-top:0px;
  9298. border-right:0px;
  9299. border-bottom:0px;
  9300. border-radius:0px;
  9301. border-top-left-radius:0px;
  9302. border-bottom-left-radius:0px;
  9303. -moz-box-shadow:none;
  9304. -webkit-box-shadow:none;
  9305. box-shadow:none;
  9306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9307. font-weight:400;
  9308. font-style:normal;
  9309. font-size:14px;
  9310. color:#7F7F7F;
  9311. }
  9312. #u27955 {
  9313. border-width:0px;
  9314. position:absolute;
  9315. left:4250px;
  9316. top:316px;
  9317. width:67px;
  9318. height:30px;
  9319. display:flex;
  9320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9321. font-weight:400;
  9322. font-style:normal;
  9323. font-size:14px;
  9324. color:#7F7F7F;
  9325. }
  9326. #u27955 .text {
  9327. position:absolute;
  9328. align-self:center;
  9329. padding:5px 10px 5px 0px;
  9330. box-sizing:border-box;
  9331. width:100%;
  9332. }
  9333. #u27955_text {
  9334. border-width:0px;
  9335. white-space:nowrap;
  9336. text-transform:none;
  9337. }
  9338. #u27956_div {
  9339. border-width:0px;
  9340. position:absolute;
  9341. left:0px;
  9342. top:0px;
  9343. width:39px;
  9344. height:30px;
  9345. background:inherit;
  9346. background-color:rgba(255, 255, 255, 0);
  9347. border:none;
  9348. border-top:0px;
  9349. border-right:0px;
  9350. border-bottom:0px;
  9351. border-radius:0px;
  9352. border-top-left-radius:0px;
  9353. border-bottom-left-radius:0px;
  9354. -moz-box-shadow:none;
  9355. -webkit-box-shadow:none;
  9356. box-shadow:none;
  9357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9358. font-weight:400;
  9359. font-style:normal;
  9360. font-size:14px;
  9361. }
  9362. #u27956 {
  9363. border-width:0px;
  9364. position:absolute;
  9365. left:4331px;
  9366. top:316px;
  9367. width:39px;
  9368. height:30px;
  9369. display:flex;
  9370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9371. font-weight:400;
  9372. font-style:normal;
  9373. font-size:14px;
  9374. }
  9375. #u27956 .text {
  9376. position:absolute;
  9377. align-self:center;
  9378. padding:5px 10px 5px 0px;
  9379. box-sizing:border-box;
  9380. width:100%;
  9381. }
  9382. #u27956_text {
  9383. border-width:0px;
  9384. white-space:nowrap;
  9385. text-transform:none;
  9386. }
  9387. #u27957_div {
  9388. border-width:0px;
  9389. position:absolute;
  9390. left:0px;
  9391. top:0px;
  9392. width:95px;
  9393. height:30px;
  9394. background:inherit;
  9395. background-color:rgba(255, 255, 255, 0);
  9396. border:none;
  9397. border-top:0px;
  9398. border-right:0px;
  9399. border-bottom:0px;
  9400. border-radius:0px;
  9401. border-top-left-radius:0px;
  9402. border-bottom-left-radius:0px;
  9403. -moz-box-shadow:none;
  9404. -webkit-box-shadow:none;
  9405. box-shadow:none;
  9406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9407. font-weight:400;
  9408. font-style:normal;
  9409. font-size:14px;
  9410. color:#7F7F7F;
  9411. }
  9412. #u27957 {
  9413. border-width:0px;
  9414. position:absolute;
  9415. left:4550px;
  9416. top:316px;
  9417. width:95px;
  9418. height:30px;
  9419. display:flex;
  9420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9421. font-weight:400;
  9422. font-style:normal;
  9423. font-size:14px;
  9424. color:#7F7F7F;
  9425. }
  9426. #u27957 .text {
  9427. position:absolute;
  9428. align-self:center;
  9429. padding:5px 10px 5px 0px;
  9430. box-sizing:border-box;
  9431. width:100%;
  9432. }
  9433. #u27957_text {
  9434. border-width:0px;
  9435. white-space:nowrap;
  9436. text-transform:none;
  9437. }
  9438. #u27958_div {
  9439. border-width:0px;
  9440. position:absolute;
  9441. left:0px;
  9442. top:0px;
  9443. width:101px;
  9444. height:30px;
  9445. background:inherit;
  9446. background-color:rgba(255, 255, 255, 0);
  9447. border:none;
  9448. border-top:0px;
  9449. border-right:0px;
  9450. border-bottom:0px;
  9451. border-radius:0px;
  9452. border-top-left-radius:0px;
  9453. border-bottom-left-radius:0px;
  9454. -moz-box-shadow:none;
  9455. -webkit-box-shadow:none;
  9456. box-shadow:none;
  9457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9458. font-weight:400;
  9459. font-style:normal;
  9460. font-size:14px;
  9461. }
  9462. #u27958 {
  9463. border-width:0px;
  9464. position:absolute;
  9465. left:4631px;
  9466. top:316px;
  9467. width:101px;
  9468. height:30px;
  9469. display:flex;
  9470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9471. font-weight:400;
  9472. font-style:normal;
  9473. font-size:14px;
  9474. }
  9475. #u27958 .text {
  9476. position:absolute;
  9477. align-self:center;
  9478. padding:5px 10px 5px 0px;
  9479. box-sizing:border-box;
  9480. width:100%;
  9481. }
  9482. #u27958_text {
  9483. border-width:0px;
  9484. white-space:nowrap;
  9485. text-transform:none;
  9486. }
  9487. #u27959_div {
  9488. border-width:0px;
  9489. position:absolute;
  9490. left:0px;
  9491. top:0px;
  9492. width:81px;
  9493. height:30px;
  9494. background:inherit;
  9495. background-color:rgba(255, 255, 255, 0);
  9496. border:none;
  9497. border-top:0px;
  9498. border-right:0px;
  9499. border-bottom:0px;
  9500. border-radius:0px;
  9501. border-top-left-radius:0px;
  9502. border-bottom-left-radius:0px;
  9503. -moz-box-shadow:none;
  9504. -webkit-box-shadow:none;
  9505. box-shadow:none;
  9506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9507. font-weight:400;
  9508. font-style:normal;
  9509. font-size:14px;
  9510. color:#7F7F7F;
  9511. }
  9512. #u27959 {
  9513. border-width:0px;
  9514. position:absolute;
  9515. left:4250px;
  9516. top:356px;
  9517. width:81px;
  9518. height:30px;
  9519. display:flex;
  9520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9521. font-weight:400;
  9522. font-style:normal;
  9523. font-size:14px;
  9524. color:#7F7F7F;
  9525. }
  9526. #u27959 .text {
  9527. position:absolute;
  9528. align-self:center;
  9529. padding:5px 10px 5px 0px;
  9530. box-sizing:border-box;
  9531. width:100%;
  9532. }
  9533. #u27959_text {
  9534. border-width:0px;
  9535. white-space:nowrap;
  9536. text-transform:none;
  9537. }
  9538. #u27960_div {
  9539. border-width:0px;
  9540. position:absolute;
  9541. left:0px;
  9542. top:0px;
  9543. width:109px;
  9544. height:30px;
  9545. background:inherit;
  9546. background-color:rgba(255, 255, 255, 0);
  9547. border:none;
  9548. border-top:0px;
  9549. border-right:0px;
  9550. border-bottom:0px;
  9551. border-radius:0px;
  9552. border-top-left-radius:0px;
  9553. border-bottom-left-radius:0px;
  9554. -moz-box-shadow:none;
  9555. -webkit-box-shadow:none;
  9556. box-shadow:none;
  9557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9558. font-weight:400;
  9559. font-style:normal;
  9560. font-size:14px;
  9561. color:#7F7F7F;
  9562. }
  9563. #u27960 {
  9564. border-width:0px;
  9565. position:absolute;
  9566. left:4867px;
  9567. top:356px;
  9568. width:109px;
  9569. height:30px;
  9570. display:flex;
  9571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9572. font-weight:400;
  9573. font-style:normal;
  9574. font-size:14px;
  9575. color:#7F7F7F;
  9576. }
  9577. #u27960 .text {
  9578. position:absolute;
  9579. align-self:center;
  9580. padding:5px 10px 5px 0px;
  9581. box-sizing:border-box;
  9582. width:100%;
  9583. }
  9584. #u27960_text {
  9585. border-width:0px;
  9586. white-space:nowrap;
  9587. text-transform:none;
  9588. }
  9589. #u27961_div {
  9590. border-width:0px;
  9591. position:absolute;
  9592. left:0px;
  9593. top:0px;
  9594. width:185px;
  9595. height:30px;
  9596. background:inherit;
  9597. background-color:rgba(255, 255, 255, 0);
  9598. border:none;
  9599. border-top:0px;
  9600. border-right:0px;
  9601. border-bottom:0px;
  9602. border-radius:0px;
  9603. border-top-left-radius:0px;
  9604. border-bottom-left-radius:0px;
  9605. -moz-box-shadow:none;
  9606. -webkit-box-shadow:none;
  9607. box-shadow:none;
  9608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9609. font-weight:400;
  9610. font-style:normal;
  9611. font-size:14px;
  9612. }
  9613. #u27961 {
  9614. border-width:0px;
  9615. position:absolute;
  9616. left:4976px;
  9617. top:356px;
  9618. width:185px;
  9619. height:30px;
  9620. display:flex;
  9621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9622. font-weight:400;
  9623. font-style:normal;
  9624. font-size:14px;
  9625. }
  9626. #u27961 .text {
  9627. position:absolute;
  9628. align-self:center;
  9629. padding:5px 10px 5px 0px;
  9630. box-sizing:border-box;
  9631. width:100%;
  9632. }
  9633. #u27961_text {
  9634. border-width:0px;
  9635. white-space:nowrap;
  9636. text-transform:none;
  9637. }
  9638. #u27962_div {
  9639. border-width:0px;
  9640. position:absolute;
  9641. left:0px;
  9642. top:0px;
  9643. width:131px;
  9644. height:30px;
  9645. background:inherit;
  9646. background-color:rgba(255, 255, 255, 0);
  9647. border:none;
  9648. border-top:0px;
  9649. border-right:0px;
  9650. border-bottom:0px;
  9651. border-radius:0px;
  9652. border-top-left-radius:0px;
  9653. border-bottom-left-radius:0px;
  9654. -moz-box-shadow:none;
  9655. -webkit-box-shadow:none;
  9656. box-shadow:none;
  9657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9658. font-weight:400;
  9659. font-style:normal;
  9660. font-size:14px;
  9661. }
  9662. #u27962 {
  9663. border-width:0px;
  9664. position:absolute;
  9665. left:4331px;
  9666. top:356px;
  9667. width:131px;
  9668. height:30px;
  9669. display:flex;
  9670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9671. font-weight:400;
  9672. font-style:normal;
  9673. font-size:14px;
  9674. }
  9675. #u27962 .text {
  9676. position:absolute;
  9677. align-self:center;
  9678. padding:5px 10px 5px 0px;
  9679. box-sizing:border-box;
  9680. width:100%;
  9681. }
  9682. #u27962_text {
  9683. border-width:0px;
  9684. white-space:nowrap;
  9685. text-transform:none;
  9686. }
  9687. #u27963_div {
  9688. border-width:0px;
  9689. position:absolute;
  9690. left:0px;
  9691. top:0px;
  9692. width:81px;
  9693. height:30px;
  9694. background:inherit;
  9695. background-color:rgba(255, 255, 255, 0);
  9696. border:none;
  9697. border-top:0px;
  9698. border-right:0px;
  9699. border-bottom:0px;
  9700. border-radius:0px;
  9701. border-top-left-radius:0px;
  9702. border-bottom-left-radius:0px;
  9703. -moz-box-shadow:none;
  9704. -webkit-box-shadow:none;
  9705. box-shadow:none;
  9706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9707. font-weight:400;
  9708. font-style:normal;
  9709. font-size:14px;
  9710. color:#7F7F7F;
  9711. }
  9712. #u27963 {
  9713. border-width:0px;
  9714. position:absolute;
  9715. left:4250px;
  9716. top:436px;
  9717. width:81px;
  9718. height:30px;
  9719. display:flex;
  9720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9721. font-weight:400;
  9722. font-style:normal;
  9723. font-size:14px;
  9724. color:#7F7F7F;
  9725. }
  9726. #u27963 .text {
  9727. position:absolute;
  9728. align-self:center;
  9729. padding:5px 10px 5px 0px;
  9730. box-sizing:border-box;
  9731. width:100%;
  9732. }
  9733. #u27963_text {
  9734. border-width:0px;
  9735. white-space:nowrap;
  9736. text-transform:none;
  9737. }
  9738. #u27964_div {
  9739. border-width:0px;
  9740. position:absolute;
  9741. left:0px;
  9742. top:0px;
  9743. width:263px;
  9744. height:30px;
  9745. background:inherit;
  9746. background-color:rgba(255, 255, 255, 0);
  9747. border:none;
  9748. border-top:0px;
  9749. border-right:0px;
  9750. border-bottom:0px;
  9751. border-radius:0px;
  9752. border-top-left-radius:0px;
  9753. border-bottom-left-radius:0px;
  9754. -moz-box-shadow:none;
  9755. -webkit-box-shadow:none;
  9756. box-shadow:none;
  9757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9758. font-weight:400;
  9759. font-style:normal;
  9760. font-size:14px;
  9761. }
  9762. #u27964 {
  9763. border-width:0px;
  9764. position:absolute;
  9765. left:4331px;
  9766. top:436px;
  9767. width:263px;
  9768. height:30px;
  9769. display:flex;
  9770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9771. font-weight:400;
  9772. font-style:normal;
  9773. font-size:14px;
  9774. }
  9775. #u27964 .text {
  9776. position:absolute;
  9777. align-self:center;
  9778. padding:5px 10px 5px 0px;
  9779. box-sizing:border-box;
  9780. width:100%;
  9781. }
  9782. #u27964_text {
  9783. border-width:0px;
  9784. white-space:nowrap;
  9785. text-transform:none;
  9786. }
  9787. #u27965_div {
  9788. border-width:0px;
  9789. position:absolute;
  9790. left:0px;
  9791. top:0px;
  9792. width:325px;
  9793. height:60px;
  9794. background:inherit;
  9795. background-color:rgba(255, 255, 255, 0);
  9796. border:none;
  9797. border-left:0px;
  9798. border-top:0px;
  9799. border-right:0px;
  9800. border-radius:0px;
  9801. border-bottom-right-radius:0px;
  9802. border-bottom-left-radius:0px;
  9803. -moz-box-shadow:none;
  9804. -webkit-box-shadow:none;
  9805. box-shadow:none;
  9806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9807. font-weight:400;
  9808. font-style:normal;
  9809. font-size:14px;
  9810. line-height:30px;
  9811. }
  9812. #u27965 {
  9813. border-width:0px;
  9814. position:absolute;
  9815. left:4240px;
  9816. top:164px;
  9817. width:325px;
  9818. height:60px;
  9819. display:flex;
  9820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9821. font-weight:400;
  9822. font-style:normal;
  9823. font-size:14px;
  9824. line-height:30px;
  9825. }
  9826. #u27965 .text {
  9827. position:absolute;
  9828. align-self:flex-start;
  9829. padding:0px 0px 0px 0px;
  9830. box-sizing:border-box;
  9831. width:100%;
  9832. }
  9833. #u27965_text {
  9834. border-width:0px;
  9835. word-wrap:break-word;
  9836. text-transform:none;
  9837. }
  9838. #u27966 {
  9839. border-width:0px;
  9840. position:absolute;
  9841. left:0px;
  9842. top:0px;
  9843. width:0px;
  9844. height:0px;
  9845. }
  9846. #u27967_div {
  9847. border-width:0px;
  9848. position:absolute;
  9849. left:0px;
  9850. top:0px;
  9851. width:1000px;
  9852. height:60px;
  9853. background:inherit;
  9854. background-color:rgba(255, 255, 255, 1);
  9855. box-sizing:border-box;
  9856. border-width:1px;
  9857. border-style:solid;
  9858. border-color:rgba(215, 215, 215, 1);
  9859. border-radius:0px;
  9860. -moz-box-shadow:none;
  9861. -webkit-box-shadow:none;
  9862. box-shadow:none;
  9863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9864. font-weight:400;
  9865. font-style:normal;
  9866. font-size:14px;
  9867. color:#AAAAAA;
  9868. text-align:center;
  9869. line-height:30px;
  9870. }
  9871. #u27967 {
  9872. border-width:0px;
  9873. position:absolute;
  9874. left:4210px;
  9875. top:1211px;
  9876. width:1000px;
  9877. height:60px;
  9878. display:flex;
  9879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9880. font-weight:400;
  9881. font-style:normal;
  9882. font-size:14px;
  9883. color:#AAAAAA;
  9884. text-align:center;
  9885. line-height:30px;
  9886. }
  9887. #u27967 .text {
  9888. position:absolute;
  9889. align-self:center;
  9890. padding:5px 10px 5px 10px;
  9891. box-sizing:border-box;
  9892. width:100%;
  9893. }
  9894. #u27967_text {
  9895. border-width:0px;
  9896. word-wrap:break-word;
  9897. text-transform:none;
  9898. visibility:hidden;
  9899. }
  9900. #u27968_div {
  9901. border-width:0px;
  9902. position:absolute;
  9903. left:0px;
  9904. top:0px;
  9905. width:80px;
  9906. height:30px;
  9907. background:inherit;
  9908. background-color:rgba(0, 137, 254, 1);
  9909. border:none;
  9910. border-radius:4px;
  9911. -moz-box-shadow:none;
  9912. -webkit-box-shadow:none;
  9913. box-shadow:none;
  9914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9915. font-weight:400;
  9916. font-style:normal;
  9917. font-size:14px;
  9918. color:#FFFFFF;
  9919. }
  9920. #u27968 {
  9921. border-width:0px;
  9922. position:absolute;
  9923. left:5091px;
  9924. top:1226px;
  9925. width:80px;
  9926. height:30px;
  9927. display:flex;
  9928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9929. font-weight:400;
  9930. font-style:normal;
  9931. font-size:14px;
  9932. color:#FFFFFF;
  9933. }
  9934. #u27968 .text {
  9935. position:absolute;
  9936. align-self:center;
  9937. padding:2px 2px 2px 2px;
  9938. box-sizing:border-box;
  9939. width:100%;
  9940. }
  9941. #u27968_text {
  9942. border-width:0px;
  9943. word-wrap:break-word;
  9944. text-transform:none;
  9945. }
  9946. #u27969_div {
  9947. border-width:0px;
  9948. position:absolute;
  9949. left:0px;
  9950. top:0px;
  9951. width:80px;
  9952. height:30px;
  9953. background:inherit;
  9954. background-color:rgba(255, 255, 255, 1);
  9955. box-sizing:border-box;
  9956. border-width:1px;
  9957. border-style:solid;
  9958. border-color:rgba(170, 170, 170, 1);
  9959. border-radius:4px;
  9960. -moz-box-shadow:none;
  9961. -webkit-box-shadow:none;
  9962. box-shadow:none;
  9963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9964. font-weight:400;
  9965. font-style:normal;
  9966. font-size:14px;
  9967. }
  9968. #u27969 {
  9969. border-width:0px;
  9970. position:absolute;
  9971. left:5001px;
  9972. top:1226px;
  9973. width:80px;
  9974. height:30px;
  9975. display:flex;
  9976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9977. font-weight:400;
  9978. font-style:normal;
  9979. font-size:14px;
  9980. }
  9981. #u27969 .text {
  9982. position:absolute;
  9983. align-self:center;
  9984. padding:2px 2px 2px 2px;
  9985. box-sizing:border-box;
  9986. width:100%;
  9987. }
  9988. #u27969_text {
  9989. border-width:0px;
  9990. word-wrap:break-word;
  9991. text-transform:none;
  9992. }
  9993. #u27970_div {
  9994. border-width:0px;
  9995. position:absolute;
  9996. left:0px;
  9997. top:0px;
  9998. width:57px;
  9999. height:36px;
  10000. background:inherit;
  10001. background-color:rgba(255, 255, 255, 0);
  10002. border:none;
  10003. border-left:0px;
  10004. border-top:0px;
  10005. border-right:0px;
  10006. border-radius:0px;
  10007. border-bottom-right-radius:0px;
  10008. border-bottom-left-radius:0px;
  10009. -moz-box-shadow:none;
  10010. -webkit-box-shadow:none;
  10011. box-shadow:none;
  10012. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10013. font-weight:500;
  10014. font-style:normal;
  10015. font-size:14px;
  10016. line-height:40px;
  10017. }
  10018. #u27970 {
  10019. border-width:0px;
  10020. position:absolute;
  10021. left:4250px;
  10022. top:476px;
  10023. width:57px;
  10024. height:36px;
  10025. display:flex;
  10026. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10027. font-weight:500;
  10028. font-style:normal;
  10029. font-size:14px;
  10030. line-height:40px;
  10031. }
  10032. #u27970 .text {
  10033. position:absolute;
  10034. align-self:flex-start;
  10035. padding:0px 0px 0px 0px;
  10036. box-sizing:border-box;
  10037. width:100%;
  10038. }
  10039. #u27970_text {
  10040. border-width:0px;
  10041. white-space:nowrap;
  10042. text-transform:none;
  10043. }
  10044. #u27971_img {
  10045. border-width:0px;
  10046. position:absolute;
  10047. left:0px;
  10048. top:0px;
  10049. width:99px;
  10050. height:85px;
  10051. }
  10052. #u27971 {
  10053. border-width:0px;
  10054. position:absolute;
  10055. left:4250px;
  10056. top:556px;
  10057. width:99px;
  10058. height:85px;
  10059. display:flex;
  10060. }
  10061. #u27971 .text {
  10062. position:absolute;
  10063. align-self:center;
  10064. padding:2px 2px 2px 2px;
  10065. box-sizing:border-box;
  10066. width:100%;
  10067. }
  10068. #u27971_text {
  10069. border-width:0px;
  10070. word-wrap:break-word;
  10071. text-transform:none;
  10072. visibility:hidden;
  10073. }
  10074. #u27972_img {
  10075. border-width:0px;
  10076. position:absolute;
  10077. left:0px;
  10078. top:0px;
  10079. width:99px;
  10080. height:85px;
  10081. }
  10082. #u27972 {
  10083. border-width:0px;
  10084. position:absolute;
  10085. left:4359px;
  10086. top:556px;
  10087. width:99px;
  10088. height:85px;
  10089. display:flex;
  10090. }
  10091. #u27972 .text {
  10092. position:absolute;
  10093. align-self:center;
  10094. padding:2px 2px 2px 2px;
  10095. box-sizing:border-box;
  10096. width:100%;
  10097. }
  10098. #u27972_text {
  10099. border-width:0px;
  10100. word-wrap:break-word;
  10101. text-transform:none;
  10102. visibility:hidden;
  10103. }
  10104. #u27973_div {
  10105. border-width:0px;
  10106. position:absolute;
  10107. left:0px;
  10108. top:0px;
  10109. width:95px;
  10110. height:30px;
  10111. background:inherit;
  10112. background-color:rgba(255, 255, 255, 0);
  10113. border:none;
  10114. border-top:0px;
  10115. border-right:0px;
  10116. border-bottom:0px;
  10117. border-radius:0px;
  10118. border-top-left-radius:0px;
  10119. border-bottom-left-radius:0px;
  10120. -moz-box-shadow:none;
  10121. -webkit-box-shadow:none;
  10122. box-shadow:none;
  10123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10124. font-weight:400;
  10125. font-style:normal;
  10126. font-size:14px;
  10127. color:#7F7F7F;
  10128. }
  10129. #u27973 {
  10130. border-width:0px;
  10131. position:absolute;
  10132. left:4867px;
  10133. top:316px;
  10134. width:95px;
  10135. height:30px;
  10136. display:flex;
  10137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10138. font-weight:400;
  10139. font-style:normal;
  10140. font-size:14px;
  10141. color:#7F7F7F;
  10142. }
  10143. #u27973 .text {
  10144. position:absolute;
  10145. align-self:center;
  10146. padding:5px 10px 5px 0px;
  10147. box-sizing:border-box;
  10148. width:100%;
  10149. }
  10150. #u27973_text {
  10151. border-width:0px;
  10152. white-space:nowrap;
  10153. text-transform:none;
  10154. }
  10155. #u27974_div {
  10156. border-width:0px;
  10157. position:absolute;
  10158. left:0px;
  10159. top:0px;
  10160. width:101px;
  10161. height:30px;
  10162. background:inherit;
  10163. background-color:rgba(255, 255, 255, 0);
  10164. border:none;
  10165. border-top:0px;
  10166. border-right:0px;
  10167. border-bottom:0px;
  10168. border-radius:0px;
  10169. border-top-left-radius:0px;
  10170. border-bottom-left-radius:0px;
  10171. -moz-box-shadow:none;
  10172. -webkit-box-shadow:none;
  10173. box-shadow:none;
  10174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10175. font-weight:400;
  10176. font-style:normal;
  10177. font-size:14px;
  10178. }
  10179. #u27974 {
  10180. border-width:0px;
  10181. position:absolute;
  10182. left:4948px;
  10183. top:316px;
  10184. width:101px;
  10185. height:30px;
  10186. display:flex;
  10187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10188. font-weight:400;
  10189. font-style:normal;
  10190. font-size:14px;
  10191. }
  10192. #u27974 .text {
  10193. position:absolute;
  10194. align-self:center;
  10195. padding:5px 10px 5px 0px;
  10196. box-sizing:border-box;
  10197. width:100%;
  10198. }
  10199. #u27974_text {
  10200. border-width:0px;
  10201. white-space:nowrap;
  10202. text-transform:none;
  10203. }
  10204. #u27975_div {
  10205. border-width:0px;
  10206. position:absolute;
  10207. left:0px;
  10208. top:0px;
  10209. width:81px;
  10210. height:30px;
  10211. background:inherit;
  10212. background-color:rgba(255, 255, 255, 0);
  10213. border:none;
  10214. border-top:0px;
  10215. border-right:0px;
  10216. border-bottom:0px;
  10217. border-radius:0px;
  10218. border-top-left-radius:0px;
  10219. border-bottom-left-radius:0px;
  10220. -moz-box-shadow:none;
  10221. -webkit-box-shadow:none;
  10222. box-shadow:none;
  10223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10224. font-weight:400;
  10225. font-style:normal;
  10226. font-size:14px;
  10227. color:#7F7F7F;
  10228. }
  10229. #u27975 {
  10230. border-width:0px;
  10231. position:absolute;
  10232. left:4550px;
  10233. top:356px;
  10234. width:81px;
  10235. height:30px;
  10236. display:flex;
  10237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10238. font-weight:400;
  10239. font-style:normal;
  10240. font-size:14px;
  10241. color:#7F7F7F;
  10242. }
  10243. #u27975 .text {
  10244. position:absolute;
  10245. align-self:center;
  10246. padding:5px 10px 5px 0px;
  10247. box-sizing:border-box;
  10248. width:100%;
  10249. }
  10250. #u27975_text {
  10251. border-width:0px;
  10252. white-space:nowrap;
  10253. text-transform:none;
  10254. }
  10255. #u27976_div {
  10256. border-width:0px;
  10257. position:absolute;
  10258. left:0px;
  10259. top:0px;
  10260. width:134px;
  10261. height:30px;
  10262. background:inherit;
  10263. background-color:rgba(255, 255, 255, 0);
  10264. border:none;
  10265. border-top:0px;
  10266. border-right:0px;
  10267. border-bottom:0px;
  10268. border-radius:0px;
  10269. border-top-left-radius:0px;
  10270. border-bottom-left-radius:0px;
  10271. -moz-box-shadow:none;
  10272. -webkit-box-shadow:none;
  10273. box-shadow:none;
  10274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10275. font-weight:400;
  10276. font-style:normal;
  10277. font-size:14px;
  10278. }
  10279. #u27976 {
  10280. border-width:0px;
  10281. position:absolute;
  10282. left:4631px;
  10283. top:356px;
  10284. width:134px;
  10285. height:30px;
  10286. display:flex;
  10287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10288. font-weight:400;
  10289. font-style:normal;
  10290. font-size:14px;
  10291. }
  10292. #u27976 .text {
  10293. position:absolute;
  10294. align-self:center;
  10295. padding:5px 10px 5px 0px;
  10296. box-sizing:border-box;
  10297. width:100%;
  10298. }
  10299. #u27976_text {
  10300. border-width:0px;
  10301. white-space:nowrap;
  10302. text-transform:none;
  10303. }
  10304. #u27977_div {
  10305. border-width:0px;
  10306. position:absolute;
  10307. left:0px;
  10308. top:0px;
  10309. width:81px;
  10310. height:30px;
  10311. background:inherit;
  10312. background-color:rgba(255, 255, 255, 0);
  10313. border:none;
  10314. border-top:0px;
  10315. border-right:0px;
  10316. border-bottom:0px;
  10317. border-radius:0px;
  10318. border-top-left-radius:0px;
  10319. border-bottom-left-radius:0px;
  10320. -moz-box-shadow:none;
  10321. -webkit-box-shadow:none;
  10322. box-shadow:none;
  10323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10324. font-weight:400;
  10325. font-style:normal;
  10326. font-size:14px;
  10327. color:#7F7F7F;
  10328. }
  10329. #u27977 {
  10330. border-width:0px;
  10331. position:absolute;
  10332. left:4550px;
  10333. top:396px;
  10334. width:81px;
  10335. height:30px;
  10336. display:flex;
  10337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10338. font-weight:400;
  10339. font-style:normal;
  10340. font-size:14px;
  10341. color:#7F7F7F;
  10342. }
  10343. #u27977 .text {
  10344. position:absolute;
  10345. align-self:center;
  10346. padding:5px 10px 5px 0px;
  10347. box-sizing:border-box;
  10348. width:100%;
  10349. }
  10350. #u27977_text {
  10351. border-width:0px;
  10352. white-space:nowrap;
  10353. text-transform:none;
  10354. }
  10355. #u27978_div {
  10356. border-width:0px;
  10357. position:absolute;
  10358. left:0px;
  10359. top:0px;
  10360. width:39px;
  10361. height:30px;
  10362. background:inherit;
  10363. background-color:rgba(255, 255, 255, 0);
  10364. border:none;
  10365. border-top:0px;
  10366. border-right:0px;
  10367. border-bottom:0px;
  10368. border-radius:0px;
  10369. border-top-left-radius:0px;
  10370. border-bottom-left-radius:0px;
  10371. -moz-box-shadow:none;
  10372. -webkit-box-shadow:none;
  10373. box-shadow:none;
  10374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10375. font-weight:400;
  10376. font-style:normal;
  10377. font-size:14px;
  10378. }
  10379. #u27978 {
  10380. border-width:0px;
  10381. position:absolute;
  10382. left:4631px;
  10383. top:396px;
  10384. width:39px;
  10385. height:30px;
  10386. display:flex;
  10387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10388. font-weight:400;
  10389. font-style:normal;
  10390. font-size:14px;
  10391. }
  10392. #u27978 .text {
  10393. position:absolute;
  10394. align-self:center;
  10395. padding:5px 10px 5px 0px;
  10396. box-sizing:border-box;
  10397. width:100%;
  10398. }
  10399. #u27978_text {
  10400. border-width:0px;
  10401. white-space:nowrap;
  10402. text-transform:none;
  10403. }
  10404. #u27979_div {
  10405. border-width:0px;
  10406. position:absolute;
  10407. left:0px;
  10408. top:0px;
  10409. width:81px;
  10410. height:30px;
  10411. background:inherit;
  10412. background-color:rgba(255, 255, 255, 0);
  10413. border:none;
  10414. border-top:0px;
  10415. border-right:0px;
  10416. border-bottom:0px;
  10417. border-radius:0px;
  10418. border-top-left-radius:0px;
  10419. border-bottom-left-radius:0px;
  10420. -moz-box-shadow:none;
  10421. -webkit-box-shadow:none;
  10422. box-shadow:none;
  10423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10424. font-weight:400;
  10425. font-style:normal;
  10426. font-size:14px;
  10427. color:#7F7F7F;
  10428. }
  10429. #u27979 {
  10430. border-width:0px;
  10431. position:absolute;
  10432. left:4867px;
  10433. top:396px;
  10434. width:81px;
  10435. height:30px;
  10436. display:flex;
  10437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10438. font-weight:400;
  10439. font-style:normal;
  10440. font-size:14px;
  10441. color:#7F7F7F;
  10442. }
  10443. #u27979 .text {
  10444. position:absolute;
  10445. align-self:center;
  10446. padding:5px 10px 5px 0px;
  10447. box-sizing:border-box;
  10448. width:100%;
  10449. }
  10450. #u27979_text {
  10451. border-width:0px;
  10452. white-space:nowrap;
  10453. text-transform:none;
  10454. }
  10455. #u27980_div {
  10456. border-width:0px;
  10457. position:absolute;
  10458. left:0px;
  10459. top:0px;
  10460. width:126px;
  10461. height:30px;
  10462. background:inherit;
  10463. background-color:rgba(255, 255, 255, 0);
  10464. border:none;
  10465. border-top:0px;
  10466. border-right:0px;
  10467. border-bottom:0px;
  10468. border-radius:0px;
  10469. border-top-left-radius:0px;
  10470. border-bottom-left-radius:0px;
  10471. -moz-box-shadow:none;
  10472. -webkit-box-shadow:none;
  10473. box-shadow:none;
  10474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10475. font-weight:400;
  10476. font-style:normal;
  10477. font-size:14px;
  10478. }
  10479. #u27980 {
  10480. border-width:0px;
  10481. position:absolute;
  10482. left:4948px;
  10483. top:396px;
  10484. width:126px;
  10485. height:30px;
  10486. display:flex;
  10487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10488. font-weight:400;
  10489. font-style:normal;
  10490. font-size:14px;
  10491. }
  10492. #u27980 .text {
  10493. position:absolute;
  10494. align-self:center;
  10495. padding:5px 10px 5px 0px;
  10496. box-sizing:border-box;
  10497. width:100%;
  10498. }
  10499. #u27980_text {
  10500. border-width:0px;
  10501. white-space:nowrap;
  10502. text-transform:none;
  10503. }
  10504. #u27981_div {
  10505. border-width:0px;
  10506. position:absolute;
  10507. left:0px;
  10508. top:0px;
  10509. width:123px;
  10510. height:30px;
  10511. background:inherit;
  10512. background-color:rgba(255, 255, 255, 0);
  10513. border:none;
  10514. border-top:0px;
  10515. border-right:0px;
  10516. border-bottom:0px;
  10517. border-radius:0px;
  10518. border-top-left-radius:0px;
  10519. border-bottom-left-radius:0px;
  10520. -moz-box-shadow:none;
  10521. -webkit-box-shadow:none;
  10522. box-shadow:none;
  10523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10524. font-weight:400;
  10525. font-style:normal;
  10526. font-size:14px;
  10527. }
  10528. #u27981 {
  10529. border-width:0px;
  10530. position:absolute;
  10531. left:4250px;
  10532. top:516px;
  10533. width:123px;
  10534. height:30px;
  10535. display:flex;
  10536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10537. font-weight:400;
  10538. font-style:normal;
  10539. font-size:14px;
  10540. }
  10541. #u27981 .text {
  10542. position:absolute;
  10543. align-self:center;
  10544. padding:5px 10px 5px 0px;
  10545. box-sizing:border-box;
  10546. width:100%;
  10547. }
  10548. #u27981_text {
  10549. border-width:0px;
  10550. white-space:nowrap;
  10551. text-transform:none;
  10552. }
  10553. #u27982_div {
  10554. border-width:0px;
  10555. position:absolute;
  10556. left:0px;
  10557. top:0px;
  10558. width:1000px;
  10559. height:531px;
  10560. background:inherit;
  10561. background-color:rgba(255, 255, 255, 1);
  10562. box-sizing:border-box;
  10563. border-width:1px;
  10564. border-style:solid;
  10565. border-color:rgba(242, 242, 242, 1);
  10566. border-radius:0px;
  10567. -moz-box-shadow:none;
  10568. -webkit-box-shadow:none;
  10569. box-shadow:none;
  10570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10571. font-weight:400;
  10572. font-style:normal;
  10573. font-size:14px;
  10574. color:#AAAAAA;
  10575. text-align:center;
  10576. line-height:30px;
  10577. }
  10578. #u27982 {
  10579. border-width:0px;
  10580. position:absolute;
  10581. left:4210px;
  10582. top:680px;
  10583. width:1000px;
  10584. height:531px;
  10585. display:flex;
  10586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10587. font-weight:400;
  10588. font-style:normal;
  10589. font-size:14px;
  10590. color:#AAAAAA;
  10591. text-align:center;
  10592. line-height:30px;
  10593. }
  10594. #u27982 .text {
  10595. position:absolute;
  10596. align-self:center;
  10597. padding:5px 10px 5px 10px;
  10598. box-sizing:border-box;
  10599. width:100%;
  10600. }
  10601. #u27982_text {
  10602. border-width:0px;
  10603. word-wrap:break-word;
  10604. text-transform:none;
  10605. visibility:hidden;
  10606. }
  10607. #u27983_div {
  10608. border-width:0px;
  10609. position:absolute;
  10610. left:0px;
  10611. top:0px;
  10612. width:73px;
  10613. height:40px;
  10614. background:inherit;
  10615. background-color:rgba(255, 255, 255, 0);
  10616. border:none;
  10617. border-left:0px;
  10618. border-top:0px;
  10619. border-right:0px;
  10620. border-radius:0px;
  10621. border-bottom-right-radius:0px;
  10622. border-bottom-left-radius:0px;
  10623. -moz-box-shadow:none;
  10624. -webkit-box-shadow:none;
  10625. box-shadow:none;
  10626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10627. font-weight:400;
  10628. font-style:normal;
  10629. font-size:18px;
  10630. }
  10631. #u27983 {
  10632. border-width:0px;
  10633. position:absolute;
  10634. left:4250px;
  10635. top:696px;
  10636. width:73px;
  10637. height:40px;
  10638. display:flex;
  10639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10640. font-weight:400;
  10641. font-style:normal;
  10642. font-size:18px;
  10643. }
  10644. #u27983 .text {
  10645. position:absolute;
  10646. align-self:center;
  10647. padding:0px 0px 0px 0px;
  10648. box-sizing:border-box;
  10649. width:100%;
  10650. }
  10651. #u27983_text {
  10652. border-width:0px;
  10653. white-space:nowrap;
  10654. text-transform:none;
  10655. }
  10656. #u27984_div {
  10657. border-width:0px;
  10658. position:absolute;
  10659. left:0px;
  10660. top:0px;
  10661. width:81px;
  10662. height:30px;
  10663. background:inherit;
  10664. background-color:rgba(255, 255, 255, 0);
  10665. border:none;
  10666. border-top:0px;
  10667. border-right:0px;
  10668. border-bottom:0px;
  10669. border-radius:0px;
  10670. border-top-left-radius:0px;
  10671. border-bottom-left-radius:0px;
  10672. -moz-box-shadow:none;
  10673. -webkit-box-shadow:none;
  10674. box-shadow:none;
  10675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10676. font-weight:400;
  10677. font-style:normal;
  10678. font-size:14px;
  10679. color:#7F7F7F;
  10680. }
  10681. #u27984 {
  10682. border-width:0px;
  10683. position:absolute;
  10684. left:4250px;
  10685. top:746px;
  10686. width:81px;
  10687. height:30px;
  10688. display:flex;
  10689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10690. font-weight:400;
  10691. font-style:normal;
  10692. font-size:14px;
  10693. color:#7F7F7F;
  10694. }
  10695. #u27984 .text {
  10696. position:absolute;
  10697. align-self:center;
  10698. padding:5px 10px 5px 0px;
  10699. box-sizing:border-box;
  10700. width:100%;
  10701. }
  10702. #u27984_text {
  10703. border-width:0px;
  10704. white-space:nowrap;
  10705. text-transform:none;
  10706. }
  10707. #u27985_div {
  10708. border-width:0px;
  10709. position:absolute;
  10710. left:0px;
  10711. top:0px;
  10712. width:67px;
  10713. height:30px;
  10714. background:inherit;
  10715. background-color:rgba(255, 255, 255, 0);
  10716. border:none;
  10717. border-top:0px;
  10718. border-right:0px;
  10719. border-bottom:0px;
  10720. border-radius:0px;
  10721. border-top-left-radius:0px;
  10722. border-bottom-left-radius:0px;
  10723. -moz-box-shadow:none;
  10724. -webkit-box-shadow:none;
  10725. box-shadow:none;
  10726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10727. font-weight:400;
  10728. font-style:normal;
  10729. font-size:14px;
  10730. }
  10731. #u27985 {
  10732. border-width:0px;
  10733. position:absolute;
  10734. left:4351px;
  10735. top:746px;
  10736. width:67px;
  10737. height:30px;
  10738. display:flex;
  10739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10740. font-weight:400;
  10741. font-style:normal;
  10742. font-size:14px;
  10743. }
  10744. #u27985 .text {
  10745. position:absolute;
  10746. align-self:center;
  10747. padding:5px 10px 5px 0px;
  10748. box-sizing:border-box;
  10749. width:100%;
  10750. }
  10751. #u27985_text {
  10752. border-width:0px;
  10753. white-space:nowrap;
  10754. text-transform:none;
  10755. }
  10756. #u27986_div {
  10757. border-width:0px;
  10758. position:absolute;
  10759. left:0px;
  10760. top:0px;
  10761. width:81px;
  10762. height:30px;
  10763. background:inherit;
  10764. background-color:rgba(255, 255, 255, 0);
  10765. border:none;
  10766. border-top:0px;
  10767. border-right:0px;
  10768. border-bottom:0px;
  10769. border-radius:0px;
  10770. border-top-left-radius:0px;
  10771. border-bottom-left-radius:0px;
  10772. -moz-box-shadow:none;
  10773. -webkit-box-shadow:none;
  10774. box-shadow:none;
  10775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10776. font-weight:400;
  10777. font-style:normal;
  10778. font-size:14px;
  10779. color:#7F7F7F;
  10780. }
  10781. #u27986 {
  10782. border-width:0px;
  10783. position:absolute;
  10784. left:4250px;
  10785. top:786px;
  10786. width:81px;
  10787. height:30px;
  10788. display:flex;
  10789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10790. font-weight:400;
  10791. font-style:normal;
  10792. font-size:14px;
  10793. color:#7F7F7F;
  10794. }
  10795. #u27986 .text {
  10796. position:absolute;
  10797. align-self:center;
  10798. padding:5px 10px 5px 0px;
  10799. box-sizing:border-box;
  10800. width:100%;
  10801. }
  10802. #u27986_text {
  10803. border-width:0px;
  10804. white-space:nowrap;
  10805. text-transform:none;
  10806. }
  10807. #u27987_div {
  10808. border-width:0px;
  10809. position:absolute;
  10810. left:0px;
  10811. top:0px;
  10812. width:95px;
  10813. height:30px;
  10814. background:inherit;
  10815. background-color:rgba(255, 255, 255, 0);
  10816. border:none;
  10817. border-top:0px;
  10818. border-right:0px;
  10819. border-bottom:0px;
  10820. border-radius:0px;
  10821. border-top-left-radius:0px;
  10822. border-bottom-left-radius:0px;
  10823. -moz-box-shadow:none;
  10824. -webkit-box-shadow:none;
  10825. box-shadow:none;
  10826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10827. font-weight:400;
  10828. font-style:normal;
  10829. font-size:14px;
  10830. }
  10831. #u27987 {
  10832. border-width:0px;
  10833. position:absolute;
  10834. left:4351px;
  10835. top:786px;
  10836. width:95px;
  10837. height:30px;
  10838. display:flex;
  10839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10840. font-weight:400;
  10841. font-style:normal;
  10842. font-size:14px;
  10843. }
  10844. #u27987 .text {
  10845. position:absolute;
  10846. align-self:center;
  10847. padding:5px 10px 5px 0px;
  10848. box-sizing:border-box;
  10849. width:100%;
  10850. }
  10851. #u27987_text {
  10852. border-width:0px;
  10853. white-space:nowrap;
  10854. text-transform:none;
  10855. }
  10856. #u27988_div {
  10857. border-width:0px;
  10858. position:absolute;
  10859. left:0px;
  10860. top:0px;
  10861. width:81px;
  10862. height:30px;
  10863. background:inherit;
  10864. background-color:rgba(255, 255, 255, 0);
  10865. border:none;
  10866. border-top:0px;
  10867. border-right:0px;
  10868. border-bottom:0px;
  10869. border-radius:0px;
  10870. border-top-left-radius:0px;
  10871. border-bottom-left-radius:0px;
  10872. -moz-box-shadow:none;
  10873. -webkit-box-shadow:none;
  10874. box-shadow:none;
  10875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10876. font-weight:400;
  10877. font-style:normal;
  10878. font-size:14px;
  10879. color:#7F7F7F;
  10880. }
  10881. #u27988 {
  10882. border-width:0px;
  10883. position:absolute;
  10884. left:4250px;
  10885. top:826px;
  10886. width:81px;
  10887. height:30px;
  10888. display:flex;
  10889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10890. font-weight:400;
  10891. font-style:normal;
  10892. font-size:14px;
  10893. color:#7F7F7F;
  10894. }
  10895. #u27988 .text {
  10896. position:absolute;
  10897. align-self:center;
  10898. padding:5px 10px 5px 0px;
  10899. box-sizing:border-box;
  10900. width:100%;
  10901. }
  10902. #u27988_text {
  10903. border-width:0px;
  10904. white-space:nowrap;
  10905. text-transform:none;
  10906. }
  10907. #u27989_div {
  10908. border-width:0px;
  10909. position:absolute;
  10910. left:0px;
  10911. top:0px;
  10912. width:39px;
  10913. height:30px;
  10914. background:inherit;
  10915. background-color:rgba(255, 255, 255, 0);
  10916. border:none;
  10917. border-top:0px;
  10918. border-right:0px;
  10919. border-bottom:0px;
  10920. border-radius:0px;
  10921. border-top-left-radius:0px;
  10922. border-bottom-left-radius:0px;
  10923. -moz-box-shadow:none;
  10924. -webkit-box-shadow:none;
  10925. box-shadow:none;
  10926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10927. font-weight:400;
  10928. font-style:normal;
  10929. font-size:14px;
  10930. }
  10931. #u27989 {
  10932. border-width:0px;
  10933. position:absolute;
  10934. left:4351px;
  10935. top:826px;
  10936. width:39px;
  10937. height:30px;
  10938. display:flex;
  10939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10940. font-weight:400;
  10941. font-style:normal;
  10942. font-size:14px;
  10943. }
  10944. #u27989 .text {
  10945. position:absolute;
  10946. align-self:center;
  10947. padding:5px 10px 5px 0px;
  10948. box-sizing:border-box;
  10949. width:100%;
  10950. }
  10951. #u27989_text {
  10952. border-width:0px;
  10953. white-space:nowrap;
  10954. text-transform:none;
  10955. }
  10956. #u27990_div {
  10957. border-width:0px;
  10958. position:absolute;
  10959. left:0px;
  10960. top:0px;
  10961. width:81px;
  10962. height:30px;
  10963. background:inherit;
  10964. background-color:rgba(255, 255, 255, 0);
  10965. border:none;
  10966. border-top:0px;
  10967. border-right:0px;
  10968. border-bottom:0px;
  10969. border-radius:0px;
  10970. border-top-left-radius:0px;
  10971. border-bottom-left-radius:0px;
  10972. -moz-box-shadow:none;
  10973. -webkit-box-shadow:none;
  10974. box-shadow:none;
  10975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10976. font-weight:400;
  10977. font-style:normal;
  10978. font-size:14px;
  10979. color:#7F7F7F;
  10980. }
  10981. #u27990 {
  10982. border-width:0px;
  10983. position:absolute;
  10984. left:4250px;
  10985. top:866px;
  10986. width:81px;
  10987. height:30px;
  10988. display:flex;
  10989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10990. font-weight:400;
  10991. font-style:normal;
  10992. font-size:14px;
  10993. color:#7F7F7F;
  10994. }
  10995. #u27990 .text {
  10996. position:absolute;
  10997. align-self:center;
  10998. padding:5px 10px 5px 0px;
  10999. box-sizing:border-box;
  11000. width:100%;
  11001. }
  11002. #u27990_text {
  11003. border-width:0px;
  11004. white-space:nowrap;
  11005. text-transform:none;
  11006. }
  11007. #u27991_div {
  11008. border-width:0px;
  11009. position:absolute;
  11010. left:0px;
  11011. top:0px;
  11012. width:134px;
  11013. height:30px;
  11014. background:inherit;
  11015. background-color:rgba(255, 255, 255, 0);
  11016. border:none;
  11017. border-top:0px;
  11018. border-right:0px;
  11019. border-bottom:0px;
  11020. border-radius:0px;
  11021. border-top-left-radius:0px;
  11022. border-bottom-left-radius:0px;
  11023. -moz-box-shadow:none;
  11024. -webkit-box-shadow:none;
  11025. box-shadow:none;
  11026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11027. font-weight:400;
  11028. font-style:normal;
  11029. font-size:14px;
  11030. }
  11031. #u27991 {
  11032. border-width:0px;
  11033. position:absolute;
  11034. left:4351px;
  11035. top:866px;
  11036. width:134px;
  11037. height:30px;
  11038. display:flex;
  11039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11040. font-weight:400;
  11041. font-style:normal;
  11042. font-size:14px;
  11043. }
  11044. #u27991 .text {
  11045. position:absolute;
  11046. align-self:center;
  11047. padding:5px 10px 5px 0px;
  11048. box-sizing:border-box;
  11049. width:100%;
  11050. }
  11051. #u27991_text {
  11052. border-width:0px;
  11053. white-space:nowrap;
  11054. text-transform:none;
  11055. }
  11056. #u27992_div {
  11057. border-width:0px;
  11058. position:absolute;
  11059. left:0px;
  11060. top:0px;
  11061. width:81px;
  11062. height:30px;
  11063. background:inherit;
  11064. background-color:rgba(255, 255, 255, 0);
  11065. border:none;
  11066. border-top:0px;
  11067. border-right:0px;
  11068. border-bottom:0px;
  11069. border-radius:0px;
  11070. border-top-left-radius:0px;
  11071. border-bottom-left-radius:0px;
  11072. -moz-box-shadow:none;
  11073. -webkit-box-shadow:none;
  11074. box-shadow:none;
  11075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11076. font-weight:400;
  11077. font-style:normal;
  11078. font-size:14px;
  11079. color:#7F7F7F;
  11080. }
  11081. #u27992 {
  11082. border-width:0px;
  11083. position:absolute;
  11084. left:4250px;
  11085. top:396px;
  11086. width:81px;
  11087. height:30px;
  11088. display:flex;
  11089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11090. font-weight:400;
  11091. font-style:normal;
  11092. font-size:14px;
  11093. color:#7F7F7F;
  11094. }
  11095. #u27992 .text {
  11096. position:absolute;
  11097. align-self:center;
  11098. padding:5px 10px 5px 0px;
  11099. box-sizing:border-box;
  11100. width:100%;
  11101. }
  11102. #u27992_text {
  11103. border-width:0px;
  11104. white-space:nowrap;
  11105. text-transform:none;
  11106. }
  11107. #u27993_div {
  11108. border-width:0px;
  11109. position:absolute;
  11110. left:0px;
  11111. top:0px;
  11112. width:151px;
  11113. height:30px;
  11114. background:inherit;
  11115. background-color:rgba(255, 255, 255, 0);
  11116. border:none;
  11117. border-top:0px;
  11118. border-right:0px;
  11119. border-bottom:0px;
  11120. border-radius:0px;
  11121. border-top-left-radius:0px;
  11122. border-bottom-left-radius:0px;
  11123. -moz-box-shadow:none;
  11124. -webkit-box-shadow:none;
  11125. box-shadow:none;
  11126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11127. font-weight:400;
  11128. font-style:normal;
  11129. font-size:14px;
  11130. color:#0089FE;
  11131. }
  11132. #u27993 {
  11133. border-width:0px;
  11134. position:absolute;
  11135. left:4331px;
  11136. top:396px;
  11137. width:151px;
  11138. height:30px;
  11139. display:flex;
  11140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11141. font-weight:400;
  11142. font-style:normal;
  11143. font-size:14px;
  11144. color:#0089FE;
  11145. }
  11146. #u27993 .text {
  11147. position:absolute;
  11148. align-self:center;
  11149. padding:5px 10px 5px 0px;
  11150. box-sizing:border-box;
  11151. width:100%;
  11152. }
  11153. #u27993_text {
  11154. border-width:0px;
  11155. white-space:nowrap;
  11156. text-transform:none;
  11157. }
  11158. #u27994 {
  11159. border-width:0px;
  11160. position:absolute;
  11161. left:0px;
  11162. top:0px;
  11163. width:0px;
  11164. height:0px;
  11165. }
  11166. #u27995_div {
  11167. border-width:0px;
  11168. position:absolute;
  11169. left:0px;
  11170. top:0px;
  11171. width:1000px;
  11172. height:1231px;
  11173. background:inherit;
  11174. background-color:rgba(242, 242, 242, 1);
  11175. box-sizing:border-box;
  11176. border-width:1px;
  11177. border-style:solid;
  11178. border-color:rgba(215, 215, 215, 1);
  11179. border-radius:0px;
  11180. -moz-box-shadow:none;
  11181. -webkit-box-shadow:none;
  11182. box-shadow:none;
  11183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11184. font-weight:400;
  11185. font-style:normal;
  11186. font-size:14px;
  11187. color:#AAAAAA;
  11188. text-align:center;
  11189. line-height:30px;
  11190. }
  11191. #u27995 {
  11192. border-width:0px;
  11193. position:absolute;
  11194. left:48px;
  11195. top:1310px;
  11196. width:1000px;
  11197. height:1231px;
  11198. display:flex;
  11199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11200. font-weight:400;
  11201. font-style:normal;
  11202. font-size:14px;
  11203. color:#AAAAAA;
  11204. text-align:center;
  11205. line-height:30px;
  11206. }
  11207. #u27995 .text {
  11208. position:absolute;
  11209. align-self:center;
  11210. padding:5px 10px 5px 10px;
  11211. box-sizing:border-box;
  11212. width:100%;
  11213. }
  11214. #u27995_text {
  11215. border-width:0px;
  11216. word-wrap:break-word;
  11217. text-transform:none;
  11218. visibility:hidden;
  11219. }
  11220. #u27996_div {
  11221. border-width:0px;
  11222. position:absolute;
  11223. left:0px;
  11224. top:0px;
  11225. width:1000px;
  11226. height:200px;
  11227. background:inherit;
  11228. background-color:rgba(255, 255, 255, 1);
  11229. box-sizing:border-box;
  11230. border-width:1px;
  11231. border-style:solid;
  11232. border-color:rgba(215, 215, 215, 1);
  11233. border-radius:0px;
  11234. -moz-box-shadow:none;
  11235. -webkit-box-shadow:none;
  11236. box-shadow:none;
  11237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11238. font-weight:400;
  11239. font-style:normal;
  11240. font-size:14px;
  11241. color:#AAAAAA;
  11242. text-align:center;
  11243. line-height:30px;
  11244. }
  11245. #u27996 {
  11246. border-width:0px;
  11247. position:absolute;
  11248. left:48px;
  11249. top:1310px;
  11250. width:1000px;
  11251. height:200px;
  11252. display:flex;
  11253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11254. font-weight:400;
  11255. font-style:normal;
  11256. font-size:14px;
  11257. color:#AAAAAA;
  11258. text-align:center;
  11259. line-height:30px;
  11260. }
  11261. #u27996 .text {
  11262. position:absolute;
  11263. align-self:center;
  11264. padding:5px 10px 5px 10px;
  11265. box-sizing:border-box;
  11266. width:100%;
  11267. }
  11268. #u27996_text {
  11269. border-width:0px;
  11270. word-wrap:break-word;
  11271. text-transform:none;
  11272. visibility:hidden;
  11273. }
  11274. #u27997_div {
  11275. border-width:0px;
  11276. position:absolute;
  11277. left:0px;
  11278. top:0px;
  11279. width:83px;
  11280. height:35px;
  11281. background:inherit;
  11282. background-color:rgba(255, 255, 255, 0);
  11283. border:none;
  11284. border-top:0px;
  11285. border-right:0px;
  11286. border-bottom:0px;
  11287. border-radius:0px;
  11288. border-top-left-radius:0px;
  11289. border-bottom-left-radius:0px;
  11290. -moz-box-shadow:none;
  11291. -webkit-box-shadow:none;
  11292. box-shadow:none;
  11293. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11294. font-weight:500;
  11295. font-style:normal;
  11296. font-size:18px;
  11297. }
  11298. #u27997 {
  11299. border-width:0px;
  11300. position:absolute;
  11301. left:68px;
  11302. top:1328px;
  11303. width:83px;
  11304. height:35px;
  11305. display:flex;
  11306. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11307. font-weight:500;
  11308. font-style:normal;
  11309. font-size:18px;
  11310. }
  11311. #u27997 .text {
  11312. position:absolute;
  11313. align-self:center;
  11314. padding:5px 10px 5px 0px;
  11315. box-sizing:border-box;
  11316. width:100%;
  11317. }
  11318. #u27997_text {
  11319. border-width:0px;
  11320. white-space:nowrap;
  11321. text-transform:none;
  11322. }
  11323. #u27998 {
  11324. border-width:0px;
  11325. position:absolute;
  11326. left:0px;
  11327. top:0px;
  11328. width:0px;
  11329. height:0px;
  11330. }
  11331. #u27999_div {
  11332. border-width:0px;
  11333. position:absolute;
  11334. left:0px;
  11335. top:0px;
  11336. width:40px;
  11337. height:40px;
  11338. background:inherit;
  11339. background-color:rgba(255, 255, 255, 0);
  11340. border:none;
  11341. border-top:0px;
  11342. border-right:0px;
  11343. border-bottom:0px;
  11344. border-radius:0px;
  11345. border-top-left-radius:0px;
  11346. border-bottom-left-radius:0px;
  11347. -moz-box-shadow:none;
  11348. -webkit-box-shadow:none;
  11349. box-shadow:none;
  11350. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11351. font-weight:500;
  11352. font-style:normal;
  11353. font-size:14px;
  11354. text-align:center;
  11355. }
  11356. #u27999 {
  11357. border-width:0px;
  11358. position:absolute;
  11359. left:1008px;
  11360. top:1310px;
  11361. width:40px;
  11362. height:40px;
  11363. display:flex;
  11364. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11365. font-weight:500;
  11366. font-style:normal;
  11367. font-size:14px;
  11368. text-align:center;
  11369. }
  11370. #u27999 .text {
  11371. position:absolute;
  11372. align-self:center;
  11373. padding:5px 10px 5px 0px;
  11374. box-sizing:border-box;
  11375. width:100%;
  11376. }
  11377. #u27999_text {
  11378. border-width:0px;
  11379. word-wrap:break-word;
  11380. text-transform:none;
  11381. }
  11382. #u28000_img {
  11383. border-width:0px;
  11384. position:absolute;
  11385. left:0px;
  11386. top:0px;
  11387. width:13px;
  11388. height:13px;
  11389. }
  11390. #u28000 {
  11391. border-width:0px;
  11392. position:absolute;
  11393. left:996px;
  11394. top:1326px;
  11395. width:13px;
  11396. height:13px;
  11397. display:flex;
  11398. font-size:14px;
  11399. }
  11400. #u28000 .text {
  11401. position:absolute;
  11402. align-self:center;
  11403. padding:2px 2px 2px 2px;
  11404. box-sizing:border-box;
  11405. width:100%;
  11406. }
  11407. #u28000_text {
  11408. border-width:0px;
  11409. word-wrap:break-word;
  11410. text-transform:none;
  11411. visibility:hidden;
  11412. }
  11413. #u28001_div {
  11414. border-width:0px;
  11415. position:absolute;
  11416. left:0px;
  11417. top:0px;
  11418. width:338px;
  11419. height:43px;
  11420. background:inherit;
  11421. background-color:rgba(255, 255, 255, 0);
  11422. border:none;
  11423. border-top:0px;
  11424. border-right:0px;
  11425. border-bottom:0px;
  11426. border-radius:0px;
  11427. border-top-left-radius:0px;
  11428. border-bottom-left-radius:0px;
  11429. -moz-box-shadow:none;
  11430. -webkit-box-shadow:none;
  11431. box-shadow:none;
  11432. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11433. font-weight:500;
  11434. font-style:normal;
  11435. font-size:24px;
  11436. }
  11437. #u28001 {
  11438. border-width:0px;
  11439. position:absolute;
  11440. left:78px;
  11441. top:1379px;
  11442. width:338px;
  11443. height:43px;
  11444. display:flex;
  11445. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11446. font-weight:500;
  11447. font-style:normal;
  11448. font-size:24px;
  11449. }
  11450. #u28001 .text {
  11451. position:absolute;
  11452. align-self:center;
  11453. padding:5px 10px 5px 0px;
  11454. box-sizing:border-box;
  11455. width:100%;
  11456. }
  11457. #u28001_text {
  11458. border-width:0px;
  11459. white-space:nowrap;
  11460. text-transform:none;
  11461. }
  11462. #u28002_img {
  11463. border-width:0px;
  11464. position:absolute;
  11465. left:0px;
  11466. top:0px;
  11467. width:108px;
  11468. height:108px;
  11469. }
  11470. #u28002 {
  11471. border-width:0px;
  11472. position:absolute;
  11473. left:898px;
  11474. top:1380px;
  11475. width:108px;
  11476. height:108px;
  11477. display:flex;
  11478. -webkit-transform:rotate(315deg);
  11479. -moz-transform:rotate(315deg);
  11480. -ms-transform:rotate(315deg);
  11481. transform:rotate(315deg);
  11482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11483. font-weight:400;
  11484. font-style:normal;
  11485. font-size:20px;
  11486. color:#F59A23;
  11487. }
  11488. #u28002 .text {
  11489. position:absolute;
  11490. align-self:center;
  11491. padding:2px 2px 2px 2px;
  11492. box-sizing:border-box;
  11493. width:100%;
  11494. }
  11495. #u28002_text {
  11496. border-width:0px;
  11497. word-wrap:break-word;
  11498. text-transform:none;
  11499. }
  11500. #u28003_div {
  11501. border-width:0px;
  11502. position:absolute;
  11503. left:0px;
  11504. top:0px;
  11505. width:1000px;
  11506. height:420px;
  11507. background:inherit;
  11508. background-color:rgba(255, 255, 255, 1);
  11509. box-sizing:border-box;
  11510. border-width:1px;
  11511. border-style:solid;
  11512. border-color:rgba(242, 242, 242, 1);
  11513. border-radius:0px;
  11514. -moz-box-shadow:none;
  11515. -webkit-box-shadow:none;
  11516. box-shadow:none;
  11517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11518. font-weight:400;
  11519. font-style:normal;
  11520. font-size:14px;
  11521. color:#AAAAAA;
  11522. text-align:center;
  11523. line-height:30px;
  11524. }
  11525. #u28003 {
  11526. border-width:0px;
  11527. position:absolute;
  11528. left:48px;
  11529. top:1520px;
  11530. width:1000px;
  11531. height:420px;
  11532. display:flex;
  11533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11534. font-weight:400;
  11535. font-style:normal;
  11536. font-size:14px;
  11537. color:#AAAAAA;
  11538. text-align:center;
  11539. line-height:30px;
  11540. }
  11541. #u28003 .text {
  11542. position:absolute;
  11543. align-self:center;
  11544. padding:5px 10px 5px 10px;
  11545. box-sizing:border-box;
  11546. width:100%;
  11547. }
  11548. #u28003_text {
  11549. border-width:0px;
  11550. word-wrap:break-word;
  11551. text-transform:none;
  11552. visibility:hidden;
  11553. }
  11554. #u28004_div {
  11555. border-width:0px;
  11556. position:absolute;
  11557. left:0px;
  11558. top:0px;
  11559. width:73px;
  11560. height:40px;
  11561. background:inherit;
  11562. background-color:rgba(255, 255, 255, 0);
  11563. border:none;
  11564. border-left:0px;
  11565. border-top:0px;
  11566. border-right:0px;
  11567. border-radius:0px;
  11568. border-bottom-right-radius:0px;
  11569. border-bottom-left-radius:0px;
  11570. -moz-box-shadow:none;
  11571. -webkit-box-shadow:none;
  11572. box-shadow:none;
  11573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11574. font-weight:400;
  11575. font-style:normal;
  11576. font-size:18px;
  11577. }
  11578. #u28004 {
  11579. border-width:0px;
  11580. position:absolute;
  11581. left:88px;
  11582. top:1536px;
  11583. width:73px;
  11584. height:40px;
  11585. display:flex;
  11586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11587. font-weight:400;
  11588. font-style:normal;
  11589. font-size:18px;
  11590. }
  11591. #u28004 .text {
  11592. position:absolute;
  11593. align-self:center;
  11594. padding:0px 0px 0px 0px;
  11595. box-sizing:border-box;
  11596. width:100%;
  11597. }
  11598. #u28004_text {
  11599. border-width:0px;
  11600. white-space:nowrap;
  11601. text-transform:none;
  11602. }
  11603. #u28005_div {
  11604. border-width:0px;
  11605. position:absolute;
  11606. left:0px;
  11607. top:0px;
  11608. width:67px;
  11609. height:30px;
  11610. background:inherit;
  11611. background-color:rgba(255, 255, 255, 0);
  11612. border:none;
  11613. border-top:0px;
  11614. border-right:0px;
  11615. border-bottom:0px;
  11616. border-radius:0px;
  11617. border-top-left-radius:0px;
  11618. border-bottom-left-radius:0px;
  11619. -moz-box-shadow:none;
  11620. -webkit-box-shadow:none;
  11621. box-shadow:none;
  11622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11623. font-weight:400;
  11624. font-style:normal;
  11625. font-size:14px;
  11626. color:#7F7F7F;
  11627. }
  11628. #u28005 {
  11629. border-width:0px;
  11630. position:absolute;
  11631. left:88px;
  11632. top:1586px;
  11633. width:67px;
  11634. height:30px;
  11635. display:flex;
  11636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11637. font-weight:400;
  11638. font-style:normal;
  11639. font-size:14px;
  11640. color:#7F7F7F;
  11641. }
  11642. #u28005 .text {
  11643. position:absolute;
  11644. align-self:center;
  11645. padding:5px 10px 5px 0px;
  11646. box-sizing:border-box;
  11647. width:100%;
  11648. }
  11649. #u28005_text {
  11650. border-width:0px;
  11651. white-space:nowrap;
  11652. text-transform:none;
  11653. }
  11654. #u28006_div {
  11655. border-width:0px;
  11656. position:absolute;
  11657. left:0px;
  11658. top:0px;
  11659. width:39px;
  11660. height:30px;
  11661. background:inherit;
  11662. background-color:rgba(255, 255, 255, 0);
  11663. border:none;
  11664. border-top:0px;
  11665. border-right:0px;
  11666. border-bottom:0px;
  11667. border-radius:0px;
  11668. border-top-left-radius:0px;
  11669. border-bottom-left-radius:0px;
  11670. -moz-box-shadow:none;
  11671. -webkit-box-shadow:none;
  11672. box-shadow:none;
  11673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11674. font-weight:400;
  11675. font-style:normal;
  11676. font-size:14px;
  11677. }
  11678. #u28006 {
  11679. border-width:0px;
  11680. position:absolute;
  11681. left:169px;
  11682. top:1586px;
  11683. width:39px;
  11684. height:30px;
  11685. display:flex;
  11686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11687. font-weight:400;
  11688. font-style:normal;
  11689. font-size:14px;
  11690. }
  11691. #u28006 .text {
  11692. position:absolute;
  11693. align-self:center;
  11694. padding:5px 10px 5px 0px;
  11695. box-sizing:border-box;
  11696. width:100%;
  11697. }
  11698. #u28006_text {
  11699. border-width:0px;
  11700. white-space:nowrap;
  11701. text-transform:none;
  11702. }
  11703. #u28007_div {
  11704. border-width:0px;
  11705. position:absolute;
  11706. left:0px;
  11707. top:0px;
  11708. width:95px;
  11709. height:30px;
  11710. background:inherit;
  11711. background-color:rgba(255, 255, 255, 0);
  11712. border:none;
  11713. border-top:0px;
  11714. border-right:0px;
  11715. border-bottom:0px;
  11716. border-radius:0px;
  11717. border-top-left-radius:0px;
  11718. border-bottom-left-radius:0px;
  11719. -moz-box-shadow:none;
  11720. -webkit-box-shadow:none;
  11721. box-shadow:none;
  11722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11723. font-weight:400;
  11724. font-style:normal;
  11725. font-size:14px;
  11726. color:#7F7F7F;
  11727. }
  11728. #u28007 {
  11729. border-width:0px;
  11730. position:absolute;
  11731. left:388px;
  11732. top:1586px;
  11733. width:95px;
  11734. height:30px;
  11735. display:flex;
  11736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11737. font-weight:400;
  11738. font-style:normal;
  11739. font-size:14px;
  11740. color:#7F7F7F;
  11741. }
  11742. #u28007 .text {
  11743. position:absolute;
  11744. align-self:center;
  11745. padding:5px 10px 5px 0px;
  11746. box-sizing:border-box;
  11747. width:100%;
  11748. }
  11749. #u28007_text {
  11750. border-width:0px;
  11751. white-space:nowrap;
  11752. text-transform:none;
  11753. }
  11754. #u28008_div {
  11755. border-width:0px;
  11756. position:absolute;
  11757. left:0px;
  11758. top:0px;
  11759. width:101px;
  11760. height:30px;
  11761. background:inherit;
  11762. background-color:rgba(255, 255, 255, 0);
  11763. border:none;
  11764. border-top:0px;
  11765. border-right:0px;
  11766. border-bottom:0px;
  11767. border-radius:0px;
  11768. border-top-left-radius:0px;
  11769. border-bottom-left-radius:0px;
  11770. -moz-box-shadow:none;
  11771. -webkit-box-shadow:none;
  11772. box-shadow:none;
  11773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11774. font-weight:400;
  11775. font-style:normal;
  11776. font-size:14px;
  11777. }
  11778. #u28008 {
  11779. border-width:0px;
  11780. position:absolute;
  11781. left:469px;
  11782. top:1586px;
  11783. width:101px;
  11784. height:30px;
  11785. display:flex;
  11786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11787. font-weight:400;
  11788. font-style:normal;
  11789. font-size:14px;
  11790. }
  11791. #u28008 .text {
  11792. position:absolute;
  11793. align-self:center;
  11794. padding:5px 10px 5px 0px;
  11795. box-sizing:border-box;
  11796. width:100%;
  11797. }
  11798. #u28008_text {
  11799. border-width:0px;
  11800. white-space:nowrap;
  11801. text-transform:none;
  11802. }
  11803. #u28009_div {
  11804. border-width:0px;
  11805. position:absolute;
  11806. left:0px;
  11807. top:0px;
  11808. width:81px;
  11809. height:30px;
  11810. background:inherit;
  11811. background-color:rgba(255, 255, 255, 0);
  11812. border:none;
  11813. border-top:0px;
  11814. border-right:0px;
  11815. border-bottom:0px;
  11816. border-radius:0px;
  11817. border-top-left-radius:0px;
  11818. border-bottom-left-radius:0px;
  11819. -moz-box-shadow:none;
  11820. -webkit-box-shadow:none;
  11821. box-shadow:none;
  11822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11823. font-weight:400;
  11824. font-style:normal;
  11825. font-size:14px;
  11826. color:#7F7F7F;
  11827. }
  11828. #u28009 {
  11829. border-width:0px;
  11830. position:absolute;
  11831. left:88px;
  11832. top:1626px;
  11833. width:81px;
  11834. height:30px;
  11835. display:flex;
  11836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11837. font-weight:400;
  11838. font-style:normal;
  11839. font-size:14px;
  11840. color:#7F7F7F;
  11841. }
  11842. #u28009 .text {
  11843. position:absolute;
  11844. align-self:center;
  11845. padding:5px 10px 5px 0px;
  11846. box-sizing:border-box;
  11847. width:100%;
  11848. }
  11849. #u28009_text {
  11850. border-width:0px;
  11851. white-space:nowrap;
  11852. text-transform:none;
  11853. }
  11854. #u28010_div {
  11855. border-width:0px;
  11856. position:absolute;
  11857. left:0px;
  11858. top:0px;
  11859. width:109px;
  11860. height:30px;
  11861. background:inherit;
  11862. background-color:rgba(255, 255, 255, 0);
  11863. border:none;
  11864. border-top:0px;
  11865. border-right:0px;
  11866. border-bottom:0px;
  11867. border-radius:0px;
  11868. border-top-left-radius:0px;
  11869. border-bottom-left-radius:0px;
  11870. -moz-box-shadow:none;
  11871. -webkit-box-shadow:none;
  11872. box-shadow:none;
  11873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11874. font-weight:400;
  11875. font-style:normal;
  11876. font-size:14px;
  11877. color:#7F7F7F;
  11878. }
  11879. #u28010 {
  11880. border-width:0px;
  11881. position:absolute;
  11882. left:705px;
  11883. top:1626px;
  11884. width:109px;
  11885. height:30px;
  11886. display:flex;
  11887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11888. font-weight:400;
  11889. font-style:normal;
  11890. font-size:14px;
  11891. color:#7F7F7F;
  11892. }
  11893. #u28010 .text {
  11894. position:absolute;
  11895. align-self:center;
  11896. padding:5px 10px 5px 0px;
  11897. box-sizing:border-box;
  11898. width:100%;
  11899. }
  11900. #u28010_text {
  11901. border-width:0px;
  11902. white-space:nowrap;
  11903. text-transform:none;
  11904. }
  11905. #u28011_div {
  11906. border-width:0px;
  11907. position:absolute;
  11908. left:0px;
  11909. top:0px;
  11910. width:185px;
  11911. height:30px;
  11912. background:inherit;
  11913. background-color:rgba(255, 255, 255, 0);
  11914. border:none;
  11915. border-top:0px;
  11916. border-right:0px;
  11917. border-bottom:0px;
  11918. border-radius:0px;
  11919. border-top-left-radius:0px;
  11920. border-bottom-left-radius:0px;
  11921. -moz-box-shadow:none;
  11922. -webkit-box-shadow:none;
  11923. box-shadow:none;
  11924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11925. font-weight:400;
  11926. font-style:normal;
  11927. font-size:14px;
  11928. }
  11929. #u28011 {
  11930. border-width:0px;
  11931. position:absolute;
  11932. left:814px;
  11933. top:1626px;
  11934. width:185px;
  11935. height:30px;
  11936. display:flex;
  11937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11938. font-weight:400;
  11939. font-style:normal;
  11940. font-size:14px;
  11941. }
  11942. #u28011 .text {
  11943. position:absolute;
  11944. align-self:center;
  11945. padding:5px 10px 5px 0px;
  11946. box-sizing:border-box;
  11947. width:100%;
  11948. }
  11949. #u28011_text {
  11950. border-width:0px;
  11951. white-space:nowrap;
  11952. text-transform:none;
  11953. }
  11954. #u28012_div {
  11955. border-width:0px;
  11956. position:absolute;
  11957. left:0px;
  11958. top:0px;
  11959. width:131px;
  11960. height:30px;
  11961. background:inherit;
  11962. background-color:rgba(255, 255, 255, 0);
  11963. border:none;
  11964. border-top:0px;
  11965. border-right:0px;
  11966. border-bottom:0px;
  11967. border-radius:0px;
  11968. border-top-left-radius:0px;
  11969. border-bottom-left-radius:0px;
  11970. -moz-box-shadow:none;
  11971. -webkit-box-shadow:none;
  11972. box-shadow:none;
  11973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11974. font-weight:400;
  11975. font-style:normal;
  11976. font-size:14px;
  11977. }
  11978. #u28012 {
  11979. border-width:0px;
  11980. position:absolute;
  11981. left:169px;
  11982. top:1626px;
  11983. width:131px;
  11984. height:30px;
  11985. display:flex;
  11986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11987. font-weight:400;
  11988. font-style:normal;
  11989. font-size:14px;
  11990. }
  11991. #u28012 .text {
  11992. position:absolute;
  11993. align-self:center;
  11994. padding:5px 10px 5px 0px;
  11995. box-sizing:border-box;
  11996. width:100%;
  11997. }
  11998. #u28012_text {
  11999. border-width:0px;
  12000. white-space:nowrap;
  12001. text-transform:none;
  12002. }
  12003. #u28013_div {
  12004. border-width:0px;
  12005. position:absolute;
  12006. left:0px;
  12007. top:0px;
  12008. width:81px;
  12009. height:30px;
  12010. background:inherit;
  12011. background-color:rgba(255, 255, 255, 0);
  12012. border:none;
  12013. border-top:0px;
  12014. border-right:0px;
  12015. border-bottom:0px;
  12016. border-radius:0px;
  12017. border-top-left-radius:0px;
  12018. border-bottom-left-radius:0px;
  12019. -moz-box-shadow:none;
  12020. -webkit-box-shadow:none;
  12021. box-shadow:none;
  12022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12023. font-weight:400;
  12024. font-style:normal;
  12025. font-size:14px;
  12026. color:#7F7F7F;
  12027. }
  12028. #u28013 {
  12029. border-width:0px;
  12030. position:absolute;
  12031. left:88px;
  12032. top:1706px;
  12033. width:81px;
  12034. height:30px;
  12035. display:flex;
  12036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12037. font-weight:400;
  12038. font-style:normal;
  12039. font-size:14px;
  12040. color:#7F7F7F;
  12041. }
  12042. #u28013 .text {
  12043. position:absolute;
  12044. align-self:center;
  12045. padding:5px 10px 5px 0px;
  12046. box-sizing:border-box;
  12047. width:100%;
  12048. }
  12049. #u28013_text {
  12050. border-width:0px;
  12051. white-space:nowrap;
  12052. text-transform:none;
  12053. }
  12054. #u28014_div {
  12055. border-width:0px;
  12056. position:absolute;
  12057. left:0px;
  12058. top:0px;
  12059. width:263px;
  12060. height:30px;
  12061. background:inherit;
  12062. background-color:rgba(255, 255, 255, 0);
  12063. border:none;
  12064. border-top:0px;
  12065. border-right:0px;
  12066. border-bottom:0px;
  12067. border-radius:0px;
  12068. border-top-left-radius:0px;
  12069. border-bottom-left-radius:0px;
  12070. -moz-box-shadow:none;
  12071. -webkit-box-shadow:none;
  12072. box-shadow:none;
  12073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12074. font-weight:400;
  12075. font-style:normal;
  12076. font-size:14px;
  12077. }
  12078. #u28014 {
  12079. border-width:0px;
  12080. position:absolute;
  12081. left:169px;
  12082. top:1706px;
  12083. width:263px;
  12084. height:30px;
  12085. display:flex;
  12086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12087. font-weight:400;
  12088. font-style:normal;
  12089. font-size:14px;
  12090. }
  12091. #u28014 .text {
  12092. position:absolute;
  12093. align-self:center;
  12094. padding:5px 10px 5px 0px;
  12095. box-sizing:border-box;
  12096. width:100%;
  12097. }
  12098. #u28014_text {
  12099. border-width:0px;
  12100. white-space:nowrap;
  12101. text-transform:none;
  12102. }
  12103. #u28015_div {
  12104. border-width:0px;
  12105. position:absolute;
  12106. left:0px;
  12107. top:0px;
  12108. width:325px;
  12109. height:60px;
  12110. background:inherit;
  12111. background-color:rgba(255, 255, 255, 0);
  12112. border:none;
  12113. border-left:0px;
  12114. border-top:0px;
  12115. border-right:0px;
  12116. border-radius:0px;
  12117. border-bottom-right-radius:0px;
  12118. border-bottom-left-radius:0px;
  12119. -moz-box-shadow:none;
  12120. -webkit-box-shadow:none;
  12121. box-shadow:none;
  12122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12123. font-weight:400;
  12124. font-style:normal;
  12125. font-size:14px;
  12126. line-height:30px;
  12127. }
  12128. #u28015 {
  12129. border-width:0px;
  12130. position:absolute;
  12131. left:78px;
  12132. top:1434px;
  12133. width:325px;
  12134. height:60px;
  12135. display:flex;
  12136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12137. font-weight:400;
  12138. font-style:normal;
  12139. font-size:14px;
  12140. line-height:30px;
  12141. }
  12142. #u28015 .text {
  12143. position:absolute;
  12144. align-self:flex-start;
  12145. padding:0px 0px 0px 0px;
  12146. box-sizing:border-box;
  12147. width:100%;
  12148. }
  12149. #u28015_text {
  12150. border-width:0px;
  12151. word-wrap:break-word;
  12152. text-transform:none;
  12153. }
  12154. #u28016 {
  12155. border-width:0px;
  12156. position:absolute;
  12157. left:0px;
  12158. top:0px;
  12159. width:0px;
  12160. height:0px;
  12161. }
  12162. #u28017_div {
  12163. border-width:0px;
  12164. position:absolute;
  12165. left:0px;
  12166. top:0px;
  12167. width:1000px;
  12168. height:60px;
  12169. background:inherit;
  12170. background-color:rgba(255, 255, 255, 1);
  12171. box-sizing:border-box;
  12172. border-width:1px;
  12173. border-style:solid;
  12174. border-color:rgba(215, 215, 215, 1);
  12175. border-radius:0px;
  12176. -moz-box-shadow:none;
  12177. -webkit-box-shadow:none;
  12178. box-shadow:none;
  12179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12180. font-weight:400;
  12181. font-style:normal;
  12182. font-size:14px;
  12183. color:#AAAAAA;
  12184. text-align:center;
  12185. line-height:30px;
  12186. }
  12187. #u28017 {
  12188. border-width:0px;
  12189. position:absolute;
  12190. left:48px;
  12191. top:2481px;
  12192. width:1000px;
  12193. height:60px;
  12194. display:flex;
  12195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12196. font-weight:400;
  12197. font-style:normal;
  12198. font-size:14px;
  12199. color:#AAAAAA;
  12200. text-align:center;
  12201. line-height:30px;
  12202. }
  12203. #u28017 .text {
  12204. position:absolute;
  12205. align-self:center;
  12206. padding:5px 10px 5px 10px;
  12207. box-sizing:border-box;
  12208. width:100%;
  12209. }
  12210. #u28017_text {
  12211. border-width:0px;
  12212. word-wrap:break-word;
  12213. text-transform:none;
  12214. visibility:hidden;
  12215. }
  12216. #u28018_div {
  12217. border-width:0px;
  12218. position:absolute;
  12219. left:0px;
  12220. top:0px;
  12221. width:80px;
  12222. height:30px;
  12223. background:inherit;
  12224. background-color:rgba(0, 137, 254, 1);
  12225. border:none;
  12226. border-radius:4px;
  12227. -moz-box-shadow:none;
  12228. -webkit-box-shadow:none;
  12229. box-shadow:none;
  12230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12231. font-weight:400;
  12232. font-style:normal;
  12233. font-size:14px;
  12234. color:#FFFFFF;
  12235. }
  12236. #u28018 {
  12237. border-width:0px;
  12238. position:absolute;
  12239. left:929px;
  12240. top:2496px;
  12241. width:80px;
  12242. height:30px;
  12243. display:flex;
  12244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12245. font-weight:400;
  12246. font-style:normal;
  12247. font-size:14px;
  12248. color:#FFFFFF;
  12249. }
  12250. #u28018 .text {
  12251. position:absolute;
  12252. align-self:center;
  12253. padding:2px 2px 2px 2px;
  12254. box-sizing:border-box;
  12255. width:100%;
  12256. }
  12257. #u28018_text {
  12258. border-width:0px;
  12259. word-wrap:break-word;
  12260. text-transform:none;
  12261. }
  12262. #u28019_div {
  12263. border-width:0px;
  12264. position:absolute;
  12265. left:0px;
  12266. top:0px;
  12267. width:80px;
  12268. height:30px;
  12269. background:inherit;
  12270. background-color:rgba(255, 255, 255, 1);
  12271. box-sizing:border-box;
  12272. border-width:1px;
  12273. border-style:solid;
  12274. border-color:rgba(170, 170, 170, 1);
  12275. border-radius:4px;
  12276. -moz-box-shadow:none;
  12277. -webkit-box-shadow:none;
  12278. box-shadow:none;
  12279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12280. font-weight:400;
  12281. font-style:normal;
  12282. font-size:14px;
  12283. }
  12284. #u28019 {
  12285. border-width:0px;
  12286. position:absolute;
  12287. left:839px;
  12288. top:2496px;
  12289. width:80px;
  12290. height:30px;
  12291. display:flex;
  12292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12293. font-weight:400;
  12294. font-style:normal;
  12295. font-size:14px;
  12296. }
  12297. #u28019 .text {
  12298. position:absolute;
  12299. align-self:center;
  12300. padding:2px 2px 2px 2px;
  12301. box-sizing:border-box;
  12302. width:100%;
  12303. }
  12304. #u28019_text {
  12305. border-width:0px;
  12306. word-wrap:break-word;
  12307. text-transform:none;
  12308. }
  12309. #u28020_div {
  12310. border-width:0px;
  12311. position:absolute;
  12312. left:0px;
  12313. top:0px;
  12314. width:57px;
  12315. height:36px;
  12316. background:inherit;
  12317. background-color:rgba(255, 255, 255, 0);
  12318. border:none;
  12319. border-left:0px;
  12320. border-top:0px;
  12321. border-right:0px;
  12322. border-radius:0px;
  12323. border-bottom-right-radius:0px;
  12324. border-bottom-left-radius:0px;
  12325. -moz-box-shadow:none;
  12326. -webkit-box-shadow:none;
  12327. box-shadow:none;
  12328. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12329. font-weight:500;
  12330. font-style:normal;
  12331. font-size:14px;
  12332. line-height:40px;
  12333. }
  12334. #u28020 {
  12335. border-width:0px;
  12336. position:absolute;
  12337. left:88px;
  12338. top:1746px;
  12339. width:57px;
  12340. height:36px;
  12341. display:flex;
  12342. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12343. font-weight:500;
  12344. font-style:normal;
  12345. font-size:14px;
  12346. line-height:40px;
  12347. }
  12348. #u28020 .text {
  12349. position:absolute;
  12350. align-self:flex-start;
  12351. padding:0px 0px 0px 0px;
  12352. box-sizing:border-box;
  12353. width:100%;
  12354. }
  12355. #u28020_text {
  12356. border-width:0px;
  12357. white-space:nowrap;
  12358. text-transform:none;
  12359. }
  12360. #u28021_img {
  12361. border-width:0px;
  12362. position:absolute;
  12363. left:0px;
  12364. top:0px;
  12365. width:99px;
  12366. height:85px;
  12367. }
  12368. #u28021 {
  12369. border-width:0px;
  12370. position:absolute;
  12371. left:88px;
  12372. top:1826px;
  12373. width:99px;
  12374. height:85px;
  12375. display:flex;
  12376. }
  12377. #u28021 .text {
  12378. position:absolute;
  12379. align-self:center;
  12380. padding:2px 2px 2px 2px;
  12381. box-sizing:border-box;
  12382. width:100%;
  12383. }
  12384. #u28021_text {
  12385. border-width:0px;
  12386. word-wrap:break-word;
  12387. text-transform:none;
  12388. visibility:hidden;
  12389. }
  12390. #u28022_img {
  12391. border-width:0px;
  12392. position:absolute;
  12393. left:0px;
  12394. top:0px;
  12395. width:99px;
  12396. height:85px;
  12397. }
  12398. #u28022 {
  12399. border-width:0px;
  12400. position:absolute;
  12401. left:197px;
  12402. top:1826px;
  12403. width:99px;
  12404. height:85px;
  12405. display:flex;
  12406. }
  12407. #u28022 .text {
  12408. position:absolute;
  12409. align-self:center;
  12410. padding:2px 2px 2px 2px;
  12411. box-sizing:border-box;
  12412. width:100%;
  12413. }
  12414. #u28022_text {
  12415. border-width:0px;
  12416. word-wrap:break-word;
  12417. text-transform:none;
  12418. visibility:hidden;
  12419. }
  12420. #u28023_div {
  12421. border-width:0px;
  12422. position:absolute;
  12423. left:0px;
  12424. top:0px;
  12425. width:1000px;
  12426. height:531px;
  12427. background:inherit;
  12428. background-color:rgba(255, 255, 255, 1);
  12429. box-sizing:border-box;
  12430. border-width:1px;
  12431. border-style:solid;
  12432. border-color:rgba(242, 242, 242, 1);
  12433. border-radius:0px;
  12434. -moz-box-shadow:none;
  12435. -webkit-box-shadow:none;
  12436. box-shadow:none;
  12437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12438. font-weight:400;
  12439. font-style:normal;
  12440. font-size:14px;
  12441. color:#AAAAAA;
  12442. text-align:center;
  12443. line-height:30px;
  12444. }
  12445. #u28023 {
  12446. border-width:0px;
  12447. position:absolute;
  12448. left:48px;
  12449. top:1950px;
  12450. width:1000px;
  12451. height:531px;
  12452. display:flex;
  12453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12454. font-weight:400;
  12455. font-style:normal;
  12456. font-size:14px;
  12457. color:#AAAAAA;
  12458. text-align:center;
  12459. line-height:30px;
  12460. }
  12461. #u28023 .text {
  12462. position:absolute;
  12463. align-self:center;
  12464. padding:5px 10px 5px 10px;
  12465. box-sizing:border-box;
  12466. width:100%;
  12467. }
  12468. #u28023_text {
  12469. border-width:0px;
  12470. word-wrap:break-word;
  12471. text-transform:none;
  12472. visibility:hidden;
  12473. }
  12474. #u28024_div {
  12475. border-width:0px;
  12476. position:absolute;
  12477. left:0px;
  12478. top:0px;
  12479. width:73px;
  12480. height:40px;
  12481. background:inherit;
  12482. background-color:rgba(255, 255, 255, 0);
  12483. border:none;
  12484. border-left:0px;
  12485. border-top:0px;
  12486. border-right:0px;
  12487. border-radius:0px;
  12488. border-bottom-right-radius:0px;
  12489. border-bottom-left-radius:0px;
  12490. -moz-box-shadow:none;
  12491. -webkit-box-shadow:none;
  12492. box-shadow:none;
  12493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12494. font-weight:400;
  12495. font-style:normal;
  12496. font-size:18px;
  12497. }
  12498. #u28024 {
  12499. border-width:0px;
  12500. position:absolute;
  12501. left:88px;
  12502. top:1966px;
  12503. width:73px;
  12504. height:40px;
  12505. display:flex;
  12506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12507. font-weight:400;
  12508. font-style:normal;
  12509. font-size:18px;
  12510. }
  12511. #u28024 .text {
  12512. position:absolute;
  12513. align-self:center;
  12514. padding:0px 0px 0px 0px;
  12515. box-sizing:border-box;
  12516. width:100%;
  12517. }
  12518. #u28024_text {
  12519. border-width:0px;
  12520. white-space:nowrap;
  12521. text-transform:none;
  12522. }
  12523. #u28025_div {
  12524. border-width:0px;
  12525. position:absolute;
  12526. left:0px;
  12527. top:0px;
  12528. width:95px;
  12529. height:30px;
  12530. background:inherit;
  12531. background-color:rgba(255, 255, 255, 0);
  12532. border:none;
  12533. border-top:0px;
  12534. border-right:0px;
  12535. border-bottom:0px;
  12536. border-radius:0px;
  12537. border-top-left-radius:0px;
  12538. border-bottom-left-radius:0px;
  12539. -moz-box-shadow:none;
  12540. -webkit-box-shadow:none;
  12541. box-shadow:none;
  12542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12543. font-weight:400;
  12544. font-style:normal;
  12545. font-size:14px;
  12546. color:#7F7F7F;
  12547. }
  12548. #u28025 {
  12549. border-width:0px;
  12550. position:absolute;
  12551. left:705px;
  12552. top:1586px;
  12553. width:95px;
  12554. height:30px;
  12555. display:flex;
  12556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12557. font-weight:400;
  12558. font-style:normal;
  12559. font-size:14px;
  12560. color:#7F7F7F;
  12561. }
  12562. #u28025 .text {
  12563. position:absolute;
  12564. align-self:center;
  12565. padding:5px 10px 5px 0px;
  12566. box-sizing:border-box;
  12567. width:100%;
  12568. }
  12569. #u28025_text {
  12570. border-width:0px;
  12571. white-space:nowrap;
  12572. text-transform:none;
  12573. }
  12574. #u28026_div {
  12575. border-width:0px;
  12576. position:absolute;
  12577. left:0px;
  12578. top:0px;
  12579. width:101px;
  12580. height:30px;
  12581. background:inherit;
  12582. background-color:rgba(255, 255, 255, 0);
  12583. border:none;
  12584. border-top:0px;
  12585. border-right:0px;
  12586. border-bottom:0px;
  12587. border-radius:0px;
  12588. border-top-left-radius:0px;
  12589. border-bottom-left-radius:0px;
  12590. -moz-box-shadow:none;
  12591. -webkit-box-shadow:none;
  12592. box-shadow:none;
  12593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12594. font-weight:400;
  12595. font-style:normal;
  12596. font-size:14px;
  12597. }
  12598. #u28026 {
  12599. border-width:0px;
  12600. position:absolute;
  12601. left:786px;
  12602. top:1586px;
  12603. width:101px;
  12604. height:30px;
  12605. display:flex;
  12606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12607. font-weight:400;
  12608. font-style:normal;
  12609. font-size:14px;
  12610. }
  12611. #u28026 .text {
  12612. position:absolute;
  12613. align-self:center;
  12614. padding:5px 10px 5px 0px;
  12615. box-sizing:border-box;
  12616. width:100%;
  12617. }
  12618. #u28026_text {
  12619. border-width:0px;
  12620. white-space:nowrap;
  12621. text-transform:none;
  12622. }
  12623. #u28027_div {
  12624. border-width:0px;
  12625. position:absolute;
  12626. left:0px;
  12627. top:0px;
  12628. width:81px;
  12629. height:30px;
  12630. background:inherit;
  12631. background-color:rgba(255, 255, 255, 0);
  12632. border:none;
  12633. border-top:0px;
  12634. border-right:0px;
  12635. border-bottom:0px;
  12636. border-radius:0px;
  12637. border-top-left-radius:0px;
  12638. border-bottom-left-radius:0px;
  12639. -moz-box-shadow:none;
  12640. -webkit-box-shadow:none;
  12641. box-shadow:none;
  12642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12643. font-weight:400;
  12644. font-style:normal;
  12645. font-size:14px;
  12646. color:#7F7F7F;
  12647. }
  12648. #u28027 {
  12649. border-width:0px;
  12650. position:absolute;
  12651. left:388px;
  12652. top:1626px;
  12653. width:81px;
  12654. height:30px;
  12655. display:flex;
  12656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12657. font-weight:400;
  12658. font-style:normal;
  12659. font-size:14px;
  12660. color:#7F7F7F;
  12661. }
  12662. #u28027 .text {
  12663. position:absolute;
  12664. align-self:center;
  12665. padding:5px 10px 5px 0px;
  12666. box-sizing:border-box;
  12667. width:100%;
  12668. }
  12669. #u28027_text {
  12670. border-width:0px;
  12671. white-space:nowrap;
  12672. text-transform:none;
  12673. }
  12674. #u28028_div {
  12675. border-width:0px;
  12676. position:absolute;
  12677. left:0px;
  12678. top:0px;
  12679. width:134px;
  12680. height:30px;
  12681. background:inherit;
  12682. background-color:rgba(255, 255, 255, 0);
  12683. border:none;
  12684. border-top:0px;
  12685. border-right:0px;
  12686. border-bottom:0px;
  12687. border-radius:0px;
  12688. border-top-left-radius:0px;
  12689. border-bottom-left-radius:0px;
  12690. -moz-box-shadow:none;
  12691. -webkit-box-shadow:none;
  12692. box-shadow:none;
  12693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12694. font-weight:400;
  12695. font-style:normal;
  12696. font-size:14px;
  12697. }
  12698. #u28028 {
  12699. border-width:0px;
  12700. position:absolute;
  12701. left:469px;
  12702. top:1626px;
  12703. width:134px;
  12704. height:30px;
  12705. display:flex;
  12706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12707. font-weight:400;
  12708. font-style:normal;
  12709. font-size:14px;
  12710. }
  12711. #u28028 .text {
  12712. position:absolute;
  12713. align-self:center;
  12714. padding:5px 10px 5px 0px;
  12715. box-sizing:border-box;
  12716. width:100%;
  12717. }
  12718. #u28028_text {
  12719. border-width:0px;
  12720. white-space:nowrap;
  12721. text-transform:none;
  12722. }
  12723. #u28029_div {
  12724. border-width:0px;
  12725. position:absolute;
  12726. left:0px;
  12727. top:0px;
  12728. width:81px;
  12729. height:30px;
  12730. background:inherit;
  12731. background-color:rgba(255, 255, 255, 0);
  12732. border:none;
  12733. border-top:0px;
  12734. border-right:0px;
  12735. border-bottom:0px;
  12736. border-radius:0px;
  12737. border-top-left-radius:0px;
  12738. border-bottom-left-radius:0px;
  12739. -moz-box-shadow:none;
  12740. -webkit-box-shadow:none;
  12741. box-shadow:none;
  12742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12743. font-weight:400;
  12744. font-style:normal;
  12745. font-size:14px;
  12746. color:#7F7F7F;
  12747. }
  12748. #u28029 {
  12749. border-width:0px;
  12750. position:absolute;
  12751. left:88px;
  12752. top:1666px;
  12753. width:81px;
  12754. height:30px;
  12755. display:flex;
  12756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12757. font-weight:400;
  12758. font-style:normal;
  12759. font-size:14px;
  12760. color:#7F7F7F;
  12761. }
  12762. #u28029 .text {
  12763. position:absolute;
  12764. align-self:center;
  12765. padding:5px 10px 5px 0px;
  12766. box-sizing:border-box;
  12767. width:100%;
  12768. }
  12769. #u28029_text {
  12770. border-width:0px;
  12771. white-space:nowrap;
  12772. text-transform:none;
  12773. }
  12774. #u28030_div {
  12775. border-width:0px;
  12776. position:absolute;
  12777. left:0px;
  12778. top:0px;
  12779. width:151px;
  12780. height:30px;
  12781. background:inherit;
  12782. background-color:rgba(255, 255, 255, 0);
  12783. border:none;
  12784. border-top:0px;
  12785. border-right:0px;
  12786. border-bottom:0px;
  12787. border-radius:0px;
  12788. border-top-left-radius:0px;
  12789. border-bottom-left-radius:0px;
  12790. -moz-box-shadow:none;
  12791. -webkit-box-shadow:none;
  12792. box-shadow:none;
  12793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12794. font-weight:400;
  12795. font-style:normal;
  12796. font-size:14px;
  12797. color:#0089FE;
  12798. }
  12799. #u28030 {
  12800. border-width:0px;
  12801. position:absolute;
  12802. left:169px;
  12803. top:1666px;
  12804. width:151px;
  12805. height:30px;
  12806. display:flex;
  12807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12808. font-weight:400;
  12809. font-style:normal;
  12810. font-size:14px;
  12811. color:#0089FE;
  12812. }
  12813. #u28030 .text {
  12814. position:absolute;
  12815. align-self:center;
  12816. padding:5px 10px 5px 0px;
  12817. box-sizing:border-box;
  12818. width:100%;
  12819. }
  12820. #u28030_text {
  12821. border-width:0px;
  12822. white-space:nowrap;
  12823. text-transform:none;
  12824. }
  12825. #u28031_div {
  12826. border-width:0px;
  12827. position:absolute;
  12828. left:0px;
  12829. top:0px;
  12830. width:81px;
  12831. height:30px;
  12832. background:inherit;
  12833. background-color:rgba(255, 255, 255, 0);
  12834. border:none;
  12835. border-top:0px;
  12836. border-right:0px;
  12837. border-bottom:0px;
  12838. border-radius:0px;
  12839. border-top-left-radius:0px;
  12840. border-bottom-left-radius:0px;
  12841. -moz-box-shadow:none;
  12842. -webkit-box-shadow:none;
  12843. box-shadow:none;
  12844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12845. font-weight:400;
  12846. font-style:normal;
  12847. font-size:14px;
  12848. color:#7F7F7F;
  12849. }
  12850. #u28031 {
  12851. border-width:0px;
  12852. position:absolute;
  12853. left:388px;
  12854. top:1666px;
  12855. width:81px;
  12856. height:30px;
  12857. display:flex;
  12858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12859. font-weight:400;
  12860. font-style:normal;
  12861. font-size:14px;
  12862. color:#7F7F7F;
  12863. }
  12864. #u28031 .text {
  12865. position:absolute;
  12866. align-self:center;
  12867. padding:5px 10px 5px 0px;
  12868. box-sizing:border-box;
  12869. width:100%;
  12870. }
  12871. #u28031_text {
  12872. border-width:0px;
  12873. white-space:nowrap;
  12874. text-transform:none;
  12875. }
  12876. #u28032_div {
  12877. border-width:0px;
  12878. position:absolute;
  12879. left:0px;
  12880. top:0px;
  12881. width:39px;
  12882. height:30px;
  12883. background:inherit;
  12884. background-color:rgba(255, 255, 255, 0);
  12885. border:none;
  12886. border-top:0px;
  12887. border-right:0px;
  12888. border-bottom:0px;
  12889. border-radius:0px;
  12890. border-top-left-radius:0px;
  12891. border-bottom-left-radius:0px;
  12892. -moz-box-shadow:none;
  12893. -webkit-box-shadow:none;
  12894. box-shadow:none;
  12895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12896. font-weight:400;
  12897. font-style:normal;
  12898. font-size:14px;
  12899. }
  12900. #u28032 {
  12901. border-width:0px;
  12902. position:absolute;
  12903. left:469px;
  12904. top:1666px;
  12905. width:39px;
  12906. height:30px;
  12907. display:flex;
  12908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12909. font-weight:400;
  12910. font-style:normal;
  12911. font-size:14px;
  12912. }
  12913. #u28032 .text {
  12914. position:absolute;
  12915. align-self:center;
  12916. padding:5px 10px 5px 0px;
  12917. box-sizing:border-box;
  12918. width:100%;
  12919. }
  12920. #u28032_text {
  12921. border-width:0px;
  12922. white-space:nowrap;
  12923. text-transform:none;
  12924. }
  12925. #u28033_div {
  12926. border-width:0px;
  12927. position:absolute;
  12928. left:0px;
  12929. top:0px;
  12930. width:81px;
  12931. height:30px;
  12932. background:inherit;
  12933. background-color:rgba(255, 255, 255, 0);
  12934. border:none;
  12935. border-top:0px;
  12936. border-right:0px;
  12937. border-bottom:0px;
  12938. border-radius:0px;
  12939. border-top-left-radius:0px;
  12940. border-bottom-left-radius:0px;
  12941. -moz-box-shadow:none;
  12942. -webkit-box-shadow:none;
  12943. box-shadow:none;
  12944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12945. font-weight:400;
  12946. font-style:normal;
  12947. font-size:14px;
  12948. color:#7F7F7F;
  12949. }
  12950. #u28033 {
  12951. border-width:0px;
  12952. position:absolute;
  12953. left:705px;
  12954. top:1666px;
  12955. width:81px;
  12956. height:30px;
  12957. display:flex;
  12958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12959. font-weight:400;
  12960. font-style:normal;
  12961. font-size:14px;
  12962. color:#7F7F7F;
  12963. }
  12964. #u28033 .text {
  12965. position:absolute;
  12966. align-self:center;
  12967. padding:5px 10px 5px 0px;
  12968. box-sizing:border-box;
  12969. width:100%;
  12970. }
  12971. #u28033_text {
  12972. border-width:0px;
  12973. white-space:nowrap;
  12974. text-transform:none;
  12975. }
  12976. #u28034_div {
  12977. border-width:0px;
  12978. position:absolute;
  12979. left:0px;
  12980. top:0px;
  12981. width:126px;
  12982. height:30px;
  12983. background:inherit;
  12984. background-color:rgba(255, 255, 255, 0);
  12985. border:none;
  12986. border-top:0px;
  12987. border-right:0px;
  12988. border-bottom:0px;
  12989. border-radius:0px;
  12990. border-top-left-radius:0px;
  12991. border-bottom-left-radius:0px;
  12992. -moz-box-shadow:none;
  12993. -webkit-box-shadow:none;
  12994. box-shadow:none;
  12995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12996. font-weight:400;
  12997. font-style:normal;
  12998. font-size:14px;
  12999. }
  13000. #u28034 {
  13001. border-width:0px;
  13002. position:absolute;
  13003. left:786px;
  13004. top:1666px;
  13005. width:126px;
  13006. height:30px;
  13007. display:flex;
  13008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13009. font-weight:400;
  13010. font-style:normal;
  13011. font-size:14px;
  13012. }
  13013. #u28034 .text {
  13014. position:absolute;
  13015. align-self:center;
  13016. padding:5px 10px 5px 0px;
  13017. box-sizing:border-box;
  13018. width:100%;
  13019. }
  13020. #u28034_text {
  13021. border-width:0px;
  13022. white-space:nowrap;
  13023. text-transform:none;
  13024. }
  13025. #u28035_div {
  13026. border-width:0px;
  13027. position:absolute;
  13028. left:0px;
  13029. top:0px;
  13030. width:123px;
  13031. height:30px;
  13032. background:inherit;
  13033. background-color:rgba(255, 255, 255, 0);
  13034. border:none;
  13035. border-top:0px;
  13036. border-right:0px;
  13037. border-bottom:0px;
  13038. border-radius:0px;
  13039. border-top-left-radius:0px;
  13040. border-bottom-left-radius:0px;
  13041. -moz-box-shadow:none;
  13042. -webkit-box-shadow:none;
  13043. box-shadow:none;
  13044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13045. font-weight:400;
  13046. font-style:normal;
  13047. font-size:14px;
  13048. }
  13049. #u28035 {
  13050. border-width:0px;
  13051. position:absolute;
  13052. left:88px;
  13053. top:1786px;
  13054. width:123px;
  13055. height:30px;
  13056. display:flex;
  13057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13058. font-weight:400;
  13059. font-style:normal;
  13060. font-size:14px;
  13061. }
  13062. #u28035 .text {
  13063. position:absolute;
  13064. align-self:center;
  13065. padding:5px 10px 5px 0px;
  13066. box-sizing:border-box;
  13067. width:100%;
  13068. }
  13069. #u28035_text {
  13070. border-width:0px;
  13071. white-space:nowrap;
  13072. text-transform:none;
  13073. }
  13074. #u28036_div {
  13075. border-width:0px;
  13076. position:absolute;
  13077. left:0px;
  13078. top:0px;
  13079. width:95px;
  13080. height:30px;
  13081. background:inherit;
  13082. background-color:rgba(255, 255, 255, 0);
  13083. border:none;
  13084. border-top:0px;
  13085. border-right:0px;
  13086. border-bottom:0px;
  13087. border-radius:0px;
  13088. border-top-left-radius:0px;
  13089. border-bottom-left-radius:0px;
  13090. -moz-box-shadow:none;
  13091. -webkit-box-shadow:none;
  13092. box-shadow:none;
  13093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13094. font-weight:400;
  13095. font-style:normal;
  13096. font-size:14px;
  13097. color:#7F7F7F;
  13098. }
  13099. #u28036 {
  13100. border-width:0px;
  13101. position:absolute;
  13102. left:88px;
  13103. top:2026px;
  13104. width:95px;
  13105. height:30px;
  13106. display:flex;
  13107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13108. font-weight:400;
  13109. font-style:normal;
  13110. font-size:14px;
  13111. color:#7F7F7F;
  13112. }
  13113. #u28036 .text {
  13114. position:absolute;
  13115. align-self:center;
  13116. padding:5px 10px 5px 0px;
  13117. box-sizing:border-box;
  13118. width:100%;
  13119. }
  13120. #u28036_text {
  13121. border-width:0px;
  13122. white-space:nowrap;
  13123. text-transform:none;
  13124. }
  13125. #u28037_div {
  13126. border-width:0px;
  13127. position:absolute;
  13128. left:0px;
  13129. top:0px;
  13130. width:137px;
  13131. height:30px;
  13132. background:inherit;
  13133. background-color:rgba(255, 255, 255, 0);
  13134. border:none;
  13135. border-top:0px;
  13136. border-right:0px;
  13137. border-bottom:0px;
  13138. border-radius:0px;
  13139. border-top-left-radius:0px;
  13140. border-bottom-left-radius:0px;
  13141. -moz-box-shadow:none;
  13142. -webkit-box-shadow:none;
  13143. box-shadow:none;
  13144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13145. font-weight:400;
  13146. font-style:normal;
  13147. font-size:14px;
  13148. color:#1890FF;
  13149. }
  13150. #u28037 {
  13151. border-width:0px;
  13152. position:absolute;
  13153. left:189px;
  13154. top:2026px;
  13155. width:137px;
  13156. height:30px;
  13157. display:flex;
  13158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13159. font-weight:400;
  13160. font-style:normal;
  13161. font-size:14px;
  13162. color:#1890FF;
  13163. }
  13164. #u28037 .text {
  13165. position:absolute;
  13166. align-self:center;
  13167. padding:5px 10px 5px 0px;
  13168. box-sizing:border-box;
  13169. width:100%;
  13170. }
  13171. #u28037_text {
  13172. border-width:0px;
  13173. white-space:nowrap;
  13174. text-transform:none;
  13175. }
  13176. #u28038_div {
  13177. border-width:0px;
  13178. position:absolute;
  13179. left:0px;
  13180. top:0px;
  13181. width:81px;
  13182. height:30px;
  13183. background:inherit;
  13184. background-color:rgba(255, 255, 255, 0);
  13185. border:none;
  13186. border-top:0px;
  13187. border-right:0px;
  13188. border-bottom:0px;
  13189. border-radius:0px;
  13190. border-top-left-radius:0px;
  13191. border-bottom-left-radius:0px;
  13192. -moz-box-shadow:none;
  13193. -webkit-box-shadow:none;
  13194. box-shadow:none;
  13195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13196. font-weight:400;
  13197. font-style:normal;
  13198. font-size:14px;
  13199. color:#7F7F7F;
  13200. }
  13201. #u28038 {
  13202. border-width:0px;
  13203. position:absolute;
  13204. left:88px;
  13205. top:2066px;
  13206. width:81px;
  13207. height:30px;
  13208. display:flex;
  13209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13210. font-weight:400;
  13211. font-style:normal;
  13212. font-size:14px;
  13213. color:#7F7F7F;
  13214. }
  13215. #u28038 .text {
  13216. position:absolute;
  13217. align-self:center;
  13218. padding:5px 10px 5px 0px;
  13219. box-sizing:border-box;
  13220. width:100%;
  13221. }
  13222. #u28038_text {
  13223. border-width:0px;
  13224. white-space:nowrap;
  13225. text-transform:none;
  13226. }
  13227. #u28039_div {
  13228. border-width:0px;
  13229. position:absolute;
  13230. left:0px;
  13231. top:0px;
  13232. width:134px;
  13233. height:30px;
  13234. background:inherit;
  13235. background-color:rgba(255, 255, 255, 0);
  13236. border:none;
  13237. border-top:0px;
  13238. border-right:0px;
  13239. border-bottom:0px;
  13240. border-radius:0px;
  13241. border-top-left-radius:0px;
  13242. border-bottom-left-radius:0px;
  13243. -moz-box-shadow:none;
  13244. -webkit-box-shadow:none;
  13245. box-shadow:none;
  13246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13247. font-weight:400;
  13248. font-style:normal;
  13249. font-size:14px;
  13250. }
  13251. #u28039 {
  13252. border-width:0px;
  13253. position:absolute;
  13254. left:189px;
  13255. top:2066px;
  13256. width:134px;
  13257. height:30px;
  13258. display:flex;
  13259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13260. font-weight:400;
  13261. font-style:normal;
  13262. font-size:14px;
  13263. }
  13264. #u28039 .text {
  13265. position:absolute;
  13266. align-self:center;
  13267. padding:5px 10px 5px 0px;
  13268. box-sizing:border-box;
  13269. width:100%;
  13270. }
  13271. #u28039_text {
  13272. border-width:0px;
  13273. white-space:nowrap;
  13274. text-transform:none;
  13275. }
  13276. #u28040_div {
  13277. border-width:0px;
  13278. position:absolute;
  13279. left:0px;
  13280. top:0px;
  13281. width:81px;
  13282. height:30px;
  13283. background:inherit;
  13284. background-color:rgba(255, 255, 255, 0);
  13285. border:none;
  13286. border-top:0px;
  13287. border-right:0px;
  13288. border-bottom:0px;
  13289. border-radius:0px;
  13290. border-top-left-radius:0px;
  13291. border-bottom-left-radius:0px;
  13292. -moz-box-shadow:none;
  13293. -webkit-box-shadow:none;
  13294. box-shadow:none;
  13295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13296. font-weight:400;
  13297. font-style:normal;
  13298. font-size:14px;
  13299. color:#7F7F7F;
  13300. }
  13301. #u28040 {
  13302. border-width:0px;
  13303. position:absolute;
  13304. left:88px;
  13305. top:2146px;
  13306. width:81px;
  13307. height:30px;
  13308. display:flex;
  13309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13310. font-weight:400;
  13311. font-style:normal;
  13312. font-size:14px;
  13313. color:#7F7F7F;
  13314. }
  13315. #u28040 .text {
  13316. position:absolute;
  13317. align-self:center;
  13318. padding:5px 10px 5px 0px;
  13319. box-sizing:border-box;
  13320. width:100%;
  13321. }
  13322. #u28040_text {
  13323. border-width:0px;
  13324. white-space:nowrap;
  13325. text-transform:none;
  13326. }
  13327. #u28041_div {
  13328. border-width:0px;
  13329. position:absolute;
  13330. left:0px;
  13331. top:0px;
  13332. width:39px;
  13333. height:30px;
  13334. background:inherit;
  13335. background-color:rgba(255, 255, 255, 0);
  13336. border:none;
  13337. border-top:0px;
  13338. border-right:0px;
  13339. border-bottom:0px;
  13340. border-radius:0px;
  13341. border-top-left-radius:0px;
  13342. border-bottom-left-radius:0px;
  13343. -moz-box-shadow:none;
  13344. -webkit-box-shadow:none;
  13345. box-shadow:none;
  13346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13347. font-weight:400;
  13348. font-style:normal;
  13349. font-size:14px;
  13350. color:#0089FE;
  13351. }
  13352. #u28041 {
  13353. border-width:0px;
  13354. position:absolute;
  13355. left:189px;
  13356. top:2146px;
  13357. width:39px;
  13358. height:30px;
  13359. display:flex;
  13360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13361. font-weight:400;
  13362. font-style:normal;
  13363. font-size:14px;
  13364. color:#0089FE;
  13365. }
  13366. #u28041 .text {
  13367. position:absolute;
  13368. align-self:center;
  13369. padding:5px 10px 5px 0px;
  13370. box-sizing:border-box;
  13371. width:100%;
  13372. }
  13373. #u28041_text {
  13374. border-width:0px;
  13375. white-space:nowrap;
  13376. text-transform:none;
  13377. }
  13378. #u28042_div {
  13379. border-width:0px;
  13380. position:absolute;
  13381. left:0px;
  13382. top:0px;
  13383. width:81px;
  13384. height:30px;
  13385. background:inherit;
  13386. background-color:rgba(255, 255, 255, 0);
  13387. border:none;
  13388. border-top:0px;
  13389. border-right:0px;
  13390. border-bottom:0px;
  13391. border-radius:0px;
  13392. border-top-left-radius:0px;
  13393. border-bottom-left-radius:0px;
  13394. -moz-box-shadow:none;
  13395. -webkit-box-shadow:none;
  13396. box-shadow:none;
  13397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13398. font-weight:400;
  13399. font-style:normal;
  13400. font-size:14px;
  13401. color:#7F7F7F;
  13402. }
  13403. #u28042 {
  13404. border-width:0px;
  13405. position:absolute;
  13406. left:88px;
  13407. top:2106px;
  13408. width:81px;
  13409. height:30px;
  13410. display:flex;
  13411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13412. font-weight:400;
  13413. font-style:normal;
  13414. font-size:14px;
  13415. color:#7F7F7F;
  13416. }
  13417. #u28042 .text {
  13418. position:absolute;
  13419. align-self:center;
  13420. padding:5px 10px 5px 0px;
  13421. box-sizing:border-box;
  13422. width:100%;
  13423. }
  13424. #u28042_text {
  13425. border-width:0px;
  13426. white-space:nowrap;
  13427. text-transform:none;
  13428. }
  13429. #u28043_div {
  13430. border-width:0px;
  13431. position:absolute;
  13432. left:0px;
  13433. top:0px;
  13434. width:134px;
  13435. height:30px;
  13436. background:inherit;
  13437. background-color:rgba(255, 255, 255, 0);
  13438. border:none;
  13439. border-top:0px;
  13440. border-right:0px;
  13441. border-bottom:0px;
  13442. border-radius:0px;
  13443. border-top-left-radius:0px;
  13444. border-bottom-left-radius:0px;
  13445. -moz-box-shadow:none;
  13446. -webkit-box-shadow:none;
  13447. box-shadow:none;
  13448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13449. font-weight:400;
  13450. font-style:normal;
  13451. font-size:14px;
  13452. }
  13453. #u28043 {
  13454. border-width:0px;
  13455. position:absolute;
  13456. left:189px;
  13457. top:2106px;
  13458. width:134px;
  13459. height:30px;
  13460. display:flex;
  13461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13462. font-weight:400;
  13463. font-style:normal;
  13464. font-size:14px;
  13465. }
  13466. #u28043 .text {
  13467. position:absolute;
  13468. align-self:center;
  13469. padding:5px 10px 5px 0px;
  13470. box-sizing:border-box;
  13471. width:100%;
  13472. }
  13473. #u28043_text {
  13474. border-width:0px;
  13475. white-space:nowrap;
  13476. text-transform:none;
  13477. }
  13478. #u28044_div {
  13479. border-width:0px;
  13480. position:absolute;
  13481. left:0px;
  13482. top:0px;
  13483. width:123px;
  13484. height:30px;
  13485. background:inherit;
  13486. background-color:rgba(255, 255, 255, 0);
  13487. border:none;
  13488. border-top:0px;
  13489. border-right:0px;
  13490. border-bottom:0px;
  13491. border-radius:0px;
  13492. border-top-left-radius:0px;
  13493. border-bottom-left-radius:0px;
  13494. -moz-box-shadow:none;
  13495. -webkit-box-shadow:none;
  13496. box-shadow:none;
  13497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13498. font-weight:400;
  13499. font-style:normal;
  13500. font-size:14px;
  13501. color:#D9001B;
  13502. }
  13503. #u28044 {
  13504. border-width:0px;
  13505. position:absolute;
  13506. left:764px;
  13507. top:1427px;
  13508. width:123px;
  13509. height:30px;
  13510. display:flex;
  13511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13512. font-weight:400;
  13513. font-style:normal;
  13514. font-size:14px;
  13515. color:#D9001B;
  13516. }
  13517. #u28044 .text {
  13518. position:absolute;
  13519. align-self:center;
  13520. padding:5px 10px 5px 0px;
  13521. box-sizing:border-box;
  13522. width:100%;
  13523. }
  13524. #u28044_text {
  13525. border-width:0px;
  13526. white-space:nowrap;
  13527. text-transform:none;
  13528. }