styles.css 192 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:4195px;
  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. #u7918_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:129px;
  25. height:22px;
  26. background:inherit;
  27. background-color:rgba(255, 255, 255, 0);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. font-size:16px;
  34. color:#FFFFFF;
  35. }
  36. #u7918 {
  37. border-width:0px;
  38. position:absolute;
  39. left:49px;
  40. top:14px;
  41. width:129px;
  42. height:22px;
  43. display:flex;
  44. font-size:16px;
  45. color:#FFFFFF;
  46. }
  47. #u7918 .text {
  48. position:absolute;
  49. align-self:flex-start;
  50. padding:0px 0px 0px 0px;
  51. box-sizing:border-box;
  52. width:100%;
  53. }
  54. #u7918_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u7919_div {
  60. border-width:0px;
  61. position:absolute;
  62. left:0px;
  63. top:0px;
  64. width:1600px;
  65. height:50px;
  66. background:inherit;
  67. background-color:rgba(30, 42, 68, 1);
  68. border:none;
  69. border-radius:0px;
  70. -moz-box-shadow:none;
  71. -webkit-box-shadow:none;
  72. box-shadow:none;
  73. color:#AFB3B6;
  74. }
  75. #u7919 {
  76. border-width:0px;
  77. position:absolute;
  78. left:0px;
  79. top:0px;
  80. width:1600px;
  81. height:50px;
  82. display:flex;
  83. color:#AFB3B6;
  84. }
  85. #u7919 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u7919_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u7920 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u7921_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u7921 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u7921 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u7921_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u7922_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:161px;
  141. height:22px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 0);
  144. border:none;
  145. border-radius:0px;
  146. -moz-box-shadow:none;
  147. -webkit-box-shadow:none;
  148. box-shadow:none;
  149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  150. font-weight:400;
  151. font-style:normal;
  152. font-size:16px;
  153. color:#FFFFFF;
  154. }
  155. #u7922 {
  156. border-width:0px;
  157. position:absolute;
  158. left:62px;
  159. top:14px;
  160. width:161px;
  161. height:22px;
  162. display:flex;
  163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  164. font-weight:400;
  165. font-style:normal;
  166. font-size:16px;
  167. color:#FFFFFF;
  168. }
  169. #u7922 .text {
  170. position:absolute;
  171. align-self:flex-start;
  172. padding:0px 0px 0px 0px;
  173. box-sizing:border-box;
  174. width:100%;
  175. }
  176. #u7922_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u7923_div {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:120px;
  187. height:1200px;
  188. background:inherit;
  189. background-color:rgba(30, 42, 68, 1);
  190. border:none;
  191. border-radius:0px;
  192. -moz-box-shadow:none;
  193. -webkit-box-shadow:none;
  194. box-shadow:none;
  195. color:#AFB3B6;
  196. }
  197. #u7923 {
  198. border-width:0px;
  199. position:absolute;
  200. left:0px;
  201. top:47px;
  202. width:120px;
  203. height:1200px;
  204. display:flex;
  205. color:#AFB3B6;
  206. }
  207. #u7923 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u7923_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u7924_div {
  221. border-width:0px;
  222. position:absolute;
  223. left:0px;
  224. top:0px;
  225. width:1480px;
  226. height:1200px;
  227. background:inherit;
  228. background-color:rgba(242, 242, 242, 1);
  229. border:none;
  230. border-radius:0px;
  231. -moz-box-shadow:none;
  232. -webkit-box-shadow:none;
  233. box-shadow:none;
  234. }
  235. #u7924 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u7924 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u7924_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u7925 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u7926_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u7926 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:67px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u7926 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u7926_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u7927_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u7927 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u7927 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u7927_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u7928 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u7929_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u7929 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:109px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u7929 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u7929_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u7930_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u7930 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u7930 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u7930_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u7931 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u7932_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:29px;
  439. height:20px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:25px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. color:#FFFFFF;
  451. }
  452. #u7932 {
  453. border-width:0px;
  454. position:absolute;
  455. left:59px;
  456. top:1141px;
  457. width:29px;
  458. height:20px;
  459. display:flex;
  460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  461. font-weight:400;
  462. font-style:normal;
  463. color:#FFFFFF;
  464. }
  465. #u7932 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u7932_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u7933_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u7933 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u7933 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u7933_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u7934 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u7935_div {
  516. border-width:0px;
  517. position:absolute;
  518. left:0px;
  519. top:0px;
  520. width:29px;
  521. height:20px;
  522. background:inherit;
  523. background-color:rgba(255, 255, 255, 0);
  524. border:none;
  525. border-radius:25px;
  526. -moz-box-shadow:none;
  527. -webkit-box-shadow:none;
  528. box-shadow:none;
  529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  530. font-weight:400;
  531. font-style:normal;
  532. color:#FFFFFF;
  533. }
  534. #u7935 {
  535. border-width:0px;
  536. position:absolute;
  537. left:59px;
  538. top:1183px;
  539. width:29px;
  540. height:20px;
  541. display:flex;
  542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  543. font-weight:400;
  544. font-style:normal;
  545. color:#FFFFFF;
  546. }
  547. #u7935 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u7935_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u7936_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u7936 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u7936 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u7936_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u7937 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u7938_div {
  598. border-width:0px;
  599. position:absolute;
  600. left:0px;
  601. top:0px;
  602. width:33px;
  603. height:22px;
  604. background:inherit;
  605. background-color:rgba(255, 255, 255, 0);
  606. border:none;
  607. border-radius:0px;
  608. -moz-box-shadow:none;
  609. -webkit-box-shadow:none;
  610. box-shadow:none;
  611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  612. font-weight:400;
  613. font-style:normal;
  614. font-size:16px;
  615. color:#FFFFFF;
  616. }
  617. #u7938 {
  618. border-width:0px;
  619. position:absolute;
  620. left:39px;
  621. top:277px;
  622. width:33px;
  623. height:22px;
  624. display:flex;
  625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  626. font-weight:400;
  627. font-style:normal;
  628. font-size:16px;
  629. color:#FFFFFF;
  630. }
  631. #u7938 .text {
  632. position:absolute;
  633. align-self:flex-start;
  634. padding:0px 0px 0px 0px;
  635. box-sizing:border-box;
  636. width:100%;
  637. }
  638. #u7938_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u7939_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u7939 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u7939 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u7939_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u7940 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u7941_div {
  682. border-width:0px;
  683. position:absolute;
  684. left:0px;
  685. top:0px;
  686. width:33px;
  687. height:22px;
  688. background:inherit;
  689. background-color:rgba(255, 255, 255, 0);
  690. border:none;
  691. border-radius:0px;
  692. -moz-box-shadow:none;
  693. -webkit-box-shadow:none;
  694. box-shadow:none;
  695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  696. font-weight:400;
  697. font-style:normal;
  698. font-size:16px;
  699. color:#FFFFFF;
  700. }
  701. #u7941 {
  702. border-width:0px;
  703. position:absolute;
  704. left:39px;
  705. top:235px;
  706. width:33px;
  707. height:22px;
  708. display:flex;
  709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  710. font-weight:400;
  711. font-style:normal;
  712. font-size:16px;
  713. color:#FFFFFF;
  714. }
  715. #u7941 .text {
  716. position:absolute;
  717. align-self:flex-start;
  718. padding:0px 0px 0px 0px;
  719. box-sizing:border-box;
  720. width:100%;
  721. }
  722. #u7941_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u7942_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u7942 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u7942 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u7942_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u7943 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u7944_div {
  766. border-width:0px;
  767. position:absolute;
  768. left:0px;
  769. top:0px;
  770. width:33px;
  771. height:22px;
  772. background:inherit;
  773. background-color:rgba(255, 255, 255, 0);
  774. border:none;
  775. border-radius:0px;
  776. -moz-box-shadow:none;
  777. -webkit-box-shadow:none;
  778. box-shadow:none;
  779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  780. font-weight:400;
  781. font-style:normal;
  782. font-size:16px;
  783. color:#FFFFFF;
  784. }
  785. #u7944 {
  786. border-width:0px;
  787. position:absolute;
  788. left:39px;
  789. top:403px;
  790. width:33px;
  791. height:22px;
  792. display:flex;
  793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  794. font-weight:400;
  795. font-style:normal;
  796. font-size:16px;
  797. color:#FFFFFF;
  798. }
  799. #u7944 .text {
  800. position:absolute;
  801. align-self:flex-start;
  802. padding:0px 0px 0px 0px;
  803. box-sizing:border-box;
  804. width:100%;
  805. }
  806. #u7944_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u7945_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u7945 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:407px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u7945 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u7945_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u7946 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u7947_div {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:33px;
  855. height:22px;
  856. background:inherit;
  857. background-color:rgba(255, 255, 255, 0);
  858. border:none;
  859. border-radius:0px;
  860. -moz-box-shadow:none;
  861. -webkit-box-shadow:none;
  862. box-shadow:none;
  863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  864. font-weight:400;
  865. font-style:normal;
  866. font-size:16px;
  867. color:#FFFFFF;
  868. }
  869. #u7947 {
  870. border-width:0px;
  871. position:absolute;
  872. left:39px;
  873. top:445px;
  874. width:33px;
  875. height:22px;
  876. display:flex;
  877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  878. font-weight:400;
  879. font-style:normal;
  880. font-size:16px;
  881. color:#FFFFFF;
  882. }
  883. #u7947 .text {
  884. position:absolute;
  885. align-self:flex-start;
  886. padding:0px 0px 0px 0px;
  887. box-sizing:border-box;
  888. width:100%;
  889. }
  890. #u7947_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u7948_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u7948 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:449px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u7948 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u7948_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u7949 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u7950_div {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:33px;
  939. height:22px;
  940. background:inherit;
  941. background-color:rgba(255, 255, 255, 0);
  942. border:none;
  943. border-radius:0px;
  944. -moz-box-shadow:none;
  945. -webkit-box-shadow:none;
  946. box-shadow:none;
  947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  948. font-weight:400;
  949. font-style:normal;
  950. font-size:16px;
  951. color:#FFFFFF;
  952. }
  953. #u7950 {
  954. border-width:0px;
  955. position:absolute;
  956. left:39px;
  957. top:529px;
  958. width:33px;
  959. height:22px;
  960. display:flex;
  961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  962. font-weight:400;
  963. font-style:normal;
  964. font-size:16px;
  965. color:#FFFFFF;
  966. }
  967. #u7950 .text {
  968. position:absolute;
  969. align-self:flex-start;
  970. padding:0px 0px 0px 0px;
  971. box-sizing:border-box;
  972. width:100%;
  973. }
  974. #u7950_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u7951_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u7951 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:533px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u7951 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u7951_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u7952_input {
  1010. position:absolute;
  1011. left:0px;
  1012. top:0px;
  1013. width:214px;
  1014. height:27px;
  1015. padding:2px 2px 2px 2px;
  1016. font-family:'ArialMT', 'Arial', sans-serif;
  1017. font-weight:400;
  1018. font-style:normal;
  1019. font-size:14px;
  1020. letter-spacing:normal;
  1021. color:#FFFFFF;
  1022. vertical-align:none;
  1023. text-align:left;
  1024. text-transform:none;
  1025. background-color:transparent;
  1026. border-color:transparent;
  1027. }
  1028. #u7952_input.disabled {
  1029. position:absolute;
  1030. left:0px;
  1031. top:0px;
  1032. width:214px;
  1033. height:27px;
  1034. padding:2px 2px 2px 2px;
  1035. font-family:'ArialMT', 'Arial', sans-serif;
  1036. font-weight:400;
  1037. font-style:normal;
  1038. font-size:14px;
  1039. letter-spacing:normal;
  1040. color:#FFFFFF;
  1041. vertical-align:none;
  1042. text-align:left;
  1043. text-transform:none;
  1044. background-color:transparent;
  1045. border-color:transparent;
  1046. }
  1047. #u7952_div {
  1048. border-width:0px;
  1049. position:absolute;
  1050. left:0px;
  1051. top:0px;
  1052. width:214px;
  1053. height:27px;
  1054. background:inherit;
  1055. background-color:rgba(255, 255, 255, 0);
  1056. border:none;
  1057. border-radius:0px;
  1058. -moz-box-shadow:none;
  1059. -webkit-box-shadow:none;
  1060. box-shadow:none;
  1061. font-size:14px;
  1062. color:#FFFFFF;
  1063. }
  1064. #u7952 {
  1065. border-width:0px;
  1066. position:absolute;
  1067. left:1221px;
  1068. top:10px;
  1069. width:214px;
  1070. height:27px;
  1071. display:flex;
  1072. font-size:14px;
  1073. color:#FFFFFF;
  1074. }
  1075. #u7952 .text {
  1076. position:absolute;
  1077. align-self:flex-start;
  1078. padding:2px 2px 2px 2px;
  1079. box-sizing:border-box;
  1080. width:100%;
  1081. }
  1082. #u7952_div.disabled {
  1083. border-width:0px;
  1084. position:absolute;
  1085. left:0px;
  1086. top:0px;
  1087. width:214px;
  1088. height:27px;
  1089. background:inherit;
  1090. background-color:rgba(240, 240, 240, 1);
  1091. border:none;
  1092. border-radius:0px;
  1093. -moz-box-shadow:none;
  1094. -webkit-box-shadow:none;
  1095. box-shadow:none;
  1096. font-size:14px;
  1097. color:#FFFFFF;
  1098. }
  1099. #u7952.disabled {
  1100. }
  1101. .u7952_input_option {
  1102. font-size:14px;
  1103. }
  1104. #u7953_img {
  1105. border-width:0px;
  1106. position:absolute;
  1107. left:0px;
  1108. top:0px;
  1109. width:22px;
  1110. height:22px;
  1111. }
  1112. #u7953 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:1194px;
  1116. top:15px;
  1117. width:22px;
  1118. height:22px;
  1119. display:flex;
  1120. }
  1121. #u7953 .text {
  1122. position:absolute;
  1123. align-self:center;
  1124. padding:2px 2px 2px 2px;
  1125. box-sizing:border-box;
  1126. width:100%;
  1127. }
  1128. #u7953_text {
  1129. border-width:0px;
  1130. word-wrap:break-word;
  1131. text-transform:none;
  1132. visibility:hidden;
  1133. }
  1134. #u7954_div {
  1135. border-width:0px;
  1136. position:absolute;
  1137. left:0px;
  1138. top:0px;
  1139. width:100px;
  1140. height:24px;
  1141. background:inherit;
  1142. background-color:rgba(242, 242, 242, 0.2);
  1143. border:none;
  1144. border-radius:25px;
  1145. -moz-box-shadow:none;
  1146. -webkit-box-shadow:none;
  1147. box-shadow:none;
  1148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1149. font-weight:400;
  1150. font-style:normal;
  1151. color:#FFFFFF;
  1152. text-align:center;
  1153. }
  1154. #u7954 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:1480px;
  1158. top:12px;
  1159. width:100px;
  1160. height:24px;
  1161. display:flex;
  1162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1163. font-weight:400;
  1164. font-style:normal;
  1165. color:#FFFFFF;
  1166. text-align:center;
  1167. }
  1168. #u7954 .text {
  1169. position:absolute;
  1170. align-self:center;
  1171. padding:0px 0px 0px 0px;
  1172. box-sizing:border-box;
  1173. width:100%;
  1174. }
  1175. #u7954_text {
  1176. border-width:0px;
  1177. word-wrap:break-word;
  1178. text-transform:none;
  1179. }
  1180. #u7955_img {
  1181. border-width:0px;
  1182. position:absolute;
  1183. left:0px;
  1184. top:0px;
  1185. width:2px;
  1186. height:12px;
  1187. }
  1188. #u7955 {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:1452px;
  1192. top:19px;
  1193. width:1px;
  1194. height:11px;
  1195. display:flex;
  1196. }
  1197. #u7955 .text {
  1198. position:absolute;
  1199. align-self:center;
  1200. padding:2px 2px 2px 2px;
  1201. box-sizing:border-box;
  1202. width:100%;
  1203. }
  1204. #u7955_text {
  1205. border-width:0px;
  1206. word-wrap:break-word;
  1207. text-transform:none;
  1208. visibility:hidden;
  1209. }
  1210. #u7956 {
  1211. border-width:0px;
  1212. position:absolute;
  1213. left:0px;
  1214. top:0px;
  1215. width:0px;
  1216. height:0px;
  1217. }
  1218. #u7957_div {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:33px;
  1224. height:22px;
  1225. background:inherit;
  1226. background-color:rgba(255, 255, 255, 0);
  1227. border:none;
  1228. border-radius:0px;
  1229. -moz-box-shadow:none;
  1230. -webkit-box-shadow:none;
  1231. box-shadow:none;
  1232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1233. font-weight:400;
  1234. font-style:normal;
  1235. font-size:16px;
  1236. color:#FFFFFF;
  1237. }
  1238. #u7957 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:39px;
  1242. top:319px;
  1243. width:33px;
  1244. height:22px;
  1245. display:flex;
  1246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1247. font-weight:400;
  1248. font-style:normal;
  1249. font-size:16px;
  1250. color:#FFFFFF;
  1251. }
  1252. #u7957 .text {
  1253. position:absolute;
  1254. align-self:flex-start;
  1255. padding:0px 0px 0px 0px;
  1256. box-sizing:border-box;
  1257. width:100%;
  1258. }
  1259. #u7957_text {
  1260. border-width:0px;
  1261. white-space:nowrap;
  1262. text-transform:none;
  1263. }
  1264. #u7958_img {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:14px;
  1270. height:14px;
  1271. }
  1272. #u7958 {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:20px;
  1276. top:323px;
  1277. width:14px;
  1278. height:14px;
  1279. display:flex;
  1280. }
  1281. #u7958 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:2px 2px 2px 2px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u7958_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. visibility:hidden;
  1293. }
  1294. #u7959 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:0px;
  1300. height:0px;
  1301. }
  1302. #u7960_div {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:33px;
  1308. height:22px;
  1309. background:inherit;
  1310. background-color:rgba(255, 255, 255, 0);
  1311. border:none;
  1312. border-radius:0px;
  1313. -moz-box-shadow:none;
  1314. -webkit-box-shadow:none;
  1315. box-shadow:none;
  1316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1317. font-weight:400;
  1318. font-style:normal;
  1319. font-size:16px;
  1320. color:#FFFFFF;
  1321. }
  1322. #u7960 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:39px;
  1326. top:361px;
  1327. width:33px;
  1328. height:22px;
  1329. display:flex;
  1330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1331. font-weight:400;
  1332. font-style:normal;
  1333. font-size:16px;
  1334. color:#FFFFFF;
  1335. }
  1336. #u7960 .text {
  1337. position:absolute;
  1338. align-self:flex-start;
  1339. padding:0px 0px 0px 0px;
  1340. box-sizing:border-box;
  1341. width:100%;
  1342. }
  1343. #u7960_text {
  1344. border-width:0px;
  1345. white-space:nowrap;
  1346. text-transform:none;
  1347. }
  1348. #u7961_img {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:0px;
  1352. top:0px;
  1353. width:14px;
  1354. height:14px;
  1355. }
  1356. #u7961 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:20px;
  1360. top:365px;
  1361. width:14px;
  1362. height:14px;
  1363. display:flex;
  1364. }
  1365. #u7961 .text {
  1366. position:absolute;
  1367. align-self:center;
  1368. padding:2px 2px 2px 2px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u7961_text {
  1373. border-width:0px;
  1374. word-wrap:break-word;
  1375. text-transform:none;
  1376. visibility:hidden;
  1377. }
  1378. #u7962 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:0px;
  1384. height:0px;
  1385. }
  1386. #u7963_div {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:33px;
  1392. height:22px;
  1393. background:inherit;
  1394. background-color:rgba(255, 255, 255, 0);
  1395. border:none;
  1396. border-radius:0px;
  1397. -moz-box-shadow:none;
  1398. -webkit-box-shadow:none;
  1399. box-shadow:none;
  1400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1401. font-weight:400;
  1402. font-style:normal;
  1403. font-size:16px;
  1404. color:#FFFFFF;
  1405. }
  1406. #u7963 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:39px;
  1410. top:151px;
  1411. width:33px;
  1412. height:22px;
  1413. display:flex;
  1414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1415. font-weight:400;
  1416. font-style:normal;
  1417. font-size:16px;
  1418. color:#FFFFFF;
  1419. }
  1420. #u7963 .text {
  1421. position:absolute;
  1422. align-self:flex-start;
  1423. padding:0px 0px 0px 0px;
  1424. box-sizing:border-box;
  1425. width:100%;
  1426. }
  1427. #u7963_text {
  1428. border-width:0px;
  1429. white-space:nowrap;
  1430. text-transform:none;
  1431. }
  1432. #u7964_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:14px;
  1438. height:14px;
  1439. }
  1440. #u7964 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:20px;
  1444. top:155px;
  1445. width:14px;
  1446. height:14px;
  1447. display:flex;
  1448. }
  1449. #u7964 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u7964_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u7965 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:0px;
  1468. height:0px;
  1469. }
  1470. #u7966_div {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:33px;
  1476. height:22px;
  1477. background:inherit;
  1478. background-color:rgba(255, 255, 255, 0);
  1479. border:none;
  1480. border-radius:0px;
  1481. -moz-box-shadow:none;
  1482. -webkit-box-shadow:none;
  1483. box-shadow:none;
  1484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1485. font-weight:400;
  1486. font-style:normal;
  1487. font-size:16px;
  1488. color:#FFFFFF;
  1489. }
  1490. #u7966 {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:39px;
  1494. top:487px;
  1495. width:33px;
  1496. height:22px;
  1497. display:flex;
  1498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1499. font-weight:400;
  1500. font-style:normal;
  1501. font-size:16px;
  1502. color:#FFFFFF;
  1503. }
  1504. #u7966 .text {
  1505. position:absolute;
  1506. align-self:flex-start;
  1507. padding:0px 0px 0px 0px;
  1508. box-sizing:border-box;
  1509. width:100%;
  1510. }
  1511. #u7966_text {
  1512. border-width:0px;
  1513. white-space:nowrap;
  1514. text-transform:none;
  1515. }
  1516. #u7967_img {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:14px;
  1522. height:14px;
  1523. }
  1524. #u7967 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:20px;
  1528. top:491px;
  1529. width:14px;
  1530. height:14px;
  1531. display:flex;
  1532. }
  1533. #u7967 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:2px 2px 2px 2px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u7967_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. visibility:hidden;
  1545. }
  1546. #u7968 {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:0px;
  1552. height:0px;
  1553. }
  1554. #u7969_div {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:33px;
  1560. height:22px;
  1561. background:inherit;
  1562. background-color:rgba(255, 255, 255, 0);
  1563. border:none;
  1564. border-radius:0px;
  1565. -moz-box-shadow:none;
  1566. -webkit-box-shadow:none;
  1567. box-shadow:none;
  1568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1569. font-weight:400;
  1570. font-style:normal;
  1571. font-size:16px;
  1572. color:#FFFFFF;
  1573. }
  1574. #u7969 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:39px;
  1578. top:193px;
  1579. width:33px;
  1580. height:22px;
  1581. display:flex;
  1582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1583. font-weight:400;
  1584. font-style:normal;
  1585. font-size:16px;
  1586. color:#FFFFFF;
  1587. }
  1588. #u7969 .text {
  1589. position:absolute;
  1590. align-self:flex-start;
  1591. padding:0px 0px 0px 0px;
  1592. box-sizing:border-box;
  1593. width:100%;
  1594. }
  1595. #u7969_text {
  1596. border-width:0px;
  1597. white-space:nowrap;
  1598. text-transform:none;
  1599. }
  1600. #u7970_img {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:14px;
  1606. height:14px;
  1607. }
  1608. #u7970 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:20px;
  1612. top:197px;
  1613. width:14px;
  1614. height:14px;
  1615. display:flex;
  1616. }
  1617. #u7970 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 2px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u7970_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. visibility:hidden;
  1629. }
  1630. #u7971_div {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:0px;
  1634. top:0px;
  1635. width:200px;
  1636. height:1192px;
  1637. background:inherit;
  1638. background-color:rgba(255, 255, 255, 1);
  1639. border:none;
  1640. border-radius:0px;
  1641. -moz-box-shadow:none;
  1642. -webkit-box-shadow:none;
  1643. box-shadow:none;
  1644. }
  1645. #u7971 {
  1646. border-width:0px;
  1647. position:absolute;
  1648. left:122px;
  1649. top:50px;
  1650. width:200px;
  1651. height:1192px;
  1652. display:flex;
  1653. }
  1654. #u7971 .text {
  1655. position:absolute;
  1656. align-self:center;
  1657. padding:2px 2px 2px 2px;
  1658. box-sizing:border-box;
  1659. width:100%;
  1660. }
  1661. #u7971_text {
  1662. border-width:0px;
  1663. word-wrap:break-word;
  1664. text-transform:none;
  1665. visibility:hidden;
  1666. }
  1667. #u7972_div {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:0px;
  1671. top:0px;
  1672. width:200px;
  1673. height:60px;
  1674. background:inherit;
  1675. background-color:rgba(224, 231, 247, 1);
  1676. border:none;
  1677. border-radius:0px;
  1678. -moz-box-shadow:none;
  1679. -webkit-box-shadow:none;
  1680. box-shadow:none;
  1681. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1682. font-weight:500;
  1683. font-style:normal;
  1684. font-size:18px;
  1685. }
  1686. #u7972 {
  1687. border-width:0px;
  1688. position:absolute;
  1689. left:122px;
  1690. top:50px;
  1691. width:200px;
  1692. height:60px;
  1693. display:flex;
  1694. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1695. font-weight:500;
  1696. font-style:normal;
  1697. font-size:18px;
  1698. }
  1699. #u7972 .text {
  1700. position:absolute;
  1701. align-self:center;
  1702. padding:0px 0px 0px 20px;
  1703. box-sizing:border-box;
  1704. width:100%;
  1705. }
  1706. #u7972_text {
  1707. border-width:0px;
  1708. word-wrap:break-word;
  1709. text-transform:none;
  1710. }
  1711. #u7973_div {
  1712. border-width:0px;
  1713. position:absolute;
  1714. left:0px;
  1715. top:0px;
  1716. width:65px;
  1717. height:22px;
  1718. background:inherit;
  1719. background-color:rgba(255, 255, 255, 0);
  1720. border:none;
  1721. border-radius:0px;
  1722. -moz-box-shadow:none;
  1723. -webkit-box-shadow:none;
  1724. box-shadow:none;
  1725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1726. font-weight:400;
  1727. font-style:normal;
  1728. font-size:16px;
  1729. color:#1890FF;
  1730. }
  1731. #u7973 {
  1732. border-width:0px;
  1733. position:absolute;
  1734. left:149px;
  1735. top:131px;
  1736. width:65px;
  1737. height:22px;
  1738. display:flex;
  1739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1740. font-weight:400;
  1741. font-style:normal;
  1742. font-size:16px;
  1743. color:#1890FF;
  1744. }
  1745. #u7973 .text {
  1746. position:absolute;
  1747. align-self:flex-start;
  1748. padding:0px 0px 0px 0px;
  1749. box-sizing:border-box;
  1750. width:100%;
  1751. }
  1752. #u7973_text {
  1753. border-width:0px;
  1754. white-space:nowrap;
  1755. text-transform:none;
  1756. }
  1757. #u7974_div {
  1758. border-width:0px;
  1759. position:absolute;
  1760. left:0px;
  1761. top:0px;
  1762. width:1258px;
  1763. height:1192px;
  1764. background:inherit;
  1765. background-color:rgba(255, 255, 255, 1);
  1766. border:none;
  1767. border-radius:0px;
  1768. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1769. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1770. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1771. color:#1890FF;
  1772. }
  1773. #u7974 {
  1774. border-width:0px;
  1775. position:absolute;
  1776. left:332px;
  1777. top:50px;
  1778. width:1258px;
  1779. height:1192px;
  1780. display:flex;
  1781. color:#1890FF;
  1782. }
  1783. #u7974 .text {
  1784. position:absolute;
  1785. align-self:center;
  1786. padding:2px 2px 2px 2px;
  1787. box-sizing:border-box;
  1788. width:100%;
  1789. }
  1790. #u7974_text {
  1791. border-width:0px;
  1792. word-wrap:break-word;
  1793. text-transform:none;
  1794. visibility:hidden;
  1795. }
  1796. #u7975_div {
  1797. border-width:0px;
  1798. position:absolute;
  1799. left:0px;
  1800. top:0px;
  1801. width:73px;
  1802. height:50px;
  1803. background:inherit;
  1804. background-color:rgba(255, 255, 255, 0);
  1805. border:none;
  1806. border-left:0px;
  1807. border-top:0px;
  1808. border-right:0px;
  1809. border-radius:0px;
  1810. border-bottom-right-radius:0px;
  1811. border-bottom-left-radius:0px;
  1812. -moz-box-shadow:none;
  1813. -webkit-box-shadow:none;
  1814. box-shadow:none;
  1815. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1816. font-weight:500;
  1817. font-style:normal;
  1818. font-size:18px;
  1819. }
  1820. #u7975 {
  1821. border-width:0px;
  1822. position:absolute;
  1823. left:351px;
  1824. top:50px;
  1825. width:73px;
  1826. height:50px;
  1827. display:flex;
  1828. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1829. font-weight:500;
  1830. font-style:normal;
  1831. font-size:18px;
  1832. }
  1833. #u7975 .text {
  1834. position:absolute;
  1835. align-self:center;
  1836. padding:0px 0px 0px 0px;
  1837. box-sizing:border-box;
  1838. width:100%;
  1839. }
  1840. #u7975_text {
  1841. border-width:0px;
  1842. white-space:nowrap;
  1843. text-transform:none;
  1844. }
  1845. #u7976 {
  1846. border-width:0px;
  1847. position:absolute;
  1848. left:351px;
  1849. top:210px;
  1850. width:1220px;
  1851. height:364px;
  1852. }
  1853. #u7977_img {
  1854. border-width:0px;
  1855. position:absolute;
  1856. left:0px;
  1857. top:0px;
  1858. width:153px;
  1859. height:39px;
  1860. }
  1861. #u7977 {
  1862. border-width:0px;
  1863. position:absolute;
  1864. left:0px;
  1865. top:0px;
  1866. width:153px;
  1867. height:39px;
  1868. display:flex;
  1869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1870. font-weight:400;
  1871. font-style:normal;
  1872. font-size:12px;
  1873. color:#FFFFFF;
  1874. }
  1875. #u7977 .text {
  1876. position:absolute;
  1877. align-self:center;
  1878. padding:2px 2px 2px 0px;
  1879. box-sizing:border-box;
  1880. width:100%;
  1881. }
  1882. #u7977_text {
  1883. border-width:0px;
  1884. word-wrap:break-word;
  1885. text-transform:none;
  1886. }
  1887. #u7978_img {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:0px;
  1891. top:0px;
  1892. width:153px;
  1893. height:39px;
  1894. }
  1895. #u7978 {
  1896. border-width:0px;
  1897. position:absolute;
  1898. left:153px;
  1899. top:0px;
  1900. width:153px;
  1901. height:39px;
  1902. display:flex;
  1903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1904. font-weight:400;
  1905. font-style:normal;
  1906. font-size:12px;
  1907. color:#FFFFFF;
  1908. }
  1909. #u7978 .text {
  1910. position:absolute;
  1911. align-self:center;
  1912. padding:2px 2px 2px 0px;
  1913. box-sizing:border-box;
  1914. width:100%;
  1915. }
  1916. #u7978_text {
  1917. border-width:0px;
  1918. word-wrap:break-word;
  1919. text-transform:none;
  1920. }
  1921. #u7979_img {
  1922. border-width:0px;
  1923. position:absolute;
  1924. left:0px;
  1925. top:0px;
  1926. width:153px;
  1927. height:39px;
  1928. }
  1929. #u7979 {
  1930. border-width:0px;
  1931. position:absolute;
  1932. left:306px;
  1933. top:0px;
  1934. width:153px;
  1935. height:39px;
  1936. display:flex;
  1937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1938. font-weight:400;
  1939. font-style:normal;
  1940. font-size:12px;
  1941. color:#FFFFFF;
  1942. }
  1943. #u7979 .text {
  1944. position:absolute;
  1945. align-self:center;
  1946. padding:2px 2px 2px 0px;
  1947. box-sizing:border-box;
  1948. width:100%;
  1949. }
  1950. #u7979_text {
  1951. border-width:0px;
  1952. word-wrap:break-word;
  1953. text-transform:none;
  1954. }
  1955. #u7980_img {
  1956. border-width:0px;
  1957. position:absolute;
  1958. left:0px;
  1959. top:0px;
  1960. width:153px;
  1961. height:39px;
  1962. }
  1963. #u7980 {
  1964. border-width:0px;
  1965. position:absolute;
  1966. left:459px;
  1967. top:0px;
  1968. width:153px;
  1969. height:39px;
  1970. display:flex;
  1971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1972. font-weight:400;
  1973. font-style:normal;
  1974. font-size:12px;
  1975. color:#FFFFFF;
  1976. }
  1977. #u7980 .text {
  1978. position:absolute;
  1979. align-self:center;
  1980. padding:2px 2px 2px 0px;
  1981. box-sizing:border-box;
  1982. width:100%;
  1983. }
  1984. #u7980_text {
  1985. border-width:0px;
  1986. word-wrap:break-word;
  1987. text-transform:none;
  1988. }
  1989. #u7981_img {
  1990. border-width:0px;
  1991. position:absolute;
  1992. left:0px;
  1993. top:0px;
  1994. width:153px;
  1995. height:39px;
  1996. }
  1997. #u7981 {
  1998. border-width:0px;
  1999. position:absolute;
  2000. left:612px;
  2001. top:0px;
  2002. width:153px;
  2003. height:39px;
  2004. display:flex;
  2005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2006. font-weight:400;
  2007. font-style:normal;
  2008. font-size:12px;
  2009. color:#FFFFFF;
  2010. }
  2011. #u7981 .text {
  2012. position:absolute;
  2013. align-self:center;
  2014. padding:2px 2px 2px 0px;
  2015. box-sizing:border-box;
  2016. width:100%;
  2017. }
  2018. #u7981_text {
  2019. border-width:0px;
  2020. word-wrap:break-word;
  2021. text-transform:none;
  2022. }
  2023. #u7982_img {
  2024. border-width:0px;
  2025. position:absolute;
  2026. left:0px;
  2027. top:0px;
  2028. width:152px;
  2029. height:39px;
  2030. }
  2031. #u7982 {
  2032. border-width:0px;
  2033. position:absolute;
  2034. left:765px;
  2035. top:0px;
  2036. width:152px;
  2037. height:39px;
  2038. display:flex;
  2039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2040. font-weight:400;
  2041. font-style:normal;
  2042. font-size:12px;
  2043. color:#FFFFFF;
  2044. }
  2045. #u7982 .text {
  2046. position:absolute;
  2047. align-self:center;
  2048. padding:2px 2px 2px 0px;
  2049. box-sizing:border-box;
  2050. width:100%;
  2051. }
  2052. #u7982_text {
  2053. border-width:0px;
  2054. word-wrap:break-word;
  2055. text-transform:none;
  2056. }
  2057. #u7983_img {
  2058. border-width:0px;
  2059. position:absolute;
  2060. left:0px;
  2061. top:0px;
  2062. width:153px;
  2063. height:39px;
  2064. }
  2065. #u7983 {
  2066. border-width:0px;
  2067. position:absolute;
  2068. left:917px;
  2069. top:0px;
  2070. width:153px;
  2071. height:39px;
  2072. display:flex;
  2073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2074. font-weight:400;
  2075. font-style:normal;
  2076. font-size:12px;
  2077. color:#FFFFFF;
  2078. }
  2079. #u7983 .text {
  2080. position:absolute;
  2081. align-self:center;
  2082. padding:2px 2px 2px 0px;
  2083. box-sizing:border-box;
  2084. width:100%;
  2085. }
  2086. #u7983_text {
  2087. border-width:0px;
  2088. word-wrap:break-word;
  2089. text-transform:none;
  2090. }
  2091. #u7984_img {
  2092. border-width:0px;
  2093. position:absolute;
  2094. left:0px;
  2095. top:0px;
  2096. width:150px;
  2097. height:39px;
  2098. }
  2099. #u7984 {
  2100. border-width:0px;
  2101. position:absolute;
  2102. left:1070px;
  2103. top:0px;
  2104. width:150px;
  2105. height:39px;
  2106. display:flex;
  2107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2108. font-weight:400;
  2109. font-style:normal;
  2110. font-size:12px;
  2111. color:#FFFFFF;
  2112. }
  2113. #u7984 .text {
  2114. position:absolute;
  2115. align-self:center;
  2116. padding:2px 2px 2px 0px;
  2117. box-sizing:border-box;
  2118. width:100%;
  2119. }
  2120. #u7984_text {
  2121. border-width:0px;
  2122. word-wrap:break-word;
  2123. text-transform:none;
  2124. }
  2125. #u7985_img {
  2126. border-width:0px;
  2127. position:absolute;
  2128. left:0px;
  2129. top:0px;
  2130. width:153px;
  2131. height:36px;
  2132. }
  2133. #u7985 {
  2134. border-width:0px;
  2135. position:absolute;
  2136. left:0px;
  2137. top:39px;
  2138. width:153px;
  2139. height:36px;
  2140. display:flex;
  2141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2142. font-weight:400;
  2143. font-style:normal;
  2144. font-size:12px;
  2145. }
  2146. #u7985 .text {
  2147. position:absolute;
  2148. align-self:center;
  2149. padding:2px 2px 2px 0px;
  2150. box-sizing:border-box;
  2151. width:100%;
  2152. }
  2153. #u7985_text {
  2154. border-width:0px;
  2155. word-wrap:break-word;
  2156. text-transform:none;
  2157. visibility:hidden;
  2158. }
  2159. #u7986_img {
  2160. border-width:0px;
  2161. position:absolute;
  2162. left:0px;
  2163. top:0px;
  2164. width:153px;
  2165. height:36px;
  2166. }
  2167. #u7986 {
  2168. border-width:0px;
  2169. position:absolute;
  2170. left:153px;
  2171. top:39px;
  2172. width:153px;
  2173. height:36px;
  2174. display:flex;
  2175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2176. font-weight:400;
  2177. font-style:normal;
  2178. font-size:12px;
  2179. }
  2180. #u7986 .text {
  2181. position:absolute;
  2182. align-self:center;
  2183. padding:2px 2px 2px 0px;
  2184. box-sizing:border-box;
  2185. width:100%;
  2186. }
  2187. #u7986_text {
  2188. border-width:0px;
  2189. word-wrap:break-word;
  2190. text-transform:none;
  2191. visibility:hidden;
  2192. }
  2193. #u7987_img {
  2194. border-width:0px;
  2195. position:absolute;
  2196. left:0px;
  2197. top:0px;
  2198. width:153px;
  2199. height:36px;
  2200. }
  2201. #u7987 {
  2202. border-width:0px;
  2203. position:absolute;
  2204. left:306px;
  2205. top:39px;
  2206. width:153px;
  2207. height:36px;
  2208. display:flex;
  2209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2210. font-weight:400;
  2211. font-style:normal;
  2212. font-size:12px;
  2213. color:#333333;
  2214. }
  2215. #u7987 .text {
  2216. position:absolute;
  2217. align-self:center;
  2218. padding:2px 2px 2px 0px;
  2219. box-sizing:border-box;
  2220. width:100%;
  2221. }
  2222. #u7987_text {
  2223. border-width:0px;
  2224. word-wrap:break-word;
  2225. text-transform:none;
  2226. }
  2227. #u7988_img {
  2228. border-width:0px;
  2229. position:absolute;
  2230. left:0px;
  2231. top:0px;
  2232. width:153px;
  2233. height:36px;
  2234. }
  2235. #u7988 {
  2236. border-width:0px;
  2237. position:absolute;
  2238. left:459px;
  2239. top:39px;
  2240. width:153px;
  2241. height:36px;
  2242. display:flex;
  2243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2244. font-weight:400;
  2245. font-style:normal;
  2246. font-size:12px;
  2247. color:#333333;
  2248. }
  2249. #u7988 .text {
  2250. position:absolute;
  2251. align-self:center;
  2252. padding:2px 2px 2px 0px;
  2253. box-sizing:border-box;
  2254. width:100%;
  2255. }
  2256. #u7988_text {
  2257. border-width:0px;
  2258. word-wrap:break-word;
  2259. text-transform:none;
  2260. visibility:hidden;
  2261. }
  2262. #u7989_img {
  2263. border-width:0px;
  2264. position:absolute;
  2265. left:0px;
  2266. top:0px;
  2267. width:153px;
  2268. height:36px;
  2269. }
  2270. #u7989 {
  2271. border-width:0px;
  2272. position:absolute;
  2273. left:612px;
  2274. top:39px;
  2275. width:153px;
  2276. height:36px;
  2277. display:flex;
  2278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2279. font-weight:400;
  2280. font-style:normal;
  2281. font-size:12px;
  2282. }
  2283. #u7989 .text {
  2284. position:absolute;
  2285. align-self:center;
  2286. padding:2px 2px 2px 0px;
  2287. box-sizing:border-box;
  2288. width:100%;
  2289. }
  2290. #u7989_text {
  2291. border-width:0px;
  2292. word-wrap:break-word;
  2293. text-transform:none;
  2294. visibility:hidden;
  2295. }
  2296. #u7990_img {
  2297. border-width:0px;
  2298. position:absolute;
  2299. left:0px;
  2300. top:0px;
  2301. width:152px;
  2302. height:36px;
  2303. }
  2304. #u7990 {
  2305. border-width:0px;
  2306. position:absolute;
  2307. left:765px;
  2308. top:39px;
  2309. width:152px;
  2310. height:36px;
  2311. display:flex;
  2312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2313. font-weight:400;
  2314. font-style:normal;
  2315. font-size:12px;
  2316. }
  2317. #u7990 .text {
  2318. position:absolute;
  2319. align-self:center;
  2320. padding:2px 2px 2px 0px;
  2321. box-sizing:border-box;
  2322. width:100%;
  2323. }
  2324. #u7990_text {
  2325. border-width:0px;
  2326. word-wrap:break-word;
  2327. text-transform:none;
  2328. visibility:hidden;
  2329. }
  2330. #u7991_img {
  2331. border-width:0px;
  2332. position:absolute;
  2333. left:0px;
  2334. top:0px;
  2335. width:153px;
  2336. height:36px;
  2337. }
  2338. #u7991 {
  2339. border-width:0px;
  2340. position:absolute;
  2341. left:917px;
  2342. top:39px;
  2343. width:153px;
  2344. height:36px;
  2345. display:flex;
  2346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2347. font-weight:400;
  2348. font-style:normal;
  2349. font-size:12px;
  2350. }
  2351. #u7991 .text {
  2352. position:absolute;
  2353. align-self:center;
  2354. padding:2px 2px 2px 0px;
  2355. box-sizing:border-box;
  2356. width:100%;
  2357. }
  2358. #u7991_text {
  2359. border-width:0px;
  2360. word-wrap:break-word;
  2361. text-transform:none;
  2362. visibility:hidden;
  2363. }
  2364. #u7992_img {
  2365. border-width:0px;
  2366. position:absolute;
  2367. left:0px;
  2368. top:0px;
  2369. width:150px;
  2370. height:36px;
  2371. }
  2372. #u7992 {
  2373. border-width:0px;
  2374. position:absolute;
  2375. left:1070px;
  2376. top:39px;
  2377. width:150px;
  2378. height:36px;
  2379. display:flex;
  2380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2381. font-weight:400;
  2382. font-style:normal;
  2383. font-size:12px;
  2384. color:#1890FF;
  2385. }
  2386. #u7992 .text {
  2387. position:absolute;
  2388. align-self:center;
  2389. padding:2px 2px 2px 0px;
  2390. box-sizing:border-box;
  2391. width:100%;
  2392. }
  2393. #u7992_text {
  2394. border-width:0px;
  2395. word-wrap:break-word;
  2396. text-transform:none;
  2397. }
  2398. #u7993_img {
  2399. border-width:0px;
  2400. position:absolute;
  2401. left:0px;
  2402. top:0px;
  2403. width:153px;
  2404. height:38px;
  2405. }
  2406. #u7993 {
  2407. border-width:0px;
  2408. position:absolute;
  2409. left:0px;
  2410. top:75px;
  2411. width:153px;
  2412. height:38px;
  2413. display:flex;
  2414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2415. font-weight:400;
  2416. font-style:normal;
  2417. font-size:12px;
  2418. }
  2419. #u7993 .text {
  2420. position:absolute;
  2421. align-self:center;
  2422. padding:2px 2px 2px 0px;
  2423. box-sizing:border-box;
  2424. width:100%;
  2425. }
  2426. #u7993_text {
  2427. border-width:0px;
  2428. word-wrap:break-word;
  2429. text-transform:none;
  2430. visibility:hidden;
  2431. }
  2432. #u7994_img {
  2433. border-width:0px;
  2434. position:absolute;
  2435. left:0px;
  2436. top:0px;
  2437. width:153px;
  2438. height:38px;
  2439. }
  2440. #u7994 {
  2441. border-width:0px;
  2442. position:absolute;
  2443. left:153px;
  2444. top:75px;
  2445. width:153px;
  2446. height:38px;
  2447. display:flex;
  2448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2449. font-weight:400;
  2450. font-style:normal;
  2451. font-size:12px;
  2452. }
  2453. #u7994 .text {
  2454. position:absolute;
  2455. align-self:center;
  2456. padding:2px 2px 2px 0px;
  2457. box-sizing:border-box;
  2458. width:100%;
  2459. }
  2460. #u7994_text {
  2461. border-width:0px;
  2462. word-wrap:break-word;
  2463. text-transform:none;
  2464. visibility:hidden;
  2465. }
  2466. #u7995_img {
  2467. border-width:0px;
  2468. position:absolute;
  2469. left:0px;
  2470. top:0px;
  2471. width:153px;
  2472. height:38px;
  2473. }
  2474. #u7995 {
  2475. border-width:0px;
  2476. position:absolute;
  2477. left:306px;
  2478. top:75px;
  2479. width:153px;
  2480. height:38px;
  2481. display:flex;
  2482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2483. font-weight:400;
  2484. font-style:normal;
  2485. font-size:12px;
  2486. color:#333333;
  2487. }
  2488. #u7995 .text {
  2489. position:absolute;
  2490. align-self:center;
  2491. padding:2px 2px 2px 0px;
  2492. box-sizing:border-box;
  2493. width:100%;
  2494. }
  2495. #u7995_text {
  2496. border-width:0px;
  2497. word-wrap:break-word;
  2498. text-transform:none;
  2499. }
  2500. #u7996_img {
  2501. border-width:0px;
  2502. position:absolute;
  2503. left:0px;
  2504. top:0px;
  2505. width:153px;
  2506. height:38px;
  2507. }
  2508. #u7996 {
  2509. border-width:0px;
  2510. position:absolute;
  2511. left:459px;
  2512. top:75px;
  2513. width:153px;
  2514. height:38px;
  2515. display:flex;
  2516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2517. font-weight:400;
  2518. font-style:normal;
  2519. font-size:12px;
  2520. color:#333333;
  2521. }
  2522. #u7996 .text {
  2523. position:absolute;
  2524. align-self:center;
  2525. padding:2px 2px 2px 0px;
  2526. box-sizing:border-box;
  2527. width:100%;
  2528. }
  2529. #u7996_text {
  2530. border-width:0px;
  2531. word-wrap:break-word;
  2532. text-transform:none;
  2533. visibility:hidden;
  2534. }
  2535. #u7997_img {
  2536. border-width:0px;
  2537. position:absolute;
  2538. left:0px;
  2539. top:0px;
  2540. width:153px;
  2541. height:38px;
  2542. }
  2543. #u7997 {
  2544. border-width:0px;
  2545. position:absolute;
  2546. left:612px;
  2547. top:75px;
  2548. width:153px;
  2549. height:38px;
  2550. display:flex;
  2551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2552. font-weight:400;
  2553. font-style:normal;
  2554. font-size:12px;
  2555. }
  2556. #u7997 .text {
  2557. position:absolute;
  2558. align-self:center;
  2559. padding:2px 2px 2px 0px;
  2560. box-sizing:border-box;
  2561. width:100%;
  2562. }
  2563. #u7997_text {
  2564. border-width:0px;
  2565. word-wrap:break-word;
  2566. text-transform:none;
  2567. visibility:hidden;
  2568. }
  2569. #u7998_img {
  2570. border-width:0px;
  2571. position:absolute;
  2572. left:0px;
  2573. top:0px;
  2574. width:152px;
  2575. height:38px;
  2576. }
  2577. #u7998 {
  2578. border-width:0px;
  2579. position:absolute;
  2580. left:765px;
  2581. top:75px;
  2582. width:152px;
  2583. height:38px;
  2584. display:flex;
  2585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2586. font-weight:400;
  2587. font-style:normal;
  2588. font-size:12px;
  2589. }
  2590. #u7998 .text {
  2591. position:absolute;
  2592. align-self:center;
  2593. padding:2px 2px 2px 0px;
  2594. box-sizing:border-box;
  2595. width:100%;
  2596. }
  2597. #u7998_text {
  2598. border-width:0px;
  2599. word-wrap:break-word;
  2600. text-transform:none;
  2601. visibility:hidden;
  2602. }
  2603. #u7999_img {
  2604. border-width:0px;
  2605. position:absolute;
  2606. left:0px;
  2607. top:0px;
  2608. width:153px;
  2609. height:38px;
  2610. }
  2611. #u7999 {
  2612. border-width:0px;
  2613. position:absolute;
  2614. left:917px;
  2615. top:75px;
  2616. width:153px;
  2617. height:38px;
  2618. display:flex;
  2619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2620. font-weight:400;
  2621. font-style:normal;
  2622. font-size:12px;
  2623. }
  2624. #u7999 .text {
  2625. position:absolute;
  2626. align-self:center;
  2627. padding:2px 2px 2px 0px;
  2628. box-sizing:border-box;
  2629. width:100%;
  2630. }
  2631. #u7999_text {
  2632. border-width:0px;
  2633. word-wrap:break-word;
  2634. text-transform:none;
  2635. visibility:hidden;
  2636. }
  2637. #u8000_img {
  2638. border-width:0px;
  2639. position:absolute;
  2640. left:0px;
  2641. top:0px;
  2642. width:150px;
  2643. height:38px;
  2644. }
  2645. #u8000 {
  2646. border-width:0px;
  2647. position:absolute;
  2648. left:1070px;
  2649. top:75px;
  2650. width:150px;
  2651. height:38px;
  2652. display:flex;
  2653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2654. font-weight:400;
  2655. font-style:normal;
  2656. font-size:12px;
  2657. color:#1890FF;
  2658. }
  2659. #u8000 .text {
  2660. position:absolute;
  2661. align-self:center;
  2662. padding:2px 2px 2px 0px;
  2663. box-sizing:border-box;
  2664. width:100%;
  2665. }
  2666. #u8000_text {
  2667. border-width:0px;
  2668. word-wrap:break-word;
  2669. text-transform:none;
  2670. visibility:hidden;
  2671. }
  2672. #u8001_img {
  2673. border-width:0px;
  2674. position:absolute;
  2675. left:0px;
  2676. top:0px;
  2677. width:153px;
  2678. height:38px;
  2679. }
  2680. #u8001 {
  2681. border-width:0px;
  2682. position:absolute;
  2683. left:0px;
  2684. top:113px;
  2685. width:153px;
  2686. height:38px;
  2687. display:flex;
  2688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2689. font-weight:400;
  2690. font-style:normal;
  2691. font-size:12px;
  2692. }
  2693. #u8001 .text {
  2694. position:absolute;
  2695. align-self:center;
  2696. padding:2px 2px 2px 0px;
  2697. box-sizing:border-box;
  2698. width:100%;
  2699. }
  2700. #u8001_text {
  2701. border-width:0px;
  2702. word-wrap:break-word;
  2703. text-transform:none;
  2704. visibility:hidden;
  2705. }
  2706. #u8002_img {
  2707. border-width:0px;
  2708. position:absolute;
  2709. left:0px;
  2710. top:0px;
  2711. width:153px;
  2712. height:38px;
  2713. }
  2714. #u8002 {
  2715. border-width:0px;
  2716. position:absolute;
  2717. left:153px;
  2718. top:113px;
  2719. width:153px;
  2720. height:38px;
  2721. display:flex;
  2722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2723. font-weight:400;
  2724. font-style:normal;
  2725. font-size:12px;
  2726. }
  2727. #u8002 .text {
  2728. position:absolute;
  2729. align-self:center;
  2730. padding:2px 2px 2px 0px;
  2731. box-sizing:border-box;
  2732. width:100%;
  2733. }
  2734. #u8002_text {
  2735. border-width:0px;
  2736. word-wrap:break-word;
  2737. text-transform:none;
  2738. visibility:hidden;
  2739. }
  2740. #u8003_img {
  2741. border-width:0px;
  2742. position:absolute;
  2743. left:0px;
  2744. top:0px;
  2745. width:153px;
  2746. height:38px;
  2747. }
  2748. #u8003 {
  2749. border-width:0px;
  2750. position:absolute;
  2751. left:306px;
  2752. top:113px;
  2753. width:153px;
  2754. height:38px;
  2755. display:flex;
  2756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2757. font-weight:400;
  2758. font-style:normal;
  2759. font-size:12px;
  2760. color:#333333;
  2761. }
  2762. #u8003 .text {
  2763. position:absolute;
  2764. align-self:center;
  2765. padding:2px 2px 2px 0px;
  2766. box-sizing:border-box;
  2767. width:100%;
  2768. }
  2769. #u8003_text {
  2770. border-width:0px;
  2771. word-wrap:break-word;
  2772. text-transform:none;
  2773. }
  2774. #u8004_img {
  2775. border-width:0px;
  2776. position:absolute;
  2777. left:0px;
  2778. top:0px;
  2779. width:153px;
  2780. height:38px;
  2781. }
  2782. #u8004 {
  2783. border-width:0px;
  2784. position:absolute;
  2785. left:459px;
  2786. top:113px;
  2787. width:153px;
  2788. height:38px;
  2789. display:flex;
  2790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2791. font-weight:400;
  2792. font-style:normal;
  2793. font-size:12px;
  2794. color:#333333;
  2795. }
  2796. #u8004 .text {
  2797. position:absolute;
  2798. align-self:center;
  2799. padding:2px 2px 2px 0px;
  2800. box-sizing:border-box;
  2801. width:100%;
  2802. }
  2803. #u8004_text {
  2804. border-width:0px;
  2805. word-wrap:break-word;
  2806. text-transform:none;
  2807. visibility:hidden;
  2808. }
  2809. #u8005_img {
  2810. border-width:0px;
  2811. position:absolute;
  2812. left:0px;
  2813. top:0px;
  2814. width:153px;
  2815. height:38px;
  2816. }
  2817. #u8005 {
  2818. border-width:0px;
  2819. position:absolute;
  2820. left:612px;
  2821. top:113px;
  2822. width:153px;
  2823. height:38px;
  2824. display:flex;
  2825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2826. font-weight:400;
  2827. font-style:normal;
  2828. font-size:12px;
  2829. }
  2830. #u8005 .text {
  2831. position:absolute;
  2832. align-self:center;
  2833. padding:2px 2px 2px 0px;
  2834. box-sizing:border-box;
  2835. width:100%;
  2836. }
  2837. #u8005_text {
  2838. border-width:0px;
  2839. word-wrap:break-word;
  2840. text-transform:none;
  2841. visibility:hidden;
  2842. }
  2843. #u8006_img {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:0px;
  2847. top:0px;
  2848. width:152px;
  2849. height:38px;
  2850. }
  2851. #u8006 {
  2852. border-width:0px;
  2853. position:absolute;
  2854. left:765px;
  2855. top:113px;
  2856. width:152px;
  2857. height:38px;
  2858. display:flex;
  2859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2860. font-weight:400;
  2861. font-style:normal;
  2862. font-size:12px;
  2863. }
  2864. #u8006 .text {
  2865. position:absolute;
  2866. align-self:center;
  2867. padding:2px 2px 2px 0px;
  2868. box-sizing:border-box;
  2869. width:100%;
  2870. }
  2871. #u8006_text {
  2872. border-width:0px;
  2873. word-wrap:break-word;
  2874. text-transform:none;
  2875. visibility:hidden;
  2876. }
  2877. #u8007_img {
  2878. border-width:0px;
  2879. position:absolute;
  2880. left:0px;
  2881. top:0px;
  2882. width:153px;
  2883. height:38px;
  2884. }
  2885. #u8007 {
  2886. border-width:0px;
  2887. position:absolute;
  2888. left:917px;
  2889. top:113px;
  2890. width:153px;
  2891. height:38px;
  2892. display:flex;
  2893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2894. font-weight:400;
  2895. font-style:normal;
  2896. font-size:12px;
  2897. }
  2898. #u8007 .text {
  2899. position:absolute;
  2900. align-self:center;
  2901. padding:2px 2px 2px 0px;
  2902. box-sizing:border-box;
  2903. width:100%;
  2904. }
  2905. #u8007_text {
  2906. border-width:0px;
  2907. word-wrap:break-word;
  2908. text-transform:none;
  2909. visibility:hidden;
  2910. }
  2911. #u8008_img {
  2912. border-width:0px;
  2913. position:absolute;
  2914. left:0px;
  2915. top:0px;
  2916. width:150px;
  2917. height:38px;
  2918. }
  2919. #u8008 {
  2920. border-width:0px;
  2921. position:absolute;
  2922. left:1070px;
  2923. top:113px;
  2924. width:150px;
  2925. height:38px;
  2926. display:flex;
  2927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2928. font-weight:400;
  2929. font-style:normal;
  2930. font-size:12px;
  2931. color:#1890FF;
  2932. }
  2933. #u8008 .text {
  2934. position:absolute;
  2935. align-self:center;
  2936. padding:2px 2px 2px 0px;
  2937. box-sizing:border-box;
  2938. width:100%;
  2939. }
  2940. #u8008_text {
  2941. border-width:0px;
  2942. word-wrap:break-word;
  2943. text-transform:none;
  2944. visibility:hidden;
  2945. }
  2946. #u8009_img {
  2947. border-width:0px;
  2948. position:absolute;
  2949. left:0px;
  2950. top:0px;
  2951. width:153px;
  2952. height:38px;
  2953. }
  2954. #u8009 {
  2955. border-width:0px;
  2956. position:absolute;
  2957. left:0px;
  2958. top:151px;
  2959. width:153px;
  2960. height:38px;
  2961. display:flex;
  2962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2963. font-weight:400;
  2964. font-style:normal;
  2965. font-size:12px;
  2966. }
  2967. #u8009 .text {
  2968. position:absolute;
  2969. align-self:center;
  2970. padding:2px 2px 2px 0px;
  2971. box-sizing:border-box;
  2972. width:100%;
  2973. }
  2974. #u8009_text {
  2975. border-width:0px;
  2976. word-wrap:break-word;
  2977. text-transform:none;
  2978. visibility:hidden;
  2979. }
  2980. #u8010_img {
  2981. border-width:0px;
  2982. position:absolute;
  2983. left:0px;
  2984. top:0px;
  2985. width:153px;
  2986. height:38px;
  2987. }
  2988. #u8010 {
  2989. border-width:0px;
  2990. position:absolute;
  2991. left:153px;
  2992. top:151px;
  2993. width:153px;
  2994. height:38px;
  2995. display:flex;
  2996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2997. font-weight:400;
  2998. font-style:normal;
  2999. font-size:12px;
  3000. }
  3001. #u8010 .text {
  3002. position:absolute;
  3003. align-self:center;
  3004. padding:2px 2px 2px 0px;
  3005. box-sizing:border-box;
  3006. width:100%;
  3007. }
  3008. #u8010_text {
  3009. border-width:0px;
  3010. word-wrap:break-word;
  3011. text-transform:none;
  3012. visibility:hidden;
  3013. }
  3014. #u8011_img {
  3015. border-width:0px;
  3016. position:absolute;
  3017. left:0px;
  3018. top:0px;
  3019. width:153px;
  3020. height:38px;
  3021. }
  3022. #u8011 {
  3023. border-width:0px;
  3024. position:absolute;
  3025. left:306px;
  3026. top:151px;
  3027. width:153px;
  3028. height:38px;
  3029. display:flex;
  3030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3031. font-weight:400;
  3032. font-style:normal;
  3033. font-size:12px;
  3034. color:#333333;
  3035. }
  3036. #u8011 .text {
  3037. position:absolute;
  3038. align-self:center;
  3039. padding:2px 2px 2px 0px;
  3040. box-sizing:border-box;
  3041. width:100%;
  3042. }
  3043. #u8011_text {
  3044. border-width:0px;
  3045. word-wrap:break-word;
  3046. text-transform:none;
  3047. }
  3048. #u8012_img {
  3049. border-width:0px;
  3050. position:absolute;
  3051. left:0px;
  3052. top:0px;
  3053. width:153px;
  3054. height:38px;
  3055. }
  3056. #u8012 {
  3057. border-width:0px;
  3058. position:absolute;
  3059. left:459px;
  3060. top:151px;
  3061. width:153px;
  3062. height:38px;
  3063. display:flex;
  3064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3065. font-weight:400;
  3066. font-style:normal;
  3067. font-size:12px;
  3068. color:#333333;
  3069. }
  3070. #u8012 .text {
  3071. position:absolute;
  3072. align-self:center;
  3073. padding:2px 2px 2px 0px;
  3074. box-sizing:border-box;
  3075. width:100%;
  3076. }
  3077. #u8012_text {
  3078. border-width:0px;
  3079. word-wrap:break-word;
  3080. text-transform:none;
  3081. visibility:hidden;
  3082. }
  3083. #u8013_img {
  3084. border-width:0px;
  3085. position:absolute;
  3086. left:0px;
  3087. top:0px;
  3088. width:153px;
  3089. height:38px;
  3090. }
  3091. #u8013 {
  3092. border-width:0px;
  3093. position:absolute;
  3094. left:612px;
  3095. top:151px;
  3096. width:153px;
  3097. height:38px;
  3098. display:flex;
  3099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3100. font-weight:400;
  3101. font-style:normal;
  3102. font-size:12px;
  3103. }
  3104. #u8013 .text {
  3105. position:absolute;
  3106. align-self:center;
  3107. padding:2px 2px 2px 0px;
  3108. box-sizing:border-box;
  3109. width:100%;
  3110. }
  3111. #u8013_text {
  3112. border-width:0px;
  3113. word-wrap:break-word;
  3114. text-transform:none;
  3115. visibility:hidden;
  3116. }
  3117. #u8014_img {
  3118. border-width:0px;
  3119. position:absolute;
  3120. left:0px;
  3121. top:0px;
  3122. width:152px;
  3123. height:38px;
  3124. }
  3125. #u8014 {
  3126. border-width:0px;
  3127. position:absolute;
  3128. left:765px;
  3129. top:151px;
  3130. width:152px;
  3131. height:38px;
  3132. display:flex;
  3133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3134. font-weight:400;
  3135. font-style:normal;
  3136. font-size:12px;
  3137. }
  3138. #u8014 .text {
  3139. position:absolute;
  3140. align-self:center;
  3141. padding:2px 2px 2px 0px;
  3142. box-sizing:border-box;
  3143. width:100%;
  3144. }
  3145. #u8014_text {
  3146. border-width:0px;
  3147. word-wrap:break-word;
  3148. text-transform:none;
  3149. visibility:hidden;
  3150. }
  3151. #u8015_img {
  3152. border-width:0px;
  3153. position:absolute;
  3154. left:0px;
  3155. top:0px;
  3156. width:153px;
  3157. height:38px;
  3158. }
  3159. #u8015 {
  3160. border-width:0px;
  3161. position:absolute;
  3162. left:917px;
  3163. top:151px;
  3164. width:153px;
  3165. height:38px;
  3166. display:flex;
  3167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3168. font-weight:400;
  3169. font-style:normal;
  3170. font-size:12px;
  3171. }
  3172. #u8015 .text {
  3173. position:absolute;
  3174. align-self:center;
  3175. padding:2px 2px 2px 0px;
  3176. box-sizing:border-box;
  3177. width:100%;
  3178. }
  3179. #u8015_text {
  3180. border-width:0px;
  3181. word-wrap:break-word;
  3182. text-transform:none;
  3183. visibility:hidden;
  3184. }
  3185. #u8016_img {
  3186. border-width:0px;
  3187. position:absolute;
  3188. left:0px;
  3189. top:0px;
  3190. width:150px;
  3191. height:38px;
  3192. }
  3193. #u8016 {
  3194. border-width:0px;
  3195. position:absolute;
  3196. left:1070px;
  3197. top:151px;
  3198. width:150px;
  3199. height:38px;
  3200. display:flex;
  3201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3202. font-weight:400;
  3203. font-style:normal;
  3204. font-size:12px;
  3205. color:#1890FF;
  3206. }
  3207. #u8016 .text {
  3208. position:absolute;
  3209. align-self:center;
  3210. padding:2px 2px 2px 0px;
  3211. box-sizing:border-box;
  3212. width:100%;
  3213. }
  3214. #u8016_text {
  3215. border-width:0px;
  3216. word-wrap:break-word;
  3217. text-transform:none;
  3218. visibility:hidden;
  3219. }
  3220. #u8017_img {
  3221. border-width:0px;
  3222. position:absolute;
  3223. left:0px;
  3224. top:0px;
  3225. width:153px;
  3226. height:35px;
  3227. }
  3228. #u8017 {
  3229. border-width:0px;
  3230. position:absolute;
  3231. left:0px;
  3232. top:189px;
  3233. width:153px;
  3234. height:35px;
  3235. display:flex;
  3236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3237. font-weight:400;
  3238. font-style:normal;
  3239. font-size:12px;
  3240. color:#606266;
  3241. }
  3242. #u8017 .text {
  3243. position:absolute;
  3244. align-self:center;
  3245. padding:2px 2px 2px 0px;
  3246. box-sizing:border-box;
  3247. width:100%;
  3248. }
  3249. #u8017_text {
  3250. border-width:0px;
  3251. word-wrap:break-word;
  3252. text-transform:none;
  3253. visibility:hidden;
  3254. }
  3255. #u8018_img {
  3256. border-width:0px;
  3257. position:absolute;
  3258. left:0px;
  3259. top:0px;
  3260. width:153px;
  3261. height:35px;
  3262. }
  3263. #u8018 {
  3264. border-width:0px;
  3265. position:absolute;
  3266. left:153px;
  3267. top:189px;
  3268. width:153px;
  3269. height:35px;
  3270. display:flex;
  3271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3272. font-weight:400;
  3273. font-style:normal;
  3274. font-size:12px;
  3275. color:#606266;
  3276. }
  3277. #u8018 .text {
  3278. position:absolute;
  3279. align-self:center;
  3280. padding:2px 2px 2px 0px;
  3281. box-sizing:border-box;
  3282. width:100%;
  3283. }
  3284. #u8018_text {
  3285. border-width:0px;
  3286. word-wrap:break-word;
  3287. text-transform:none;
  3288. visibility:hidden;
  3289. }
  3290. #u8019_img {
  3291. border-width:0px;
  3292. position:absolute;
  3293. left:0px;
  3294. top:0px;
  3295. width:153px;
  3296. height:35px;
  3297. }
  3298. #u8019 {
  3299. border-width:0px;
  3300. position:absolute;
  3301. left:306px;
  3302. top:189px;
  3303. width:153px;
  3304. height:35px;
  3305. display:flex;
  3306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3307. font-weight:400;
  3308. font-style:normal;
  3309. font-size:12px;
  3310. color:#333333;
  3311. }
  3312. #u8019 .text {
  3313. position:absolute;
  3314. align-self:center;
  3315. padding:2px 2px 2px 0px;
  3316. box-sizing:border-box;
  3317. width:100%;
  3318. }
  3319. #u8019_text {
  3320. border-width:0px;
  3321. word-wrap:break-word;
  3322. text-transform:none;
  3323. }
  3324. #u8020_img {
  3325. border-width:0px;
  3326. position:absolute;
  3327. left:0px;
  3328. top:0px;
  3329. width:153px;
  3330. height:35px;
  3331. }
  3332. #u8020 {
  3333. border-width:0px;
  3334. position:absolute;
  3335. left:459px;
  3336. top:189px;
  3337. width:153px;
  3338. height:35px;
  3339. display:flex;
  3340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3341. font-weight:400;
  3342. font-style:normal;
  3343. font-size:12px;
  3344. color:#333333;
  3345. }
  3346. #u8020 .text {
  3347. position:absolute;
  3348. align-self:center;
  3349. padding:2px 2px 2px 0px;
  3350. box-sizing:border-box;
  3351. width:100%;
  3352. }
  3353. #u8020_text {
  3354. border-width:0px;
  3355. word-wrap:break-word;
  3356. text-transform:none;
  3357. visibility:hidden;
  3358. }
  3359. #u8021_img {
  3360. border-width:0px;
  3361. position:absolute;
  3362. left:0px;
  3363. top:0px;
  3364. width:153px;
  3365. height:35px;
  3366. }
  3367. #u8021 {
  3368. border-width:0px;
  3369. position:absolute;
  3370. left:612px;
  3371. top:189px;
  3372. width:153px;
  3373. height:35px;
  3374. display:flex;
  3375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3376. font-weight:400;
  3377. font-style:normal;
  3378. font-size:12px;
  3379. color:#606266;
  3380. }
  3381. #u8021 .text {
  3382. position:absolute;
  3383. align-self:center;
  3384. padding:2px 2px 2px 0px;
  3385. box-sizing:border-box;
  3386. width:100%;
  3387. }
  3388. #u8021_text {
  3389. border-width:0px;
  3390. word-wrap:break-word;
  3391. text-transform:none;
  3392. visibility:hidden;
  3393. }
  3394. #u8022_img {
  3395. border-width:0px;
  3396. position:absolute;
  3397. left:0px;
  3398. top:0px;
  3399. width:152px;
  3400. height:35px;
  3401. }
  3402. #u8022 {
  3403. border-width:0px;
  3404. position:absolute;
  3405. left:765px;
  3406. top:189px;
  3407. width:152px;
  3408. height:35px;
  3409. display:flex;
  3410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3411. font-weight:400;
  3412. font-style:normal;
  3413. font-size:12px;
  3414. color:#606266;
  3415. }
  3416. #u8022 .text {
  3417. position:absolute;
  3418. align-self:center;
  3419. padding:2px 2px 2px 0px;
  3420. box-sizing:border-box;
  3421. width:100%;
  3422. }
  3423. #u8022_text {
  3424. border-width:0px;
  3425. word-wrap:break-word;
  3426. text-transform:none;
  3427. visibility:hidden;
  3428. }
  3429. #u8023_img {
  3430. border-width:0px;
  3431. position:absolute;
  3432. left:0px;
  3433. top:0px;
  3434. width:153px;
  3435. height:35px;
  3436. }
  3437. #u8023 {
  3438. border-width:0px;
  3439. position:absolute;
  3440. left:917px;
  3441. top:189px;
  3442. width:153px;
  3443. height:35px;
  3444. display:flex;
  3445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3446. font-weight:400;
  3447. font-style:normal;
  3448. font-size:12px;
  3449. color:#606266;
  3450. }
  3451. #u8023 .text {
  3452. position:absolute;
  3453. align-self:center;
  3454. padding:2px 2px 2px 0px;
  3455. box-sizing:border-box;
  3456. width:100%;
  3457. }
  3458. #u8023_text {
  3459. border-width:0px;
  3460. word-wrap:break-word;
  3461. text-transform:none;
  3462. visibility:hidden;
  3463. }
  3464. #u8024_img {
  3465. border-width:0px;
  3466. position:absolute;
  3467. left:0px;
  3468. top:0px;
  3469. width:150px;
  3470. height:35px;
  3471. }
  3472. #u8024 {
  3473. border-width:0px;
  3474. position:absolute;
  3475. left:1070px;
  3476. top:189px;
  3477. width:150px;
  3478. height:35px;
  3479. display:flex;
  3480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3481. font-weight:400;
  3482. font-style:normal;
  3483. font-size:12px;
  3484. color:#02A7F0;
  3485. }
  3486. #u8024 .text {
  3487. position:absolute;
  3488. align-self:center;
  3489. padding:2px 2px 2px 0px;
  3490. box-sizing:border-box;
  3491. width:100%;
  3492. }
  3493. #u8024_text {
  3494. border-width:0px;
  3495. word-wrap:break-word;
  3496. text-transform:none;
  3497. visibility:hidden;
  3498. }
  3499. #u8025_img {
  3500. border-width:0px;
  3501. position:absolute;
  3502. left:0px;
  3503. top:0px;
  3504. width:153px;
  3505. height:35px;
  3506. }
  3507. #u8025 {
  3508. border-width:0px;
  3509. position:absolute;
  3510. left:0px;
  3511. top:224px;
  3512. width:153px;
  3513. height:35px;
  3514. display:flex;
  3515. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3516. font-weight:400;
  3517. font-style:normal;
  3518. font-size:12px;
  3519. color:#606266;
  3520. }
  3521. #u8025 .text {
  3522. position:absolute;
  3523. align-self:center;
  3524. padding:2px 2px 2px 0px;
  3525. box-sizing:border-box;
  3526. width:100%;
  3527. }
  3528. #u8025_text {
  3529. border-width:0px;
  3530. word-wrap:break-word;
  3531. text-transform:none;
  3532. visibility:hidden;
  3533. }
  3534. #u8026_img {
  3535. border-width:0px;
  3536. position:absolute;
  3537. left:0px;
  3538. top:0px;
  3539. width:153px;
  3540. height:35px;
  3541. }
  3542. #u8026 {
  3543. border-width:0px;
  3544. position:absolute;
  3545. left:153px;
  3546. top:224px;
  3547. width:153px;
  3548. height:35px;
  3549. display:flex;
  3550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3551. font-weight:400;
  3552. font-style:normal;
  3553. font-size:12px;
  3554. color:#606266;
  3555. }
  3556. #u8026 .text {
  3557. position:absolute;
  3558. align-self:center;
  3559. padding:2px 2px 2px 0px;
  3560. box-sizing:border-box;
  3561. width:100%;
  3562. }
  3563. #u8026_text {
  3564. border-width:0px;
  3565. word-wrap:break-word;
  3566. text-transform:none;
  3567. visibility:hidden;
  3568. }
  3569. #u8027_img {
  3570. border-width:0px;
  3571. position:absolute;
  3572. left:0px;
  3573. top:0px;
  3574. width:153px;
  3575. height:35px;
  3576. }
  3577. #u8027 {
  3578. border-width:0px;
  3579. position:absolute;
  3580. left:306px;
  3581. top:224px;
  3582. width:153px;
  3583. height:35px;
  3584. display:flex;
  3585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3586. font-weight:400;
  3587. font-style:normal;
  3588. font-size:12px;
  3589. color:#606266;
  3590. }
  3591. #u8027 .text {
  3592. position:absolute;
  3593. align-self:center;
  3594. padding:2px 2px 2px 0px;
  3595. box-sizing:border-box;
  3596. width:100%;
  3597. }
  3598. #u8027_text {
  3599. border-width:0px;
  3600. word-wrap:break-word;
  3601. text-transform:none;
  3602. visibility:hidden;
  3603. }
  3604. #u8028_img {
  3605. border-width:0px;
  3606. position:absolute;
  3607. left:0px;
  3608. top:0px;
  3609. width:153px;
  3610. height:35px;
  3611. }
  3612. #u8028 {
  3613. border-width:0px;
  3614. position:absolute;
  3615. left:459px;
  3616. top:224px;
  3617. width:153px;
  3618. height:35px;
  3619. display:flex;
  3620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3621. font-weight:400;
  3622. font-style:normal;
  3623. font-size:12px;
  3624. color:#606266;
  3625. }
  3626. #u8028 .text {
  3627. position:absolute;
  3628. align-self:center;
  3629. padding:2px 2px 2px 0px;
  3630. box-sizing:border-box;
  3631. width:100%;
  3632. }
  3633. #u8028_text {
  3634. border-width:0px;
  3635. word-wrap:break-word;
  3636. text-transform:none;
  3637. visibility:hidden;
  3638. }
  3639. #u8029_img {
  3640. border-width:0px;
  3641. position:absolute;
  3642. left:0px;
  3643. top:0px;
  3644. width:153px;
  3645. height:35px;
  3646. }
  3647. #u8029 {
  3648. border-width:0px;
  3649. position:absolute;
  3650. left:612px;
  3651. top:224px;
  3652. width:153px;
  3653. height:35px;
  3654. display:flex;
  3655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3656. font-weight:400;
  3657. font-style:normal;
  3658. font-size:12px;
  3659. color:#606266;
  3660. }
  3661. #u8029 .text {
  3662. position:absolute;
  3663. align-self:center;
  3664. padding:2px 2px 2px 0px;
  3665. box-sizing:border-box;
  3666. width:100%;
  3667. }
  3668. #u8029_text {
  3669. border-width:0px;
  3670. word-wrap:break-word;
  3671. text-transform:none;
  3672. visibility:hidden;
  3673. }
  3674. #u8030_img {
  3675. border-width:0px;
  3676. position:absolute;
  3677. left:0px;
  3678. top:0px;
  3679. width:152px;
  3680. height:35px;
  3681. }
  3682. #u8030 {
  3683. border-width:0px;
  3684. position:absolute;
  3685. left:765px;
  3686. top:224px;
  3687. width:152px;
  3688. height:35px;
  3689. display:flex;
  3690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3691. font-weight:400;
  3692. font-style:normal;
  3693. font-size:12px;
  3694. color:#606266;
  3695. }
  3696. #u8030 .text {
  3697. position:absolute;
  3698. align-self:center;
  3699. padding:2px 2px 2px 0px;
  3700. box-sizing:border-box;
  3701. width:100%;
  3702. }
  3703. #u8030_text {
  3704. border-width:0px;
  3705. word-wrap:break-word;
  3706. text-transform:none;
  3707. visibility:hidden;
  3708. }
  3709. #u8031_img {
  3710. border-width:0px;
  3711. position:absolute;
  3712. left:0px;
  3713. top:0px;
  3714. width:153px;
  3715. height:35px;
  3716. }
  3717. #u8031 {
  3718. border-width:0px;
  3719. position:absolute;
  3720. left:917px;
  3721. top:224px;
  3722. width:153px;
  3723. height:35px;
  3724. display:flex;
  3725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3726. font-weight:400;
  3727. font-style:normal;
  3728. font-size:12px;
  3729. color:#606266;
  3730. }
  3731. #u8031 .text {
  3732. position:absolute;
  3733. align-self:center;
  3734. padding:2px 2px 2px 0px;
  3735. box-sizing:border-box;
  3736. width:100%;
  3737. }
  3738. #u8031_text {
  3739. border-width:0px;
  3740. word-wrap:break-word;
  3741. text-transform:none;
  3742. visibility:hidden;
  3743. }
  3744. #u8032_img {
  3745. border-width:0px;
  3746. position:absolute;
  3747. left:0px;
  3748. top:0px;
  3749. width:150px;
  3750. height:35px;
  3751. }
  3752. #u8032 {
  3753. border-width:0px;
  3754. position:absolute;
  3755. left:1070px;
  3756. top:224px;
  3757. width:150px;
  3758. height:35px;
  3759. display:flex;
  3760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3761. font-weight:400;
  3762. font-style:normal;
  3763. font-size:12px;
  3764. color:#02A7F0;
  3765. }
  3766. #u8032 .text {
  3767. position:absolute;
  3768. align-self:center;
  3769. padding:2px 2px 2px 0px;
  3770. box-sizing:border-box;
  3771. width:100%;
  3772. }
  3773. #u8032_text {
  3774. border-width:0px;
  3775. word-wrap:break-word;
  3776. text-transform:none;
  3777. visibility:hidden;
  3778. }
  3779. #u8033_img {
  3780. border-width:0px;
  3781. position:absolute;
  3782. left:0px;
  3783. top:0px;
  3784. width:153px;
  3785. height:35px;
  3786. }
  3787. #u8033 {
  3788. border-width:0px;
  3789. position:absolute;
  3790. left:0px;
  3791. top:259px;
  3792. width:153px;
  3793. height:35px;
  3794. display:flex;
  3795. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3796. font-weight:400;
  3797. font-style:normal;
  3798. font-size:12px;
  3799. color:#606266;
  3800. }
  3801. #u8033 .text {
  3802. position:absolute;
  3803. align-self:center;
  3804. padding:2px 2px 2px 0px;
  3805. box-sizing:border-box;
  3806. width:100%;
  3807. }
  3808. #u8033_text {
  3809. border-width:0px;
  3810. word-wrap:break-word;
  3811. text-transform:none;
  3812. visibility:hidden;
  3813. }
  3814. #u8034_img {
  3815. border-width:0px;
  3816. position:absolute;
  3817. left:0px;
  3818. top:0px;
  3819. width:153px;
  3820. height:35px;
  3821. }
  3822. #u8034 {
  3823. border-width:0px;
  3824. position:absolute;
  3825. left:153px;
  3826. top:259px;
  3827. width:153px;
  3828. height:35px;
  3829. display:flex;
  3830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3831. font-weight:400;
  3832. font-style:normal;
  3833. font-size:12px;
  3834. color:#606266;
  3835. }
  3836. #u8034 .text {
  3837. position:absolute;
  3838. align-self:center;
  3839. padding:2px 2px 2px 0px;
  3840. box-sizing:border-box;
  3841. width:100%;
  3842. }
  3843. #u8034_text {
  3844. border-width:0px;
  3845. word-wrap:break-word;
  3846. text-transform:none;
  3847. visibility:hidden;
  3848. }
  3849. #u8035_img {
  3850. border-width:0px;
  3851. position:absolute;
  3852. left:0px;
  3853. top:0px;
  3854. width:153px;
  3855. height:35px;
  3856. }
  3857. #u8035 {
  3858. border-width:0px;
  3859. position:absolute;
  3860. left:306px;
  3861. top:259px;
  3862. width:153px;
  3863. height:35px;
  3864. display:flex;
  3865. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3866. font-weight:400;
  3867. font-style:normal;
  3868. font-size:12px;
  3869. color:#606266;
  3870. }
  3871. #u8035 .text {
  3872. position:absolute;
  3873. align-self:center;
  3874. padding:2px 2px 2px 0px;
  3875. box-sizing:border-box;
  3876. width:100%;
  3877. }
  3878. #u8035_text {
  3879. border-width:0px;
  3880. word-wrap:break-word;
  3881. text-transform:none;
  3882. visibility:hidden;
  3883. }
  3884. #u8036_img {
  3885. border-width:0px;
  3886. position:absolute;
  3887. left:0px;
  3888. top:0px;
  3889. width:153px;
  3890. height:35px;
  3891. }
  3892. #u8036 {
  3893. border-width:0px;
  3894. position:absolute;
  3895. left:459px;
  3896. top:259px;
  3897. width:153px;
  3898. height:35px;
  3899. display:flex;
  3900. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3901. font-weight:400;
  3902. font-style:normal;
  3903. font-size:12px;
  3904. color:#606266;
  3905. }
  3906. #u8036 .text {
  3907. position:absolute;
  3908. align-self:center;
  3909. padding:2px 2px 2px 0px;
  3910. box-sizing:border-box;
  3911. width:100%;
  3912. }
  3913. #u8036_text {
  3914. border-width:0px;
  3915. word-wrap:break-word;
  3916. text-transform:none;
  3917. visibility:hidden;
  3918. }
  3919. #u8037_img {
  3920. border-width:0px;
  3921. position:absolute;
  3922. left:0px;
  3923. top:0px;
  3924. width:153px;
  3925. height:35px;
  3926. }
  3927. #u8037 {
  3928. border-width:0px;
  3929. position:absolute;
  3930. left:612px;
  3931. top:259px;
  3932. width:153px;
  3933. height:35px;
  3934. display:flex;
  3935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3936. font-weight:400;
  3937. font-style:normal;
  3938. font-size:12px;
  3939. color:#606266;
  3940. }
  3941. #u8037 .text {
  3942. position:absolute;
  3943. align-self:center;
  3944. padding:2px 2px 2px 0px;
  3945. box-sizing:border-box;
  3946. width:100%;
  3947. }
  3948. #u8037_text {
  3949. border-width:0px;
  3950. word-wrap:break-word;
  3951. text-transform:none;
  3952. visibility:hidden;
  3953. }
  3954. #u8038_img {
  3955. border-width:0px;
  3956. position:absolute;
  3957. left:0px;
  3958. top:0px;
  3959. width:152px;
  3960. height:35px;
  3961. }
  3962. #u8038 {
  3963. border-width:0px;
  3964. position:absolute;
  3965. left:765px;
  3966. top:259px;
  3967. width:152px;
  3968. height:35px;
  3969. display:flex;
  3970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3971. font-weight:400;
  3972. font-style:normal;
  3973. font-size:12px;
  3974. color:#606266;
  3975. }
  3976. #u8038 .text {
  3977. position:absolute;
  3978. align-self:center;
  3979. padding:2px 2px 2px 0px;
  3980. box-sizing:border-box;
  3981. width:100%;
  3982. }
  3983. #u8038_text {
  3984. border-width:0px;
  3985. word-wrap:break-word;
  3986. text-transform:none;
  3987. visibility:hidden;
  3988. }
  3989. #u8039_img {
  3990. border-width:0px;
  3991. position:absolute;
  3992. left:0px;
  3993. top:0px;
  3994. width:153px;
  3995. height:35px;
  3996. }
  3997. #u8039 {
  3998. border-width:0px;
  3999. position:absolute;
  4000. left:917px;
  4001. top:259px;
  4002. width:153px;
  4003. height:35px;
  4004. display:flex;
  4005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4006. font-weight:400;
  4007. font-style:normal;
  4008. font-size:12px;
  4009. color:#606266;
  4010. }
  4011. #u8039 .text {
  4012. position:absolute;
  4013. align-self:center;
  4014. padding:2px 2px 2px 0px;
  4015. box-sizing:border-box;
  4016. width:100%;
  4017. }
  4018. #u8039_text {
  4019. border-width:0px;
  4020. word-wrap:break-word;
  4021. text-transform:none;
  4022. visibility:hidden;
  4023. }
  4024. #u8040_img {
  4025. border-width:0px;
  4026. position:absolute;
  4027. left:0px;
  4028. top:0px;
  4029. width:150px;
  4030. height:35px;
  4031. }
  4032. #u8040 {
  4033. border-width:0px;
  4034. position:absolute;
  4035. left:1070px;
  4036. top:259px;
  4037. width:150px;
  4038. height:35px;
  4039. display:flex;
  4040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4041. font-weight:400;
  4042. font-style:normal;
  4043. font-size:12px;
  4044. color:#02A7F0;
  4045. }
  4046. #u8040 .text {
  4047. position:absolute;
  4048. align-self:center;
  4049. padding:2px 2px 2px 0px;
  4050. box-sizing:border-box;
  4051. width:100%;
  4052. }
  4053. #u8040_text {
  4054. border-width:0px;
  4055. word-wrap:break-word;
  4056. text-transform:none;
  4057. visibility:hidden;
  4058. }
  4059. #u8041_img {
  4060. border-width:0px;
  4061. position:absolute;
  4062. left:0px;
  4063. top:0px;
  4064. width:153px;
  4065. height:35px;
  4066. }
  4067. #u8041 {
  4068. border-width:0px;
  4069. position:absolute;
  4070. left:0px;
  4071. top:294px;
  4072. width:153px;
  4073. height:35px;
  4074. display:flex;
  4075. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4076. font-weight:400;
  4077. font-style:normal;
  4078. font-size:12px;
  4079. color:#606266;
  4080. }
  4081. #u8041 .text {
  4082. position:absolute;
  4083. align-self:center;
  4084. padding:2px 2px 2px 0px;
  4085. box-sizing:border-box;
  4086. width:100%;
  4087. }
  4088. #u8041_text {
  4089. border-width:0px;
  4090. word-wrap:break-word;
  4091. text-transform:none;
  4092. visibility:hidden;
  4093. }
  4094. #u8042_img {
  4095. border-width:0px;
  4096. position:absolute;
  4097. left:0px;
  4098. top:0px;
  4099. width:153px;
  4100. height:35px;
  4101. }
  4102. #u8042 {
  4103. border-width:0px;
  4104. position:absolute;
  4105. left:153px;
  4106. top:294px;
  4107. width:153px;
  4108. height:35px;
  4109. display:flex;
  4110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4111. font-weight:400;
  4112. font-style:normal;
  4113. font-size:12px;
  4114. color:#606266;
  4115. }
  4116. #u8042 .text {
  4117. position:absolute;
  4118. align-self:center;
  4119. padding:2px 2px 2px 0px;
  4120. box-sizing:border-box;
  4121. width:100%;
  4122. }
  4123. #u8042_text {
  4124. border-width:0px;
  4125. word-wrap:break-word;
  4126. text-transform:none;
  4127. visibility:hidden;
  4128. }
  4129. #u8043_img {
  4130. border-width:0px;
  4131. position:absolute;
  4132. left:0px;
  4133. top:0px;
  4134. width:153px;
  4135. height:35px;
  4136. }
  4137. #u8043 {
  4138. border-width:0px;
  4139. position:absolute;
  4140. left:306px;
  4141. top:294px;
  4142. width:153px;
  4143. height:35px;
  4144. display:flex;
  4145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4146. font-weight:400;
  4147. font-style:normal;
  4148. font-size:12px;
  4149. color:#606266;
  4150. }
  4151. #u8043 .text {
  4152. position:absolute;
  4153. align-self:center;
  4154. padding:2px 2px 2px 0px;
  4155. box-sizing:border-box;
  4156. width:100%;
  4157. }
  4158. #u8043_text {
  4159. border-width:0px;
  4160. word-wrap:break-word;
  4161. text-transform:none;
  4162. visibility:hidden;
  4163. }
  4164. #u8044_img {
  4165. border-width:0px;
  4166. position:absolute;
  4167. left:0px;
  4168. top:0px;
  4169. width:153px;
  4170. height:35px;
  4171. }
  4172. #u8044 {
  4173. border-width:0px;
  4174. position:absolute;
  4175. left:459px;
  4176. top:294px;
  4177. width:153px;
  4178. height:35px;
  4179. display:flex;
  4180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4181. font-weight:400;
  4182. font-style:normal;
  4183. font-size:12px;
  4184. color:#606266;
  4185. }
  4186. #u8044 .text {
  4187. position:absolute;
  4188. align-self:center;
  4189. padding:2px 2px 2px 0px;
  4190. box-sizing:border-box;
  4191. width:100%;
  4192. }
  4193. #u8044_text {
  4194. border-width:0px;
  4195. word-wrap:break-word;
  4196. text-transform:none;
  4197. visibility:hidden;
  4198. }
  4199. #u8045_img {
  4200. border-width:0px;
  4201. position:absolute;
  4202. left:0px;
  4203. top:0px;
  4204. width:153px;
  4205. height:35px;
  4206. }
  4207. #u8045 {
  4208. border-width:0px;
  4209. position:absolute;
  4210. left:612px;
  4211. top:294px;
  4212. width:153px;
  4213. height:35px;
  4214. display:flex;
  4215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4216. font-weight:400;
  4217. font-style:normal;
  4218. font-size:12px;
  4219. color:#606266;
  4220. }
  4221. #u8045 .text {
  4222. position:absolute;
  4223. align-self:center;
  4224. padding:2px 2px 2px 0px;
  4225. box-sizing:border-box;
  4226. width:100%;
  4227. }
  4228. #u8045_text {
  4229. border-width:0px;
  4230. word-wrap:break-word;
  4231. text-transform:none;
  4232. visibility:hidden;
  4233. }
  4234. #u8046_img {
  4235. border-width:0px;
  4236. position:absolute;
  4237. left:0px;
  4238. top:0px;
  4239. width:152px;
  4240. height:35px;
  4241. }
  4242. #u8046 {
  4243. border-width:0px;
  4244. position:absolute;
  4245. left:765px;
  4246. top:294px;
  4247. width:152px;
  4248. height:35px;
  4249. display:flex;
  4250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4251. font-weight:400;
  4252. font-style:normal;
  4253. font-size:12px;
  4254. color:#606266;
  4255. }
  4256. #u8046 .text {
  4257. position:absolute;
  4258. align-self:center;
  4259. padding:2px 2px 2px 0px;
  4260. box-sizing:border-box;
  4261. width:100%;
  4262. }
  4263. #u8046_text {
  4264. border-width:0px;
  4265. word-wrap:break-word;
  4266. text-transform:none;
  4267. visibility:hidden;
  4268. }
  4269. #u8047_img {
  4270. border-width:0px;
  4271. position:absolute;
  4272. left:0px;
  4273. top:0px;
  4274. width:153px;
  4275. height:35px;
  4276. }
  4277. #u8047 {
  4278. border-width:0px;
  4279. position:absolute;
  4280. left:917px;
  4281. top:294px;
  4282. width:153px;
  4283. height:35px;
  4284. display:flex;
  4285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4286. font-weight:400;
  4287. font-style:normal;
  4288. font-size:12px;
  4289. color:#606266;
  4290. }
  4291. #u8047 .text {
  4292. position:absolute;
  4293. align-self:center;
  4294. padding:2px 2px 2px 0px;
  4295. box-sizing:border-box;
  4296. width:100%;
  4297. }
  4298. #u8047_text {
  4299. border-width:0px;
  4300. word-wrap:break-word;
  4301. text-transform:none;
  4302. visibility:hidden;
  4303. }
  4304. #u8048_img {
  4305. border-width:0px;
  4306. position:absolute;
  4307. left:0px;
  4308. top:0px;
  4309. width:150px;
  4310. height:35px;
  4311. }
  4312. #u8048 {
  4313. border-width:0px;
  4314. position:absolute;
  4315. left:1070px;
  4316. top:294px;
  4317. width:150px;
  4318. height:35px;
  4319. display:flex;
  4320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4321. font-weight:400;
  4322. font-style:normal;
  4323. font-size:12px;
  4324. color:#02A7F0;
  4325. }
  4326. #u8048 .text {
  4327. position:absolute;
  4328. align-self:center;
  4329. padding:2px 2px 2px 0px;
  4330. box-sizing:border-box;
  4331. width:100%;
  4332. }
  4333. #u8048_text {
  4334. border-width:0px;
  4335. word-wrap:break-word;
  4336. text-transform:none;
  4337. visibility:hidden;
  4338. }
  4339. #u8049_img {
  4340. border-width:0px;
  4341. position:absolute;
  4342. left:0px;
  4343. top:0px;
  4344. width:153px;
  4345. height:35px;
  4346. }
  4347. #u8049 {
  4348. border-width:0px;
  4349. position:absolute;
  4350. left:0px;
  4351. top:329px;
  4352. width:153px;
  4353. height:35px;
  4354. display:flex;
  4355. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4356. font-weight:400;
  4357. font-style:normal;
  4358. font-size:12px;
  4359. color:#606266;
  4360. }
  4361. #u8049 .text {
  4362. position:absolute;
  4363. align-self:center;
  4364. padding:2px 2px 2px 0px;
  4365. box-sizing:border-box;
  4366. width:100%;
  4367. }
  4368. #u8049_text {
  4369. border-width:0px;
  4370. word-wrap:break-word;
  4371. text-transform:none;
  4372. visibility:hidden;
  4373. }
  4374. #u8050_img {
  4375. border-width:0px;
  4376. position:absolute;
  4377. left:0px;
  4378. top:0px;
  4379. width:153px;
  4380. height:35px;
  4381. }
  4382. #u8050 {
  4383. border-width:0px;
  4384. position:absolute;
  4385. left:153px;
  4386. top:329px;
  4387. width:153px;
  4388. height:35px;
  4389. display:flex;
  4390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4391. font-weight:400;
  4392. font-style:normal;
  4393. font-size:12px;
  4394. color:#606266;
  4395. }
  4396. #u8050 .text {
  4397. position:absolute;
  4398. align-self:center;
  4399. padding:2px 2px 2px 0px;
  4400. box-sizing:border-box;
  4401. width:100%;
  4402. }
  4403. #u8050_text {
  4404. border-width:0px;
  4405. word-wrap:break-word;
  4406. text-transform:none;
  4407. visibility:hidden;
  4408. }
  4409. #u8051_img {
  4410. border-width:0px;
  4411. position:absolute;
  4412. left:0px;
  4413. top:0px;
  4414. width:153px;
  4415. height:35px;
  4416. }
  4417. #u8051 {
  4418. border-width:0px;
  4419. position:absolute;
  4420. left:306px;
  4421. top:329px;
  4422. width:153px;
  4423. height:35px;
  4424. display:flex;
  4425. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4426. font-weight:400;
  4427. font-style:normal;
  4428. font-size:12px;
  4429. color:#606266;
  4430. }
  4431. #u8051 .text {
  4432. position:absolute;
  4433. align-self:center;
  4434. padding:2px 2px 2px 0px;
  4435. box-sizing:border-box;
  4436. width:100%;
  4437. }
  4438. #u8051_text {
  4439. border-width:0px;
  4440. word-wrap:break-word;
  4441. text-transform:none;
  4442. visibility:hidden;
  4443. }
  4444. #u8052_img {
  4445. border-width:0px;
  4446. position:absolute;
  4447. left:0px;
  4448. top:0px;
  4449. width:153px;
  4450. height:35px;
  4451. }
  4452. #u8052 {
  4453. border-width:0px;
  4454. position:absolute;
  4455. left:459px;
  4456. top:329px;
  4457. width:153px;
  4458. height:35px;
  4459. display:flex;
  4460. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4461. font-weight:400;
  4462. font-style:normal;
  4463. font-size:12px;
  4464. color:#606266;
  4465. }
  4466. #u8052 .text {
  4467. position:absolute;
  4468. align-self:center;
  4469. padding:2px 2px 2px 0px;
  4470. box-sizing:border-box;
  4471. width:100%;
  4472. }
  4473. #u8052_text {
  4474. border-width:0px;
  4475. word-wrap:break-word;
  4476. text-transform:none;
  4477. visibility:hidden;
  4478. }
  4479. #u8053_img {
  4480. border-width:0px;
  4481. position:absolute;
  4482. left:0px;
  4483. top:0px;
  4484. width:153px;
  4485. height:35px;
  4486. }
  4487. #u8053 {
  4488. border-width:0px;
  4489. position:absolute;
  4490. left:612px;
  4491. top:329px;
  4492. width:153px;
  4493. height:35px;
  4494. display:flex;
  4495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4496. font-weight:400;
  4497. font-style:normal;
  4498. font-size:12px;
  4499. color:#606266;
  4500. }
  4501. #u8053 .text {
  4502. position:absolute;
  4503. align-self:center;
  4504. padding:2px 2px 2px 0px;
  4505. box-sizing:border-box;
  4506. width:100%;
  4507. }
  4508. #u8053_text {
  4509. border-width:0px;
  4510. word-wrap:break-word;
  4511. text-transform:none;
  4512. visibility:hidden;
  4513. }
  4514. #u8054_img {
  4515. border-width:0px;
  4516. position:absolute;
  4517. left:0px;
  4518. top:0px;
  4519. width:152px;
  4520. height:35px;
  4521. }
  4522. #u8054 {
  4523. border-width:0px;
  4524. position:absolute;
  4525. left:765px;
  4526. top:329px;
  4527. width:152px;
  4528. height:35px;
  4529. display:flex;
  4530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4531. font-weight:400;
  4532. font-style:normal;
  4533. font-size:12px;
  4534. color:#606266;
  4535. }
  4536. #u8054 .text {
  4537. position:absolute;
  4538. align-self:center;
  4539. padding:2px 2px 2px 0px;
  4540. box-sizing:border-box;
  4541. width:100%;
  4542. }
  4543. #u8054_text {
  4544. border-width:0px;
  4545. word-wrap:break-word;
  4546. text-transform:none;
  4547. visibility:hidden;
  4548. }
  4549. #u8055_img {
  4550. border-width:0px;
  4551. position:absolute;
  4552. left:0px;
  4553. top:0px;
  4554. width:153px;
  4555. height:35px;
  4556. }
  4557. #u8055 {
  4558. border-width:0px;
  4559. position:absolute;
  4560. left:917px;
  4561. top:329px;
  4562. width:153px;
  4563. height:35px;
  4564. display:flex;
  4565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4566. font-weight:400;
  4567. font-style:normal;
  4568. font-size:12px;
  4569. color:#606266;
  4570. }
  4571. #u8055 .text {
  4572. position:absolute;
  4573. align-self:center;
  4574. padding:2px 2px 2px 0px;
  4575. box-sizing:border-box;
  4576. width:100%;
  4577. }
  4578. #u8055_text {
  4579. border-width:0px;
  4580. word-wrap:break-word;
  4581. text-transform:none;
  4582. visibility:hidden;
  4583. }
  4584. #u8056_img {
  4585. border-width:0px;
  4586. position:absolute;
  4587. left:0px;
  4588. top:0px;
  4589. width:150px;
  4590. height:35px;
  4591. }
  4592. #u8056 {
  4593. border-width:0px;
  4594. position:absolute;
  4595. left:1070px;
  4596. top:329px;
  4597. width:150px;
  4598. height:35px;
  4599. display:flex;
  4600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4601. font-weight:400;
  4602. font-style:normal;
  4603. font-size:12px;
  4604. color:#02A7F0;
  4605. }
  4606. #u8056 .text {
  4607. position:absolute;
  4608. align-self:center;
  4609. padding:2px 2px 2px 0px;
  4610. box-sizing:border-box;
  4611. width:100%;
  4612. }
  4613. #u8056_text {
  4614. border-width:0px;
  4615. word-wrap:break-word;
  4616. text-transform:none;
  4617. visibility:hidden;
  4618. }
  4619. #u8057_div {
  4620. border-width:0px;
  4621. position:absolute;
  4622. left:0px;
  4623. top:0px;
  4624. width:59px;
  4625. height:30px;
  4626. background:inherit;
  4627. background-color:rgba(41, 143, 255, 1);
  4628. border:none;
  4629. border-radius:4px;
  4630. -moz-box-shadow:none;
  4631. -webkit-box-shadow:none;
  4632. box-shadow:none;
  4633. font-family:'Microsoft YaHei', sans-serif;
  4634. font-weight:400;
  4635. font-style:normal;
  4636. font-size:14px;
  4637. color:#FFFFFF;
  4638. }
  4639. #u8057 {
  4640. border-width:0px;
  4641. position:absolute;
  4642. left:651px;
  4643. top:110px;
  4644. width:59px;
  4645. height:30px;
  4646. display:flex;
  4647. font-family:'Microsoft YaHei', sans-serif;
  4648. font-weight:400;
  4649. font-style:normal;
  4650. font-size:14px;
  4651. color:#FFFFFF;
  4652. }
  4653. #u8057 .text {
  4654. position:absolute;
  4655. align-self:center;
  4656. padding:5px 15px 5px 15px;
  4657. box-sizing:border-box;
  4658. width:100%;
  4659. }
  4660. #u8057_text {
  4661. border-width:0px;
  4662. white-space:nowrap;
  4663. text-transform:none;
  4664. }
  4665. #u8058_div {
  4666. border-width:0px;
  4667. position:absolute;
  4668. left:0px;
  4669. top:0px;
  4670. width:55px;
  4671. height:30px;
  4672. background:inherit;
  4673. background-color:rgba(255, 255, 255, 1);
  4674. box-sizing:border-box;
  4675. border-width:1px;
  4676. border-style:solid;
  4677. border-color:rgba(170, 170, 170, 1);
  4678. border-radius:4px;
  4679. -moz-box-shadow:none;
  4680. -webkit-box-shadow:none;
  4681. box-shadow:none;
  4682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4683. font-weight:400;
  4684. font-style:normal;
  4685. font-size:12px;
  4686. color:#555555;
  4687. }
  4688. #u8058 {
  4689. border-width:0px;
  4690. position:absolute;
  4691. left:720px;
  4692. top:110px;
  4693. width:55px;
  4694. height:30px;
  4695. display:flex;
  4696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4697. font-weight:400;
  4698. font-style:normal;
  4699. font-size:12px;
  4700. color:#555555;
  4701. }
  4702. #u8058 .text {
  4703. position:absolute;
  4704. align-self:center;
  4705. padding:5px 15px 5px 15px;
  4706. box-sizing:border-box;
  4707. width:100%;
  4708. }
  4709. #u8058_text {
  4710. border-width:0px;
  4711. white-space:nowrap;
  4712. text-transform:none;
  4713. }
  4714. #u8059 {
  4715. border-width:0px;
  4716. position:absolute;
  4717. left:0px;
  4718. top:0px;
  4719. width:0px;
  4720. height:0px;
  4721. }
  4722. #u8060_div {
  4723. border-width:0px;
  4724. position:absolute;
  4725. left:0px;
  4726. top:0px;
  4727. width:140px;
  4728. height:30px;
  4729. background:inherit;
  4730. background-color:rgba(255, 255, 255, 1);
  4731. box-sizing:border-box;
  4732. border-width:1px;
  4733. border-style:solid;
  4734. border-color:rgba(201, 201, 201, 1);
  4735. border-radius:4px;
  4736. -moz-box-shadow:none;
  4737. -webkit-box-shadow:none;
  4738. box-shadow:none;
  4739. font-family:'Microsoft YaHei', sans-serif;
  4740. font-weight:400;
  4741. font-style:normal;
  4742. font-size:14px;
  4743. color:#CCCCCC;
  4744. text-align:left;
  4745. }
  4746. #u8060 {
  4747. border-width:0px;
  4748. position:absolute;
  4749. left:501px;
  4750. top:110px;
  4751. width:140px;
  4752. height:30px;
  4753. display:flex;
  4754. font-family:'Microsoft YaHei', sans-serif;
  4755. font-weight:400;
  4756. font-style:normal;
  4757. font-size:14px;
  4758. color:#CCCCCC;
  4759. text-align:left;
  4760. }
  4761. #u8060 .text {
  4762. position:absolute;
  4763. align-self:center;
  4764. padding:2px 8px 2px 8px;
  4765. box-sizing:border-box;
  4766. width:100%;
  4767. }
  4768. #u8060_text {
  4769. border-width:0px;
  4770. word-wrap:break-word;
  4771. text-transform:none;
  4772. visibility:hidden;
  4773. }
  4774. #u8061_input {
  4775. position:absolute;
  4776. left:0px;
  4777. top:0px;
  4778. width:127px;
  4779. height:25px;
  4780. padding:2px 2px 2px 2px;
  4781. font-family:'Microsoft YaHei', sans-serif;
  4782. font-weight:400;
  4783. font-style:normal;
  4784. font-size:10px;
  4785. letter-spacing:normal;
  4786. color:#000000;
  4787. vertical-align:none;
  4788. text-align:left;
  4789. text-transform:none;
  4790. background-color:transparent;
  4791. border-color:transparent;
  4792. }
  4793. #u8061_input.disabled {
  4794. position:absolute;
  4795. left:0px;
  4796. top:0px;
  4797. width:127px;
  4798. height:25px;
  4799. padding:2px 2px 2px 2px;
  4800. font-family:'Microsoft YaHei', sans-serif;
  4801. font-weight:400;
  4802. font-style:normal;
  4803. font-size:10px;
  4804. letter-spacing:normal;
  4805. color:#000000;
  4806. vertical-align:none;
  4807. text-align:left;
  4808. text-transform:none;
  4809. background-color:transparent;
  4810. border-color:transparent;
  4811. }
  4812. #u8061_div {
  4813. border-width:0px;
  4814. position:absolute;
  4815. left:0px;
  4816. top:0px;
  4817. width:127px;
  4818. height:25px;
  4819. background:inherit;
  4820. background-color:rgba(255, 255, 255, 1);
  4821. border:none;
  4822. border-radius:0px;
  4823. -moz-box-shadow:none;
  4824. -webkit-box-shadow:none;
  4825. box-shadow:none;
  4826. font-family:'Microsoft YaHei', sans-serif;
  4827. font-weight:400;
  4828. font-style:normal;
  4829. font-size:10px;
  4830. }
  4831. #u8061 {
  4832. border-width:0px;
  4833. position:absolute;
  4834. left:509px;
  4835. top:111px;
  4836. width:127px;
  4837. height:25px;
  4838. display:flex;
  4839. font-family:'Microsoft YaHei', sans-serif;
  4840. font-weight:400;
  4841. font-style:normal;
  4842. font-size:10px;
  4843. }
  4844. #u8061 .text {
  4845. position:absolute;
  4846. align-self:center;
  4847. padding:2px 2px 2px 2px;
  4848. box-sizing:border-box;
  4849. width:100%;
  4850. }
  4851. #u8061_div.disabled {
  4852. border-width:0px;
  4853. position:absolute;
  4854. left:0px;
  4855. top:0px;
  4856. width:127px;
  4857. height:25px;
  4858. background:inherit;
  4859. background-color:rgba(240, 240, 240, 1);
  4860. border:none;
  4861. border-radius:0px;
  4862. -moz-box-shadow:none;
  4863. -webkit-box-shadow:none;
  4864. box-shadow:none;
  4865. font-family:'Microsoft YaHei', sans-serif;
  4866. font-weight:400;
  4867. font-style:normal;
  4868. font-size:10px;
  4869. }
  4870. #u8061.disabled {
  4871. }
  4872. #u8062 {
  4873. border-width:0px;
  4874. position:absolute;
  4875. left:0px;
  4876. top:0px;
  4877. width:0px;
  4878. height:0px;
  4879. }
  4880. #u8063_div {
  4881. border-width:0px;
  4882. position:absolute;
  4883. left:0px;
  4884. top:0px;
  4885. width:140px;
  4886. height:30px;
  4887. background:inherit;
  4888. background-color:rgba(255, 255, 255, 1);
  4889. box-sizing:border-box;
  4890. border-width:1px;
  4891. border-style:solid;
  4892. border-color:rgba(215, 215, 215, 1);
  4893. border-radius:4px;
  4894. -moz-box-shadow:none;
  4895. -webkit-box-shadow:none;
  4896. box-shadow:none;
  4897. font-size:11px;
  4898. }
  4899. #u8063 {
  4900. border-width:0px;
  4901. position:absolute;
  4902. left:351px;
  4903. top:110px;
  4904. width:140px;
  4905. height:30px;
  4906. display:flex;
  4907. font-size:11px;
  4908. }
  4909. #u8063 .text {
  4910. position:absolute;
  4911. align-self:center;
  4912. padding:2px 2px 2px 2px;
  4913. box-sizing:border-box;
  4914. width:100%;
  4915. }
  4916. #u8063_text {
  4917. border-width:0px;
  4918. word-wrap:break-word;
  4919. text-transform:none;
  4920. visibility:hidden;
  4921. }
  4922. #u8064_input {
  4923. position:absolute;
  4924. left:0px;
  4925. top:0px;
  4926. width:120px;
  4927. height:23px;
  4928. padding:2px 2px 2px 2px;
  4929. font-family:'ArialMT', 'Arial', sans-serif;
  4930. font-weight:400;
  4931. font-style:normal;
  4932. font-size:11px;
  4933. letter-spacing:normal;
  4934. color:#AAAAAA;
  4935. vertical-align:none;
  4936. text-align:left;
  4937. text-transform:none;
  4938. background-color:transparent;
  4939. border-color:transparent;
  4940. }
  4941. #u8064_input.disabled {
  4942. position:absolute;
  4943. left:0px;
  4944. top:0px;
  4945. width:120px;
  4946. height:23px;
  4947. padding:2px 2px 2px 2px;
  4948. font-family:'ArialMT', 'Arial', sans-serif;
  4949. font-weight:400;
  4950. font-style:normal;
  4951. font-size:11px;
  4952. letter-spacing:normal;
  4953. color:#AAAAAA;
  4954. vertical-align:none;
  4955. text-align:left;
  4956. text-transform:none;
  4957. background-color:transparent;
  4958. border-color:transparent;
  4959. }
  4960. #u8064_div {
  4961. border-width:0px;
  4962. position:absolute;
  4963. left:0px;
  4964. top:0px;
  4965. width:120px;
  4966. height:23px;
  4967. background:inherit;
  4968. background-color:rgba(255, 255, 255, 1);
  4969. border:none;
  4970. border-radius:0px;
  4971. -moz-box-shadow:none;
  4972. -webkit-box-shadow:none;
  4973. box-shadow:none;
  4974. font-size:11px;
  4975. color:#AAAAAA;
  4976. }
  4977. #u8064 {
  4978. border-width:0px;
  4979. position:absolute;
  4980. left:358px;
  4981. top:112px;
  4982. width:120px;
  4983. height:23px;
  4984. display:flex;
  4985. font-size:11px;
  4986. color:#AAAAAA;
  4987. }
  4988. #u8064 .text {
  4989. position:absolute;
  4990. align-self:flex-start;
  4991. padding:2px 2px 2px 2px;
  4992. box-sizing:border-box;
  4993. width:100%;
  4994. }
  4995. #u8064_div.disabled {
  4996. border-width:0px;
  4997. position:absolute;
  4998. left:0px;
  4999. top:0px;
  5000. width:120px;
  5001. height:23px;
  5002. background:inherit;
  5003. background-color:rgba(240, 240, 240, 1);
  5004. border:none;
  5005. border-radius:0px;
  5006. -moz-box-shadow:none;
  5007. -webkit-box-shadow:none;
  5008. box-shadow:none;
  5009. font-size:11px;
  5010. color:#AAAAAA;
  5011. }
  5012. #u8064.disabled {
  5013. }
  5014. .u8064_input_option {
  5015. font-size:11px;
  5016. }
  5017. #u8065_img {
  5018. border-width:0px;
  5019. position:absolute;
  5020. left:0px;
  5021. top:0px;
  5022. width:50px;
  5023. height:31px;
  5024. }
  5025. #u8065 {
  5026. border-width:0px;
  5027. position:absolute;
  5028. left:1012px;
  5029. top:254px;
  5030. width:50px;
  5031. height:31px;
  5032. display:flex;
  5033. }
  5034. #u8065 .text {
  5035. position:absolute;
  5036. align-self:center;
  5037. padding:2px 2px 2px 2px;
  5038. box-sizing:border-box;
  5039. width:100%;
  5040. }
  5041. #u8065_text {
  5042. border-width:0px;
  5043. word-wrap:break-word;
  5044. text-transform:none;
  5045. visibility:hidden;
  5046. }
  5047. #u8066_img {
  5048. border-width:0px;
  5049. position:absolute;
  5050. left:0px;
  5051. top:0px;
  5052. width:50px;
  5053. height:31px;
  5054. }
  5055. #u8066 {
  5056. border-width:0px;
  5057. position:absolute;
  5058. left:1012px;
  5059. top:292px;
  5060. width:50px;
  5061. height:31px;
  5062. display:flex;
  5063. }
  5064. #u8066 .text {
  5065. position:absolute;
  5066. align-self:center;
  5067. padding:2px 2px 2px 2px;
  5068. box-sizing:border-box;
  5069. width:100%;
  5070. }
  5071. #u8066_text {
  5072. border-width:0px;
  5073. word-wrap:break-word;
  5074. text-transform:none;
  5075. visibility:hidden;
  5076. }
  5077. #u8067_div {
  5078. border-width:0px;
  5079. position:absolute;
  5080. left:0px;
  5081. top:0px;
  5082. width:984px;
  5083. height:114px;
  5084. background:inherit;
  5085. background-color:rgba(255, 255, 255, 1);
  5086. box-sizing:border-box;
  5087. border-width:1px;
  5088. border-style:solid;
  5089. border-color:rgba(217, 0, 27, 1);
  5090. border-radius:0px;
  5091. -moz-box-shadow:none;
  5092. -webkit-box-shadow:none;
  5093. box-shadow:none;
  5094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5095. font-weight:400;
  5096. font-style:normal;
  5097. font-size:18px;
  5098. color:#D9001B;
  5099. line-height:40px;
  5100. }
  5101. #u8067 {
  5102. border-width:0px;
  5103. position:absolute;
  5104. left:1754px;
  5105. top:81px;
  5106. width:984px;
  5107. height:114px;
  5108. display:flex;
  5109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5110. font-weight:400;
  5111. font-style:normal;
  5112. font-size:18px;
  5113. color:#D9001B;
  5114. line-height:40px;
  5115. }
  5116. #u8067 .text {
  5117. position:absolute;
  5118. align-self:flex-start;
  5119. padding:10px 10px 10px 10px;
  5120. box-sizing:border-box;
  5121. width:100%;
  5122. }
  5123. #u8067_text {
  5124. border-width:0px;
  5125. word-wrap:break-word;
  5126. text-transform:none;
  5127. }
  5128. #u8068_div {
  5129. border-width:0px;
  5130. position:absolute;
  5131. left:0px;
  5132. top:0px;
  5133. width:1000px;
  5134. height:40px;
  5135. background:inherit;
  5136. background-color:rgba(217, 0, 27, 1);
  5137. border:none;
  5138. border-radius:0px;
  5139. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  5140. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  5141. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  5142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5143. font-weight:400;
  5144. font-style:normal;
  5145. font-size:14px;
  5146. color:#FFFFFF;
  5147. line-height:20px;
  5148. }
  5149. #u8068 {
  5150. border-width:0px;
  5151. position:absolute;
  5152. left:1754px;
  5153. top:584px;
  5154. width:1000px;
  5155. height:40px;
  5156. display:flex;
  5157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5158. font-weight:400;
  5159. font-style:normal;
  5160. font-size:14px;
  5161. color:#FFFFFF;
  5162. line-height:20px;
  5163. }
  5164. #u8068 .text {
  5165. position:absolute;
  5166. align-self:flex-start;
  5167. padding:10px 10px 10px 10px;
  5168. box-sizing:border-box;
  5169. width:100%;
  5170. }
  5171. #u8068_text {
  5172. border-width:0px;
  5173. word-wrap:break-word;
  5174. text-transform:none;
  5175. }
  5176. #u8069 {
  5177. border-width:0px;
  5178. position:absolute;
  5179. left:1754px;
  5180. top:634px;
  5181. width:960px;
  5182. height:240px;
  5183. }
  5184. #u8070_img {
  5185. border-width:0px;
  5186. position:absolute;
  5187. left:0px;
  5188. top:0px;
  5189. width:160px;
  5190. height:40px;
  5191. }
  5192. #u8070 {
  5193. border-width:0px;
  5194. position:absolute;
  5195. left:0px;
  5196. top:0px;
  5197. width:160px;
  5198. height:40px;
  5199. display:flex;
  5200. font-size:14px;
  5201. color:#FFFFFF;
  5202. text-align:left;
  5203. line-height:30px;
  5204. }
  5205. #u8070 .text {
  5206. position:absolute;
  5207. align-self:center;
  5208. padding:5px 10px 5px 10px;
  5209. box-sizing:border-box;
  5210. width:100%;
  5211. }
  5212. #u8070_text {
  5213. border-width:0px;
  5214. word-wrap:break-word;
  5215. text-transform:none;
  5216. }
  5217. #u8071_img {
  5218. border-width:0px;
  5219. position:absolute;
  5220. left:0px;
  5221. top:0px;
  5222. width:400px;
  5223. height:40px;
  5224. }
  5225. #u8071 {
  5226. border-width:0px;
  5227. position:absolute;
  5228. left:160px;
  5229. top:0px;
  5230. width:400px;
  5231. height:40px;
  5232. display:flex;
  5233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5234. font-weight:400;
  5235. font-style:normal;
  5236. font-size:14px;
  5237. color:#FFFFFF;
  5238. text-align:left;
  5239. line-height:30px;
  5240. }
  5241. #u8071 .text {
  5242. position:absolute;
  5243. align-self:center;
  5244. padding:5px 10px 5px 10px;
  5245. box-sizing:border-box;
  5246. width:100%;
  5247. }
  5248. #u8071_text {
  5249. border-width:0px;
  5250. word-wrap:break-word;
  5251. text-transform:none;
  5252. }
  5253. #u8072_img {
  5254. border-width:0px;
  5255. position:absolute;
  5256. left:0px;
  5257. top:0px;
  5258. width:400px;
  5259. height:40px;
  5260. }
  5261. #u8072 {
  5262. border-width:0px;
  5263. position:absolute;
  5264. left:560px;
  5265. top:0px;
  5266. width:400px;
  5267. height:40px;
  5268. display:flex;
  5269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5270. font-weight:400;
  5271. font-style:normal;
  5272. font-size:14px;
  5273. color:#FFFFFF;
  5274. text-align:left;
  5275. line-height:30px;
  5276. }
  5277. #u8072 .text {
  5278. position:absolute;
  5279. align-self:center;
  5280. padding:5px 10px 5px 10px;
  5281. box-sizing:border-box;
  5282. width:100%;
  5283. }
  5284. #u8072_text {
  5285. border-width:0px;
  5286. word-wrap:break-word;
  5287. text-transform:none;
  5288. }
  5289. #u8073_img {
  5290. border-width:0px;
  5291. position:absolute;
  5292. left:0px;
  5293. top:0px;
  5294. width:160px;
  5295. height:40px;
  5296. }
  5297. #u8073 {
  5298. border-width:0px;
  5299. position:absolute;
  5300. left:0px;
  5301. top:40px;
  5302. width:160px;
  5303. height:40px;
  5304. display:flex;
  5305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5306. font-weight:400;
  5307. font-style:normal;
  5308. font-size:14px;
  5309. text-align:left;
  5310. line-height:30px;
  5311. }
  5312. #u8073 .text {
  5313. position:absolute;
  5314. align-self:center;
  5315. padding:5px 10px 5px 10px;
  5316. box-sizing:border-box;
  5317. width:100%;
  5318. }
  5319. #u8073_text {
  5320. border-width:0px;
  5321. word-wrap:break-word;
  5322. text-transform:none;
  5323. }
  5324. #u8074_img {
  5325. border-width:0px;
  5326. position:absolute;
  5327. left:0px;
  5328. top:0px;
  5329. width:400px;
  5330. height:40px;
  5331. }
  5332. #u8074 {
  5333. border-width:0px;
  5334. position:absolute;
  5335. left:160px;
  5336. top:40px;
  5337. width:400px;
  5338. height:40px;
  5339. display:flex;
  5340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5341. font-weight:400;
  5342. font-style:normal;
  5343. font-size:14px;
  5344. text-align:left;
  5345. line-height:30px;
  5346. }
  5347. #u8074 .text {
  5348. position:absolute;
  5349. align-self:center;
  5350. padding:5px 10px 5px 10px;
  5351. box-sizing:border-box;
  5352. width:100%;
  5353. }
  5354. #u8074_text {
  5355. border-width:0px;
  5356. word-wrap:break-word;
  5357. text-transform:none;
  5358. }
  5359. #u8075_img {
  5360. border-width:0px;
  5361. position:absolute;
  5362. left:0px;
  5363. top:0px;
  5364. width:400px;
  5365. height:40px;
  5366. }
  5367. #u8075 {
  5368. border-width:0px;
  5369. position:absolute;
  5370. left:560px;
  5371. top:40px;
  5372. width:400px;
  5373. height:40px;
  5374. display:flex;
  5375. font-size:14px;
  5376. text-align:left;
  5377. line-height:30px;
  5378. }
  5379. #u8075 .text {
  5380. position:absolute;
  5381. align-self:center;
  5382. padding:5px 10px 5px 10px;
  5383. box-sizing:border-box;
  5384. width:100%;
  5385. }
  5386. #u8075_text {
  5387. border-width:0px;
  5388. word-wrap:break-word;
  5389. text-transform:none;
  5390. visibility:hidden;
  5391. }
  5392. #u8076_img {
  5393. border-width:0px;
  5394. position:absolute;
  5395. left:0px;
  5396. top:0px;
  5397. width:160px;
  5398. height:40px;
  5399. }
  5400. #u8076 {
  5401. border-width:0px;
  5402. position:absolute;
  5403. left:0px;
  5404. top:80px;
  5405. width:160px;
  5406. height:40px;
  5407. display:flex;
  5408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5409. font-weight:400;
  5410. font-style:normal;
  5411. font-size:14px;
  5412. text-align:left;
  5413. line-height:30px;
  5414. }
  5415. #u8076 .text {
  5416. position:absolute;
  5417. align-self:center;
  5418. padding:5px 10px 5px 10px;
  5419. box-sizing:border-box;
  5420. width:100%;
  5421. }
  5422. #u8076_text {
  5423. border-width:0px;
  5424. word-wrap:break-word;
  5425. text-transform:none;
  5426. }
  5427. #u8077_img {
  5428. border-width:0px;
  5429. position:absolute;
  5430. left:0px;
  5431. top:0px;
  5432. width:400px;
  5433. height:40px;
  5434. }
  5435. #u8077 {
  5436. border-width:0px;
  5437. position:absolute;
  5438. left:160px;
  5439. top:80px;
  5440. width:400px;
  5441. height:40px;
  5442. display:flex;
  5443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5444. font-weight:400;
  5445. font-style:normal;
  5446. font-size:14px;
  5447. text-align:left;
  5448. line-height:30px;
  5449. }
  5450. #u8077 .text {
  5451. position:absolute;
  5452. align-self:center;
  5453. padding:5px 10px 5px 10px;
  5454. box-sizing:border-box;
  5455. width:100%;
  5456. }
  5457. #u8077_text {
  5458. border-width:0px;
  5459. word-wrap:break-word;
  5460. text-transform:none;
  5461. }
  5462. #u8078_img {
  5463. border-width:0px;
  5464. position:absolute;
  5465. left:0px;
  5466. top:0px;
  5467. width:400px;
  5468. height:40px;
  5469. }
  5470. #u8078 {
  5471. border-width:0px;
  5472. position:absolute;
  5473. left:560px;
  5474. top:80px;
  5475. width:400px;
  5476. height:40px;
  5477. display:flex;
  5478. font-size:14px;
  5479. text-align:left;
  5480. line-height:30px;
  5481. }
  5482. #u8078 .text {
  5483. position:absolute;
  5484. align-self:center;
  5485. padding:5px 10px 5px 10px;
  5486. box-sizing:border-box;
  5487. width:100%;
  5488. }
  5489. #u8078_text {
  5490. border-width:0px;
  5491. word-wrap:break-word;
  5492. text-transform:none;
  5493. visibility:hidden;
  5494. }
  5495. #u8079_img {
  5496. border-width:0px;
  5497. position:absolute;
  5498. left:0px;
  5499. top:0px;
  5500. width:160px;
  5501. height:40px;
  5502. }
  5503. #u8079 {
  5504. border-width:0px;
  5505. position:absolute;
  5506. left:0px;
  5507. top:120px;
  5508. width:160px;
  5509. height:40px;
  5510. display:flex;
  5511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5512. font-weight:400;
  5513. font-style:normal;
  5514. font-size:14px;
  5515. text-align:left;
  5516. line-height:30px;
  5517. }
  5518. #u8079 .text {
  5519. position:absolute;
  5520. align-self:center;
  5521. padding:5px 10px 5px 10px;
  5522. box-sizing:border-box;
  5523. width:100%;
  5524. }
  5525. #u8079_text {
  5526. border-width:0px;
  5527. word-wrap:break-word;
  5528. text-transform:none;
  5529. }
  5530. #u8080_img {
  5531. border-width:0px;
  5532. position:absolute;
  5533. left:0px;
  5534. top:0px;
  5535. width:400px;
  5536. height:40px;
  5537. }
  5538. #u8080 {
  5539. border-width:0px;
  5540. position:absolute;
  5541. left:160px;
  5542. top:120px;
  5543. width:400px;
  5544. height:40px;
  5545. display:flex;
  5546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5547. font-weight:400;
  5548. font-style:normal;
  5549. font-size:12px;
  5550. text-align:left;
  5551. line-height:20px;
  5552. }
  5553. #u8080 .text {
  5554. position:absolute;
  5555. align-self:center;
  5556. padding:5px 10px 5px 10px;
  5557. box-sizing:border-box;
  5558. width:100%;
  5559. }
  5560. #u8080_text {
  5561. border-width:0px;
  5562. word-wrap:break-word;
  5563. text-transform:none;
  5564. }
  5565. #u8081_img {
  5566. border-width:0px;
  5567. position:absolute;
  5568. left:0px;
  5569. top:0px;
  5570. width:400px;
  5571. height:40px;
  5572. }
  5573. #u8081 {
  5574. border-width:0px;
  5575. position:absolute;
  5576. left:560px;
  5577. top:120px;
  5578. width:400px;
  5579. height:40px;
  5580. display:flex;
  5581. font-size:14px;
  5582. text-align:left;
  5583. line-height:30px;
  5584. }
  5585. #u8081 .text {
  5586. position:absolute;
  5587. align-self:center;
  5588. padding:5px 10px 5px 10px;
  5589. box-sizing:border-box;
  5590. width:100%;
  5591. }
  5592. #u8081_text {
  5593. border-width:0px;
  5594. word-wrap:break-word;
  5595. text-transform:none;
  5596. visibility:hidden;
  5597. }
  5598. #u8082_img {
  5599. border-width:0px;
  5600. position:absolute;
  5601. left:0px;
  5602. top:0px;
  5603. width:160px;
  5604. height:40px;
  5605. }
  5606. #u8082 {
  5607. border-width:0px;
  5608. position:absolute;
  5609. left:0px;
  5610. top:160px;
  5611. width:160px;
  5612. height:40px;
  5613. display:flex;
  5614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5615. font-weight:400;
  5616. font-style:normal;
  5617. font-size:14px;
  5618. text-align:left;
  5619. line-height:30px;
  5620. }
  5621. #u8082 .text {
  5622. position:absolute;
  5623. align-self:center;
  5624. padding:5px 10px 5px 10px;
  5625. box-sizing:border-box;
  5626. width:100%;
  5627. }
  5628. #u8082_text {
  5629. border-width:0px;
  5630. word-wrap:break-word;
  5631. text-transform:none;
  5632. }
  5633. #u8083_img {
  5634. border-width:0px;
  5635. position:absolute;
  5636. left:0px;
  5637. top:0px;
  5638. width:400px;
  5639. height:40px;
  5640. }
  5641. #u8083 {
  5642. border-width:0px;
  5643. position:absolute;
  5644. left:160px;
  5645. top:160px;
  5646. width:400px;
  5647. height:40px;
  5648. display:flex;
  5649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5650. font-weight:400;
  5651. font-style:normal;
  5652. font-size:12px;
  5653. text-align:left;
  5654. line-height:20px;
  5655. }
  5656. #u8083 .text {
  5657. position:absolute;
  5658. align-self:center;
  5659. padding:5px 10px 5px 10px;
  5660. box-sizing:border-box;
  5661. width:100%;
  5662. }
  5663. #u8083_text {
  5664. border-width:0px;
  5665. word-wrap:break-word;
  5666. text-transform:none;
  5667. }
  5668. #u8084_img {
  5669. border-width:0px;
  5670. position:absolute;
  5671. left:0px;
  5672. top:0px;
  5673. width:400px;
  5674. height:40px;
  5675. }
  5676. #u8084 {
  5677. border-width:0px;
  5678. position:absolute;
  5679. left:560px;
  5680. top:160px;
  5681. width:400px;
  5682. height:40px;
  5683. display:flex;
  5684. font-size:14px;
  5685. text-align:left;
  5686. line-height:30px;
  5687. }
  5688. #u8084 .text {
  5689. position:absolute;
  5690. align-self:center;
  5691. padding:5px 10px 5px 10px;
  5692. box-sizing:border-box;
  5693. width:100%;
  5694. }
  5695. #u8084_text {
  5696. border-width:0px;
  5697. word-wrap:break-word;
  5698. text-transform:none;
  5699. visibility:hidden;
  5700. }
  5701. #u8085_img {
  5702. border-width:0px;
  5703. position:absolute;
  5704. left:0px;
  5705. top:0px;
  5706. width:160px;
  5707. height:40px;
  5708. }
  5709. #u8085 {
  5710. border-width:0px;
  5711. position:absolute;
  5712. left:0px;
  5713. top:200px;
  5714. width:160px;
  5715. height:40px;
  5716. display:flex;
  5717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5718. font-weight:400;
  5719. font-style:normal;
  5720. font-size:14px;
  5721. text-align:left;
  5722. line-height:30px;
  5723. }
  5724. #u8085 .text {
  5725. position:absolute;
  5726. align-self:center;
  5727. padding:5px 10px 5px 10px;
  5728. box-sizing:border-box;
  5729. width:100%;
  5730. }
  5731. #u8085_text {
  5732. border-width:0px;
  5733. word-wrap:break-word;
  5734. text-transform:none;
  5735. }
  5736. #u8086_img {
  5737. border-width:0px;
  5738. position:absolute;
  5739. left:0px;
  5740. top:0px;
  5741. width:400px;
  5742. height:40px;
  5743. }
  5744. #u8086 {
  5745. border-width:0px;
  5746. position:absolute;
  5747. left:160px;
  5748. top:200px;
  5749. width:400px;
  5750. height:40px;
  5751. display:flex;
  5752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5753. font-weight:400;
  5754. font-style:normal;
  5755. font-size:12px;
  5756. text-align:left;
  5757. line-height:20px;
  5758. }
  5759. #u8086 .text {
  5760. position:absolute;
  5761. align-self:center;
  5762. padding:5px 10px 5px 10px;
  5763. box-sizing:border-box;
  5764. width:100%;
  5765. }
  5766. #u8086_text {
  5767. border-width:0px;
  5768. word-wrap:break-word;
  5769. text-transform:none;
  5770. }
  5771. #u8087_img {
  5772. border-width:0px;
  5773. position:absolute;
  5774. left:0px;
  5775. top:0px;
  5776. width:400px;
  5777. height:40px;
  5778. }
  5779. #u8087 {
  5780. border-width:0px;
  5781. position:absolute;
  5782. left:560px;
  5783. top:200px;
  5784. width:400px;
  5785. height:40px;
  5786. display:flex;
  5787. font-size:14px;
  5788. text-align:left;
  5789. line-height:30px;
  5790. }
  5791. #u8087 .text {
  5792. position:absolute;
  5793. align-self:center;
  5794. padding:5px 10px 5px 10px;
  5795. box-sizing:border-box;
  5796. width:100%;
  5797. }
  5798. #u8087_text {
  5799. border-width:0px;
  5800. word-wrap:break-word;
  5801. text-transform:none;
  5802. visibility:hidden;
  5803. }
  5804. #u8088_div {
  5805. border-width:0px;
  5806. position:absolute;
  5807. left:0px;
  5808. top:0px;
  5809. width:1000px;
  5810. height:40px;
  5811. background:inherit;
  5812. background-color:rgba(217, 0, 27, 1);
  5813. border:none;
  5814. border-radius:0px;
  5815. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  5816. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  5817. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  5818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5819. font-weight:400;
  5820. font-style:normal;
  5821. font-size:14px;
  5822. color:#FFFFFF;
  5823. line-height:20px;
  5824. }
  5825. #u8088 {
  5826. border-width:0px;
  5827. position:absolute;
  5828. left:1754px;
  5829. top:31px;
  5830. width:1000px;
  5831. height:40px;
  5832. display:flex;
  5833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5834. font-weight:400;
  5835. font-style:normal;
  5836. font-size:14px;
  5837. color:#FFFFFF;
  5838. line-height:20px;
  5839. }
  5840. #u8088 .text {
  5841. position:absolute;
  5842. align-self:flex-start;
  5843. padding:10px 10px 10px 10px;
  5844. box-sizing:border-box;
  5845. width:100%;
  5846. }
  5847. #u8088_text {
  5848. border-width:0px;
  5849. word-wrap:break-word;
  5850. text-transform:none;
  5851. }
  5852. #u8089_div {
  5853. border-width:0px;
  5854. position:absolute;
  5855. left:0px;
  5856. top:0px;
  5857. width:1000px;
  5858. height:40px;
  5859. background:inherit;
  5860. background-color:rgba(217, 0, 27, 1);
  5861. border:none;
  5862. border-radius:0px;
  5863. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  5864. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  5865. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  5866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5867. font-weight:400;
  5868. font-style:normal;
  5869. font-size:14px;
  5870. color:#FFFFFF;
  5871. line-height:20px;
  5872. }
  5873. #u8089 {
  5874. border-width:0px;
  5875. position:absolute;
  5876. left:1754px;
  5877. top:914px;
  5878. width:1000px;
  5879. height:40px;
  5880. display:flex;
  5881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5882. font-weight:400;
  5883. font-style:normal;
  5884. font-size:14px;
  5885. color:#FFFFFF;
  5886. line-height:20px;
  5887. }
  5888. #u8089 .text {
  5889. position:absolute;
  5890. align-self:flex-start;
  5891. padding:10px 10px 10px 10px;
  5892. box-sizing:border-box;
  5893. width:100%;
  5894. }
  5895. #u8089_text {
  5896. border-width:0px;
  5897. word-wrap:break-word;
  5898. text-transform:none;
  5899. }
  5900. #u8090 {
  5901. border-width:0px;
  5902. position:absolute;
  5903. left:1754px;
  5904. top:964px;
  5905. width:960px;
  5906. height:320px;
  5907. }
  5908. #u8091_img {
  5909. border-width:0px;
  5910. position:absolute;
  5911. left:0px;
  5912. top:0px;
  5913. width:160px;
  5914. height:40px;
  5915. }
  5916. #u8091 {
  5917. border-width:0px;
  5918. position:absolute;
  5919. left:0px;
  5920. top:0px;
  5921. width:160px;
  5922. height:40px;
  5923. display:flex;
  5924. font-size:14px;
  5925. color:#FFFFFF;
  5926. text-align:left;
  5927. line-height:30px;
  5928. }
  5929. #u8091 .text {
  5930. position:absolute;
  5931. align-self:center;
  5932. padding:5px 10px 5px 10px;
  5933. box-sizing:border-box;
  5934. width:100%;
  5935. }
  5936. #u8091_text {
  5937. border-width:0px;
  5938. word-wrap:break-word;
  5939. text-transform:none;
  5940. }
  5941. #u8092_img {
  5942. border-width:0px;
  5943. position:absolute;
  5944. left:0px;
  5945. top:0px;
  5946. width:400px;
  5947. height:40px;
  5948. }
  5949. #u8092 {
  5950. border-width:0px;
  5951. position:absolute;
  5952. left:160px;
  5953. top:0px;
  5954. width:400px;
  5955. height:40px;
  5956. display:flex;
  5957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5958. font-weight:400;
  5959. font-style:normal;
  5960. font-size:14px;
  5961. color:#FFFFFF;
  5962. text-align:left;
  5963. line-height:30px;
  5964. }
  5965. #u8092 .text {
  5966. position:absolute;
  5967. align-self:center;
  5968. padding:5px 10px 5px 10px;
  5969. box-sizing:border-box;
  5970. width:100%;
  5971. }
  5972. #u8092_text {
  5973. border-width:0px;
  5974. word-wrap:break-word;
  5975. text-transform:none;
  5976. }
  5977. #u8093_img {
  5978. border-width:0px;
  5979. position:absolute;
  5980. left:0px;
  5981. top:0px;
  5982. width:400px;
  5983. height:40px;
  5984. }
  5985. #u8093 {
  5986. border-width:0px;
  5987. position:absolute;
  5988. left:560px;
  5989. top:0px;
  5990. width:400px;
  5991. height:40px;
  5992. display:flex;
  5993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5994. font-weight:400;
  5995. font-style:normal;
  5996. font-size:14px;
  5997. color:#FFFFFF;
  5998. text-align:left;
  5999. line-height:30px;
  6000. }
  6001. #u8093 .text {
  6002. position:absolute;
  6003. align-self:center;
  6004. padding:5px 10px 5px 10px;
  6005. box-sizing:border-box;
  6006. width:100%;
  6007. }
  6008. #u8093_text {
  6009. border-width:0px;
  6010. word-wrap:break-word;
  6011. text-transform:none;
  6012. }
  6013. #u8094_img {
  6014. border-width:0px;
  6015. position:absolute;
  6016. left:0px;
  6017. top:0px;
  6018. width:160px;
  6019. height:40px;
  6020. }
  6021. #u8094 {
  6022. border-width:0px;
  6023. position:absolute;
  6024. left:0px;
  6025. top:40px;
  6026. width:160px;
  6027. height:40px;
  6028. display:flex;
  6029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6030. font-weight:400;
  6031. font-style:normal;
  6032. font-size:14px;
  6033. text-align:left;
  6034. line-height:30px;
  6035. }
  6036. #u8094 .text {
  6037. position:absolute;
  6038. align-self:center;
  6039. padding:5px 10px 5px 10px;
  6040. box-sizing:border-box;
  6041. width:100%;
  6042. }
  6043. #u8094_text {
  6044. border-width:0px;
  6045. word-wrap:break-word;
  6046. text-transform:none;
  6047. }
  6048. #u8095_img {
  6049. border-width:0px;
  6050. position:absolute;
  6051. left:0px;
  6052. top:0px;
  6053. width:400px;
  6054. height:40px;
  6055. }
  6056. #u8095 {
  6057. border-width:0px;
  6058. position:absolute;
  6059. left:160px;
  6060. top:40px;
  6061. width:400px;
  6062. height:40px;
  6063. display:flex;
  6064. font-size:14px;
  6065. text-align:left;
  6066. line-height:30px;
  6067. }
  6068. #u8095 .text {
  6069. position:absolute;
  6070. align-self:center;
  6071. padding:5px 10px 5px 10px;
  6072. box-sizing:border-box;
  6073. width:100%;
  6074. }
  6075. #u8095_text {
  6076. border-width:0px;
  6077. word-wrap:break-word;
  6078. text-transform:none;
  6079. visibility:hidden;
  6080. }
  6081. #u8096_img {
  6082. border-width:0px;
  6083. position:absolute;
  6084. left:0px;
  6085. top:0px;
  6086. width:400px;
  6087. height:40px;
  6088. }
  6089. #u8096 {
  6090. border-width:0px;
  6091. position:absolute;
  6092. left:560px;
  6093. top:40px;
  6094. width:400px;
  6095. height:40px;
  6096. display:flex;
  6097. font-size:14px;
  6098. text-align:left;
  6099. line-height:30px;
  6100. }
  6101. #u8096 .text {
  6102. position:absolute;
  6103. align-self:center;
  6104. padding:5px 10px 5px 10px;
  6105. box-sizing:border-box;
  6106. width:100%;
  6107. }
  6108. #u8096_text {
  6109. border-width:0px;
  6110. word-wrap:break-word;
  6111. text-transform:none;
  6112. visibility:hidden;
  6113. }
  6114. #u8097_img {
  6115. border-width:0px;
  6116. position:absolute;
  6117. left:0px;
  6118. top:0px;
  6119. width:160px;
  6120. height:40px;
  6121. }
  6122. #u8097 {
  6123. border-width:0px;
  6124. position:absolute;
  6125. left:0px;
  6126. top:80px;
  6127. width:160px;
  6128. height:40px;
  6129. display:flex;
  6130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6131. font-weight:400;
  6132. font-style:normal;
  6133. font-size:14px;
  6134. text-align:left;
  6135. line-height:30px;
  6136. }
  6137. #u8097 .text {
  6138. position:absolute;
  6139. align-self:center;
  6140. padding:5px 10px 5px 10px;
  6141. box-sizing:border-box;
  6142. width:100%;
  6143. }
  6144. #u8097_text {
  6145. border-width:0px;
  6146. word-wrap:break-word;
  6147. text-transform:none;
  6148. }
  6149. #u8098_img {
  6150. border-width:0px;
  6151. position:absolute;
  6152. left:0px;
  6153. top:0px;
  6154. width:400px;
  6155. height:40px;
  6156. }
  6157. #u8098 {
  6158. border-width:0px;
  6159. position:absolute;
  6160. left:160px;
  6161. top:80px;
  6162. width:400px;
  6163. height:40px;
  6164. display:flex;
  6165. font-size:14px;
  6166. text-align:left;
  6167. line-height:30px;
  6168. }
  6169. #u8098 .text {
  6170. position:absolute;
  6171. align-self:center;
  6172. padding:5px 10px 5px 10px;
  6173. box-sizing:border-box;
  6174. width:100%;
  6175. }
  6176. #u8098_text {
  6177. border-width:0px;
  6178. word-wrap:break-word;
  6179. text-transform:none;
  6180. visibility:hidden;
  6181. }
  6182. #u8099_img {
  6183. border-width:0px;
  6184. position:absolute;
  6185. left:0px;
  6186. top:0px;
  6187. width:400px;
  6188. height:40px;
  6189. }
  6190. #u8099 {
  6191. border-width:0px;
  6192. position:absolute;
  6193. left:560px;
  6194. top:80px;
  6195. width:400px;
  6196. height:40px;
  6197. display:flex;
  6198. font-size:14px;
  6199. text-align:left;
  6200. line-height:30px;
  6201. }
  6202. #u8099 .text {
  6203. position:absolute;
  6204. align-self:center;
  6205. padding:5px 10px 5px 10px;
  6206. box-sizing:border-box;
  6207. width:100%;
  6208. }
  6209. #u8099_text {
  6210. border-width:0px;
  6211. word-wrap:break-word;
  6212. text-transform:none;
  6213. visibility:hidden;
  6214. }
  6215. #u8100_img {
  6216. border-width:0px;
  6217. position:absolute;
  6218. left:0px;
  6219. top:0px;
  6220. width:160px;
  6221. height:40px;
  6222. }
  6223. #u8100 {
  6224. border-width:0px;
  6225. position:absolute;
  6226. left:0px;
  6227. top:120px;
  6228. width:160px;
  6229. height:40px;
  6230. display:flex;
  6231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6232. font-weight:400;
  6233. font-style:normal;
  6234. font-size:14px;
  6235. text-align:left;
  6236. line-height:30px;
  6237. }
  6238. #u8100 .text {
  6239. position:absolute;
  6240. align-self:center;
  6241. padding:5px 10px 5px 10px;
  6242. box-sizing:border-box;
  6243. width:100%;
  6244. }
  6245. #u8100_text {
  6246. border-width:0px;
  6247. word-wrap:break-word;
  6248. text-transform:none;
  6249. }
  6250. #u8101_img {
  6251. border-width:0px;
  6252. position:absolute;
  6253. left:0px;
  6254. top:0px;
  6255. width:400px;
  6256. height:40px;
  6257. }
  6258. #u8101 {
  6259. border-width:0px;
  6260. position:absolute;
  6261. left:160px;
  6262. top:120px;
  6263. width:400px;
  6264. height:40px;
  6265. display:flex;
  6266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6267. font-weight:400;
  6268. font-style:normal;
  6269. font-size:12px;
  6270. text-align:left;
  6271. line-height:20px;
  6272. }
  6273. #u8101 .text {
  6274. position:absolute;
  6275. align-self:center;
  6276. padding:5px 10px 5px 10px;
  6277. box-sizing:border-box;
  6278. width:100%;
  6279. }
  6280. #u8101_text {
  6281. border-width:0px;
  6282. word-wrap:break-word;
  6283. text-transform:none;
  6284. visibility:hidden;
  6285. }
  6286. #u8102_img {
  6287. border-width:0px;
  6288. position:absolute;
  6289. left:0px;
  6290. top:0px;
  6291. width:400px;
  6292. height:40px;
  6293. }
  6294. #u8102 {
  6295. border-width:0px;
  6296. position:absolute;
  6297. left:560px;
  6298. top:120px;
  6299. width:400px;
  6300. height:40px;
  6301. display:flex;
  6302. font-size:14px;
  6303. text-align:left;
  6304. line-height:30px;
  6305. }
  6306. #u8102 .text {
  6307. position:absolute;
  6308. align-self:center;
  6309. padding:5px 10px 5px 10px;
  6310. box-sizing:border-box;
  6311. width:100%;
  6312. }
  6313. #u8102_text {
  6314. border-width:0px;
  6315. word-wrap:break-word;
  6316. text-transform:none;
  6317. visibility:hidden;
  6318. }
  6319. #u8103_img {
  6320. border-width:0px;
  6321. position:absolute;
  6322. left:0px;
  6323. top:0px;
  6324. width:160px;
  6325. height:40px;
  6326. }
  6327. #u8103 {
  6328. border-width:0px;
  6329. position:absolute;
  6330. left:0px;
  6331. top:160px;
  6332. width:160px;
  6333. height:40px;
  6334. display:flex;
  6335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6336. font-weight:400;
  6337. font-style:normal;
  6338. font-size:14px;
  6339. text-align:left;
  6340. line-height:30px;
  6341. }
  6342. #u8103 .text {
  6343. position:absolute;
  6344. align-self:center;
  6345. padding:5px 10px 5px 10px;
  6346. box-sizing:border-box;
  6347. width:100%;
  6348. }
  6349. #u8103_text {
  6350. border-width:0px;
  6351. word-wrap:break-word;
  6352. text-transform:none;
  6353. }
  6354. #u8104_img {
  6355. border-width:0px;
  6356. position:absolute;
  6357. left:0px;
  6358. top:0px;
  6359. width:400px;
  6360. height:40px;
  6361. }
  6362. #u8104 {
  6363. border-width:0px;
  6364. position:absolute;
  6365. left:160px;
  6366. top:160px;
  6367. width:400px;
  6368. height:40px;
  6369. display:flex;
  6370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6371. font-weight:400;
  6372. font-style:normal;
  6373. font-size:12px;
  6374. text-align:left;
  6375. line-height:20px;
  6376. }
  6377. #u8104 .text {
  6378. position:absolute;
  6379. align-self:center;
  6380. padding:5px 10px 5px 10px;
  6381. box-sizing:border-box;
  6382. width:100%;
  6383. }
  6384. #u8104_text {
  6385. border-width:0px;
  6386. word-wrap:break-word;
  6387. text-transform:none;
  6388. visibility:hidden;
  6389. }
  6390. #u8105_img {
  6391. border-width:0px;
  6392. position:absolute;
  6393. left:0px;
  6394. top:0px;
  6395. width:400px;
  6396. height:40px;
  6397. }
  6398. #u8105 {
  6399. border-width:0px;
  6400. position:absolute;
  6401. left:560px;
  6402. top:160px;
  6403. width:400px;
  6404. height:40px;
  6405. display:flex;
  6406. font-size:14px;
  6407. text-align:left;
  6408. line-height:30px;
  6409. }
  6410. #u8105 .text {
  6411. position:absolute;
  6412. align-self:center;
  6413. padding:5px 10px 5px 10px;
  6414. box-sizing:border-box;
  6415. width:100%;
  6416. }
  6417. #u8105_text {
  6418. border-width:0px;
  6419. word-wrap:break-word;
  6420. text-transform:none;
  6421. visibility:hidden;
  6422. }
  6423. #u8106_img {
  6424. border-width:0px;
  6425. position:absolute;
  6426. left:0px;
  6427. top:0px;
  6428. width:160px;
  6429. height:40px;
  6430. }
  6431. #u8106 {
  6432. border-width:0px;
  6433. position:absolute;
  6434. left:0px;
  6435. top:200px;
  6436. width:160px;
  6437. height:40px;
  6438. display:flex;
  6439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6440. font-weight:400;
  6441. font-style:normal;
  6442. font-size:14px;
  6443. text-align:left;
  6444. line-height:30px;
  6445. }
  6446. #u8106 .text {
  6447. position:absolute;
  6448. align-self:center;
  6449. padding:5px 10px 5px 10px;
  6450. box-sizing:border-box;
  6451. width:100%;
  6452. }
  6453. #u8106_text {
  6454. border-width:0px;
  6455. word-wrap:break-word;
  6456. text-transform:none;
  6457. }
  6458. #u8107_img {
  6459. border-width:0px;
  6460. position:absolute;
  6461. left:0px;
  6462. top:0px;
  6463. width:400px;
  6464. height:40px;
  6465. }
  6466. #u8107 {
  6467. border-width:0px;
  6468. position:absolute;
  6469. left:160px;
  6470. top:200px;
  6471. width:400px;
  6472. height:40px;
  6473. display:flex;
  6474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6475. font-weight:400;
  6476. font-style:normal;
  6477. font-size:12px;
  6478. text-align:left;
  6479. line-height:20px;
  6480. }
  6481. #u8107 .text {
  6482. position:absolute;
  6483. align-self:center;
  6484. padding:5px 10px 5px 10px;
  6485. box-sizing:border-box;
  6486. width:100%;
  6487. }
  6488. #u8107_text {
  6489. border-width:0px;
  6490. word-wrap:break-word;
  6491. text-transform:none;
  6492. visibility:hidden;
  6493. }
  6494. #u8108_img {
  6495. border-width:0px;
  6496. position:absolute;
  6497. left:0px;
  6498. top:0px;
  6499. width:400px;
  6500. height:40px;
  6501. }
  6502. #u8108 {
  6503. border-width:0px;
  6504. position:absolute;
  6505. left:560px;
  6506. top:200px;
  6507. width:400px;
  6508. height:40px;
  6509. display:flex;
  6510. font-size:14px;
  6511. text-align:left;
  6512. line-height:30px;
  6513. }
  6514. #u8108 .text {
  6515. position:absolute;
  6516. align-self:center;
  6517. padding:5px 10px 5px 10px;
  6518. box-sizing:border-box;
  6519. width:100%;
  6520. }
  6521. #u8108_text {
  6522. border-width:0px;
  6523. word-wrap:break-word;
  6524. text-transform:none;
  6525. visibility:hidden;
  6526. }
  6527. #u8109_img {
  6528. border-width:0px;
  6529. position:absolute;
  6530. left:0px;
  6531. top:0px;
  6532. width:160px;
  6533. height:40px;
  6534. }
  6535. #u8109 {
  6536. border-width:0px;
  6537. position:absolute;
  6538. left:0px;
  6539. top:240px;
  6540. width:160px;
  6541. height:40px;
  6542. display:flex;
  6543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6544. font-weight:400;
  6545. font-style:normal;
  6546. font-size:14px;
  6547. text-align:left;
  6548. line-height:30px;
  6549. }
  6550. #u8109 .text {
  6551. position:absolute;
  6552. align-self:center;
  6553. padding:5px 10px 5px 10px;
  6554. box-sizing:border-box;
  6555. width:100%;
  6556. }
  6557. #u8109_text {
  6558. border-width:0px;
  6559. word-wrap:break-word;
  6560. text-transform:none;
  6561. }
  6562. #u8110_img {
  6563. border-width:0px;
  6564. position:absolute;
  6565. left:0px;
  6566. top:0px;
  6567. width:400px;
  6568. height:40px;
  6569. }
  6570. #u8110 {
  6571. border-width:0px;
  6572. position:absolute;
  6573. left:160px;
  6574. top:240px;
  6575. width:400px;
  6576. height:40px;
  6577. display:flex;
  6578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6579. font-weight:400;
  6580. font-style:normal;
  6581. font-size:12px;
  6582. text-align:left;
  6583. line-height:20px;
  6584. }
  6585. #u8110 .text {
  6586. position:absolute;
  6587. align-self:center;
  6588. padding:5px 10px 5px 10px;
  6589. box-sizing:border-box;
  6590. width:100%;
  6591. }
  6592. #u8110_text {
  6593. border-width:0px;
  6594. word-wrap:break-word;
  6595. text-transform:none;
  6596. }
  6597. #u8111_img {
  6598. border-width:0px;
  6599. position:absolute;
  6600. left:0px;
  6601. top:0px;
  6602. width:400px;
  6603. height:40px;
  6604. }
  6605. #u8111 {
  6606. border-width:0px;
  6607. position:absolute;
  6608. left:560px;
  6609. top:240px;
  6610. width:400px;
  6611. height:40px;
  6612. display:flex;
  6613. font-size:14px;
  6614. text-align:left;
  6615. line-height:30px;
  6616. }
  6617. #u8111 .text {
  6618. position:absolute;
  6619. align-self:center;
  6620. padding:5px 10px 5px 10px;
  6621. box-sizing:border-box;
  6622. width:100%;
  6623. }
  6624. #u8111_text {
  6625. border-width:0px;
  6626. word-wrap:break-word;
  6627. text-transform:none;
  6628. visibility:hidden;
  6629. }
  6630. #u8112_img {
  6631. border-width:0px;
  6632. position:absolute;
  6633. left:0px;
  6634. top:0px;
  6635. width:160px;
  6636. height:40px;
  6637. }
  6638. #u8112 {
  6639. border-width:0px;
  6640. position:absolute;
  6641. left:0px;
  6642. top:280px;
  6643. width:160px;
  6644. height:40px;
  6645. display:flex;
  6646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6647. font-weight:400;
  6648. font-style:normal;
  6649. font-size:14px;
  6650. text-align:left;
  6651. line-height:30px;
  6652. }
  6653. #u8112 .text {
  6654. position:absolute;
  6655. align-self:center;
  6656. padding:5px 10px 5px 10px;
  6657. box-sizing:border-box;
  6658. width:100%;
  6659. }
  6660. #u8112_text {
  6661. border-width:0px;
  6662. word-wrap:break-word;
  6663. text-transform:none;
  6664. }
  6665. #u8113_img {
  6666. border-width:0px;
  6667. position:absolute;
  6668. left:0px;
  6669. top:0px;
  6670. width:400px;
  6671. height:40px;
  6672. }
  6673. #u8113 {
  6674. border-width:0px;
  6675. position:absolute;
  6676. left:160px;
  6677. top:280px;
  6678. width:400px;
  6679. height:40px;
  6680. display:flex;
  6681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6682. font-weight:400;
  6683. font-style:normal;
  6684. font-size:12px;
  6685. text-align:left;
  6686. line-height:20px;
  6687. }
  6688. #u8113 .text {
  6689. position:absolute;
  6690. align-self:center;
  6691. padding:5px 10px 5px 10px;
  6692. box-sizing:border-box;
  6693. width:100%;
  6694. }
  6695. #u8113_text {
  6696. border-width:0px;
  6697. word-wrap:break-word;
  6698. text-transform:none;
  6699. }
  6700. #u8114_img {
  6701. border-width:0px;
  6702. position:absolute;
  6703. left:0px;
  6704. top:0px;
  6705. width:400px;
  6706. height:40px;
  6707. }
  6708. #u8114 {
  6709. border-width:0px;
  6710. position:absolute;
  6711. left:560px;
  6712. top:280px;
  6713. width:400px;
  6714. height:40px;
  6715. display:flex;
  6716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6717. font-weight:400;
  6718. font-style:normal;
  6719. font-size:14px;
  6720. text-align:left;
  6721. line-height:30px;
  6722. }
  6723. #u8114 .text {
  6724. position:absolute;
  6725. align-self:center;
  6726. padding:5px 10px 5px 10px;
  6727. box-sizing:border-box;
  6728. width:100%;
  6729. }
  6730. #u8114_text {
  6731. border-width:0px;
  6732. word-wrap:break-word;
  6733. text-transform:none;
  6734. visibility:hidden;
  6735. }
  6736. #u8115_div {
  6737. border-width:0px;
  6738. position:absolute;
  6739. left:0px;
  6740. top:0px;
  6741. width:1000px;
  6742. height:40px;
  6743. background:inherit;
  6744. background-color:rgba(217, 0, 27, 1);
  6745. border:none;
  6746. border-radius:0px;
  6747. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  6748. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  6749. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  6750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6751. font-weight:400;
  6752. font-style:normal;
  6753. font-size:14px;
  6754. color:#FFFFFF;
  6755. line-height:20px;
  6756. }
  6757. #u8115 {
  6758. border-width:0px;
  6759. position:absolute;
  6760. left:1754px;
  6761. top:234px;
  6762. width:1000px;
  6763. height:40px;
  6764. display:flex;
  6765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6766. font-weight:400;
  6767. font-style:normal;
  6768. font-size:14px;
  6769. color:#FFFFFF;
  6770. line-height:20px;
  6771. }
  6772. #u8115 .text {
  6773. position:absolute;
  6774. align-self:flex-start;
  6775. padding:10px 10px 10px 10px;
  6776. box-sizing:border-box;
  6777. width:100%;
  6778. }
  6779. #u8115_text {
  6780. border-width:0px;
  6781. word-wrap:break-word;
  6782. text-transform:none;
  6783. }
  6784. #u8116 {
  6785. border-width:0px;
  6786. position:absolute;
  6787. left:1754px;
  6788. top:284px;
  6789. width:960px;
  6790. height:280px;
  6791. }
  6792. #u8117_img {
  6793. border-width:0px;
  6794. position:absolute;
  6795. left:0px;
  6796. top:0px;
  6797. width:160px;
  6798. height:40px;
  6799. }
  6800. #u8117 {
  6801. border-width:0px;
  6802. position:absolute;
  6803. left:0px;
  6804. top:0px;
  6805. width:160px;
  6806. height:40px;
  6807. display:flex;
  6808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6809. font-weight:400;
  6810. font-style:normal;
  6811. font-size:14px;
  6812. color:#FFFFFF;
  6813. text-align:left;
  6814. line-height:30px;
  6815. }
  6816. #u8117 .text {
  6817. position:absolute;
  6818. align-self:center;
  6819. padding:5px 10px 5px 10px;
  6820. box-sizing:border-box;
  6821. width:100%;
  6822. }
  6823. #u8117_text {
  6824. border-width:0px;
  6825. word-wrap:break-word;
  6826. text-transform:none;
  6827. }
  6828. #u8118_img {
  6829. border-width:0px;
  6830. position:absolute;
  6831. left:0px;
  6832. top:0px;
  6833. width:400px;
  6834. height:40px;
  6835. }
  6836. #u8118 {
  6837. border-width:0px;
  6838. position:absolute;
  6839. left:160px;
  6840. top:0px;
  6841. width:400px;
  6842. height:40px;
  6843. display:flex;
  6844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6845. font-weight:400;
  6846. font-style:normal;
  6847. font-size:14px;
  6848. color:#FFFFFF;
  6849. text-align:left;
  6850. line-height:30px;
  6851. }
  6852. #u8118 .text {
  6853. position:absolute;
  6854. align-self:center;
  6855. padding:5px 10px 5px 10px;
  6856. box-sizing:border-box;
  6857. width:100%;
  6858. }
  6859. #u8118_text {
  6860. border-width:0px;
  6861. word-wrap:break-word;
  6862. text-transform:none;
  6863. }
  6864. #u8119_img {
  6865. border-width:0px;
  6866. position:absolute;
  6867. left:0px;
  6868. top:0px;
  6869. width:400px;
  6870. height:40px;
  6871. }
  6872. #u8119 {
  6873. border-width:0px;
  6874. position:absolute;
  6875. left:560px;
  6876. top:0px;
  6877. width:400px;
  6878. height:40px;
  6879. display:flex;
  6880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6881. font-weight:400;
  6882. font-style:normal;
  6883. font-size:14px;
  6884. color:#FFFFFF;
  6885. text-align:left;
  6886. line-height:30px;
  6887. }
  6888. #u8119 .text {
  6889. position:absolute;
  6890. align-self:center;
  6891. padding:5px 10px 5px 10px;
  6892. box-sizing:border-box;
  6893. width:100%;
  6894. }
  6895. #u8119_text {
  6896. border-width:0px;
  6897. word-wrap:break-word;
  6898. text-transform:none;
  6899. }
  6900. #u8120_img {
  6901. border-width:0px;
  6902. position:absolute;
  6903. left:0px;
  6904. top:0px;
  6905. width:160px;
  6906. height:40px;
  6907. }
  6908. #u8120 {
  6909. border-width:0px;
  6910. position:absolute;
  6911. left:0px;
  6912. top:40px;
  6913. width:160px;
  6914. height:40px;
  6915. display:flex;
  6916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6917. font-weight:400;
  6918. font-style:normal;
  6919. font-size:14px;
  6920. text-align:left;
  6921. line-height:30px;
  6922. }
  6923. #u8120 .text {
  6924. position:absolute;
  6925. align-self:center;
  6926. padding:5px 10px 5px 10px;
  6927. box-sizing:border-box;
  6928. width:100%;
  6929. }
  6930. #u8120_text {
  6931. border-width:0px;
  6932. word-wrap:break-word;
  6933. text-transform:none;
  6934. }
  6935. #u8121_img {
  6936. border-width:0px;
  6937. position:absolute;
  6938. left:0px;
  6939. top:0px;
  6940. width:400px;
  6941. height:40px;
  6942. }
  6943. #u8121 {
  6944. border-width:0px;
  6945. position:absolute;
  6946. left:160px;
  6947. top:40px;
  6948. width:400px;
  6949. height:40px;
  6950. display:flex;
  6951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6952. font-weight:400;
  6953. font-style:normal;
  6954. font-size:14px;
  6955. text-align:left;
  6956. line-height:30px;
  6957. }
  6958. #u8121 .text {
  6959. position:absolute;
  6960. align-self:center;
  6961. padding:5px 10px 5px 10px;
  6962. box-sizing:border-box;
  6963. width:100%;
  6964. }
  6965. #u8121_text {
  6966. border-width:0px;
  6967. word-wrap:break-word;
  6968. text-transform:none;
  6969. visibility:hidden;
  6970. }
  6971. #u8122_img {
  6972. border-width:0px;
  6973. position:absolute;
  6974. left:0px;
  6975. top:0px;
  6976. width:400px;
  6977. height:40px;
  6978. }
  6979. #u8122 {
  6980. border-width:0px;
  6981. position:absolute;
  6982. left:560px;
  6983. top:40px;
  6984. width:400px;
  6985. height:40px;
  6986. display:flex;
  6987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6988. font-weight:400;
  6989. font-style:normal;
  6990. font-size:14px;
  6991. text-align:left;
  6992. line-height:30px;
  6993. }
  6994. #u8122 .text {
  6995. position:absolute;
  6996. align-self:center;
  6997. padding:5px 10px 5px 10px;
  6998. box-sizing:border-box;
  6999. width:100%;
  7000. }
  7001. #u8122_text {
  7002. border-width:0px;
  7003. word-wrap:break-word;
  7004. text-transform:none;
  7005. }
  7006. #u8123_img {
  7007. border-width:0px;
  7008. position:absolute;
  7009. left:0px;
  7010. top:0px;
  7011. width:160px;
  7012. height:40px;
  7013. }
  7014. #u8123 {
  7015. border-width:0px;
  7016. position:absolute;
  7017. left:0px;
  7018. top:80px;
  7019. width:160px;
  7020. height:40px;
  7021. display:flex;
  7022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7023. font-weight:400;
  7024. font-style:normal;
  7025. font-size:14px;
  7026. text-align:left;
  7027. line-height:30px;
  7028. }
  7029. #u8123 .text {
  7030. position:absolute;
  7031. align-self:center;
  7032. padding:5px 10px 5px 10px;
  7033. box-sizing:border-box;
  7034. width:100%;
  7035. }
  7036. #u8123_text {
  7037. border-width:0px;
  7038. word-wrap:break-word;
  7039. text-transform:none;
  7040. }
  7041. #u8124_img {
  7042. border-width:0px;
  7043. position:absolute;
  7044. left:0px;
  7045. top:0px;
  7046. width:400px;
  7047. height:40px;
  7048. }
  7049. #u8124 {
  7050. border-width:0px;
  7051. position:absolute;
  7052. left:160px;
  7053. top:80px;
  7054. width:400px;
  7055. height:40px;
  7056. display:flex;
  7057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7058. font-weight:400;
  7059. font-style:normal;
  7060. font-size:14px;
  7061. text-align:left;
  7062. line-height:30px;
  7063. }
  7064. #u8124 .text {
  7065. position:absolute;
  7066. align-self:center;
  7067. padding:5px 10px 5px 10px;
  7068. box-sizing:border-box;
  7069. width:100%;
  7070. }
  7071. #u8124_text {
  7072. border-width:0px;
  7073. word-wrap:break-word;
  7074. text-transform:none;
  7075. visibility:hidden;
  7076. }
  7077. #u8125_img {
  7078. border-width:0px;
  7079. position:absolute;
  7080. left:0px;
  7081. top:0px;
  7082. width:400px;
  7083. height:40px;
  7084. }
  7085. #u8125 {
  7086. border-width:0px;
  7087. position:absolute;
  7088. left:560px;
  7089. top:80px;
  7090. width:400px;
  7091. height:40px;
  7092. display:flex;
  7093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7094. font-weight:400;
  7095. font-style:normal;
  7096. font-size:14px;
  7097. text-align:left;
  7098. line-height:30px;
  7099. }
  7100. #u8125 .text {
  7101. position:absolute;
  7102. align-self:center;
  7103. padding:5px 10px 5px 10px;
  7104. box-sizing:border-box;
  7105. width:100%;
  7106. }
  7107. #u8125_text {
  7108. border-width:0px;
  7109. word-wrap:break-word;
  7110. text-transform:none;
  7111. }
  7112. #u8126_img {
  7113. border-width:0px;
  7114. position:absolute;
  7115. left:0px;
  7116. top:0px;
  7117. width:160px;
  7118. height:40px;
  7119. }
  7120. #u8126 {
  7121. border-width:0px;
  7122. position:absolute;
  7123. left:0px;
  7124. top:120px;
  7125. width:160px;
  7126. height:40px;
  7127. display:flex;
  7128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7129. font-weight:400;
  7130. font-style:normal;
  7131. font-size:14px;
  7132. text-align:left;
  7133. line-height:30px;
  7134. }
  7135. #u8126 .text {
  7136. position:absolute;
  7137. align-self:center;
  7138. padding:5px 10px 5px 10px;
  7139. box-sizing:border-box;
  7140. width:100%;
  7141. }
  7142. #u8126_text {
  7143. border-width:0px;
  7144. word-wrap:break-word;
  7145. text-transform:none;
  7146. }
  7147. #u8127_img {
  7148. border-width:0px;
  7149. position:absolute;
  7150. left:0px;
  7151. top:0px;
  7152. width:400px;
  7153. height:40px;
  7154. }
  7155. #u8127 {
  7156. border-width:0px;
  7157. position:absolute;
  7158. left:160px;
  7159. top:120px;
  7160. width:400px;
  7161. height:40px;
  7162. display:flex;
  7163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7164. font-weight:400;
  7165. font-style:normal;
  7166. font-size:14px;
  7167. text-align:left;
  7168. line-height:30px;
  7169. }
  7170. #u8127 .text {
  7171. position:absolute;
  7172. align-self:center;
  7173. padding:5px 10px 5px 10px;
  7174. box-sizing:border-box;
  7175. width:100%;
  7176. }
  7177. #u8127_text {
  7178. border-width:0px;
  7179. word-wrap:break-word;
  7180. text-transform:none;
  7181. }
  7182. #u8128_img {
  7183. border-width:0px;
  7184. position:absolute;
  7185. left:0px;
  7186. top:0px;
  7187. width:400px;
  7188. height:40px;
  7189. }
  7190. #u8128 {
  7191. border-width:0px;
  7192. position:absolute;
  7193. left:560px;
  7194. top:120px;
  7195. width:400px;
  7196. height:40px;
  7197. display:flex;
  7198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7199. font-weight:400;
  7200. font-style:normal;
  7201. font-size:14px;
  7202. text-align:left;
  7203. line-height:30px;
  7204. }
  7205. #u8128 .text {
  7206. position:absolute;
  7207. align-self:center;
  7208. padding:5px 10px 5px 10px;
  7209. box-sizing:border-box;
  7210. width:100%;
  7211. }
  7212. #u8128_text {
  7213. border-width:0px;
  7214. word-wrap:break-word;
  7215. text-transform:none;
  7216. visibility:hidden;
  7217. }
  7218. #u8129_img {
  7219. border-width:0px;
  7220. position:absolute;
  7221. left:0px;
  7222. top:0px;
  7223. width:160px;
  7224. height:40px;
  7225. }
  7226. #u8129 {
  7227. border-width:0px;
  7228. position:absolute;
  7229. left:0px;
  7230. top:160px;
  7231. width:160px;
  7232. height:40px;
  7233. display:flex;
  7234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7235. font-weight:400;
  7236. font-style:normal;
  7237. font-size:14px;
  7238. text-align:left;
  7239. line-height:30px;
  7240. }
  7241. #u8129 .text {
  7242. position:absolute;
  7243. align-self:center;
  7244. padding:5px 10px 5px 10px;
  7245. box-sizing:border-box;
  7246. width:100%;
  7247. }
  7248. #u8129_text {
  7249. border-width:0px;
  7250. word-wrap:break-word;
  7251. text-transform:none;
  7252. }
  7253. #u8130_img {
  7254. border-width:0px;
  7255. position:absolute;
  7256. left:0px;
  7257. top:0px;
  7258. width:400px;
  7259. height:40px;
  7260. }
  7261. #u8130 {
  7262. border-width:0px;
  7263. position:absolute;
  7264. left:160px;
  7265. top:160px;
  7266. width:400px;
  7267. height:40px;
  7268. display:flex;
  7269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7270. font-weight:400;
  7271. font-style:normal;
  7272. font-size:14px;
  7273. text-align:left;
  7274. line-height:30px;
  7275. }
  7276. #u8130 .text {
  7277. position:absolute;
  7278. align-self:center;
  7279. padding:5px 10px 5px 10px;
  7280. box-sizing:border-box;
  7281. width:100%;
  7282. }
  7283. #u8130_text {
  7284. border-width:0px;
  7285. word-wrap:break-word;
  7286. text-transform:none;
  7287. }
  7288. #u8131_img {
  7289. border-width:0px;
  7290. position:absolute;
  7291. left:0px;
  7292. top:0px;
  7293. width:400px;
  7294. height:40px;
  7295. }
  7296. #u8131 {
  7297. border-width:0px;
  7298. position:absolute;
  7299. left:560px;
  7300. top:160px;
  7301. width:400px;
  7302. height:40px;
  7303. display:flex;
  7304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7305. font-weight:400;
  7306. font-style:normal;
  7307. font-size:14px;
  7308. text-align:left;
  7309. line-height:30px;
  7310. }
  7311. #u8131 .text {
  7312. position:absolute;
  7313. align-self:center;
  7314. padding:5px 10px 5px 10px;
  7315. box-sizing:border-box;
  7316. width:100%;
  7317. }
  7318. #u8131_text {
  7319. border-width:0px;
  7320. word-wrap:break-word;
  7321. text-transform:none;
  7322. visibility:hidden;
  7323. }
  7324. #u8132_img {
  7325. border-width:0px;
  7326. position:absolute;
  7327. left:0px;
  7328. top:0px;
  7329. width:160px;
  7330. height:40px;
  7331. }
  7332. #u8132 {
  7333. border-width:0px;
  7334. position:absolute;
  7335. left:0px;
  7336. top:200px;
  7337. width:160px;
  7338. height:40px;
  7339. display:flex;
  7340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7341. font-weight:400;
  7342. font-style:normal;
  7343. font-size:14px;
  7344. text-align:left;
  7345. line-height:30px;
  7346. }
  7347. #u8132 .text {
  7348. position:absolute;
  7349. align-self:center;
  7350. padding:5px 10px 5px 10px;
  7351. box-sizing:border-box;
  7352. width:100%;
  7353. }
  7354. #u8132_text {
  7355. border-width:0px;
  7356. word-wrap:break-word;
  7357. text-transform:none;
  7358. }
  7359. #u8133_img {
  7360. border-width:0px;
  7361. position:absolute;
  7362. left:0px;
  7363. top:0px;
  7364. width:400px;
  7365. height:40px;
  7366. }
  7367. #u8133 {
  7368. border-width:0px;
  7369. position:absolute;
  7370. left:160px;
  7371. top:200px;
  7372. width:400px;
  7373. height:40px;
  7374. display:flex;
  7375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7376. font-weight:400;
  7377. font-style:normal;
  7378. font-size:14px;
  7379. text-align:left;
  7380. line-height:30px;
  7381. }
  7382. #u8133 .text {
  7383. position:absolute;
  7384. align-self:center;
  7385. padding:5px 10px 5px 10px;
  7386. box-sizing:border-box;
  7387. width:100%;
  7388. }
  7389. #u8133_text {
  7390. border-width:0px;
  7391. word-wrap:break-word;
  7392. text-transform:none;
  7393. visibility:hidden;
  7394. }
  7395. #u8134_img {
  7396. border-width:0px;
  7397. position:absolute;
  7398. left:0px;
  7399. top:0px;
  7400. width:400px;
  7401. height:40px;
  7402. }
  7403. #u8134 {
  7404. border-width:0px;
  7405. position:absolute;
  7406. left:560px;
  7407. top:200px;
  7408. width:400px;
  7409. height:40px;
  7410. display:flex;
  7411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7412. font-weight:400;
  7413. font-style:normal;
  7414. font-size:14px;
  7415. text-align:left;
  7416. line-height:30px;
  7417. }
  7418. #u8134 .text {
  7419. position:absolute;
  7420. align-self:center;
  7421. padding:5px 10px 5px 10px;
  7422. box-sizing:border-box;
  7423. width:100%;
  7424. }
  7425. #u8134_text {
  7426. border-width:0px;
  7427. word-wrap:break-word;
  7428. text-transform:none;
  7429. visibility:hidden;
  7430. }
  7431. #u8135_img {
  7432. border-width:0px;
  7433. position:absolute;
  7434. left:0px;
  7435. top:0px;
  7436. width:160px;
  7437. height:40px;
  7438. }
  7439. #u8135 {
  7440. border-width:0px;
  7441. position:absolute;
  7442. left:0px;
  7443. top:240px;
  7444. width:160px;
  7445. height:40px;
  7446. display:flex;
  7447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7448. font-weight:400;
  7449. font-style:normal;
  7450. font-size:14px;
  7451. text-align:left;
  7452. line-height:30px;
  7453. }
  7454. #u8135 .text {
  7455. position:absolute;
  7456. align-self:center;
  7457. padding:5px 10px 5px 10px;
  7458. box-sizing:border-box;
  7459. width:100%;
  7460. }
  7461. #u8135_text {
  7462. border-width:0px;
  7463. word-wrap:break-word;
  7464. text-transform:none;
  7465. }
  7466. #u8136_img {
  7467. border-width:0px;
  7468. position:absolute;
  7469. left:0px;
  7470. top:0px;
  7471. width:400px;
  7472. height:40px;
  7473. }
  7474. #u8136 {
  7475. border-width:0px;
  7476. position:absolute;
  7477. left:160px;
  7478. top:240px;
  7479. width:400px;
  7480. height:40px;
  7481. display:flex;
  7482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7483. font-weight:400;
  7484. font-style:normal;
  7485. font-size:14px;
  7486. text-align:left;
  7487. line-height:30px;
  7488. }
  7489. #u8136 .text {
  7490. position:absolute;
  7491. align-self:center;
  7492. padding:5px 10px 5px 10px;
  7493. box-sizing:border-box;
  7494. width:100%;
  7495. }
  7496. #u8136_text {
  7497. border-width:0px;
  7498. word-wrap:break-word;
  7499. text-transform:none;
  7500. }
  7501. #u8137_img {
  7502. border-width:0px;
  7503. position:absolute;
  7504. left:0px;
  7505. top:0px;
  7506. width:400px;
  7507. height:40px;
  7508. }
  7509. #u8137 {
  7510. border-width:0px;
  7511. position:absolute;
  7512. left:560px;
  7513. top:240px;
  7514. width:400px;
  7515. height:40px;
  7516. display:flex;
  7517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7518. font-weight:400;
  7519. font-style:normal;
  7520. font-size:14px;
  7521. text-align:left;
  7522. line-height:30px;
  7523. }
  7524. #u8137 .text {
  7525. position:absolute;
  7526. align-self:center;
  7527. padding:5px 10px 5px 10px;
  7528. box-sizing:border-box;
  7529. width:100%;
  7530. }
  7531. #u8137_text {
  7532. border-width:0px;
  7533. word-wrap:break-word;
  7534. text-transform:none;
  7535. visibility:hidden;
  7536. }
  7537. #u8138_div {
  7538. border-width:0px;
  7539. position:absolute;
  7540. left:0px;
  7541. top:0px;
  7542. width:59px;
  7543. height:30px;
  7544. background:inherit;
  7545. background-color:rgba(41, 143, 255, 1);
  7546. border:none;
  7547. border-radius:4px;
  7548. -moz-box-shadow:none;
  7549. -webkit-box-shadow:none;
  7550. box-shadow:none;
  7551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7552. font-weight:400;
  7553. font-style:normal;
  7554. font-size:14px;
  7555. color:#FFFFFF;
  7556. }
  7557. #u8138 {
  7558. border-width:0px;
  7559. position:absolute;
  7560. left:351px;
  7561. top:160px;
  7562. width:59px;
  7563. height:30px;
  7564. display:flex;
  7565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7566. font-weight:400;
  7567. font-style:normal;
  7568. font-size:14px;
  7569. color:#FFFFFF;
  7570. }
  7571. #u8138 .text {
  7572. position:absolute;
  7573. align-self:center;
  7574. padding:5px 15px 5px 15px;
  7575. box-sizing:border-box;
  7576. width:100%;
  7577. }
  7578. #u8138_text {
  7579. border-width:0px;
  7580. white-space:nowrap;
  7581. text-transform:none;
  7582. }
  7583. #u8139 {
  7584. border-width:0px;
  7585. position:absolute;
  7586. left:0px;
  7587. top:0px;
  7588. width:0px;
  7589. height:0px;
  7590. }
  7591. #u8140_div {
  7592. border-width:0px;
  7593. position:absolute;
  7594. left:0px;
  7595. top:0px;
  7596. width:105px;
  7597. height:100px;
  7598. background:inherit;
  7599. background-color:rgba(255, 255, 255, 1);
  7600. box-sizing:border-box;
  7601. border-width:1px;
  7602. border-style:solid;
  7603. border-color:rgba(242, 242, 242, 1);
  7604. border-left:0px;
  7605. border-right:0px;
  7606. border-radius:3px;
  7607. border-top-left-radius:0px;
  7608. border-top-right-radius:0px;
  7609. border-bottom-right-radius:0px;
  7610. border-bottom-left-radius:0px;
  7611. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  7612. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  7613. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  7614. }
  7615. #u8140 {
  7616. border-width:0px;
  7617. position:absolute;
  7618. left:1434px;
  7619. top:277px;
  7620. width:105px;
  7621. height:100px;
  7622. display:flex;
  7623. }
  7624. #u8140 .text {
  7625. position:absolute;
  7626. align-self:center;
  7627. padding:2px 2px 2px 2px;
  7628. box-sizing:border-box;
  7629. width:100%;
  7630. }
  7631. #u8140_text {
  7632. border-width:0px;
  7633. word-wrap:break-word;
  7634. text-transform:none;
  7635. visibility:hidden;
  7636. }
  7637. #u8141_div {
  7638. border-width:0px;
  7639. position:absolute;
  7640. left:0px;
  7641. top:0px;
  7642. width:87px;
  7643. height:40px;
  7644. background:inherit;
  7645. background-color:rgba(255, 255, 255, 1);
  7646. border:none;
  7647. border-left:0px;
  7648. border-top:0px;
  7649. border-right:0px;
  7650. border-radius:3px;
  7651. border-bottom-right-radius:0px;
  7652. border-bottom-left-radius:0px;
  7653. -moz-box-shadow:none;
  7654. -webkit-box-shadow:none;
  7655. box-shadow:none;
  7656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7657. font-weight:400;
  7658. font-style:normal;
  7659. font-size:14px;
  7660. }
  7661. #u8141 {
  7662. border-width:0px;
  7663. position:absolute;
  7664. left:1443px;
  7665. top:327px;
  7666. width:87px;
  7667. height:40px;
  7668. display:flex;
  7669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7670. font-weight:400;
  7671. font-style:normal;
  7672. font-size:14px;
  7673. }
  7674. #u8141 .text {
  7675. position:absolute;
  7676. align-self:center;
  7677. padding:5px 0px 5px 0px;
  7678. box-sizing:border-box;
  7679. width:100%;
  7680. }
  7681. #u8141_text {
  7682. border-width:0px;
  7683. word-wrap:break-word;
  7684. text-transform:none;
  7685. }
  7686. #u8142_div {
  7687. border-width:0px;
  7688. position:absolute;
  7689. left:0px;
  7690. top:0px;
  7691. width:87px;
  7692. height:40px;
  7693. background:inherit;
  7694. background-color:rgba(255, 255, 255, 1);
  7695. box-sizing:border-box;
  7696. border-width:1px;
  7697. border-style:solid;
  7698. border-color:rgba(242, 242, 242, 1);
  7699. border-left:0px;
  7700. border-top:0px;
  7701. border-right:0px;
  7702. border-radius:3px;
  7703. border-bottom-right-radius:0px;
  7704. border-bottom-left-radius:0px;
  7705. -moz-box-shadow:none;
  7706. -webkit-box-shadow:none;
  7707. box-shadow:none;
  7708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7709. font-weight:400;
  7710. font-style:normal;
  7711. font-size:14px;
  7712. }
  7713. #u8142 {
  7714. border-width:0px;
  7715. position:absolute;
  7716. left:1443px;
  7717. top:287px;
  7718. width:87px;
  7719. height:40px;
  7720. display:flex;
  7721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7722. font-weight:400;
  7723. font-style:normal;
  7724. font-size:14px;
  7725. }
  7726. #u8142 .text {
  7727. position:absolute;
  7728. align-self:center;
  7729. padding:5px 0px 5px 0px;
  7730. box-sizing:border-box;
  7731. width:100%;
  7732. }
  7733. #u8142_text {
  7734. border-width:0px;
  7735. word-wrap:break-word;
  7736. text-transform:none;
  7737. }
  7738. #u8143 {
  7739. border-width:0px;
  7740. position:absolute;
  7741. left:2814px;
  7742. top:399px;
  7743. width:728px;
  7744. height:231px;
  7745. }
  7746. #u8144_img {
  7747. border-width:0px;
  7748. position:absolute;
  7749. left:0px;
  7750. top:0px;
  7751. width:112px;
  7752. height:40px;
  7753. }
  7754. #u8144 {
  7755. border-width:0px;
  7756. position:absolute;
  7757. left:0px;
  7758. top:0px;
  7759. width:112px;
  7760. height:40px;
  7761. display:flex;
  7762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7763. font-weight:400;
  7764. font-style:normal;
  7765. font-size:14px;
  7766. color:#FFFFFF;
  7767. text-align:left;
  7768. line-height:30px;
  7769. }
  7770. #u8144 .text {
  7771. position:absolute;
  7772. align-self:center;
  7773. padding:5px 10px 5px 10px;
  7774. box-sizing:border-box;
  7775. width:100%;
  7776. }
  7777. #u8144_text {
  7778. border-width:0px;
  7779. word-wrap:break-word;
  7780. text-transform:none;
  7781. }
  7782. #u8145_img {
  7783. border-width:0px;
  7784. position:absolute;
  7785. left:0px;
  7786. top:0px;
  7787. width:131px;
  7788. height:40px;
  7789. }
  7790. #u8145 {
  7791. border-width:0px;
  7792. position:absolute;
  7793. left:112px;
  7794. top:0px;
  7795. width:131px;
  7796. height:40px;
  7797. display:flex;
  7798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7799. font-weight:400;
  7800. font-style:normal;
  7801. font-size:14px;
  7802. color:#FFFFFF;
  7803. text-align:left;
  7804. line-height:30px;
  7805. }
  7806. #u8145 .text {
  7807. position:absolute;
  7808. align-self:center;
  7809. padding:5px 10px 5px 10px;
  7810. box-sizing:border-box;
  7811. width:100%;
  7812. }
  7813. #u8145_text {
  7814. border-width:0px;
  7815. word-wrap:break-word;
  7816. text-transform:none;
  7817. }
  7818. #u8146_img {
  7819. border-width:0px;
  7820. position:absolute;
  7821. left:0px;
  7822. top:0px;
  7823. width:115px;
  7824. height:40px;
  7825. }
  7826. #u8146 {
  7827. border-width:0px;
  7828. position:absolute;
  7829. left:243px;
  7830. top:0px;
  7831. width:115px;
  7832. height:40px;
  7833. display:flex;
  7834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7835. font-weight:400;
  7836. font-style:normal;
  7837. font-size:14px;
  7838. color:#FFFFFF;
  7839. text-align:left;
  7840. line-height:30px;
  7841. }
  7842. #u8146 .text {
  7843. position:absolute;
  7844. align-self:center;
  7845. padding:5px 10px 5px 10px;
  7846. box-sizing:border-box;
  7847. width:100%;
  7848. }
  7849. #u8146_text {
  7850. border-width:0px;
  7851. word-wrap:break-word;
  7852. text-transform:none;
  7853. }
  7854. #u8147_img {
  7855. border-width:0px;
  7856. position:absolute;
  7857. left:0px;
  7858. top:0px;
  7859. width:283px;
  7860. height:40px;
  7861. }
  7862. #u8147 {
  7863. border-width:0px;
  7864. position:absolute;
  7865. left:358px;
  7866. top:0px;
  7867. width:283px;
  7868. height:40px;
  7869. display:flex;
  7870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7871. font-weight:400;
  7872. font-style:normal;
  7873. font-size:14px;
  7874. color:#FFFFFF;
  7875. text-align:left;
  7876. line-height:30px;
  7877. }
  7878. #u8147 .text {
  7879. position:absolute;
  7880. align-self:center;
  7881. padding:5px 10px 5px 10px;
  7882. box-sizing:border-box;
  7883. width:100%;
  7884. }
  7885. #u8147_text {
  7886. border-width:0px;
  7887. word-wrap:break-word;
  7888. text-transform:none;
  7889. }
  7890. #u8148_img {
  7891. border-width:0px;
  7892. position:absolute;
  7893. left:0px;
  7894. top:0px;
  7895. width:87px;
  7896. height:40px;
  7897. }
  7898. #u8148 {
  7899. border-width:0px;
  7900. position:absolute;
  7901. left:641px;
  7902. top:0px;
  7903. width:87px;
  7904. height:40px;
  7905. display:flex;
  7906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7907. font-weight:400;
  7908. font-style:normal;
  7909. font-size:14px;
  7910. color:#FFFFFF;
  7911. text-align:left;
  7912. line-height:30px;
  7913. }
  7914. #u8148 .text {
  7915. position:absolute;
  7916. align-self:center;
  7917. padding:5px 10px 5px 10px;
  7918. box-sizing:border-box;
  7919. width:100%;
  7920. }
  7921. #u8148_text {
  7922. border-width:0px;
  7923. word-wrap:break-word;
  7924. text-transform:none;
  7925. }
  7926. #u8149_img {
  7927. border-width:0px;
  7928. position:absolute;
  7929. left:0px;
  7930. top:0px;
  7931. width:112px;
  7932. height:40px;
  7933. }
  7934. #u8149 {
  7935. border-width:0px;
  7936. position:absolute;
  7937. left:0px;
  7938. top:40px;
  7939. width:112px;
  7940. height:40px;
  7941. display:flex;
  7942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7943. font-weight:400;
  7944. font-style:normal;
  7945. font-size:14px;
  7946. text-align:left;
  7947. line-height:30px;
  7948. }
  7949. #u8149 .text {
  7950. position:absolute;
  7951. align-self:center;
  7952. padding:5px 10px 5px 10px;
  7953. box-sizing:border-box;
  7954. width:100%;
  7955. }
  7956. #u8149_text {
  7957. border-width:0px;
  7958. word-wrap:break-word;
  7959. text-transform:none;
  7960. }
  7961. #u8150_img {
  7962. border-width:0px;
  7963. position:absolute;
  7964. left:0px;
  7965. top:0px;
  7966. width:131px;
  7967. height:40px;
  7968. }
  7969. #u8150 {
  7970. border-width:0px;
  7971. position:absolute;
  7972. left:112px;
  7973. top:40px;
  7974. width:131px;
  7975. height:40px;
  7976. display:flex;
  7977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7978. font-weight:400;
  7979. font-style:normal;
  7980. font-size:14px;
  7981. text-align:left;
  7982. line-height:30px;
  7983. }
  7984. #u8150 .text {
  7985. position:absolute;
  7986. align-self:center;
  7987. padding:5px 10px 5px 10px;
  7988. box-sizing:border-box;
  7989. width:100%;
  7990. }
  7991. #u8150_text {
  7992. border-width:0px;
  7993. word-wrap:break-word;
  7994. text-transform:none;
  7995. }
  7996. #u8151_img {
  7997. border-width:0px;
  7998. position:absolute;
  7999. left:0px;
  8000. top:0px;
  8001. width:115px;
  8002. height:40px;
  8003. }
  8004. #u8151 {
  8005. border-width:0px;
  8006. position:absolute;
  8007. left:243px;
  8008. top:40px;
  8009. width:115px;
  8010. height:40px;
  8011. display:flex;
  8012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8013. font-weight:400;
  8014. font-style:normal;
  8015. font-size:14px;
  8016. text-align:left;
  8017. line-height:30px;
  8018. }
  8019. #u8151 .text {
  8020. position:absolute;
  8021. align-self:center;
  8022. padding:5px 10px 5px 10px;
  8023. box-sizing:border-box;
  8024. width:100%;
  8025. }
  8026. #u8151_text {
  8027. border-width:0px;
  8028. word-wrap:break-word;
  8029. text-transform:none;
  8030. }
  8031. #u8152_img {
  8032. border-width:0px;
  8033. position:absolute;
  8034. left:0px;
  8035. top:0px;
  8036. width:283px;
  8037. height:40px;
  8038. }
  8039. #u8152 {
  8040. border-width:0px;
  8041. position:absolute;
  8042. left:358px;
  8043. top:40px;
  8044. width:283px;
  8045. height:40px;
  8046. display:flex;
  8047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8048. font-weight:400;
  8049. font-style:normal;
  8050. font-size:14px;
  8051. text-align:left;
  8052. line-height:30px;
  8053. }
  8054. #u8152 .text {
  8055. position:absolute;
  8056. align-self:center;
  8057. padding:5px 10px 5px 10px;
  8058. box-sizing:border-box;
  8059. width:100%;
  8060. }
  8061. #u8152_text {
  8062. border-width:0px;
  8063. word-wrap:break-word;
  8064. text-transform:none;
  8065. visibility:hidden;
  8066. }
  8067. #u8153_img {
  8068. border-width:0px;
  8069. position:absolute;
  8070. left:0px;
  8071. top:0px;
  8072. width:87px;
  8073. height:40px;
  8074. }
  8075. #u8153 {
  8076. border-width:0px;
  8077. position:absolute;
  8078. left:641px;
  8079. top:40px;
  8080. width:87px;
  8081. height:40px;
  8082. display:flex;
  8083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8084. font-weight:400;
  8085. font-style:normal;
  8086. font-size:14px;
  8087. text-align:left;
  8088. line-height:30px;
  8089. }
  8090. #u8153 .text {
  8091. position:absolute;
  8092. align-self:center;
  8093. padding:5px 10px 5px 10px;
  8094. box-sizing:border-box;
  8095. width:100%;
  8096. }
  8097. #u8153_text {
  8098. border-width:0px;
  8099. word-wrap:break-word;
  8100. text-transform:none;
  8101. }
  8102. #u8154_img {
  8103. border-width:0px;
  8104. position:absolute;
  8105. left:0px;
  8106. top:0px;
  8107. width:112px;
  8108. height:40px;
  8109. }
  8110. #u8154 {
  8111. border-width:0px;
  8112. position:absolute;
  8113. left:0px;
  8114. top:80px;
  8115. width:112px;
  8116. height:40px;
  8117. display:flex;
  8118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8119. font-weight:400;
  8120. font-style:normal;
  8121. font-size:14px;
  8122. text-align:left;
  8123. line-height:30px;
  8124. }
  8125. #u8154 .text {
  8126. position:absolute;
  8127. align-self:center;
  8128. padding:5px 10px 5px 10px;
  8129. box-sizing:border-box;
  8130. width:100%;
  8131. }
  8132. #u8154_text {
  8133. border-width:0px;
  8134. word-wrap:break-word;
  8135. text-transform:none;
  8136. }
  8137. #u8155_img {
  8138. border-width:0px;
  8139. position:absolute;
  8140. left:0px;
  8141. top:0px;
  8142. width:131px;
  8143. height:40px;
  8144. }
  8145. #u8155 {
  8146. border-width:0px;
  8147. position:absolute;
  8148. left:112px;
  8149. top:80px;
  8150. width:131px;
  8151. height:40px;
  8152. display:flex;
  8153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8154. font-weight:400;
  8155. font-style:normal;
  8156. font-size:14px;
  8157. text-align:left;
  8158. line-height:30px;
  8159. }
  8160. #u8155 .text {
  8161. position:absolute;
  8162. align-self:center;
  8163. padding:5px 10px 5px 10px;
  8164. box-sizing:border-box;
  8165. width:100%;
  8166. }
  8167. #u8155_text {
  8168. border-width:0px;
  8169. word-wrap:break-word;
  8170. text-transform:none;
  8171. }
  8172. #u8156_img {
  8173. border-width:0px;
  8174. position:absolute;
  8175. left:0px;
  8176. top:0px;
  8177. width:115px;
  8178. height:40px;
  8179. }
  8180. #u8156 {
  8181. border-width:0px;
  8182. position:absolute;
  8183. left:243px;
  8184. top:80px;
  8185. width:115px;
  8186. height:40px;
  8187. display:flex;
  8188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8189. font-weight:400;
  8190. font-style:normal;
  8191. font-size:14px;
  8192. text-align:left;
  8193. line-height:30px;
  8194. }
  8195. #u8156 .text {
  8196. position:absolute;
  8197. align-self:center;
  8198. padding:5px 10px 5px 10px;
  8199. box-sizing:border-box;
  8200. width:100%;
  8201. }
  8202. #u8156_text {
  8203. border-width:0px;
  8204. word-wrap:break-word;
  8205. text-transform:none;
  8206. }
  8207. #u8157_img {
  8208. border-width:0px;
  8209. position:absolute;
  8210. left:0px;
  8211. top:0px;
  8212. width:283px;
  8213. height:40px;
  8214. }
  8215. #u8157 {
  8216. border-width:0px;
  8217. position:absolute;
  8218. left:358px;
  8219. top:80px;
  8220. width:283px;
  8221. height:40px;
  8222. display:flex;
  8223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8224. font-weight:400;
  8225. font-style:normal;
  8226. font-size:14px;
  8227. text-align:left;
  8228. line-height:30px;
  8229. }
  8230. #u8157 .text {
  8231. position:absolute;
  8232. align-self:center;
  8233. padding:5px 10px 5px 10px;
  8234. box-sizing:border-box;
  8235. width:100%;
  8236. }
  8237. #u8157_text {
  8238. border-width:0px;
  8239. word-wrap:break-word;
  8240. text-transform:none;
  8241. visibility:hidden;
  8242. }
  8243. #u8158_img {
  8244. border-width:0px;
  8245. position:absolute;
  8246. left:0px;
  8247. top:0px;
  8248. width:87px;
  8249. height:40px;
  8250. }
  8251. #u8158 {
  8252. border-width:0px;
  8253. position:absolute;
  8254. left:641px;
  8255. top:80px;
  8256. width:87px;
  8257. height:40px;
  8258. display:flex;
  8259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8260. font-weight:400;
  8261. font-style:normal;
  8262. font-size:14px;
  8263. text-align:left;
  8264. line-height:30px;
  8265. }
  8266. #u8158 .text {
  8267. position:absolute;
  8268. align-self:center;
  8269. padding:5px 10px 5px 10px;
  8270. box-sizing:border-box;
  8271. width:100%;
  8272. }
  8273. #u8158_text {
  8274. border-width:0px;
  8275. word-wrap:break-word;
  8276. text-transform:none;
  8277. visibility:hidden;
  8278. }
  8279. #u8159_img {
  8280. border-width:0px;
  8281. position:absolute;
  8282. left:0px;
  8283. top:0px;
  8284. width:112px;
  8285. height:70px;
  8286. }
  8287. #u8159 {
  8288. border-width:0px;
  8289. position:absolute;
  8290. left:0px;
  8291. top:120px;
  8292. width:112px;
  8293. height:70px;
  8294. display:flex;
  8295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8296. font-weight:400;
  8297. font-style:normal;
  8298. font-size:14px;
  8299. text-align:left;
  8300. line-height:30px;
  8301. }
  8302. #u8159 .text {
  8303. position:absolute;
  8304. align-self:center;
  8305. padding:5px 10px 5px 10px;
  8306. box-sizing:border-box;
  8307. width:100%;
  8308. }
  8309. #u8159_text {
  8310. border-width:0px;
  8311. word-wrap:break-word;
  8312. text-transform:none;
  8313. }
  8314. #u8160_img {
  8315. border-width:0px;
  8316. position:absolute;
  8317. left:0px;
  8318. top:0px;
  8319. width:131px;
  8320. height:70px;
  8321. }
  8322. #u8160 {
  8323. border-width:0px;
  8324. position:absolute;
  8325. left:112px;
  8326. top:120px;
  8327. width:131px;
  8328. height:70px;
  8329. display:flex;
  8330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8331. font-weight:400;
  8332. font-style:normal;
  8333. font-size:14px;
  8334. text-align:left;
  8335. line-height:30px;
  8336. }
  8337. #u8160 .text {
  8338. position:absolute;
  8339. align-self:center;
  8340. padding:5px 10px 5px 10px;
  8341. box-sizing:border-box;
  8342. width:100%;
  8343. }
  8344. #u8160_text {
  8345. border-width:0px;
  8346. word-wrap:break-word;
  8347. text-transform:none;
  8348. }
  8349. #u8161_img {
  8350. border-width:0px;
  8351. position:absolute;
  8352. left:0px;
  8353. top:0px;
  8354. width:115px;
  8355. height:70px;
  8356. }
  8357. #u8161 {
  8358. border-width:0px;
  8359. position:absolute;
  8360. left:243px;
  8361. top:120px;
  8362. width:115px;
  8363. height:70px;
  8364. display:flex;
  8365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8366. font-weight:400;
  8367. font-style:normal;
  8368. font-size:14px;
  8369. text-align:left;
  8370. line-height:30px;
  8371. }
  8372. #u8161 .text {
  8373. position:absolute;
  8374. align-self:center;
  8375. padding:5px 10px 5px 10px;
  8376. box-sizing:border-box;
  8377. width:100%;
  8378. }
  8379. #u8161_text {
  8380. border-width:0px;
  8381. word-wrap:break-word;
  8382. text-transform:none;
  8383. }
  8384. #u8162_img {
  8385. border-width:0px;
  8386. position:absolute;
  8387. left:0px;
  8388. top:0px;
  8389. width:283px;
  8390. height:70px;
  8391. }
  8392. #u8162 {
  8393. border-width:0px;
  8394. position:absolute;
  8395. left:358px;
  8396. top:120px;
  8397. width:283px;
  8398. height:70px;
  8399. display:flex;
  8400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8401. font-weight:400;
  8402. font-style:normal;
  8403. font-size:14px;
  8404. text-align:left;
  8405. line-height:30px;
  8406. }
  8407. #u8162 .text {
  8408. position:absolute;
  8409. align-self:center;
  8410. padding:5px 10px 5px 10px;
  8411. box-sizing:border-box;
  8412. width:100%;
  8413. }
  8414. #u8162_text {
  8415. border-width:0px;
  8416. word-wrap:break-word;
  8417. text-transform:none;
  8418. }
  8419. #u8163_img {
  8420. border-width:0px;
  8421. position:absolute;
  8422. left:0px;
  8423. top:0px;
  8424. width:87px;
  8425. height:70px;
  8426. }
  8427. #u8163 {
  8428. border-width:0px;
  8429. position:absolute;
  8430. left:641px;
  8431. top:120px;
  8432. width:87px;
  8433. height:70px;
  8434. display:flex;
  8435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8436. font-weight:400;
  8437. font-style:normal;
  8438. font-size:14px;
  8439. text-align:left;
  8440. line-height:30px;
  8441. }
  8442. #u8163 .text {
  8443. position:absolute;
  8444. align-self:center;
  8445. padding:5px 10px 5px 10px;
  8446. box-sizing:border-box;
  8447. width:100%;
  8448. }
  8449. #u8163_text {
  8450. border-width:0px;
  8451. word-wrap:break-word;
  8452. text-transform:none;
  8453. }
  8454. #u8164_img {
  8455. border-width:0px;
  8456. position:absolute;
  8457. left:0px;
  8458. top:0px;
  8459. width:112px;
  8460. height:40px;
  8461. }
  8462. #u8164 {
  8463. border-width:0px;
  8464. position:absolute;
  8465. left:0px;
  8466. top:190px;
  8467. width:112px;
  8468. height:40px;
  8469. display:flex;
  8470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8471. font-weight:400;
  8472. font-style:normal;
  8473. font-size:14px;
  8474. text-align:left;
  8475. line-height:30px;
  8476. }
  8477. #u8164 .text {
  8478. position:absolute;
  8479. align-self:center;
  8480. padding:5px 10px 5px 10px;
  8481. box-sizing:border-box;
  8482. width:100%;
  8483. }
  8484. #u8164_text {
  8485. border-width:0px;
  8486. word-wrap:break-word;
  8487. text-transform:none;
  8488. }
  8489. #u8165_img {
  8490. border-width:0px;
  8491. position:absolute;
  8492. left:0px;
  8493. top:0px;
  8494. width:131px;
  8495. height:40px;
  8496. }
  8497. #u8165 {
  8498. border-width:0px;
  8499. position:absolute;
  8500. left:112px;
  8501. top:190px;
  8502. width:131px;
  8503. height:40px;
  8504. display:flex;
  8505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8506. font-weight:400;
  8507. font-style:normal;
  8508. font-size:14px;
  8509. text-align:left;
  8510. line-height:20px;
  8511. }
  8512. #u8165 .text {
  8513. position:absolute;
  8514. align-self:center;
  8515. padding:5px 10px 5px 10px;
  8516. box-sizing:border-box;
  8517. width:100%;
  8518. }
  8519. #u8165_text {
  8520. border-width:0px;
  8521. word-wrap:break-word;
  8522. text-transform:none;
  8523. }
  8524. #u8166_img {
  8525. border-width:0px;
  8526. position:absolute;
  8527. left:0px;
  8528. top:0px;
  8529. width:115px;
  8530. height:40px;
  8531. }
  8532. #u8166 {
  8533. border-width:0px;
  8534. position:absolute;
  8535. left:243px;
  8536. top:190px;
  8537. width:115px;
  8538. height:40px;
  8539. display:flex;
  8540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8541. font-weight:400;
  8542. font-style:normal;
  8543. font-size:14px;
  8544. text-align:left;
  8545. line-height:20px;
  8546. }
  8547. #u8166 .text {
  8548. position:absolute;
  8549. align-self:center;
  8550. padding:5px 10px 5px 10px;
  8551. box-sizing:border-box;
  8552. width:100%;
  8553. }
  8554. #u8166_text {
  8555. border-width:0px;
  8556. word-wrap:break-word;
  8557. text-transform:none;
  8558. }
  8559. #u8167_img {
  8560. border-width:0px;
  8561. position:absolute;
  8562. left:0px;
  8563. top:0px;
  8564. width:283px;
  8565. height:40px;
  8566. }
  8567. #u8167 {
  8568. border-width:0px;
  8569. position:absolute;
  8570. left:358px;
  8571. top:190px;
  8572. width:283px;
  8573. height:40px;
  8574. display:flex;
  8575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8576. font-weight:400;
  8577. font-style:normal;
  8578. font-size:14px;
  8579. text-align:left;
  8580. line-height:30px;
  8581. }
  8582. #u8167 .text {
  8583. position:absolute;
  8584. align-self:center;
  8585. padding:5px 10px 5px 10px;
  8586. box-sizing:border-box;
  8587. width:100%;
  8588. }
  8589. #u8167_text {
  8590. border-width:0px;
  8591. word-wrap:break-word;
  8592. text-transform:none;
  8593. visibility:hidden;
  8594. }
  8595. #u8168_img {
  8596. border-width:0px;
  8597. position:absolute;
  8598. left:0px;
  8599. top:0px;
  8600. width:87px;
  8601. height:40px;
  8602. }
  8603. #u8168 {
  8604. border-width:0px;
  8605. position:absolute;
  8606. left:641px;
  8607. top:190px;
  8608. width:87px;
  8609. height:40px;
  8610. display:flex;
  8611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8612. font-weight:400;
  8613. font-style:normal;
  8614. font-size:14px;
  8615. text-align:left;
  8616. line-height:30px;
  8617. }
  8618. #u8168 .text {
  8619. position:absolute;
  8620. align-self:center;
  8621. padding:5px 10px 5px 10px;
  8622. box-sizing:border-box;
  8623. width:100%;
  8624. }
  8625. #u8168_text {
  8626. border-width:0px;
  8627. word-wrap:break-word;
  8628. text-transform:none;
  8629. visibility:hidden;
  8630. }
  8631. #u8169_div {
  8632. border-width:0px;
  8633. position:absolute;
  8634. left:0px;
  8635. top:0px;
  8636. width:729px;
  8637. height:40px;
  8638. background:inherit;
  8639. background-color:rgba(127, 127, 127, 1);
  8640. border:none;
  8641. border-radius:0px;
  8642. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  8643. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  8644. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  8645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8646. font-weight:400;
  8647. font-style:normal;
  8648. font-size:14px;
  8649. color:#FFFFFF;
  8650. line-height:20px;
  8651. }
  8652. #u8169 {
  8653. border-width:0px;
  8654. position:absolute;
  8655. left:2814px;
  8656. top:353px;
  8657. width:729px;
  8658. height:40px;
  8659. display:flex;
  8660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8661. font-weight:400;
  8662. font-style:normal;
  8663. font-size:14px;
  8664. color:#FFFFFF;
  8665. line-height:20px;
  8666. }
  8667. #u8169 .text {
  8668. position:absolute;
  8669. align-self:flex-start;
  8670. padding:10px 10px 10px 10px;
  8671. box-sizing:border-box;
  8672. width:100%;
  8673. }
  8674. #u8169_text {
  8675. border-width:0px;
  8676. word-wrap:break-word;
  8677. text-transform:none;
  8678. }
  8679. #u8170 {
  8680. border-width:0px;
  8681. position:absolute;
  8682. left:0px;
  8683. top:0px;
  8684. width:0px;
  8685. height:0px;
  8686. }
  8687. #u8171_div {
  8688. border-width:0px;
  8689. position:absolute;
  8690. left:0px;
  8691. top:0px;
  8692. width:1381px;
  8693. height:40px;
  8694. background:inherit;
  8695. background-color:rgba(127, 127, 127, 1);
  8696. border:none;
  8697. border-radius:0px;
  8698. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  8699. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  8700. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  8701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8702. font-weight:400;
  8703. font-style:normal;
  8704. font-size:14px;
  8705. color:#FFFFFF;
  8706. line-height:20px;
  8707. }
  8708. #u8171 {
  8709. border-width:0px;
  8710. position:absolute;
  8711. left:2814px;
  8712. top:680px;
  8713. width:1381px;
  8714. height:40px;
  8715. display:flex;
  8716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8717. font-weight:400;
  8718. font-style:normal;
  8719. font-size:14px;
  8720. color:#FFFFFF;
  8721. line-height:20px;
  8722. }
  8723. #u8171 .text {
  8724. position:absolute;
  8725. align-self:flex-start;
  8726. padding:10px 10px 10px 10px;
  8727. box-sizing:border-box;
  8728. width:100%;
  8729. }
  8730. #u8171_text {
  8731. border-width:0px;
  8732. word-wrap:break-word;
  8733. text-transform:none;
  8734. }
  8735. #u8172_div {
  8736. border-width:0px;
  8737. position:absolute;
  8738. left:0px;
  8739. top:0px;
  8740. width:1381px;
  8741. height:1092px;
  8742. background:inherit;
  8743. background-color:rgba(255, 255, 255, 1);
  8744. box-sizing:border-box;
  8745. border-width:1px;
  8746. border-style:solid;
  8747. border-color:rgba(121, 121, 121, 1);
  8748. border-radius:0px;
  8749. -moz-box-shadow:none;
  8750. -webkit-box-shadow:none;
  8751. box-shadow:none;
  8752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8753. font-weight:400;
  8754. font-style:normal;
  8755. font-size:12px;
  8756. color:#FFFFFF;
  8757. text-align:left;
  8758. }
  8759. #u8172 {
  8760. border-width:0px;
  8761. position:absolute;
  8762. left:2814px;
  8763. top:750px;
  8764. width:1381px;
  8765. height:1092px;
  8766. display:flex;
  8767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8768. font-weight:400;
  8769. font-style:normal;
  8770. font-size:12px;
  8771. color:#FFFFFF;
  8772. text-align:left;
  8773. }
  8774. #u8172 .text {
  8775. position:absolute;
  8776. align-self:center;
  8777. padding:2px 2px 2px 50px;
  8778. box-sizing:border-box;
  8779. width:100%;
  8780. }
  8781. #u8172_text {
  8782. border-width:0px;
  8783. word-wrap:break-word;
  8784. text-transform:none;
  8785. visibility:hidden;
  8786. }
  8787. #u8173_div {
  8788. border-width:0px;
  8789. position:absolute;
  8790. left:0px;
  8791. top:0px;
  8792. width:121px;
  8793. height:50px;
  8794. background:inherit;
  8795. background-color:rgba(255, 255, 255, 0);
  8796. border:none;
  8797. border-left:0px;
  8798. border-top:0px;
  8799. border-right:0px;
  8800. border-radius:0px;
  8801. border-bottom-right-radius:0px;
  8802. border-bottom-left-radius:0px;
  8803. -moz-box-shadow:none;
  8804. -webkit-box-shadow:none;
  8805. box-shadow:none;
  8806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8807. font-style:normal;
  8808. }
  8809. #u8173 {
  8810. border-width:0px;
  8811. position:absolute;
  8812. left:2833px;
  8813. top:750px;
  8814. width:121px;
  8815. height:50px;
  8816. display:flex;
  8817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8818. font-style:normal;
  8819. }
  8820. #u8173 .text {
  8821. position:absolute;
  8822. align-self:center;
  8823. padding:0px 0px 0px 0px;
  8824. box-sizing:border-box;
  8825. width:100%;
  8826. }
  8827. #u8173_text {
  8828. border-width:0px;
  8829. white-space:nowrap;
  8830. text-transform:none;
  8831. }
  8832. #u8174_div {
  8833. border-width:0px;
  8834. position:absolute;
  8835. left:0px;
  8836. top:0px;
  8837. width:1299px;
  8838. height:50px;
  8839. background:inherit;
  8840. background-color:rgba(242, 242, 242, 1);
  8841. border:none;
  8842. border-left:0px;
  8843. border-top:0px;
  8844. border-right:0px;
  8845. border-radius:0px;
  8846. border-bottom-right-radius:0px;
  8847. border-bottom-left-radius:0px;
  8848. -moz-box-shadow:none;
  8849. -webkit-box-shadow:none;
  8850. box-shadow:none;
  8851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8852. font-style:normal;
  8853. }
  8854. #u8174 {
  8855. border-width:0px;
  8856. position:absolute;
  8857. left:2843px;
  8858. top:810px;
  8859. width:1299px;
  8860. height:50px;
  8861. display:flex;
  8862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8863. font-style:normal;
  8864. }
  8865. #u8174 .text {
  8866. position:absolute;
  8867. align-self:center;
  8868. padding:0px 0px 0px 20px;
  8869. box-sizing:border-box;
  8870. width:100%;
  8871. }
  8872. #u8174_text {
  8873. border-width:0px;
  8874. word-wrap:break-word;
  8875. text-transform:none;
  8876. }
  8877. #u8175_div {
  8878. border-width:0px;
  8879. position:absolute;
  8880. left:0px;
  8881. top:0px;
  8882. width:451px;
  8883. height:828px;
  8884. background:inherit;
  8885. background-color:rgba(242, 242, 242, 1);
  8886. border:none;
  8887. border-radius:0px;
  8888. -moz-box-shadow:none;
  8889. -webkit-box-shadow:none;
  8890. box-shadow:none;
  8891. }
  8892. #u8175 {
  8893. border-width:0px;
  8894. position:absolute;
  8895. left:2843px;
  8896. top:924px;
  8897. width:451px;
  8898. height:828px;
  8899. display:flex;
  8900. }
  8901. #u8175 .text {
  8902. position:absolute;
  8903. align-self:center;
  8904. padding:2px 2px 2px 2px;
  8905. box-sizing:border-box;
  8906. width:100%;
  8907. }
  8908. #u8175_text {
  8909. border-width:0px;
  8910. word-wrap:break-word;
  8911. text-transform:none;
  8912. visibility:hidden;
  8913. }
  8914. #u8176_div {
  8915. border-width:0px;
  8916. position:absolute;
  8917. left:0px;
  8918. top:0px;
  8919. width:73px;
  8920. height:25px;
  8921. background:inherit;
  8922. background-color:rgba(242, 242, 242, 0);
  8923. border:none;
  8924. border-left:0px;
  8925. border-top:0px;
  8926. border-right:0px;
  8927. border-radius:0px;
  8928. border-bottom-right-radius:0px;
  8929. border-bottom-left-radius:0px;
  8930. -moz-box-shadow:none;
  8931. -webkit-box-shadow:none;
  8932. box-shadow:none;
  8933. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8934. font-weight:500;
  8935. font-style:normal;
  8936. font-size:18px;
  8937. }
  8938. #u8176 {
  8939. border-width:0px;
  8940. position:absolute;
  8941. left:2848px;
  8942. top:884px;
  8943. width:73px;
  8944. height:25px;
  8945. display:flex;
  8946. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8947. font-weight:500;
  8948. font-style:normal;
  8949. font-size:18px;
  8950. }
  8951. #u8176 .text {
  8952. position:absolute;
  8953. align-self:center;
  8954. padding:0px 0px 0px 0px;
  8955. box-sizing:border-box;
  8956. width:100%;
  8957. }
  8958. #u8176_text {
  8959. border-width:0px;
  8960. white-space:nowrap;
  8961. text-transform:none;
  8962. }
  8963. #u8177_div {
  8964. border-width:0px;
  8965. position:absolute;
  8966. left:0px;
  8967. top:0px;
  8968. width:1381px;
  8969. height:50px;
  8970. background:inherit;
  8971. background-color:rgba(255, 255, 255, 1);
  8972. box-sizing:border-box;
  8973. border-width:1px;
  8974. border-style:solid;
  8975. border-color:rgba(121, 121, 121, 1);
  8976. border-radius:0px;
  8977. -moz-box-shadow:none;
  8978. -webkit-box-shadow:none;
  8979. box-shadow:none;
  8980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8981. font-weight:400;
  8982. font-style:normal;
  8983. font-size:12px;
  8984. color:#FFFFFF;
  8985. text-align:left;
  8986. }
  8987. #u8177 {
  8988. border-width:0px;
  8989. position:absolute;
  8990. left:2814px;
  8991. top:1792px;
  8992. width:1381px;
  8993. height:50px;
  8994. display:flex;
  8995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8996. font-weight:400;
  8997. font-style:normal;
  8998. font-size:12px;
  8999. color:#FFFFFF;
  9000. text-align:left;
  9001. }
  9002. #u8177 .text {
  9003. position:absolute;
  9004. align-self:center;
  9005. padding:2px 2px 2px 50px;
  9006. box-sizing:border-box;
  9007. width:100%;
  9008. }
  9009. #u8177_text {
  9010. border-width:0px;
  9011. word-wrap:break-word;
  9012. text-transform:none;
  9013. visibility:hidden;
  9014. }
  9015. #u8178_div {
  9016. border-width:0px;
  9017. position:absolute;
  9018. left:0px;
  9019. top:0px;
  9020. width:61px;
  9021. height:32px;
  9022. background:inherit;
  9023. background-color:rgba(24, 144, 255, 1);
  9024. border:none;
  9025. border-radius:4px;
  9026. -moz-box-shadow:none;
  9027. -webkit-box-shadow:none;
  9028. box-shadow:none;
  9029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9030. font-weight:400;
  9031. font-style:normal;
  9032. font-size:14px;
  9033. color:#FFFFFF;
  9034. }
  9035. #u8178 {
  9036. border-width:0px;
  9037. position:absolute;
  9038. left:4093px;
  9039. top:1801px;
  9040. width:61px;
  9041. height:32px;
  9042. display:flex;
  9043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9044. font-weight:400;
  9045. font-style:normal;
  9046. font-size:14px;
  9047. color:#FFFFFF;
  9048. }
  9049. #u8178 .text {
  9050. position:absolute;
  9051. align-self:center;
  9052. padding:2px 16px 2px 16px;
  9053. box-sizing:border-box;
  9054. width:100%;
  9055. }
  9056. #u8178_text {
  9057. border-width:0px;
  9058. white-space:nowrap;
  9059. text-transform:none;
  9060. }
  9061. #u8179_div {
  9062. border-width:0px;
  9063. position:absolute;
  9064. left:0px;
  9065. top:0px;
  9066. width:61px;
  9067. height:32px;
  9068. background:inherit;
  9069. background-color:rgba(255, 255, 255, 1);
  9070. box-sizing:border-box;
  9071. border-width:1px;
  9072. border-style:solid;
  9073. border-color:rgba(217, 217, 217, 1);
  9074. border-radius:4px;
  9075. -moz-box-shadow:none;
  9076. -webkit-box-shadow:none;
  9077. box-shadow:none;
  9078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9079. font-weight:400;
  9080. font-style:normal;
  9081. font-size:14px;
  9082. color:rgba(0, 0, 0, 0.647058823529412);
  9083. line-height:21px;
  9084. }
  9085. #u8179 {
  9086. border-width:0px;
  9087. position:absolute;
  9088. left:4019px;
  9089. top:1801px;
  9090. width:61px;
  9091. height:32px;
  9092. display:flex;
  9093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9094. font-weight:400;
  9095. font-style:normal;
  9096. font-size:14px;
  9097. color:rgba(0, 0, 0, 0.647058823529412);
  9098. line-height:21px;
  9099. }
  9100. #u8179 .text {
  9101. position:absolute;
  9102. align-self:center;
  9103. padding:2px 16px 2px 16px;
  9104. box-sizing:border-box;
  9105. width:100%;
  9106. }
  9107. #u8179_text {
  9108. border-width:0px;
  9109. white-space:nowrap;
  9110. text-transform:none;
  9111. }
  9112. #u8180_div {
  9113. border-width:0px;
  9114. position:absolute;
  9115. left:0px;
  9116. top:0px;
  9117. width:876px;
  9118. height:50px;
  9119. background:inherit;
  9120. background-color:rgba(242, 242, 242, 1);
  9121. border:none;
  9122. border-left:0px;
  9123. border-top:0px;
  9124. border-right:0px;
  9125. border-radius:0px;
  9126. border-bottom-right-radius:0px;
  9127. border-bottom-left-radius:0px;
  9128. -moz-box-shadow:none;
  9129. -webkit-box-shadow:none;
  9130. box-shadow:none;
  9131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9132. font-style:normal;
  9133. }
  9134. #u8180 {
  9135. border-width:0px;
  9136. position:absolute;
  9137. left:3266px;
  9138. top:810px;
  9139. width:876px;
  9140. height:50px;
  9141. display:flex;
  9142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9143. font-style:normal;
  9144. }
  9145. #u8180 .text {
  9146. position:absolute;
  9147. align-self:center;
  9148. padding:0px 0px 0px 20px;
  9149. box-sizing:border-box;
  9150. width:100%;
  9151. }
  9152. #u8180_text {
  9153. border-width:0px;
  9154. word-wrap:break-word;
  9155. text-transform:none;
  9156. }
  9157. #u8181 {
  9158. border-width:0px;
  9159. position:absolute;
  9160. left:2868px;
  9161. top:950px;
  9162. width:146px;
  9163. height:160px;
  9164. }
  9165. #u8181_children {
  9166. border-width:0px;
  9167. position:absolute;
  9168. left:0px;
  9169. top:0px;
  9170. width:0px;
  9171. height:0px;
  9172. }
  9173. #u8182 {
  9174. border-width:0px;
  9175. position:absolute;
  9176. left:0px;
  9177. top:0px;
  9178. width:106px;
  9179. height:20px;
  9180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9181. font-weight:400;
  9182. font-style:normal;
  9183. }
  9184. #u8183_img {
  9185. border-width:0px;
  9186. position:absolute;
  9187. left:0px;
  9188. top:0px;
  9189. width:9px;
  9190. height:9px;
  9191. }
  9192. #u8183 {
  9193. border-width:0px;
  9194. position:absolute;
  9195. left:6px;
  9196. top:6px;
  9197. width:9px;
  9198. height:9px;
  9199. display:flex;
  9200. }
  9201. #u8183 .text {
  9202. position:absolute;
  9203. align-self:center;
  9204. padding:2px 2px 2px 2px;
  9205. box-sizing:border-box;
  9206. width:100%;
  9207. }
  9208. #u8183_img.selected {
  9209. }
  9210. #u8183.selected {
  9211. }
  9212. #u8183_text {
  9213. border-width:0px;
  9214. word-wrap:break-word;
  9215. text-transform:none;
  9216. visibility:hidden;
  9217. }
  9218. #u8184_div {
  9219. border-width:0px;
  9220. position:absolute;
  9221. left:0px;
  9222. top:0px;
  9223. width:84px;
  9224. height:20px;
  9225. background:inherit;
  9226. background-color:rgba(255, 255, 255, 0);
  9227. border:none;
  9228. border-radius:0px;
  9229. -moz-box-shadow:none;
  9230. -webkit-box-shadow:none;
  9231. box-shadow:none;
  9232. }
  9233. #u8184 {
  9234. border-width:0px;
  9235. position:absolute;
  9236. left:22px;
  9237. top:0px;
  9238. width:84px;
  9239. height:20px;
  9240. display:flex;
  9241. }
  9242. #u8184 .text {
  9243. position:absolute;
  9244. align-self:center;
  9245. padding:2px 2px 2px 3px;
  9246. box-sizing:border-box;
  9247. width:100%;
  9248. }
  9249. #u8184_text {
  9250. border-width:0px;
  9251. white-space:nowrap;
  9252. text-transform:none;
  9253. }
  9254. #u8182_children {
  9255. border-width:0px;
  9256. position:absolute;
  9257. left:0px;
  9258. top:0px;
  9259. width:0px;
  9260. height:0px;
  9261. }
  9262. #u8185 {
  9263. border-width:0px;
  9264. position:absolute;
  9265. left:20px;
  9266. top:20px;
  9267. width:106px;
  9268. height:20px;
  9269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9270. font-weight:400;
  9271. font-style:normal;
  9272. }
  9273. #u8186_img {
  9274. border-width:0px;
  9275. position:absolute;
  9276. left:0px;
  9277. top:0px;
  9278. width:9px;
  9279. height:9px;
  9280. }
  9281. #u8186 {
  9282. border-width:0px;
  9283. position:absolute;
  9284. left:6px;
  9285. top:6px;
  9286. width:9px;
  9287. height:9px;
  9288. display:flex;
  9289. }
  9290. #u8186 .text {
  9291. position:absolute;
  9292. align-self:center;
  9293. padding:2px 2px 2px 2px;
  9294. box-sizing:border-box;
  9295. width:100%;
  9296. }
  9297. #u8186_img.selected {
  9298. }
  9299. #u8186.selected {
  9300. }
  9301. #u8186_text {
  9302. border-width:0px;
  9303. word-wrap:break-word;
  9304. text-transform:none;
  9305. visibility:hidden;
  9306. }
  9307. #u8187_div {
  9308. border-width:0px;
  9309. position:absolute;
  9310. left:0px;
  9311. top:0px;
  9312. width:84px;
  9313. height:20px;
  9314. background:inherit;
  9315. background-color:rgba(255, 255, 255, 0);
  9316. border:none;
  9317. border-radius:0px;
  9318. -moz-box-shadow:none;
  9319. -webkit-box-shadow:none;
  9320. box-shadow:none;
  9321. }
  9322. #u8187 {
  9323. border-width:0px;
  9324. position:absolute;
  9325. left:22px;
  9326. top:0px;
  9327. width:84px;
  9328. height:20px;
  9329. display:flex;
  9330. }
  9331. #u8187 .text {
  9332. position:absolute;
  9333. align-self:center;
  9334. padding:2px 2px 2px 3px;
  9335. box-sizing:border-box;
  9336. width:100%;
  9337. }
  9338. #u8187_text {
  9339. border-width:0px;
  9340. white-space:nowrap;
  9341. text-transform:none;
  9342. }
  9343. #u8185_children {
  9344. border-width:0px;
  9345. position:absolute;
  9346. left:0px;
  9347. top:0px;
  9348. width:0px;
  9349. height:0px;
  9350. }
  9351. #u8188 {
  9352. border-width:0px;
  9353. position:absolute;
  9354. left:20px;
  9355. top:20px;
  9356. width:106px;
  9357. height:20px;
  9358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9359. font-weight:400;
  9360. font-style:normal;
  9361. }
  9362. #u8189_div {
  9363. border-width:0px;
  9364. position:absolute;
  9365. left:0px;
  9366. top:0px;
  9367. width:84px;
  9368. height:20px;
  9369. background:inherit;
  9370. background-color:rgba(255, 255, 255, 0);
  9371. border:none;
  9372. border-radius:0px;
  9373. -moz-box-shadow:none;
  9374. -webkit-box-shadow:none;
  9375. box-shadow:none;
  9376. }
  9377. #u8189 {
  9378. border-width:0px;
  9379. position:absolute;
  9380. left:22px;
  9381. top:0px;
  9382. width:84px;
  9383. height:20px;
  9384. display:flex;
  9385. }
  9386. #u8189 .text {
  9387. position:absolute;
  9388. align-self:center;
  9389. padding:2px 2px 2px 3px;
  9390. box-sizing:border-box;
  9391. width:100%;
  9392. }
  9393. #u8189_text {
  9394. border-width:0px;
  9395. white-space:nowrap;
  9396. text-transform:none;
  9397. }
  9398. #u8190 {
  9399. border-width:0px;
  9400. position:absolute;
  9401. left:20px;
  9402. top:40px;
  9403. width:106px;
  9404. height:20px;
  9405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9406. font-weight:400;
  9407. font-style:normal;
  9408. }
  9409. #u8191_div {
  9410. border-width:0px;
  9411. position:absolute;
  9412. left:0px;
  9413. top:0px;
  9414. width:84px;
  9415. height:20px;
  9416. background:inherit;
  9417. background-color:rgba(255, 255, 255, 0);
  9418. border:none;
  9419. border-radius:0px;
  9420. -moz-box-shadow:none;
  9421. -webkit-box-shadow:none;
  9422. box-shadow:none;
  9423. }
  9424. #u8191 {
  9425. border-width:0px;
  9426. position:absolute;
  9427. left:22px;
  9428. top:0px;
  9429. width:84px;
  9430. height:20px;
  9431. display:flex;
  9432. }
  9433. #u8191 .text {
  9434. position:absolute;
  9435. align-self:center;
  9436. padding:2px 2px 2px 3px;
  9437. box-sizing:border-box;
  9438. width:100%;
  9439. }
  9440. #u8191_text {
  9441. border-width:0px;
  9442. white-space:nowrap;
  9443. text-transform:none;
  9444. }
  9445. #u8192 {
  9446. border-width:0px;
  9447. position:absolute;
  9448. left:20px;
  9449. top:80px;
  9450. width:106px;
  9451. height:20px;
  9452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9453. font-weight:400;
  9454. font-style:normal;
  9455. }
  9456. #u8193_div {
  9457. border-width:0px;
  9458. position:absolute;
  9459. left:0px;
  9460. top:0px;
  9461. width:84px;
  9462. height:20px;
  9463. background:inherit;
  9464. background-color:rgba(255, 255, 255, 0);
  9465. border:none;
  9466. border-radius:0px;
  9467. -moz-box-shadow:none;
  9468. -webkit-box-shadow:none;
  9469. box-shadow:none;
  9470. }
  9471. #u8193 {
  9472. border-width:0px;
  9473. position:absolute;
  9474. left:22px;
  9475. top:0px;
  9476. width:84px;
  9477. height:20px;
  9478. display:flex;
  9479. }
  9480. #u8193 .text {
  9481. position:absolute;
  9482. align-self:center;
  9483. padding:2px 2px 2px 3px;
  9484. box-sizing:border-box;
  9485. width:100%;
  9486. }
  9487. #u8193_text {
  9488. border-width:0px;
  9489. white-space:nowrap;
  9490. text-transform:none;
  9491. }
  9492. #u8194 {
  9493. border-width:0px;
  9494. position:absolute;
  9495. left:20px;
  9496. top:100px;
  9497. width:106px;
  9498. height:20px;
  9499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9500. font-weight:400;
  9501. font-style:normal;
  9502. }
  9503. #u8195_div {
  9504. border-width:0px;
  9505. position:absolute;
  9506. left:0px;
  9507. top:0px;
  9508. width:84px;
  9509. height:20px;
  9510. background:inherit;
  9511. background-color:rgba(255, 255, 255, 0);
  9512. border:none;
  9513. border-radius:0px;
  9514. -moz-box-shadow:none;
  9515. -webkit-box-shadow:none;
  9516. box-shadow:none;
  9517. }
  9518. #u8195 {
  9519. border-width:0px;
  9520. position:absolute;
  9521. left:22px;
  9522. top:0px;
  9523. width:84px;
  9524. height:20px;
  9525. display:flex;
  9526. }
  9527. #u8195 .text {
  9528. position:absolute;
  9529. align-self:center;
  9530. padding:2px 2px 2px 3px;
  9531. box-sizing:border-box;
  9532. width:100%;
  9533. }
  9534. #u8195_text {
  9535. border-width:0px;
  9536. white-space:nowrap;
  9537. text-transform:none;
  9538. }
  9539. #u8196 {
  9540. border-width:0px;
  9541. position:absolute;
  9542. left:0px;
  9543. top:120px;
  9544. width:106px;
  9545. height:20px;
  9546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9547. font-weight:400;
  9548. font-style:normal;
  9549. }
  9550. #u8197_img {
  9551. border-width:0px;
  9552. position:absolute;
  9553. left:0px;
  9554. top:0px;
  9555. width:9px;
  9556. height:9px;
  9557. }
  9558. #u8197 {
  9559. border-width:0px;
  9560. position:absolute;
  9561. left:6px;
  9562. top:6px;
  9563. width:9px;
  9564. height:9px;
  9565. display:flex;
  9566. }
  9567. #u8197 .text {
  9568. position:absolute;
  9569. align-self:center;
  9570. padding:2px 2px 2px 2px;
  9571. box-sizing:border-box;
  9572. width:100%;
  9573. }
  9574. #u8197_img.selected {
  9575. }
  9576. #u8197.selected {
  9577. }
  9578. #u8197_text {
  9579. border-width:0px;
  9580. word-wrap:break-word;
  9581. text-transform:none;
  9582. visibility:hidden;
  9583. }
  9584. #u8198_div {
  9585. border-width:0px;
  9586. position:absolute;
  9587. left:0px;
  9588. top:0px;
  9589. width:84px;
  9590. height:20px;
  9591. background:inherit;
  9592. background-color:rgba(255, 255, 255, 0);
  9593. border:none;
  9594. border-radius:0px;
  9595. -moz-box-shadow:none;
  9596. -webkit-box-shadow:none;
  9597. box-shadow:none;
  9598. }
  9599. #u8198 {
  9600. border-width:0px;
  9601. position:absolute;
  9602. left:22px;
  9603. top:0px;
  9604. width:84px;
  9605. height:20px;
  9606. display:flex;
  9607. }
  9608. #u8198 .text {
  9609. position:absolute;
  9610. align-self:center;
  9611. padding:2px 2px 2px 3px;
  9612. box-sizing:border-box;
  9613. width:100%;
  9614. }
  9615. #u8198_text {
  9616. border-width:0px;
  9617. white-space:nowrap;
  9618. text-transform:none;
  9619. }
  9620. #u8196_children {
  9621. border-width:0px;
  9622. position:absolute;
  9623. left:0px;
  9624. top:0px;
  9625. width:0px;
  9626. height:0px;
  9627. }
  9628. #u8199 {
  9629. border-width:0px;
  9630. position:absolute;
  9631. left:20px;
  9632. top:20px;
  9633. width:97px;
  9634. height:20px;
  9635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9636. font-weight:400;
  9637. font-style:normal;
  9638. }
  9639. #u8200_div {
  9640. border-width:0px;
  9641. position:absolute;
  9642. left:0px;
  9643. top:0px;
  9644. width:75px;
  9645. height:20px;
  9646. background:inherit;
  9647. background-color:rgba(255, 255, 255, 0);
  9648. border:none;
  9649. border-radius:0px;
  9650. -moz-box-shadow:none;
  9651. -webkit-box-shadow:none;
  9652. box-shadow:none;
  9653. }
  9654. #u8200 {
  9655. border-width:0px;
  9656. position:absolute;
  9657. left:22px;
  9658. top:0px;
  9659. width:75px;
  9660. height:20px;
  9661. display:flex;
  9662. }
  9663. #u8200 .text {
  9664. position:absolute;
  9665. align-self:center;
  9666. padding:2px 2px 2px 3px;
  9667. box-sizing:border-box;
  9668. width:100%;
  9669. }
  9670. #u8200_text {
  9671. border-width:0px;
  9672. white-space:nowrap;
  9673. text-transform:none;
  9674. }
  9675. #u8201 label {
  9676. left:0px;
  9677. width:100%;
  9678. }
  9679. #u8201_img {
  9680. border-width:0px;
  9681. position:absolute;
  9682. left:0px;
  9683. top:3px;
  9684. width:12px;
  9685. height:12px;
  9686. }
  9687. #u8201 {
  9688. border-width:0px;
  9689. position:absolute;
  9690. left:3112px;
  9691. top:954px;
  9692. width:100px;
  9693. height:18px;
  9694. display:flex;
  9695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9696. font-weight:400;
  9697. font-style:normal;
  9698. }
  9699. #u8201 .text {
  9700. position:absolute;
  9701. align-self:center;
  9702. padding:0px 2px 0px 2px;
  9703. box-sizing:border-box;
  9704. }
  9705. #u8201_img.selected {
  9706. }
  9707. #u8201.selected {
  9708. }
  9709. #u8201_img.disabled {
  9710. }
  9711. #u8201.disabled {
  9712. }
  9713. #u8201_img.selectedDisabled {
  9714. }
  9715. #u8201.selectedDisabled {
  9716. }
  9717. #u8201_text {
  9718. border-width:0px;
  9719. position:absolute;
  9720. left:14px;
  9721. top:0px;
  9722. width:84px;
  9723. word-wrap:break-word;
  9724. text-transform:none;
  9725. }
  9726. #u8201_input {
  9727. border-width:0px;
  9728. position:absolute;
  9729. left:0px;
  9730. top:0px;
  9731. width:0px;
  9732. height:0px;
  9733. opacity:0;
  9734. }
  9735. #u8202 label {
  9736. left:0px;
  9737. width:100%;
  9738. }
  9739. #u8202_img {
  9740. border-width:0px;
  9741. position:absolute;
  9742. left:0px;
  9743. top:3px;
  9744. width:12px;
  9745. height:12px;
  9746. }
  9747. #u8202 {
  9748. border-width:0px;
  9749. position:absolute;
  9750. left:3128px;
  9751. top:989px;
  9752. width:100px;
  9753. height:18px;
  9754. display:flex;
  9755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9756. font-weight:400;
  9757. font-style:normal;
  9758. }
  9759. #u8202 .text {
  9760. position:absolute;
  9761. align-self:center;
  9762. padding:0px 2px 0px 2px;
  9763. box-sizing:border-box;
  9764. }
  9765. #u8202_img.selected {
  9766. }
  9767. #u8202.selected {
  9768. }
  9769. #u8202_img.disabled {
  9770. }
  9771. #u8202.disabled {
  9772. }
  9773. #u8202_img.selectedDisabled {
  9774. }
  9775. #u8202.selectedDisabled {
  9776. }
  9777. #u8202_text {
  9778. border-width:0px;
  9779. position:absolute;
  9780. left:14px;
  9781. top:0px;
  9782. width:84px;
  9783. word-wrap:break-word;
  9784. text-transform:none;
  9785. }
  9786. #u8202_input {
  9787. border-width:0px;
  9788. position:absolute;
  9789. left:0px;
  9790. top:0px;
  9791. width:0px;
  9792. height:0px;
  9793. opacity:0;
  9794. }
  9795. #u8203 label {
  9796. left:0px;
  9797. width:100%;
  9798. }
  9799. #u8203_img {
  9800. border-width:0px;
  9801. position:absolute;
  9802. left:0px;
  9803. top:3px;
  9804. width:12px;
  9805. height:12px;
  9806. }
  9807. #u8203 {
  9808. border-width:0px;
  9809. position:absolute;
  9810. left:3145px;
  9811. top:1021px;
  9812. width:100px;
  9813. height:18px;
  9814. display:flex;
  9815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9816. font-weight:400;
  9817. font-style:normal;
  9818. }
  9819. #u8203 .text {
  9820. position:absolute;
  9821. align-self:center;
  9822. padding:0px 2px 0px 2px;
  9823. box-sizing:border-box;
  9824. }
  9825. #u8203_img.selected {
  9826. }
  9827. #u8203.selected {
  9828. }
  9829. #u8203_img.disabled {
  9830. }
  9831. #u8203.disabled {
  9832. }
  9833. #u8203_img.selectedDisabled {
  9834. }
  9835. #u8203.selectedDisabled {
  9836. }
  9837. #u8203_text {
  9838. border-width:0px;
  9839. position:absolute;
  9840. left:14px;
  9841. top:0px;
  9842. width:84px;
  9843. word-wrap:break-word;
  9844. text-transform:none;
  9845. }
  9846. #u8203_input {
  9847. border-width:0px;
  9848. position:absolute;
  9849. left:0px;
  9850. top:0px;
  9851. width:0px;
  9852. height:0px;
  9853. opacity:0;
  9854. }
  9855. #u8204 label {
  9856. left:0px;
  9857. width:100%;
  9858. }
  9859. #u8204_img {
  9860. border-width:0px;
  9861. position:absolute;
  9862. left:0px;
  9863. top:3px;
  9864. width:12px;
  9865. height:12px;
  9866. }
  9867. #u8204 {
  9868. border-width:0px;
  9869. position:absolute;
  9870. left:3145px;
  9871. top:1051px;
  9872. width:100px;
  9873. height:18px;
  9874. display:flex;
  9875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9876. font-weight:400;
  9877. font-style:normal;
  9878. }
  9879. #u8204 .text {
  9880. position:absolute;
  9881. align-self:center;
  9882. padding:0px 2px 0px 2px;
  9883. box-sizing:border-box;
  9884. }
  9885. #u8204_img.selected {
  9886. }
  9887. #u8204.selected {
  9888. }
  9889. #u8204_img.disabled {
  9890. }
  9891. #u8204.disabled {
  9892. }
  9893. #u8204_img.selectedDisabled {
  9894. }
  9895. #u8204.selectedDisabled {
  9896. }
  9897. #u8204_text {
  9898. border-width:0px;
  9899. position:absolute;
  9900. left:14px;
  9901. top:0px;
  9902. width:84px;
  9903. word-wrap:break-word;
  9904. text-transform:none;
  9905. }
  9906. #u8204_input {
  9907. border-width:0px;
  9908. position:absolute;
  9909. left:0px;
  9910. top:0px;
  9911. width:0px;
  9912. height:0px;
  9913. opacity:0;
  9914. }
  9915. #u8205 label {
  9916. left:0px;
  9917. width:100%;
  9918. }
  9919. #u8205_img {
  9920. border-width:0px;
  9921. position:absolute;
  9922. left:0px;
  9923. top:3px;
  9924. width:12px;
  9925. height:12px;
  9926. }
  9927. #u8205 {
  9928. border-width:0px;
  9929. position:absolute;
  9930. left:3145px;
  9931. top:1083px;
  9932. width:100px;
  9933. height:18px;
  9934. display:flex;
  9935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9936. font-weight:400;
  9937. font-style:normal;
  9938. }
  9939. #u8205 .text {
  9940. position:absolute;
  9941. align-self:center;
  9942. padding:0px 2px 0px 2px;
  9943. box-sizing:border-box;
  9944. }
  9945. #u8205_img.selected {
  9946. }
  9947. #u8205.selected {
  9948. }
  9949. #u8205_img.disabled {
  9950. }
  9951. #u8205.disabled {
  9952. }
  9953. #u8205_img.selectedDisabled {
  9954. }
  9955. #u8205.selectedDisabled {
  9956. }
  9957. #u8205_text {
  9958. border-width:0px;
  9959. position:absolute;
  9960. left:14px;
  9961. top:0px;
  9962. width:84px;
  9963. word-wrap:break-word;
  9964. text-transform:none;
  9965. }
  9966. #u8205_input {
  9967. border-width:0px;
  9968. position:absolute;
  9969. left:0px;
  9970. top:0px;
  9971. width:0px;
  9972. height:0px;
  9973. opacity:0;
  9974. }
  9975. #u8206 label {
  9976. left:0px;
  9977. width:100%;
  9978. }
  9979. #u8206_img {
  9980. border-width:0px;
  9981. position:absolute;
  9982. left:0px;
  9983. top:3px;
  9984. width:12px;
  9985. height:12px;
  9986. }
  9987. #u8206 {
  9988. border-width:0px;
  9989. position:absolute;
  9990. left:3128px;
  9991. top:1117px;
  9992. width:100px;
  9993. height:18px;
  9994. display:flex;
  9995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9996. font-weight:400;
  9997. font-style:normal;
  9998. }
  9999. #u8206 .text {
  10000. position:absolute;
  10001. align-self:center;
  10002. padding:0px 2px 0px 2px;
  10003. box-sizing:border-box;
  10004. }
  10005. #u8206_img.selected {
  10006. }
  10007. #u8206.selected {
  10008. }
  10009. #u8206_img.disabled {
  10010. }
  10011. #u8206.disabled {
  10012. }
  10013. #u8206_img.selectedDisabled {
  10014. }
  10015. #u8206.selectedDisabled {
  10016. }
  10017. #u8206_text {
  10018. border-width:0px;
  10019. position:absolute;
  10020. left:14px;
  10021. top:0px;
  10022. width:84px;
  10023. word-wrap:break-word;
  10024. text-transform:none;
  10025. }
  10026. #u8206_input {
  10027. border-width:0px;
  10028. position:absolute;
  10029. left:0px;
  10030. top:0px;
  10031. width:0px;
  10032. height:0px;
  10033. opacity:0;
  10034. }
  10035. #u8207 label {
  10036. left:0px;
  10037. width:100%;
  10038. }
  10039. #u8207_img {
  10040. border-width:0px;
  10041. position:absolute;
  10042. left:0px;
  10043. top:3px;
  10044. width:12px;
  10045. height:12px;
  10046. }
  10047. #u8207 {
  10048. border-width:0px;
  10049. position:absolute;
  10050. left:3145px;
  10051. top:1149px;
  10052. width:100px;
  10053. height:18px;
  10054. display:flex;
  10055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10056. font-weight:400;
  10057. font-style:normal;
  10058. }
  10059. #u8207 .text {
  10060. position:absolute;
  10061. align-self:center;
  10062. padding:0px 2px 0px 2px;
  10063. box-sizing:border-box;
  10064. }
  10065. #u8207_img.selected {
  10066. }
  10067. #u8207.selected {
  10068. }
  10069. #u8207_img.disabled {
  10070. }
  10071. #u8207.disabled {
  10072. }
  10073. #u8207_img.selectedDisabled {
  10074. }
  10075. #u8207.selectedDisabled {
  10076. }
  10077. #u8207_text {
  10078. border-width:0px;
  10079. position:absolute;
  10080. left:14px;
  10081. top:0px;
  10082. width:84px;
  10083. word-wrap:break-word;
  10084. text-transform:none;
  10085. }
  10086. #u8207_input {
  10087. border-width:0px;
  10088. position:absolute;
  10089. left:0px;
  10090. top:0px;
  10091. width:0px;
  10092. height:0px;
  10093. opacity:0;
  10094. }
  10095. #u8208 label {
  10096. left:0px;
  10097. width:100%;
  10098. }
  10099. #u8208_img {
  10100. border-width:0px;
  10101. position:absolute;
  10102. left:0px;
  10103. top:3px;
  10104. width:12px;
  10105. height:12px;
  10106. }
  10107. #u8208 {
  10108. border-width:0px;
  10109. position:absolute;
  10110. left:3145px;
  10111. top:1179px;
  10112. width:100px;
  10113. height:18px;
  10114. display:flex;
  10115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10116. font-weight:400;
  10117. font-style:normal;
  10118. }
  10119. #u8208 .text {
  10120. position:absolute;
  10121. align-self:center;
  10122. padding:0px 2px 0px 2px;
  10123. box-sizing:border-box;
  10124. }
  10125. #u8208_img.selected {
  10126. }
  10127. #u8208.selected {
  10128. }
  10129. #u8208_img.disabled {
  10130. }
  10131. #u8208.disabled {
  10132. }
  10133. #u8208_img.selectedDisabled {
  10134. }
  10135. #u8208.selectedDisabled {
  10136. }
  10137. #u8208_text {
  10138. border-width:0px;
  10139. position:absolute;
  10140. left:14px;
  10141. top:0px;
  10142. width:84px;
  10143. word-wrap:break-word;
  10144. text-transform:none;
  10145. }
  10146. #u8208_input {
  10147. border-width:0px;
  10148. position:absolute;
  10149. left:0px;
  10150. top:0px;
  10151. width:0px;
  10152. height:0px;
  10153. opacity:0;
  10154. }
  10155. #u8209 label {
  10156. left:0px;
  10157. width:100%;
  10158. }
  10159. #u8209_img {
  10160. border-width:0px;
  10161. position:absolute;
  10162. left:0px;
  10163. top:3px;
  10164. width:12px;
  10165. height:12px;
  10166. }
  10167. #u8209 {
  10168. border-width:0px;
  10169. position:absolute;
  10170. left:3145px;
  10171. top:1211px;
  10172. width:100px;
  10173. height:18px;
  10174. display:flex;
  10175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10176. font-weight:400;
  10177. font-style:normal;
  10178. }
  10179. #u8209 .text {
  10180. position:absolute;
  10181. align-self:center;
  10182. padding:0px 2px 0px 2px;
  10183. box-sizing:border-box;
  10184. }
  10185. #u8209_img.selected {
  10186. }
  10187. #u8209.selected {
  10188. }
  10189. #u8209_img.disabled {
  10190. }
  10191. #u8209.disabled {
  10192. }
  10193. #u8209_img.selectedDisabled {
  10194. }
  10195. #u8209.selectedDisabled {
  10196. }
  10197. #u8209_text {
  10198. border-width:0px;
  10199. position:absolute;
  10200. left:14px;
  10201. top:0px;
  10202. width:84px;
  10203. word-wrap:break-word;
  10204. text-transform:none;
  10205. }
  10206. #u8209_input {
  10207. border-width:0px;
  10208. position:absolute;
  10209. left:0px;
  10210. top:0px;
  10211. width:0px;
  10212. height:0px;
  10213. opacity:0;
  10214. }
  10215. #u8210 label {
  10216. left:0px;
  10217. width:100%;
  10218. }
  10219. #u8210_img {
  10220. border-width:0px;
  10221. position:absolute;
  10222. left:0px;
  10223. top:3px;
  10224. width:12px;
  10225. height:12px;
  10226. }
  10227. #u8210 {
  10228. border-width:0px;
  10229. position:absolute;
  10230. left:3112px;
  10231. top:1240px;
  10232. width:100px;
  10233. height:18px;
  10234. display:flex;
  10235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10236. font-weight:400;
  10237. font-style:normal;
  10238. }
  10239. #u8210 .text {
  10240. position:absolute;
  10241. align-self:center;
  10242. padding:0px 2px 0px 2px;
  10243. box-sizing:border-box;
  10244. }
  10245. #u8210_img.selected {
  10246. }
  10247. #u8210.selected {
  10248. }
  10249. #u8210_img.disabled {
  10250. }
  10251. #u8210.disabled {
  10252. }
  10253. #u8210_img.selectedDisabled {
  10254. }
  10255. #u8210.selectedDisabled {
  10256. }
  10257. #u8210_text {
  10258. border-width:0px;
  10259. position:absolute;
  10260. left:14px;
  10261. top:0px;
  10262. width:84px;
  10263. word-wrap:break-word;
  10264. text-transform:none;
  10265. }
  10266. #u8210_input {
  10267. border-width:0px;
  10268. position:absolute;
  10269. left:0px;
  10270. top:0px;
  10271. width:0px;
  10272. height:0px;
  10273. opacity:0;
  10274. }
  10275. #u8211 label {
  10276. left:0px;
  10277. width:100%;
  10278. }
  10279. #u8211_img {
  10280. border-width:0px;
  10281. position:absolute;
  10282. left:0px;
  10283. top:3px;
  10284. width:12px;
  10285. height:12px;
  10286. }
  10287. #u8211 {
  10288. border-width:0px;
  10289. position:absolute;
  10290. left:3112px;
  10291. top:1271px;
  10292. width:100px;
  10293. height:18px;
  10294. display:flex;
  10295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10296. font-weight:400;
  10297. font-style:normal;
  10298. }
  10299. #u8211 .text {
  10300. position:absolute;
  10301. align-self:center;
  10302. padding:0px 2px 0px 2px;
  10303. box-sizing:border-box;
  10304. }
  10305. #u8211_img.selected {
  10306. }
  10307. #u8211.selected {
  10308. }
  10309. #u8211_img.disabled {
  10310. }
  10311. #u8211.disabled {
  10312. }
  10313. #u8211_img.selectedDisabled {
  10314. }
  10315. #u8211.selectedDisabled {
  10316. }
  10317. #u8211_text {
  10318. border-width:0px;
  10319. position:absolute;
  10320. left:14px;
  10321. top:0px;
  10322. width:84px;
  10323. word-wrap:break-word;
  10324. text-transform:none;
  10325. }
  10326. #u8211_input {
  10327. border-width:0px;
  10328. position:absolute;
  10329. left:0px;
  10330. top:0px;
  10331. width:0px;
  10332. height:0px;
  10333. opacity:0;
  10334. }
  10335. #u8212_img {
  10336. border-width:0px;
  10337. position:absolute;
  10338. left:0px;
  10339. top:0px;
  10340. width:2px;
  10341. height:761px;
  10342. }
  10343. #u8212 {
  10344. border-width:0px;
  10345. position:absolute;
  10346. left:3073px;
  10347. top:958px;
  10348. width:1px;
  10349. height:760px;
  10350. display:flex;
  10351. }
  10352. #u8212 .text {
  10353. position:absolute;
  10354. align-self:center;
  10355. padding:2px 2px 2px 2px;
  10356. box-sizing:border-box;
  10357. width:100%;
  10358. }
  10359. #u8212_text {
  10360. border-width:0px;
  10361. word-wrap:break-word;
  10362. text-transform:none;
  10363. visibility:hidden;
  10364. }
  10365. #u8213_div {
  10366. border-width:0px;
  10367. position:absolute;
  10368. left:0px;
  10369. top:0px;
  10370. width:91px;
  10371. height:25px;
  10372. background:inherit;
  10373. background-color:rgba(242, 242, 242, 0);
  10374. border:none;
  10375. border-left:0px;
  10376. border-top:0px;
  10377. border-right:0px;
  10378. border-radius:0px;
  10379. border-bottom-right-radius:0px;
  10380. border-bottom-left-radius:0px;
  10381. -moz-box-shadow:none;
  10382. -webkit-box-shadow:none;
  10383. box-shadow:none;
  10384. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10385. font-weight:500;
  10386. font-style:normal;
  10387. font-size:18px;
  10388. }
  10389. #u8213 {
  10390. border-width:0px;
  10391. position:absolute;
  10392. left:3352px;
  10393. top:884px;
  10394. width:91px;
  10395. height:25px;
  10396. display:flex;
  10397. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10398. font-weight:500;
  10399. font-style:normal;
  10400. font-size:18px;
  10401. }
  10402. #u8213 .text {
  10403. position:absolute;
  10404. align-self:center;
  10405. padding:0px 0px 0px 0px;
  10406. box-sizing:border-box;
  10407. width:100%;
  10408. }
  10409. #u8213_text {
  10410. border-width:0px;
  10411. white-space:nowrap;
  10412. text-transform:none;
  10413. }
  10414. #u8214 {
  10415. border-width:0px;
  10416. position:absolute;
  10417. left:0px;
  10418. top:0px;
  10419. width:0px;
  10420. height:0px;
  10421. }
  10422. #u8215_div {
  10423. border-width:0px;
  10424. position:absolute;
  10425. left:0px;
  10426. top:0px;
  10427. width:790px;
  10428. height:48px;
  10429. background:inherit;
  10430. background-color:rgba(242, 242, 242, 1);
  10431. border:none;
  10432. border-radius:0px;
  10433. -moz-box-shadow:none;
  10434. -webkit-box-shadow:none;
  10435. box-shadow:none;
  10436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10437. font-weight:400;
  10438. font-style:normal;
  10439. text-align:left;
  10440. }
  10441. #u8215 {
  10442. border-width:0px;
  10443. position:absolute;
  10444. left:3352px;
  10445. top:924px;
  10446. width:790px;
  10447. height:48px;
  10448. display:flex;
  10449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10450. font-weight:400;
  10451. font-style:normal;
  10452. text-align:left;
  10453. }
  10454. #u8215 .text {
  10455. position:absolute;
  10456. align-self:center;
  10457. padding:2px 2px 2px 30px;
  10458. box-sizing:border-box;
  10459. width:100%;
  10460. }
  10461. #u8215_text {
  10462. border-width:0px;
  10463. word-wrap:break-word;
  10464. text-transform:none;
  10465. }
  10466. #u8216_div {
  10467. border-width:0px;
  10468. position:absolute;
  10469. left:0px;
  10470. top:0px;
  10471. width:79px;
  10472. height:17px;
  10473. background:inherit;
  10474. background-color:rgba(242, 242, 242, 0);
  10475. border:none;
  10476. border-left:0px;
  10477. border-top:0px;
  10478. border-right:0px;
  10479. border-radius:0px;
  10480. border-bottom-right-radius:0px;
  10481. border-bottom-left-radius:0px;
  10482. -moz-box-shadow:none;
  10483. -webkit-box-shadow:none;
  10484. box-shadow:none;
  10485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10486. font-weight:400;
  10487. font-style:normal;
  10488. font-size:12px;
  10489. }
  10490. #u8216 {
  10491. border-width:0px;
  10492. position:absolute;
  10493. left:4045px;
  10494. top:940px;
  10495. width:79px;
  10496. height:17px;
  10497. display:flex;
  10498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10499. font-weight:400;
  10500. font-style:normal;
  10501. font-size:12px;
  10502. }
  10503. #u8216 .text {
  10504. position:absolute;
  10505. align-self:center;
  10506. padding:0px 0px 0px 30px;
  10507. box-sizing:border-box;
  10508. width:100%;
  10509. }
  10510. #u8216_text {
  10511. border-width:0px;
  10512. white-space:nowrap;
  10513. text-transform:none;
  10514. }
  10515. #u8217 {
  10516. border-width:0px;
  10517. position:absolute;
  10518. left:0px;
  10519. top:0px;
  10520. width:0px;
  10521. height:0px;
  10522. }
  10523. #u8218_div {
  10524. border-width:0px;
  10525. position:absolute;
  10526. left:0px;
  10527. top:0px;
  10528. width:790px;
  10529. height:48px;
  10530. background:inherit;
  10531. background-color:rgba(255, 255, 255, 1);
  10532. border:none;
  10533. border-radius:0px;
  10534. -moz-box-shadow:none;
  10535. -webkit-box-shadow:none;
  10536. box-shadow:none;
  10537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10538. font-weight:400;
  10539. font-style:normal;
  10540. text-align:left;
  10541. }
  10542. #u8218 {
  10543. border-width:0px;
  10544. position:absolute;
  10545. left:3352px;
  10546. top:973px;
  10547. width:790px;
  10548. height:48px;
  10549. display:flex;
  10550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10551. font-weight:400;
  10552. font-style:normal;
  10553. text-align:left;
  10554. }
  10555. #u8218 .text {
  10556. position:absolute;
  10557. align-self:center;
  10558. padding:2px 2px 2px 30px;
  10559. box-sizing:border-box;
  10560. width:100%;
  10561. }
  10562. #u8218_text {
  10563. border-width:0px;
  10564. word-wrap:break-word;
  10565. text-transform:none;
  10566. }
  10567. #u8219_div {
  10568. border-width:0px;
  10569. position:absolute;
  10570. left:0px;
  10571. top:0px;
  10572. width:79px;
  10573. height:17px;
  10574. background:inherit;
  10575. background-color:rgba(242, 242, 242, 0);
  10576. border:none;
  10577. border-left:0px;
  10578. border-top:0px;
  10579. border-right:0px;
  10580. border-radius:0px;
  10581. border-bottom-right-radius:0px;
  10582. border-bottom-left-radius:0px;
  10583. -moz-box-shadow:none;
  10584. -webkit-box-shadow:none;
  10585. box-shadow:none;
  10586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10587. font-weight:400;
  10588. font-style:normal;
  10589. font-size:12px;
  10590. }
  10591. #u8219 {
  10592. border-width:0px;
  10593. position:absolute;
  10594. left:4045px;
  10595. top:989px;
  10596. width:79px;
  10597. height:17px;
  10598. display:flex;
  10599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10600. font-weight:400;
  10601. font-style:normal;
  10602. font-size:12px;
  10603. }
  10604. #u8219 .text {
  10605. position:absolute;
  10606. align-self:center;
  10607. padding:0px 0px 0px 30px;
  10608. box-sizing:border-box;
  10609. width:100%;
  10610. }
  10611. #u8219_text {
  10612. border-width:0px;
  10613. white-space:nowrap;
  10614. text-transform:none;
  10615. }
  10616. #u8220 {
  10617. border-width:0px;
  10618. position:absolute;
  10619. left:0px;
  10620. top:0px;
  10621. width:0px;
  10622. height:0px;
  10623. }
  10624. #u8221_div {
  10625. border-width:0px;
  10626. position:absolute;
  10627. left:0px;
  10628. top:0px;
  10629. width:790px;
  10630. height:48px;
  10631. background:inherit;
  10632. background-color:rgba(255, 255, 255, 1);
  10633. border:none;
  10634. border-radius:0px;
  10635. -moz-box-shadow:none;
  10636. -webkit-box-shadow:none;
  10637. box-shadow:none;
  10638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10639. font-weight:400;
  10640. font-style:normal;
  10641. text-align:left;
  10642. }
  10643. #u8221 {
  10644. border-width:0px;
  10645. position:absolute;
  10646. left:3352px;
  10647. top:1022px;
  10648. width:790px;
  10649. height:48px;
  10650. display:flex;
  10651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10652. font-weight:400;
  10653. font-style:normal;
  10654. text-align:left;
  10655. }
  10656. #u8221 .text {
  10657. position:absolute;
  10658. align-self:center;
  10659. padding:2px 2px 2px 30px;
  10660. box-sizing:border-box;
  10661. width:100%;
  10662. }
  10663. #u8221_text {
  10664. border-width:0px;
  10665. word-wrap:break-word;
  10666. text-transform:none;
  10667. }
  10668. #u8222_div {
  10669. border-width:0px;
  10670. position:absolute;
  10671. left:0px;
  10672. top:0px;
  10673. width:79px;
  10674. height:17px;
  10675. background:inherit;
  10676. background-color:rgba(242, 242, 242, 0);
  10677. border:none;
  10678. border-left:0px;
  10679. border-top:0px;
  10680. border-right:0px;
  10681. border-radius:0px;
  10682. border-bottom-right-radius:0px;
  10683. border-bottom-left-radius:0px;
  10684. -moz-box-shadow:none;
  10685. -webkit-box-shadow:none;
  10686. box-shadow:none;
  10687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10688. font-weight:400;
  10689. font-style:normal;
  10690. font-size:12px;
  10691. }
  10692. #u8222 {
  10693. border-width:0px;
  10694. position:absolute;
  10695. left:4045px;
  10696. top:1038px;
  10697. width:79px;
  10698. height:17px;
  10699. display:flex;
  10700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10701. font-weight:400;
  10702. font-style:normal;
  10703. font-size:12px;
  10704. }
  10705. #u8222 .text {
  10706. position:absolute;
  10707. align-self:center;
  10708. padding:0px 0px 0px 30px;
  10709. box-sizing:border-box;
  10710. width:100%;
  10711. }
  10712. #u8222_text {
  10713. border-width:0px;
  10714. white-space:nowrap;
  10715. text-transform:none;
  10716. }
  10717. #u8223 {
  10718. border-width:0px;
  10719. position:absolute;
  10720. left:0px;
  10721. top:0px;
  10722. width:0px;
  10723. height:0px;
  10724. }
  10725. #u8224_div {
  10726. border-width:0px;
  10727. position:absolute;
  10728. left:0px;
  10729. top:0px;
  10730. width:790px;
  10731. height:48px;
  10732. background:inherit;
  10733. background-color:rgba(255, 255, 255, 1);
  10734. border:none;
  10735. border-radius:0px;
  10736. -moz-box-shadow:none;
  10737. -webkit-box-shadow:none;
  10738. box-shadow:none;
  10739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10740. font-weight:400;
  10741. font-style:normal;
  10742. text-align:left;
  10743. }
  10744. #u8224 {
  10745. border-width:0px;
  10746. position:absolute;
  10747. left:3352px;
  10748. top:1071px;
  10749. width:790px;
  10750. height:48px;
  10751. display:flex;
  10752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10753. font-weight:400;
  10754. font-style:normal;
  10755. text-align:left;
  10756. }
  10757. #u8224 .text {
  10758. position:absolute;
  10759. align-self:center;
  10760. padding:2px 2px 2px 30px;
  10761. box-sizing:border-box;
  10762. width:100%;
  10763. }
  10764. #u8224_text {
  10765. border-width:0px;
  10766. word-wrap:break-word;
  10767. text-transform:none;
  10768. }
  10769. #u8225_div {
  10770. border-width:0px;
  10771. position:absolute;
  10772. left:0px;
  10773. top:0px;
  10774. width:79px;
  10775. height:17px;
  10776. background:inherit;
  10777. background-color:rgba(242, 242, 242, 0);
  10778. border:none;
  10779. border-left:0px;
  10780. border-top:0px;
  10781. border-right:0px;
  10782. border-radius:0px;
  10783. border-bottom-right-radius:0px;
  10784. border-bottom-left-radius:0px;
  10785. -moz-box-shadow:none;
  10786. -webkit-box-shadow:none;
  10787. box-shadow:none;
  10788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10789. font-weight:400;
  10790. font-style:normal;
  10791. font-size:12px;
  10792. }
  10793. #u8225 {
  10794. border-width:0px;
  10795. position:absolute;
  10796. left:4045px;
  10797. top:1087px;
  10798. width:79px;
  10799. height:17px;
  10800. display:flex;
  10801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10802. font-weight:400;
  10803. font-style:normal;
  10804. font-size:12px;
  10805. }
  10806. #u8225 .text {
  10807. position:absolute;
  10808. align-self:center;
  10809. padding:0px 0px 0px 30px;
  10810. box-sizing:border-box;
  10811. width:100%;
  10812. }
  10813. #u8225_text {
  10814. border-width:0px;
  10815. white-space:nowrap;
  10816. text-transform:none;
  10817. }
  10818. #u8226_img {
  10819. border-width:0px;
  10820. position:absolute;
  10821. left:0px;
  10822. top:0px;
  10823. width:10px;
  10824. height:7px;
  10825. }
  10826. #u8226 {
  10827. border-width:0px;
  10828. position:absolute;
  10829. left:3366px;
  10830. top:945px;
  10831. width:10px;
  10832. height:7px;
  10833. display:flex;
  10834. -webkit-transform:rotate(270deg);
  10835. -moz-transform:rotate(270deg);
  10836. -ms-transform:rotate(270deg);
  10837. transform:rotate(270deg);
  10838. }
  10839. #u8226 .text {
  10840. position:absolute;
  10841. align-self:center;
  10842. padding:2px 2px 2px 2px;
  10843. box-sizing:border-box;
  10844. width:100%;
  10845. }
  10846. #u8226_text {
  10847. border-width:0px;
  10848. word-wrap:break-word;
  10849. text-transform:none;
  10850. visibility:hidden;
  10851. }
  10852. #u8227_img {
  10853. border-width:0px;
  10854. position:absolute;
  10855. left:0px;
  10856. top:0px;
  10857. width:10px;
  10858. height:7px;
  10859. }
  10860. #u8227 {
  10861. border-width:0px;
  10862. position:absolute;
  10863. left:3366px;
  10864. top:994px;
  10865. width:10px;
  10866. height:7px;
  10867. display:flex;
  10868. -webkit-transform:rotate(270deg);
  10869. -moz-transform:rotate(270deg);
  10870. -ms-transform:rotate(270deg);
  10871. transform:rotate(270deg);
  10872. }
  10873. #u8227 .text {
  10874. position:absolute;
  10875. align-self:center;
  10876. padding:2px 2px 2px 2px;
  10877. box-sizing:border-box;
  10878. width:100%;
  10879. }
  10880. #u8227_text {
  10881. border-width:0px;
  10882. word-wrap:break-word;
  10883. text-transform:none;
  10884. visibility:hidden;
  10885. }
  10886. #u8228_img {
  10887. border-width:0px;
  10888. position:absolute;
  10889. left:0px;
  10890. top:0px;
  10891. width:10px;
  10892. height:7px;
  10893. }
  10894. #u8228 {
  10895. border-width:0px;
  10896. position:absolute;
  10897. left:3366px;
  10898. top:1043px;
  10899. width:10px;
  10900. height:7px;
  10901. display:flex;
  10902. -webkit-transform:rotate(270deg);
  10903. -moz-transform:rotate(270deg);
  10904. -ms-transform:rotate(270deg);
  10905. transform:rotate(270deg);
  10906. }
  10907. #u8228 .text {
  10908. position:absolute;
  10909. align-self:center;
  10910. padding:2px 2px 2px 2px;
  10911. box-sizing:border-box;
  10912. width:100%;
  10913. }
  10914. #u8228_text {
  10915. border-width:0px;
  10916. word-wrap:break-word;
  10917. text-transform:none;
  10918. visibility:hidden;
  10919. }
  10920. #u8229_img {
  10921. border-width:0px;
  10922. position:absolute;
  10923. left:0px;
  10924. top:0px;
  10925. width:10px;
  10926. height:7px;
  10927. }
  10928. #u8229 {
  10929. border-width:0px;
  10930. position:absolute;
  10931. left:3366px;
  10932. top:1092px;
  10933. width:10px;
  10934. height:7px;
  10935. display:flex;
  10936. -webkit-transform:rotate(270deg);
  10937. -moz-transform:rotate(270deg);
  10938. -ms-transform:rotate(270deg);
  10939. transform:rotate(270deg);
  10940. }
  10941. #u8229 .text {
  10942. position:absolute;
  10943. align-self:center;
  10944. padding:2px 2px 2px 2px;
  10945. box-sizing:border-box;
  10946. width:100%;
  10947. }
  10948. #u8229_text {
  10949. border-width:0px;
  10950. word-wrap:break-word;
  10951. text-transform:none;
  10952. visibility:hidden;
  10953. }
  10954. #u8230_div {
  10955. border-width:0px;
  10956. position:absolute;
  10957. left:0px;
  10958. top:0px;
  10959. width:139px;
  10960. height:17px;
  10961. background:inherit;
  10962. background-color:rgba(242, 242, 242, 0);
  10963. border:none;
  10964. border-left:0px;
  10965. border-top:0px;
  10966. border-right:0px;
  10967. border-radius:0px;
  10968. border-bottom-right-radius:0px;
  10969. border-bottom-left-radius:0px;
  10970. -moz-box-shadow:none;
  10971. -webkit-box-shadow:none;
  10972. box-shadow:none;
  10973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10974. font-weight:400;
  10975. font-style:normal;
  10976. font-size:12px;
  10977. color:#D9001B;
  10978. }
  10979. #u8230 {
  10980. border-width:0px;
  10981. position:absolute;
  10982. left:3877px;
  10983. top:888px;
  10984. width:139px;
  10985. height:17px;
  10986. display:flex;
  10987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10988. font-weight:400;
  10989. font-style:normal;
  10990. font-size:12px;
  10991. color:#D9001B;
  10992. }
  10993. #u8230 .text {
  10994. position:absolute;
  10995. align-self:center;
  10996. padding:0px 0px 0px 30px;
  10997. box-sizing:border-box;
  10998. width:100%;
  10999. }
  11000. #u8230_text {
  11001. border-width:0px;
  11002. white-space:nowrap;
  11003. text-transform:none;
  11004. }
  11005. #u8231 {
  11006. border-width:0px;
  11007. position:absolute;
  11008. left:4085px;
  11009. top:940px;
  11010. width:0px;
  11011. height:0px;
  11012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11013. font-weight:400;
  11014. font-style:normal;
  11015. color:#D9001B;
  11016. }
  11017. #u8231_seg0 {
  11018. border-width:0px;
  11019. position:absolute;
  11020. left:-5px;
  11021. top:-48px;
  11022. width:10px;
  11023. height:48px;
  11024. }
  11025. #u8231_seg1 {
  11026. border-width:0px;
  11027. position:absolute;
  11028. left:-69px;
  11029. top:-48px;
  11030. width:74px;
  11031. height:10px;
  11032. }
  11033. #u8231_seg2 {
  11034. border-width:0px;
  11035. position:absolute;
  11036. left:-9px;
  11037. top:-12px;
  11038. width:18px;
  11039. height:18px;
  11040. }
  11041. #u8231_seg3 {
  11042. border-width:0px;
  11043. position:absolute;
  11044. left:-84px;
  11045. top:-59px;
  11046. width:32px;
  11047. height:32px;
  11048. }
  11049. #u8231_text {
  11050. border-width:0px;
  11051. position:absolute;
  11052. left:-63px;
  11053. top:-51px;
  11054. width:100px;
  11055. word-wrap:break-word;
  11056. text-transform:none;
  11057. visibility:hidden;
  11058. }
  11059. #u8232_div {
  11060. border-width:0px;
  11061. position:absolute;
  11062. left:0px;
  11063. top:0px;
  11064. width:65px;
  11065. height:22px;
  11066. background:inherit;
  11067. background-color:rgba(255, 255, 255, 0);
  11068. border:none;
  11069. border-radius:0px;
  11070. -moz-box-shadow:none;
  11071. -webkit-box-shadow:none;
  11072. box-shadow:none;
  11073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11074. font-weight:400;
  11075. font-style:normal;
  11076. font-size:16px;
  11077. }
  11078. #u8232 {
  11079. border-width:0px;
  11080. position:absolute;
  11081. left:152px;
  11082. top:232px;
  11083. width:65px;
  11084. height:22px;
  11085. display:flex;
  11086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11087. font-weight:400;
  11088. font-style:normal;
  11089. font-size:16px;
  11090. }
  11091. #u8232 .text {
  11092. position:absolute;
  11093. align-self:flex-start;
  11094. padding:0px 0px 0px 0px;
  11095. box-sizing:border-box;
  11096. width:100%;
  11097. }
  11098. #u8232_text {
  11099. border-width:0px;
  11100. white-space:nowrap;
  11101. text-transform:none;
  11102. }
  11103. #u8233_div {
  11104. border-width:0px;
  11105. position:absolute;
  11106. left:0px;
  11107. top:0px;
  11108. width:49px;
  11109. height:17px;
  11110. background:inherit;
  11111. background-color:rgba(255, 255, 255, 0);
  11112. border:none;
  11113. border-radius:0px;
  11114. -moz-box-shadow:none;
  11115. -webkit-box-shadow:none;
  11116. box-shadow:none;
  11117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11118. font-weight:400;
  11119. font-style:normal;
  11120. font-size:12px;
  11121. color:#AAAAAA;
  11122. }
  11123. #u8233 {
  11124. border-width:0px;
  11125. position:absolute;
  11126. left:152px;
  11127. top:196px;
  11128. width:49px;
  11129. height:17px;
  11130. display:flex;
  11131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11132. font-weight:400;
  11133. font-style:normal;
  11134. font-size:12px;
  11135. color:#AAAAAA;
  11136. }
  11137. #u8233 .text {
  11138. position:absolute;
  11139. align-self:flex-start;
  11140. padding:0px 0px 0px 0px;
  11141. box-sizing:border-box;
  11142. width:100%;
  11143. }
  11144. #u8233_text {
  11145. border-width:0px;
  11146. white-space:nowrap;
  11147. text-transform:none;
  11148. }
  11149. #u8234_img {
  11150. border-width:0px;
  11151. position:absolute;
  11152. left:0px;
  11153. top:0px;
  11154. width:201px;
  11155. height:2px;
  11156. }
  11157. #u8234 {
  11158. border-width:0px;
  11159. position:absolute;
  11160. left:122px;
  11161. top:171px;
  11162. width:200px;
  11163. height:1px;
  11164. display:flex;
  11165. }
  11166. #u8234 .text {
  11167. position:absolute;
  11168. align-self:center;
  11169. padding:2px 2px 2px 2px;
  11170. box-sizing:border-box;
  11171. width:100%;
  11172. }
  11173. #u8234_text {
  11174. border-width:0px;
  11175. word-wrap:break-word;
  11176. text-transform:none;
  11177. visibility:hidden;
  11178. }
  11179. #u8235_div {
  11180. border-width:0px;
  11181. position:absolute;
  11182. left:0px;
  11183. top:0px;
  11184. width:65px;
  11185. height:22px;
  11186. background:inherit;
  11187. background-color:rgba(255, 255, 255, 0);
  11188. border:none;
  11189. border-radius:0px;
  11190. -moz-box-shadow:none;
  11191. -webkit-box-shadow:none;
  11192. box-shadow:none;
  11193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11194. font-weight:400;
  11195. font-style:normal;
  11196. font-size:16px;
  11197. }
  11198. #u8235 {
  11199. border-width:0px;
  11200. position:absolute;
  11201. left:152px;
  11202. top:274px;
  11203. width:65px;
  11204. height:22px;
  11205. display:flex;
  11206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11207. font-weight:400;
  11208. font-style:normal;
  11209. font-size:16px;
  11210. }
  11211. #u8235 .text {
  11212. position:absolute;
  11213. align-self:flex-start;
  11214. padding:0px 0px 0px 0px;
  11215. box-sizing:border-box;
  11216. width:100%;
  11217. }
  11218. #u8235_text {
  11219. border-width:0px;
  11220. white-space:nowrap;
  11221. text-transform:none;
  11222. }
  11223. #u8236_div {
  11224. border-width:0px;
  11225. position:absolute;
  11226. left:0px;
  11227. top:0px;
  11228. width:65px;
  11229. height:22px;
  11230. background:inherit;
  11231. background-color:rgba(255, 255, 255, 0);
  11232. border:none;
  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:16px;
  11241. }
  11242. #u8236 {
  11243. border-width:0px;
  11244. position:absolute;
  11245. left:152px;
  11246. top:316px;
  11247. width:65px;
  11248. height:22px;
  11249. display:flex;
  11250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11251. font-weight:400;
  11252. font-style:normal;
  11253. font-size:16px;
  11254. }
  11255. #u8236 .text {
  11256. position:absolute;
  11257. align-self:flex-start;
  11258. padding:0px 0px 0px 0px;
  11259. box-sizing:border-box;
  11260. width:100%;
  11261. }
  11262. #u8236_text {
  11263. border-width:0px;
  11264. white-space:nowrap;
  11265. text-transform:none;
  11266. }