styles.css 203 KB

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