styles.css 124 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1930px;
  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. #u105460_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. #u105460 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u105460 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u105460_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u105461_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. #u105461 {
  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. #u105461 .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. #u105461_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u105462_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. #u105462 {
  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. #u105462 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u105462_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u105463 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u105464_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u105464 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u105464 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u105464_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u105465_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. #u105465 {
  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. #u105465 .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. #u105465_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u105466_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. #u105466 {
  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. #u105466 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u105466_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u105467 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u105468_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. #u105468_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. #u105468_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. #u105468 {
  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. #u105468 .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. #u105468_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. #u105468.disabled {
  356. }
  357. .u105468_input_option {
  358. font-size:14px;
  359. }
  360. #u105469_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u105469 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u105469 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u105469_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u105470_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. #u105470 {
  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. #u105470 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u105470_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u105471_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. #u105471 {
  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. #u105471 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u105471_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u105472 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u105473_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. #u105473 {
  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. #u105473 .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. #u105473_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u105474_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u105474 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u105474 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u105474_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u105475 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u105476_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. #u105476 {
  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. #u105476 .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. #u105476_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u105477_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u105477 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u105477 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u105477_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u105478 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u105479_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. #u105479 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:399px;
  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. #u105479 .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. #u105479_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u105480_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u105480 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u105480 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u105480_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u105481 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u105482_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. #u105482 {
  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. #u105482 .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. #u105482_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u105483_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u105483 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u105483 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u105483_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u105484 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u105485_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. #u105485 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:441px;
  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. #u105485 .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. #u105485_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u105486_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u105486 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u105486 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u105486_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u105487 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u105488_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. #u105488 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:315px;
  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. #u105488 .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. #u105488_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u105489_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u105489 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u105489 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u105489_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u105490 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u105491_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. #u105491 {
  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. #u105491 .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. #u105491_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u105492_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u105492 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u105492 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u105492_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u105493 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u105494_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. #u105494 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:357px;
  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. #u105494 .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. #u105494_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u105495_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u105495 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u105495 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u105495_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u105496 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u105497_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. #u105497 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:483px;
  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. #u105497 .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. #u105497_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u105498_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u105498 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u105498 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u105498_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u105499 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u105500_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. #u105500 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:525px;
  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. #u105500 .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. #u105500_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u105501_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u105501 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u105501 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u105501_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u105502_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. #u105502 {
  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. #u105502 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u105502_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u105503_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u105503 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u105503 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u105503_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u105504_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. #u105504 {
  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. #u105504 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u105504_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u105505_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u105505 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u105505 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u105505_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u105506 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u105507_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. #u105507 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  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. #u105507 .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. #u105507_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u105508_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u105508 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u105508 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u105508_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u105509 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u105510_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. #u105510 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:273px;
  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. #u105510 .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. #u105510_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u105511_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u105511 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u105511 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u105511_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u105512_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1256px;
  1644. height:1180px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1653. font-weight:400;
  1654. font-style:normal;
  1655. font-size:12px;
  1656. color:#FFFFFF;
  1657. text-align:left;
  1658. }
  1659. #u105512 {
  1660. border-width:0px;
  1661. position:absolute;
  1662. left:333px;
  1663. top:51px;
  1664. width:1256px;
  1665. height:1180px;
  1666. display:flex;
  1667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1668. font-weight:400;
  1669. font-style:normal;
  1670. font-size:12px;
  1671. color:#FFFFFF;
  1672. text-align:left;
  1673. }
  1674. #u105512 .text {
  1675. position:absolute;
  1676. align-self:center;
  1677. padding:2px 2px 2px 50px;
  1678. box-sizing:border-box;
  1679. width:100%;
  1680. }
  1681. #u105512_text {
  1682. border-width:0px;
  1683. word-wrap:break-word;
  1684. text-transform:none;
  1685. visibility:hidden;
  1686. }
  1687. #u105513_div {
  1688. border-width:0px;
  1689. position:absolute;
  1690. left:0px;
  1691. top:0px;
  1692. width:60px;
  1693. height:30px;
  1694. background:inherit;
  1695. background-color:rgba(24, 144, 255, 1);
  1696. border:none;
  1697. border-radius:4px;
  1698. -moz-box-shadow:none;
  1699. -webkit-box-shadow:none;
  1700. box-shadow:none;
  1701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1702. font-weight:400;
  1703. font-style:normal;
  1704. font-size:14px;
  1705. color:#FFFFFF;
  1706. }
  1707. #u105513 {
  1708. border-width:0px;
  1709. position:absolute;
  1710. left:353px;
  1711. top:151px;
  1712. width:60px;
  1713. height:30px;
  1714. display:flex;
  1715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1716. font-weight:400;
  1717. font-style:normal;
  1718. font-size:14px;
  1719. color:#FFFFFF;
  1720. }
  1721. #u105513 .text {
  1722. position:absolute;
  1723. align-self:center;
  1724. padding:2px 2px 2px 2px;
  1725. box-sizing:border-box;
  1726. width:100%;
  1727. }
  1728. #u105513_text {
  1729. border-width:0px;
  1730. word-wrap:break-word;
  1731. text-transform:none;
  1732. }
  1733. #u105514_div {
  1734. border-width:0px;
  1735. position:absolute;
  1736. left:0px;
  1737. top:0px;
  1738. width:73px;
  1739. height:50px;
  1740. background:inherit;
  1741. background-color:rgba(255, 255, 255, 0);
  1742. border:none;
  1743. border-left:0px;
  1744. border-top:0px;
  1745. border-right:0px;
  1746. border-radius:0px;
  1747. border-bottom-right-radius:0px;
  1748. border-bottom-left-radius:0px;
  1749. -moz-box-shadow:none;
  1750. -webkit-box-shadow:none;
  1751. box-shadow:none;
  1752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1753. font-weight:400;
  1754. font-style:normal;
  1755. font-size:18px;
  1756. }
  1757. #u105514 {
  1758. border-width:0px;
  1759. position:absolute;
  1760. left:353px;
  1761. top:51px;
  1762. width:73px;
  1763. height:50px;
  1764. display:flex;
  1765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1766. font-weight:400;
  1767. font-style:normal;
  1768. font-size:18px;
  1769. }
  1770. #u105514 .text {
  1771. position:absolute;
  1772. align-self:center;
  1773. padding:0px 0px 0px 0px;
  1774. box-sizing:border-box;
  1775. width:100%;
  1776. }
  1777. #u105514_text {
  1778. border-width:0px;
  1779. white-space:nowrap;
  1780. text-transform:none;
  1781. }
  1782. #u105515 {
  1783. border-width:0px;
  1784. position:absolute;
  1785. left:353px;
  1786. top:191px;
  1787. width:1217px;
  1788. height:220px;
  1789. }
  1790. #u105516_img {
  1791. border-width:0px;
  1792. position:absolute;
  1793. left:0px;
  1794. top:0px;
  1795. width:70px;
  1796. height:44px;
  1797. }
  1798. #u105516 {
  1799. border-width:0px;
  1800. position:absolute;
  1801. left:0px;
  1802. top:0px;
  1803. width:70px;
  1804. height:44px;
  1805. display:flex;
  1806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1807. font-weight:400;
  1808. font-style:normal;
  1809. font-size:12px;
  1810. color:#FFFFFF;
  1811. }
  1812. #u105516 .text {
  1813. position:absolute;
  1814. align-self:center;
  1815. padding:2px 2px 2px 2px;
  1816. box-sizing:border-box;
  1817. width:100%;
  1818. }
  1819. #u105516_text {
  1820. border-width:0px;
  1821. word-wrap:break-word;
  1822. text-transform:none;
  1823. }
  1824. #u105517_img {
  1825. border-width:0px;
  1826. position:absolute;
  1827. left:0px;
  1828. top:0px;
  1829. width:70px;
  1830. height:44px;
  1831. }
  1832. #u105517 {
  1833. border-width:0px;
  1834. position:absolute;
  1835. left:70px;
  1836. top:0px;
  1837. width:70px;
  1838. height:44px;
  1839. display:flex;
  1840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1841. font-weight:400;
  1842. font-style:normal;
  1843. font-size:12px;
  1844. color:#FFFFFF;
  1845. }
  1846. #u105517 .text {
  1847. position:absolute;
  1848. align-self:center;
  1849. padding:2px 2px 2px 2px;
  1850. box-sizing:border-box;
  1851. width:100%;
  1852. }
  1853. #u105517_text {
  1854. border-width:0px;
  1855. word-wrap:break-word;
  1856. text-transform:none;
  1857. }
  1858. #u105518_img {
  1859. border-width:0px;
  1860. position:absolute;
  1861. left:0px;
  1862. top:0px;
  1863. width:70px;
  1864. height:44px;
  1865. }
  1866. #u105518 {
  1867. border-width:0px;
  1868. position:absolute;
  1869. left:140px;
  1870. top:0px;
  1871. width:70px;
  1872. height:44px;
  1873. display:flex;
  1874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1875. font-weight:400;
  1876. font-style:normal;
  1877. font-size:12px;
  1878. color:#FFFFFF;
  1879. }
  1880. #u105518 .text {
  1881. position:absolute;
  1882. align-self:center;
  1883. padding:2px 2px 2px 2px;
  1884. box-sizing:border-box;
  1885. width:100%;
  1886. }
  1887. #u105518_text {
  1888. border-width:0px;
  1889. word-wrap:break-word;
  1890. text-transform:none;
  1891. }
  1892. #u105519_img {
  1893. border-width:0px;
  1894. position:absolute;
  1895. left:0px;
  1896. top:0px;
  1897. width:70px;
  1898. height:44px;
  1899. }
  1900. #u105519 {
  1901. border-width:0px;
  1902. position:absolute;
  1903. left:210px;
  1904. top:0px;
  1905. width:70px;
  1906. height:44px;
  1907. display:flex;
  1908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1909. font-weight:400;
  1910. font-style:normal;
  1911. font-size:12px;
  1912. color:#FFFFFF;
  1913. }
  1914. #u105519 .text {
  1915. position:absolute;
  1916. align-self:center;
  1917. padding:2px 2px 2px 2px;
  1918. box-sizing:border-box;
  1919. width:100%;
  1920. }
  1921. #u105519_text {
  1922. border-width:0px;
  1923. word-wrap:break-word;
  1924. text-transform:none;
  1925. }
  1926. #u105520_img {
  1927. border-width:0px;
  1928. position:absolute;
  1929. left:0px;
  1930. top:0px;
  1931. width:109px;
  1932. height:44px;
  1933. }
  1934. #u105520 {
  1935. border-width:0px;
  1936. position:absolute;
  1937. left:280px;
  1938. top:0px;
  1939. width:109px;
  1940. height:44px;
  1941. display:flex;
  1942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1943. font-weight:400;
  1944. font-style:normal;
  1945. font-size:12px;
  1946. color:#FFFFFF;
  1947. }
  1948. #u105520 .text {
  1949. position:absolute;
  1950. align-self:center;
  1951. padding:2px 2px 2px 2px;
  1952. box-sizing:border-box;
  1953. width:100%;
  1954. }
  1955. #u105520_text {
  1956. border-width:0px;
  1957. word-wrap:break-word;
  1958. text-transform:none;
  1959. }
  1960. #u105521_img {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:0px;
  1964. top:0px;
  1965. width:70px;
  1966. height:44px;
  1967. }
  1968. #u105521 {
  1969. border-width:0px;
  1970. position:absolute;
  1971. left:389px;
  1972. top:0px;
  1973. width:70px;
  1974. height:44px;
  1975. display:flex;
  1976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1977. font-weight:400;
  1978. font-style:normal;
  1979. font-size:12px;
  1980. color:#FFFFFF;
  1981. }
  1982. #u105521 .text {
  1983. position:absolute;
  1984. align-self:center;
  1985. padding:2px 2px 2px 2px;
  1986. box-sizing:border-box;
  1987. width:100%;
  1988. }
  1989. #u105521_text {
  1990. border-width:0px;
  1991. word-wrap:break-word;
  1992. text-transform:none;
  1993. }
  1994. #u105522_img {
  1995. border-width:0px;
  1996. position:absolute;
  1997. left:0px;
  1998. top:0px;
  1999. width:70px;
  2000. height:44px;
  2001. }
  2002. #u105522 {
  2003. border-width:0px;
  2004. position:absolute;
  2005. left:459px;
  2006. top:0px;
  2007. width:70px;
  2008. height:44px;
  2009. display:flex;
  2010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2011. font-weight:400;
  2012. font-style:normal;
  2013. font-size:12px;
  2014. color:#FFFFFF;
  2015. }
  2016. #u105522 .text {
  2017. position:absolute;
  2018. align-self:center;
  2019. padding:2px 2px 2px 2px;
  2020. box-sizing:border-box;
  2021. width:100%;
  2022. }
  2023. #u105522_text {
  2024. border-width:0px;
  2025. word-wrap:break-word;
  2026. text-transform:none;
  2027. }
  2028. #u105523_img {
  2029. border-width:0px;
  2030. position:absolute;
  2031. left:0px;
  2032. top:0px;
  2033. width:70px;
  2034. height:44px;
  2035. }
  2036. #u105523 {
  2037. border-width:0px;
  2038. position:absolute;
  2039. left:529px;
  2040. top:0px;
  2041. width:70px;
  2042. height:44px;
  2043. display:flex;
  2044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2045. font-weight:400;
  2046. font-style:normal;
  2047. font-size:12px;
  2048. color:#FFFFFF;
  2049. }
  2050. #u105523 .text {
  2051. position:absolute;
  2052. align-self:center;
  2053. padding:2px 2px 2px 2px;
  2054. box-sizing:border-box;
  2055. width:100%;
  2056. }
  2057. #u105523_text {
  2058. border-width:0px;
  2059. word-wrap:break-word;
  2060. text-transform:none;
  2061. }
  2062. #u105524_img {
  2063. border-width:0px;
  2064. position:absolute;
  2065. left:0px;
  2066. top:0px;
  2067. width:70px;
  2068. height:44px;
  2069. }
  2070. #u105524 {
  2071. border-width:0px;
  2072. position:absolute;
  2073. left:599px;
  2074. top:0px;
  2075. width:70px;
  2076. height:44px;
  2077. display:flex;
  2078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2079. font-weight:400;
  2080. font-style:normal;
  2081. font-size:12px;
  2082. color:#FFFFFF;
  2083. }
  2084. #u105524 .text {
  2085. position:absolute;
  2086. align-self:center;
  2087. padding:2px 2px 2px 2px;
  2088. box-sizing:border-box;
  2089. width:100%;
  2090. }
  2091. #u105524_text {
  2092. border-width:0px;
  2093. word-wrap:break-word;
  2094. text-transform:none;
  2095. }
  2096. #u105525_img {
  2097. border-width:0px;
  2098. position:absolute;
  2099. left:0px;
  2100. top:0px;
  2101. width:70px;
  2102. height:44px;
  2103. }
  2104. #u105525 {
  2105. border-width:0px;
  2106. position:absolute;
  2107. left:669px;
  2108. top:0px;
  2109. width:70px;
  2110. height:44px;
  2111. display:flex;
  2112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2113. font-weight:400;
  2114. font-style:normal;
  2115. font-size:12px;
  2116. color:#FFFFFF;
  2117. }
  2118. #u105525 .text {
  2119. position:absolute;
  2120. align-self:center;
  2121. padding:2px 2px 2px 2px;
  2122. box-sizing:border-box;
  2123. width:100%;
  2124. }
  2125. #u105525_text {
  2126. border-width:0px;
  2127. word-wrap:break-word;
  2128. text-transform:none;
  2129. }
  2130. #u105526_img {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:0px;
  2134. top:0px;
  2135. width:70px;
  2136. height:44px;
  2137. }
  2138. #u105526 {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:739px;
  2142. top:0px;
  2143. width:70px;
  2144. height:44px;
  2145. display:flex;
  2146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2147. font-weight:400;
  2148. font-style:normal;
  2149. font-size:12px;
  2150. color:#FFFFFF;
  2151. }
  2152. #u105526 .text {
  2153. position:absolute;
  2154. align-self:center;
  2155. padding:2px 2px 2px 2px;
  2156. box-sizing:border-box;
  2157. width:100%;
  2158. }
  2159. #u105526_text {
  2160. border-width:0px;
  2161. word-wrap:break-word;
  2162. text-transform:none;
  2163. }
  2164. #u105527_img {
  2165. border-width:0px;
  2166. position:absolute;
  2167. left:0px;
  2168. top:0px;
  2169. width:70px;
  2170. height:44px;
  2171. }
  2172. #u105527 {
  2173. border-width:0px;
  2174. position:absolute;
  2175. left:809px;
  2176. top:0px;
  2177. width:70px;
  2178. height:44px;
  2179. display:flex;
  2180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2181. font-weight:400;
  2182. font-style:normal;
  2183. font-size:12px;
  2184. color:#FFFFFF;
  2185. }
  2186. #u105527 .text {
  2187. position:absolute;
  2188. align-self:center;
  2189. padding:2px 2px 2px 2px;
  2190. box-sizing:border-box;
  2191. width:100%;
  2192. }
  2193. #u105527_text {
  2194. border-width:0px;
  2195. word-wrap:break-word;
  2196. text-transform:none;
  2197. }
  2198. #u105528_img {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:0px;
  2202. top:0px;
  2203. width:80px;
  2204. height:44px;
  2205. }
  2206. #u105528 {
  2207. border-width:0px;
  2208. position:absolute;
  2209. left:879px;
  2210. top:0px;
  2211. width:80px;
  2212. height:44px;
  2213. display:flex;
  2214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2215. font-weight:400;
  2216. font-style:normal;
  2217. font-size:12px;
  2218. color:#FFFFFF;
  2219. }
  2220. #u105528 .text {
  2221. position:absolute;
  2222. align-self:center;
  2223. padding:2px 2px 2px 2px;
  2224. box-sizing:border-box;
  2225. width:100%;
  2226. }
  2227. #u105528_text {
  2228. border-width:0px;
  2229. word-wrap:break-word;
  2230. text-transform:none;
  2231. }
  2232. #u105529_img {
  2233. border-width:0px;
  2234. position:absolute;
  2235. left:0px;
  2236. top:0px;
  2237. width:75px;
  2238. height:44px;
  2239. }
  2240. #u105529 {
  2241. border-width:0px;
  2242. position:absolute;
  2243. left:959px;
  2244. top:0px;
  2245. width:75px;
  2246. height:44px;
  2247. display:flex;
  2248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2249. font-weight:400;
  2250. font-style:normal;
  2251. font-size:12px;
  2252. color:#FFFFFF;
  2253. }
  2254. #u105529 .text {
  2255. position:absolute;
  2256. align-self:center;
  2257. padding:2px 2px 2px 2px;
  2258. box-sizing:border-box;
  2259. width:100%;
  2260. }
  2261. #u105529_text {
  2262. border-width:0px;
  2263. word-wrap:break-word;
  2264. text-transform:none;
  2265. }
  2266. #u105530_img {
  2267. border-width:0px;
  2268. position:absolute;
  2269. left:0px;
  2270. top:0px;
  2271. width:63px;
  2272. height:44px;
  2273. }
  2274. #u105530 {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:1034px;
  2278. top:0px;
  2279. width:63px;
  2280. height:44px;
  2281. display:flex;
  2282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2283. font-weight:400;
  2284. font-style:normal;
  2285. font-size:12px;
  2286. color:#FFFFFF;
  2287. }
  2288. #u105530 .text {
  2289. position:absolute;
  2290. align-self:center;
  2291. padding:2px 2px 2px 2px;
  2292. box-sizing:border-box;
  2293. width:100%;
  2294. }
  2295. #u105530_text {
  2296. border-width:0px;
  2297. word-wrap:break-word;
  2298. text-transform:none;
  2299. }
  2300. #u105531_img {
  2301. border-width:0px;
  2302. position:absolute;
  2303. left:0px;
  2304. top:0px;
  2305. width:60px;
  2306. height:44px;
  2307. }
  2308. #u105531 {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:1097px;
  2312. top:0px;
  2313. width:60px;
  2314. height:44px;
  2315. display:flex;
  2316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2317. font-weight:400;
  2318. font-style:normal;
  2319. font-size:12px;
  2320. color:#FFFFFF;
  2321. }
  2322. #u105531 .text {
  2323. position:absolute;
  2324. align-self:center;
  2325. padding:2px 2px 2px 2px;
  2326. box-sizing:border-box;
  2327. width:100%;
  2328. }
  2329. #u105531_text {
  2330. border-width:0px;
  2331. word-wrap:break-word;
  2332. text-transform:none;
  2333. }
  2334. #u105532_img {
  2335. border-width:0px;
  2336. position:absolute;
  2337. left:0px;
  2338. top:0px;
  2339. width:60px;
  2340. height:44px;
  2341. }
  2342. #u105532 {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:1157px;
  2346. top:0px;
  2347. width:60px;
  2348. height:44px;
  2349. display:flex;
  2350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2351. font-weight:400;
  2352. font-style:normal;
  2353. font-size:12px;
  2354. color:#FFFFFF;
  2355. }
  2356. #u105532 .text {
  2357. position:absolute;
  2358. align-self:center;
  2359. padding:2px 2px 2px 2px;
  2360. box-sizing:border-box;
  2361. width:100%;
  2362. }
  2363. #u105532_text {
  2364. border-width:0px;
  2365. word-wrap:break-word;
  2366. text-transform:none;
  2367. }
  2368. #u105533_img {
  2369. border-width:0px;
  2370. position:absolute;
  2371. left:0px;
  2372. top:0px;
  2373. width:70px;
  2374. height:44px;
  2375. }
  2376. #u105533 {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:0px;
  2380. top:44px;
  2381. width:70px;
  2382. height:44px;
  2383. display:flex;
  2384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2385. font-weight:400;
  2386. font-style:normal;
  2387. font-size:14px;
  2388. }
  2389. #u105533 .text {
  2390. position:absolute;
  2391. align-self:center;
  2392. padding:2px 2px 2px 2px;
  2393. box-sizing:border-box;
  2394. width:100%;
  2395. }
  2396. #u105533_text {
  2397. border-width:0px;
  2398. word-wrap:break-word;
  2399. text-transform:none;
  2400. visibility:hidden;
  2401. }
  2402. #u105534_img {
  2403. border-width:0px;
  2404. position:absolute;
  2405. left:0px;
  2406. top:0px;
  2407. width:70px;
  2408. height:44px;
  2409. }
  2410. #u105534 {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:70px;
  2414. top:44px;
  2415. width:70px;
  2416. height:44px;
  2417. display:flex;
  2418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2419. font-weight:400;
  2420. font-style:normal;
  2421. font-size:14px;
  2422. }
  2423. #u105534 .text {
  2424. position:absolute;
  2425. align-self:center;
  2426. padding:2px 2px 2px 2px;
  2427. box-sizing:border-box;
  2428. width:100%;
  2429. }
  2430. #u105534_text {
  2431. border-width:0px;
  2432. word-wrap:break-word;
  2433. text-transform:none;
  2434. visibility:hidden;
  2435. }
  2436. #u105535_img {
  2437. border-width:0px;
  2438. position:absolute;
  2439. left:0px;
  2440. top:0px;
  2441. width:70px;
  2442. height:44px;
  2443. }
  2444. #u105535 {
  2445. border-width:0px;
  2446. position:absolute;
  2447. left:140px;
  2448. top:44px;
  2449. width:70px;
  2450. height:44px;
  2451. display:flex;
  2452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2453. font-weight:400;
  2454. font-style:normal;
  2455. font-size:14px;
  2456. }
  2457. #u105535 .text {
  2458. position:absolute;
  2459. align-self:center;
  2460. padding:2px 2px 2px 2px;
  2461. box-sizing:border-box;
  2462. width:100%;
  2463. }
  2464. #u105535_text {
  2465. border-width:0px;
  2466. word-wrap:break-word;
  2467. text-transform:none;
  2468. visibility:hidden;
  2469. }
  2470. #u105536_img {
  2471. border-width:0px;
  2472. position:absolute;
  2473. left:0px;
  2474. top:0px;
  2475. width:70px;
  2476. height:44px;
  2477. }
  2478. #u105536 {
  2479. border-width:0px;
  2480. position:absolute;
  2481. left:210px;
  2482. top:44px;
  2483. width:70px;
  2484. height:44px;
  2485. display:flex;
  2486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2487. font-weight:400;
  2488. font-style:normal;
  2489. font-size:14px;
  2490. }
  2491. #u105536 .text {
  2492. position:absolute;
  2493. align-self:center;
  2494. padding:2px 2px 2px 2px;
  2495. box-sizing:border-box;
  2496. width:100%;
  2497. }
  2498. #u105536_text {
  2499. border-width:0px;
  2500. word-wrap:break-word;
  2501. text-transform:none;
  2502. }
  2503. #u105537_img {
  2504. border-width:0px;
  2505. position:absolute;
  2506. left:0px;
  2507. top:0px;
  2508. width:109px;
  2509. height:44px;
  2510. }
  2511. #u105537 {
  2512. border-width:0px;
  2513. position:absolute;
  2514. left:280px;
  2515. top:44px;
  2516. width:109px;
  2517. height:44px;
  2518. display:flex;
  2519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2520. font-weight:400;
  2521. font-style:normal;
  2522. font-size:14px;
  2523. }
  2524. #u105537 .text {
  2525. position:absolute;
  2526. align-self:center;
  2527. padding:2px 2px 2px 2px;
  2528. box-sizing:border-box;
  2529. width:100%;
  2530. }
  2531. #u105537_text {
  2532. border-width:0px;
  2533. word-wrap:break-word;
  2534. text-transform:none;
  2535. }
  2536. #u105538_img {
  2537. border-width:0px;
  2538. position:absolute;
  2539. left:0px;
  2540. top:0px;
  2541. width:70px;
  2542. height:44px;
  2543. }
  2544. #u105538 {
  2545. border-width:0px;
  2546. position:absolute;
  2547. left:389px;
  2548. top:44px;
  2549. width:70px;
  2550. height:44px;
  2551. display:flex;
  2552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2553. font-weight:400;
  2554. font-style:normal;
  2555. font-size:12px;
  2556. text-align:left;
  2557. line-height:40px;
  2558. }
  2559. #u105538 .text {
  2560. position:absolute;
  2561. align-self:center;
  2562. padding:2px 2px 2px 2px;
  2563. box-sizing:border-box;
  2564. width:100%;
  2565. }
  2566. #u105538_text {
  2567. border-width:0px;
  2568. word-wrap:break-word;
  2569. text-transform:none;
  2570. visibility:hidden;
  2571. }
  2572. #u105539_img {
  2573. border-width:0px;
  2574. position:absolute;
  2575. left:0px;
  2576. top:0px;
  2577. width:70px;
  2578. height:44px;
  2579. }
  2580. #u105539 {
  2581. border-width:0px;
  2582. position:absolute;
  2583. left:459px;
  2584. top:44px;
  2585. width:70px;
  2586. height:44px;
  2587. display:flex;
  2588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2589. font-weight:400;
  2590. font-style:normal;
  2591. font-size:12px;
  2592. text-align:left;
  2593. line-height:40px;
  2594. }
  2595. #u105539 .text {
  2596. position:absolute;
  2597. align-self:center;
  2598. padding:2px 2px 2px 2px;
  2599. box-sizing:border-box;
  2600. width:100%;
  2601. }
  2602. #u105539_text {
  2603. border-width:0px;
  2604. word-wrap:break-word;
  2605. text-transform:none;
  2606. visibility:hidden;
  2607. }
  2608. #u105540_img {
  2609. border-width:0px;
  2610. position:absolute;
  2611. left:0px;
  2612. top:0px;
  2613. width:70px;
  2614. height:44px;
  2615. }
  2616. #u105540 {
  2617. border-width:0px;
  2618. position:absolute;
  2619. left:529px;
  2620. top:44px;
  2621. width:70px;
  2622. height:44px;
  2623. display:flex;
  2624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2625. font-weight:400;
  2626. font-style:normal;
  2627. font-size:12px;
  2628. text-align:left;
  2629. line-height:40px;
  2630. }
  2631. #u105540 .text {
  2632. position:absolute;
  2633. align-self:center;
  2634. padding:2px 2px 2px 2px;
  2635. box-sizing:border-box;
  2636. width:100%;
  2637. }
  2638. #u105540_text {
  2639. border-width:0px;
  2640. word-wrap:break-word;
  2641. text-transform:none;
  2642. visibility:hidden;
  2643. }
  2644. #u105541_img {
  2645. border-width:0px;
  2646. position:absolute;
  2647. left:0px;
  2648. top:0px;
  2649. width:70px;
  2650. height:44px;
  2651. }
  2652. #u105541 {
  2653. border-width:0px;
  2654. position:absolute;
  2655. left:599px;
  2656. top:44px;
  2657. width:70px;
  2658. height:44px;
  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. text-align:left;
  2665. line-height:40px;
  2666. }
  2667. #u105541 .text {
  2668. position:absolute;
  2669. align-self:center;
  2670. padding:2px 2px 2px 2px;
  2671. box-sizing:border-box;
  2672. width:100%;
  2673. }
  2674. #u105541_text {
  2675. border-width:0px;
  2676. word-wrap:break-word;
  2677. text-transform:none;
  2678. visibility:hidden;
  2679. }
  2680. #u105542_img {
  2681. border-width:0px;
  2682. position:absolute;
  2683. left:0px;
  2684. top:0px;
  2685. width:70px;
  2686. height:44px;
  2687. }
  2688. #u105542 {
  2689. border-width:0px;
  2690. position:absolute;
  2691. left:669px;
  2692. top:44px;
  2693. width:70px;
  2694. height:44px;
  2695. display:flex;
  2696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2697. font-weight:400;
  2698. font-style:normal;
  2699. font-size:12px;
  2700. text-align:left;
  2701. line-height:40px;
  2702. }
  2703. #u105542 .text {
  2704. position:absolute;
  2705. align-self:center;
  2706. padding:2px 2px 2px 2px;
  2707. box-sizing:border-box;
  2708. width:100%;
  2709. }
  2710. #u105542_text {
  2711. border-width:0px;
  2712. word-wrap:break-word;
  2713. text-transform:none;
  2714. visibility:hidden;
  2715. }
  2716. #u105543_img {
  2717. border-width:0px;
  2718. position:absolute;
  2719. left:0px;
  2720. top:0px;
  2721. width:70px;
  2722. height:44px;
  2723. }
  2724. #u105543 {
  2725. border-width:0px;
  2726. position:absolute;
  2727. left:739px;
  2728. top:44px;
  2729. width:70px;
  2730. height:44px;
  2731. display:flex;
  2732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2733. font-weight:400;
  2734. font-style:normal;
  2735. font-size:12px;
  2736. text-align:left;
  2737. line-height:40px;
  2738. }
  2739. #u105543 .text {
  2740. position:absolute;
  2741. align-self:center;
  2742. padding:2px 2px 2px 2px;
  2743. box-sizing:border-box;
  2744. width:100%;
  2745. }
  2746. #u105543_text {
  2747. border-width:0px;
  2748. word-wrap:break-word;
  2749. text-transform:none;
  2750. visibility:hidden;
  2751. }
  2752. #u105544_img {
  2753. border-width:0px;
  2754. position:absolute;
  2755. left:0px;
  2756. top:0px;
  2757. width:70px;
  2758. height:44px;
  2759. }
  2760. #u105544 {
  2761. border-width:0px;
  2762. position:absolute;
  2763. left:809px;
  2764. top:44px;
  2765. width:70px;
  2766. height:44px;
  2767. display:flex;
  2768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2769. font-weight:400;
  2770. font-style:normal;
  2771. font-size:14px;
  2772. }
  2773. #u105544 .text {
  2774. position:absolute;
  2775. align-self:center;
  2776. padding:2px 2px 2px 2px;
  2777. box-sizing:border-box;
  2778. width:100%;
  2779. }
  2780. #u105544_text {
  2781. border-width:0px;
  2782. word-wrap:break-word;
  2783. text-transform:none;
  2784. }
  2785. #u105545_img {
  2786. border-width:0px;
  2787. position:absolute;
  2788. left:0px;
  2789. top:0px;
  2790. width:80px;
  2791. height:44px;
  2792. }
  2793. #u105545 {
  2794. border-width:0px;
  2795. position:absolute;
  2796. left:879px;
  2797. top:44px;
  2798. width:80px;
  2799. height:44px;
  2800. display:flex;
  2801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2802. font-weight:400;
  2803. font-style:normal;
  2804. font-size:14px;
  2805. }
  2806. #u105545 .text {
  2807. position:absolute;
  2808. align-self:center;
  2809. padding:2px 2px 2px 2px;
  2810. box-sizing:border-box;
  2811. width:100%;
  2812. }
  2813. #u105545_text {
  2814. border-width:0px;
  2815. word-wrap:break-word;
  2816. text-transform:none;
  2817. visibility:hidden;
  2818. }
  2819. #u105546_img {
  2820. border-width:0px;
  2821. position:absolute;
  2822. left:0px;
  2823. top:0px;
  2824. width:75px;
  2825. height:44px;
  2826. }
  2827. #u105546 {
  2828. border-width:0px;
  2829. position:absolute;
  2830. left:959px;
  2831. top:44px;
  2832. width:75px;
  2833. height:44px;
  2834. display:flex;
  2835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2836. font-weight:400;
  2837. font-style:normal;
  2838. font-size:14px;
  2839. color:#0089FE;
  2840. }
  2841. #u105546 .text {
  2842. position:absolute;
  2843. align-self:center;
  2844. padding:2px 2px 2px 2px;
  2845. box-sizing:border-box;
  2846. width:100%;
  2847. }
  2848. #u105546_text {
  2849. border-width:0px;
  2850. word-wrap:break-word;
  2851. text-transform:none;
  2852. }
  2853. #u105547_img {
  2854. border-width:0px;
  2855. position:absolute;
  2856. left:0px;
  2857. top:0px;
  2858. width:63px;
  2859. height:44px;
  2860. }
  2861. #u105547 {
  2862. border-width:0px;
  2863. position:absolute;
  2864. left:1034px;
  2865. top:44px;
  2866. width:63px;
  2867. height:44px;
  2868. display:flex;
  2869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2870. font-weight:400;
  2871. font-style:normal;
  2872. font-size:14px;
  2873. }
  2874. #u105547 .text {
  2875. position:absolute;
  2876. align-self:center;
  2877. padding:2px 2px 2px 2px;
  2878. box-sizing:border-box;
  2879. width:100%;
  2880. }
  2881. #u105547_text {
  2882. border-width:0px;
  2883. word-wrap:break-word;
  2884. text-transform:none;
  2885. }
  2886. #u105548_img {
  2887. border-width:0px;
  2888. position:absolute;
  2889. left:0px;
  2890. top:0px;
  2891. width:60px;
  2892. height:44px;
  2893. }
  2894. #u105548 {
  2895. border-width:0px;
  2896. position:absolute;
  2897. left:1097px;
  2898. top:44px;
  2899. width:60px;
  2900. height:44px;
  2901. display:flex;
  2902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2903. font-weight:400;
  2904. font-style:normal;
  2905. font-size:14px;
  2906. }
  2907. #u105548 .text {
  2908. position:absolute;
  2909. align-self:center;
  2910. padding:2px 2px 2px 2px;
  2911. box-sizing:border-box;
  2912. width:100%;
  2913. }
  2914. #u105548_text {
  2915. border-width:0px;
  2916. word-wrap:break-word;
  2917. text-transform:none;
  2918. visibility:hidden;
  2919. }
  2920. #u105549_img {
  2921. border-width:0px;
  2922. position:absolute;
  2923. left:0px;
  2924. top:0px;
  2925. width:60px;
  2926. height:44px;
  2927. }
  2928. #u105549 {
  2929. border-width:0px;
  2930. position:absolute;
  2931. left:1157px;
  2932. top:44px;
  2933. width:60px;
  2934. height:44px;
  2935. display:flex;
  2936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2937. font-weight:400;
  2938. font-style:normal;
  2939. font-size:14px;
  2940. color:#298FFF;
  2941. }
  2942. #u105549 .text {
  2943. position:absolute;
  2944. align-self:center;
  2945. padding:2px 2px 2px 2px;
  2946. box-sizing:border-box;
  2947. width:100%;
  2948. }
  2949. #u105549_text {
  2950. border-width:0px;
  2951. word-wrap:break-word;
  2952. text-transform:none;
  2953. }
  2954. #u105550_img {
  2955. border-width:0px;
  2956. position:absolute;
  2957. left:0px;
  2958. top:0px;
  2959. width:70px;
  2960. height:44px;
  2961. }
  2962. #u105550 {
  2963. border-width:0px;
  2964. position:absolute;
  2965. left:0px;
  2966. top:88px;
  2967. width:70px;
  2968. height:44px;
  2969. display:flex;
  2970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2971. font-weight:400;
  2972. font-style:normal;
  2973. font-size:14px;
  2974. }
  2975. #u105550 .text {
  2976. position:absolute;
  2977. align-self:center;
  2978. padding:2px 2px 2px 2px;
  2979. box-sizing:border-box;
  2980. width:100%;
  2981. }
  2982. #u105550_text {
  2983. border-width:0px;
  2984. word-wrap:break-word;
  2985. text-transform:none;
  2986. visibility:hidden;
  2987. }
  2988. #u105551_img {
  2989. border-width:0px;
  2990. position:absolute;
  2991. left:0px;
  2992. top:0px;
  2993. width:70px;
  2994. height:44px;
  2995. }
  2996. #u105551 {
  2997. border-width:0px;
  2998. position:absolute;
  2999. left:70px;
  3000. top:88px;
  3001. width:70px;
  3002. height:44px;
  3003. display:flex;
  3004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3005. font-weight:400;
  3006. font-style:normal;
  3007. font-size:14px;
  3008. }
  3009. #u105551 .text {
  3010. position:absolute;
  3011. align-self:center;
  3012. padding:2px 2px 2px 2px;
  3013. box-sizing:border-box;
  3014. width:100%;
  3015. }
  3016. #u105551_text {
  3017. border-width:0px;
  3018. word-wrap:break-word;
  3019. text-transform:none;
  3020. visibility:hidden;
  3021. }
  3022. #u105552_img {
  3023. border-width:0px;
  3024. position:absolute;
  3025. left:0px;
  3026. top:0px;
  3027. width:70px;
  3028. height:44px;
  3029. }
  3030. #u105552 {
  3031. border-width:0px;
  3032. position:absolute;
  3033. left:140px;
  3034. top:88px;
  3035. width:70px;
  3036. height:44px;
  3037. display:flex;
  3038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3039. font-weight:400;
  3040. font-style:normal;
  3041. font-size:14px;
  3042. }
  3043. #u105552 .text {
  3044. position:absolute;
  3045. align-self:center;
  3046. padding:2px 2px 2px 2px;
  3047. box-sizing:border-box;
  3048. width:100%;
  3049. }
  3050. #u105552_text {
  3051. border-width:0px;
  3052. word-wrap:break-word;
  3053. text-transform:none;
  3054. visibility:hidden;
  3055. }
  3056. #u105553_img {
  3057. border-width:0px;
  3058. position:absolute;
  3059. left:0px;
  3060. top:0px;
  3061. width:70px;
  3062. height:44px;
  3063. }
  3064. #u105553 {
  3065. border-width:0px;
  3066. position:absolute;
  3067. left:210px;
  3068. top:88px;
  3069. width:70px;
  3070. height:44px;
  3071. display:flex;
  3072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3073. font-weight:400;
  3074. font-style:normal;
  3075. font-size:14px;
  3076. }
  3077. #u105553 .text {
  3078. position:absolute;
  3079. align-self:center;
  3080. padding:2px 2px 2px 2px;
  3081. box-sizing:border-box;
  3082. width:100%;
  3083. }
  3084. #u105553_text {
  3085. border-width:0px;
  3086. word-wrap:break-word;
  3087. text-transform:none;
  3088. }
  3089. #u105554_img {
  3090. border-width:0px;
  3091. position:absolute;
  3092. left:0px;
  3093. top:0px;
  3094. width:109px;
  3095. height:44px;
  3096. }
  3097. #u105554 {
  3098. border-width:0px;
  3099. position:absolute;
  3100. left:280px;
  3101. top:88px;
  3102. width:109px;
  3103. height:44px;
  3104. display:flex;
  3105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3106. font-weight:400;
  3107. font-style:normal;
  3108. font-size:14px;
  3109. }
  3110. #u105554 .text {
  3111. position:absolute;
  3112. align-self:center;
  3113. padding:2px 2px 2px 2px;
  3114. box-sizing:border-box;
  3115. width:100%;
  3116. }
  3117. #u105554_text {
  3118. border-width:0px;
  3119. word-wrap:break-word;
  3120. text-transform:none;
  3121. }
  3122. #u105555_img {
  3123. border-width:0px;
  3124. position:absolute;
  3125. left:0px;
  3126. top:0px;
  3127. width:70px;
  3128. height:44px;
  3129. }
  3130. #u105555 {
  3131. border-width:0px;
  3132. position:absolute;
  3133. left:389px;
  3134. top:88px;
  3135. width:70px;
  3136. height:44px;
  3137. display:flex;
  3138. font-size:14px;
  3139. }
  3140. #u105555 .text {
  3141. position:absolute;
  3142. align-self:center;
  3143. padding:2px 2px 2px 2px;
  3144. box-sizing:border-box;
  3145. width:100%;
  3146. }
  3147. #u105555_text {
  3148. border-width:0px;
  3149. word-wrap:break-word;
  3150. text-transform:none;
  3151. visibility:hidden;
  3152. }
  3153. #u105556_img {
  3154. border-width:0px;
  3155. position:absolute;
  3156. left:0px;
  3157. top:0px;
  3158. width:70px;
  3159. height:44px;
  3160. }
  3161. #u105556 {
  3162. border-width:0px;
  3163. position:absolute;
  3164. left:459px;
  3165. top:88px;
  3166. width:70px;
  3167. height:44px;
  3168. display:flex;
  3169. font-size:14px;
  3170. }
  3171. #u105556 .text {
  3172. position:absolute;
  3173. align-self:center;
  3174. padding:2px 2px 2px 2px;
  3175. box-sizing:border-box;
  3176. width:100%;
  3177. }
  3178. #u105556_text {
  3179. border-width:0px;
  3180. word-wrap:break-word;
  3181. text-transform:none;
  3182. visibility:hidden;
  3183. }
  3184. #u105557_img {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:0px;
  3188. top:0px;
  3189. width:70px;
  3190. height:44px;
  3191. }
  3192. #u105557 {
  3193. border-width:0px;
  3194. position:absolute;
  3195. left:529px;
  3196. top:88px;
  3197. width:70px;
  3198. height:44px;
  3199. display:flex;
  3200. font-size:14px;
  3201. }
  3202. #u105557 .text {
  3203. position:absolute;
  3204. align-self:center;
  3205. padding:2px 2px 2px 2px;
  3206. box-sizing:border-box;
  3207. width:100%;
  3208. }
  3209. #u105557_text {
  3210. border-width:0px;
  3211. word-wrap:break-word;
  3212. text-transform:none;
  3213. visibility:hidden;
  3214. }
  3215. #u105558_img {
  3216. border-width:0px;
  3217. position:absolute;
  3218. left:0px;
  3219. top:0px;
  3220. width:70px;
  3221. height:44px;
  3222. }
  3223. #u105558 {
  3224. border-width:0px;
  3225. position:absolute;
  3226. left:599px;
  3227. top:88px;
  3228. width:70px;
  3229. height:44px;
  3230. display:flex;
  3231. font-size:14px;
  3232. }
  3233. #u105558 .text {
  3234. position:absolute;
  3235. align-self:center;
  3236. padding:2px 2px 2px 2px;
  3237. box-sizing:border-box;
  3238. width:100%;
  3239. }
  3240. #u105558_text {
  3241. border-width:0px;
  3242. word-wrap:break-word;
  3243. text-transform:none;
  3244. visibility:hidden;
  3245. }
  3246. #u105559_img {
  3247. border-width:0px;
  3248. position:absolute;
  3249. left:0px;
  3250. top:0px;
  3251. width:70px;
  3252. height:44px;
  3253. }
  3254. #u105559 {
  3255. border-width:0px;
  3256. position:absolute;
  3257. left:669px;
  3258. top:88px;
  3259. width:70px;
  3260. height:44px;
  3261. display:flex;
  3262. font-size:14px;
  3263. }
  3264. #u105559 .text {
  3265. position:absolute;
  3266. align-self:center;
  3267. padding:2px 2px 2px 2px;
  3268. box-sizing:border-box;
  3269. width:100%;
  3270. }
  3271. #u105559_text {
  3272. border-width:0px;
  3273. word-wrap:break-word;
  3274. text-transform:none;
  3275. visibility:hidden;
  3276. }
  3277. #u105560_img {
  3278. border-width:0px;
  3279. position:absolute;
  3280. left:0px;
  3281. top:0px;
  3282. width:70px;
  3283. height:44px;
  3284. }
  3285. #u105560 {
  3286. border-width:0px;
  3287. position:absolute;
  3288. left:739px;
  3289. top:88px;
  3290. width:70px;
  3291. height:44px;
  3292. display:flex;
  3293. font-size:14px;
  3294. }
  3295. #u105560 .text {
  3296. position:absolute;
  3297. align-self:center;
  3298. padding:2px 2px 2px 2px;
  3299. box-sizing:border-box;
  3300. width:100%;
  3301. }
  3302. #u105560_text {
  3303. border-width:0px;
  3304. word-wrap:break-word;
  3305. text-transform:none;
  3306. visibility:hidden;
  3307. }
  3308. #u105561_img {
  3309. border-width:0px;
  3310. position:absolute;
  3311. left:0px;
  3312. top:0px;
  3313. width:70px;
  3314. height:44px;
  3315. }
  3316. #u105561 {
  3317. border-width:0px;
  3318. position:absolute;
  3319. left:809px;
  3320. top:88px;
  3321. width:70px;
  3322. height:44px;
  3323. display:flex;
  3324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3325. font-weight:400;
  3326. font-style:normal;
  3327. font-size:14px;
  3328. }
  3329. #u105561 .text {
  3330. position:absolute;
  3331. align-self:center;
  3332. padding:2px 2px 2px 2px;
  3333. box-sizing:border-box;
  3334. width:100%;
  3335. }
  3336. #u105561_text {
  3337. border-width:0px;
  3338. word-wrap:break-word;
  3339. text-transform:none;
  3340. }
  3341. #u105562_img {
  3342. border-width:0px;
  3343. position:absolute;
  3344. left:0px;
  3345. top:0px;
  3346. width:80px;
  3347. height:44px;
  3348. }
  3349. #u105562 {
  3350. border-width:0px;
  3351. position:absolute;
  3352. left:879px;
  3353. top:88px;
  3354. width:80px;
  3355. height:44px;
  3356. display:flex;
  3357. font-size:14px;
  3358. }
  3359. #u105562 .text {
  3360. position:absolute;
  3361. align-self:center;
  3362. padding:2px 2px 2px 2px;
  3363. box-sizing:border-box;
  3364. width:100%;
  3365. }
  3366. #u105562_text {
  3367. border-width:0px;
  3368. word-wrap:break-word;
  3369. text-transform:none;
  3370. visibility:hidden;
  3371. }
  3372. #u105563_img {
  3373. border-width:0px;
  3374. position:absolute;
  3375. left:0px;
  3376. top:0px;
  3377. width:75px;
  3378. height:44px;
  3379. }
  3380. #u105563 {
  3381. border-width:0px;
  3382. position:absolute;
  3383. left:959px;
  3384. top:88px;
  3385. width:75px;
  3386. height:44px;
  3387. display:flex;
  3388. font-size:14px;
  3389. }
  3390. #u105563 .text {
  3391. position:absolute;
  3392. align-self:center;
  3393. padding:2px 2px 2px 2px;
  3394. box-sizing:border-box;
  3395. width:100%;
  3396. }
  3397. #u105563_text {
  3398. border-width:0px;
  3399. word-wrap:break-word;
  3400. text-transform:none;
  3401. }
  3402. #u105564_img {
  3403. border-width:0px;
  3404. position:absolute;
  3405. left:0px;
  3406. top:0px;
  3407. width:63px;
  3408. height:44px;
  3409. }
  3410. #u105564 {
  3411. border-width:0px;
  3412. position:absolute;
  3413. left:1034px;
  3414. top:88px;
  3415. width:63px;
  3416. height:44px;
  3417. display:flex;
  3418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3419. font-weight:400;
  3420. font-style:normal;
  3421. font-size:14px;
  3422. }
  3423. #u105564 .text {
  3424. position:absolute;
  3425. align-self:center;
  3426. padding:2px 2px 2px 2px;
  3427. box-sizing:border-box;
  3428. width:100%;
  3429. }
  3430. #u105564_text {
  3431. border-width:0px;
  3432. word-wrap:break-word;
  3433. text-transform:none;
  3434. }
  3435. #u105565_img {
  3436. border-width:0px;
  3437. position:absolute;
  3438. left:0px;
  3439. top:0px;
  3440. width:60px;
  3441. height:44px;
  3442. }
  3443. #u105565 {
  3444. border-width:0px;
  3445. position:absolute;
  3446. left:1097px;
  3447. top:88px;
  3448. width:60px;
  3449. height:44px;
  3450. display:flex;
  3451. font-size:14px;
  3452. }
  3453. #u105565 .text {
  3454. position:absolute;
  3455. align-self:center;
  3456. padding:2px 2px 2px 2px;
  3457. box-sizing:border-box;
  3458. width:100%;
  3459. }
  3460. #u105565_text {
  3461. border-width:0px;
  3462. word-wrap:break-word;
  3463. text-transform:none;
  3464. visibility:hidden;
  3465. }
  3466. #u105566_img {
  3467. border-width:0px;
  3468. position:absolute;
  3469. left:0px;
  3470. top:0px;
  3471. width:60px;
  3472. height:44px;
  3473. }
  3474. #u105566 {
  3475. border-width:0px;
  3476. position:absolute;
  3477. left:1157px;
  3478. top:88px;
  3479. width:60px;
  3480. height:44px;
  3481. display:flex;
  3482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3483. font-weight:400;
  3484. font-style:normal;
  3485. font-size:14px;
  3486. color:#298FFF;
  3487. }
  3488. #u105566 .text {
  3489. position:absolute;
  3490. align-self:center;
  3491. padding:2px 2px 2px 2px;
  3492. box-sizing:border-box;
  3493. width:100%;
  3494. }
  3495. #u105566_text {
  3496. border-width:0px;
  3497. word-wrap:break-word;
  3498. text-transform:none;
  3499. }
  3500. #u105567_img {
  3501. border-width:0px;
  3502. position:absolute;
  3503. left:0px;
  3504. top:0px;
  3505. width:70px;
  3506. height:44px;
  3507. }
  3508. #u105567 {
  3509. border-width:0px;
  3510. position:absolute;
  3511. left:0px;
  3512. top:132px;
  3513. width:70px;
  3514. height:44px;
  3515. display:flex;
  3516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3517. font-weight:400;
  3518. font-style:normal;
  3519. font-size:14px;
  3520. }
  3521. #u105567 .text {
  3522. position:absolute;
  3523. align-self:center;
  3524. padding:2px 2px 2px 2px;
  3525. box-sizing:border-box;
  3526. width:100%;
  3527. }
  3528. #u105567_text {
  3529. border-width:0px;
  3530. word-wrap:break-word;
  3531. text-transform:none;
  3532. visibility:hidden;
  3533. }
  3534. #u105568_img {
  3535. border-width:0px;
  3536. position:absolute;
  3537. left:0px;
  3538. top:0px;
  3539. width:70px;
  3540. height:44px;
  3541. }
  3542. #u105568 {
  3543. border-width:0px;
  3544. position:absolute;
  3545. left:70px;
  3546. top:132px;
  3547. width:70px;
  3548. height:44px;
  3549. display:flex;
  3550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3551. font-weight:400;
  3552. font-style:normal;
  3553. font-size:14px;
  3554. }
  3555. #u105568 .text {
  3556. position:absolute;
  3557. align-self:center;
  3558. padding:2px 2px 2px 2px;
  3559. box-sizing:border-box;
  3560. width:100%;
  3561. }
  3562. #u105568_text {
  3563. border-width:0px;
  3564. word-wrap:break-word;
  3565. text-transform:none;
  3566. visibility:hidden;
  3567. }
  3568. #u105569_img {
  3569. border-width:0px;
  3570. position:absolute;
  3571. left:0px;
  3572. top:0px;
  3573. width:70px;
  3574. height:44px;
  3575. }
  3576. #u105569 {
  3577. border-width:0px;
  3578. position:absolute;
  3579. left:140px;
  3580. top:132px;
  3581. width:70px;
  3582. height:44px;
  3583. display:flex;
  3584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3585. font-weight:400;
  3586. font-style:normal;
  3587. font-size:14px;
  3588. }
  3589. #u105569 .text {
  3590. position:absolute;
  3591. align-self:center;
  3592. padding:2px 2px 2px 2px;
  3593. box-sizing:border-box;
  3594. width:100%;
  3595. }
  3596. #u105569_text {
  3597. border-width:0px;
  3598. word-wrap:break-word;
  3599. text-transform:none;
  3600. visibility:hidden;
  3601. }
  3602. #u105570_img {
  3603. border-width:0px;
  3604. position:absolute;
  3605. left:0px;
  3606. top:0px;
  3607. width:70px;
  3608. height:44px;
  3609. }
  3610. #u105570 {
  3611. border-width:0px;
  3612. position:absolute;
  3613. left:210px;
  3614. top:132px;
  3615. width:70px;
  3616. height:44px;
  3617. display:flex;
  3618. font-size:14px;
  3619. }
  3620. #u105570 .text {
  3621. position:absolute;
  3622. align-self:center;
  3623. padding:2px 2px 2px 2px;
  3624. box-sizing:border-box;
  3625. width:100%;
  3626. }
  3627. #u105570_text {
  3628. border-width:0px;
  3629. word-wrap:break-word;
  3630. text-transform:none;
  3631. visibility:hidden;
  3632. }
  3633. #u105571_img {
  3634. border-width:0px;
  3635. position:absolute;
  3636. left:0px;
  3637. top:0px;
  3638. width:109px;
  3639. height:44px;
  3640. }
  3641. #u105571 {
  3642. border-width:0px;
  3643. position:absolute;
  3644. left:280px;
  3645. top:132px;
  3646. width:109px;
  3647. height:44px;
  3648. display:flex;
  3649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3650. font-weight:400;
  3651. font-style:normal;
  3652. font-size:14px;
  3653. }
  3654. #u105571 .text {
  3655. position:absolute;
  3656. align-self:center;
  3657. padding:2px 2px 2px 2px;
  3658. box-sizing:border-box;
  3659. width:100%;
  3660. }
  3661. #u105571_text {
  3662. border-width:0px;
  3663. word-wrap:break-word;
  3664. text-transform:none;
  3665. }
  3666. #u105572_img {
  3667. border-width:0px;
  3668. position:absolute;
  3669. left:0px;
  3670. top:0px;
  3671. width:70px;
  3672. height:44px;
  3673. }
  3674. #u105572 {
  3675. border-width:0px;
  3676. position:absolute;
  3677. left:389px;
  3678. top:132px;
  3679. width:70px;
  3680. height:44px;
  3681. display:flex;
  3682. font-size:14px;
  3683. }
  3684. #u105572 .text {
  3685. position:absolute;
  3686. align-self:center;
  3687. padding:2px 2px 2px 2px;
  3688. box-sizing:border-box;
  3689. width:100%;
  3690. }
  3691. #u105572_text {
  3692. border-width:0px;
  3693. word-wrap:break-word;
  3694. text-transform:none;
  3695. visibility:hidden;
  3696. }
  3697. #u105573_img {
  3698. border-width:0px;
  3699. position:absolute;
  3700. left:0px;
  3701. top:0px;
  3702. width:70px;
  3703. height:44px;
  3704. }
  3705. #u105573 {
  3706. border-width:0px;
  3707. position:absolute;
  3708. left:459px;
  3709. top:132px;
  3710. width:70px;
  3711. height:44px;
  3712. display:flex;
  3713. font-size:14px;
  3714. }
  3715. #u105573 .text {
  3716. position:absolute;
  3717. align-self:center;
  3718. padding:2px 2px 2px 2px;
  3719. box-sizing:border-box;
  3720. width:100%;
  3721. }
  3722. #u105573_text {
  3723. border-width:0px;
  3724. word-wrap:break-word;
  3725. text-transform:none;
  3726. visibility:hidden;
  3727. }
  3728. #u105574_img {
  3729. border-width:0px;
  3730. position:absolute;
  3731. left:0px;
  3732. top:0px;
  3733. width:70px;
  3734. height:44px;
  3735. }
  3736. #u105574 {
  3737. border-width:0px;
  3738. position:absolute;
  3739. left:529px;
  3740. top:132px;
  3741. width:70px;
  3742. height:44px;
  3743. display:flex;
  3744. font-size:14px;
  3745. }
  3746. #u105574 .text {
  3747. position:absolute;
  3748. align-self:center;
  3749. padding:2px 2px 2px 2px;
  3750. box-sizing:border-box;
  3751. width:100%;
  3752. }
  3753. #u105574_text {
  3754. border-width:0px;
  3755. word-wrap:break-word;
  3756. text-transform:none;
  3757. visibility:hidden;
  3758. }
  3759. #u105575_img {
  3760. border-width:0px;
  3761. position:absolute;
  3762. left:0px;
  3763. top:0px;
  3764. width:70px;
  3765. height:44px;
  3766. }
  3767. #u105575 {
  3768. border-width:0px;
  3769. position:absolute;
  3770. left:599px;
  3771. top:132px;
  3772. width:70px;
  3773. height:44px;
  3774. display:flex;
  3775. font-size:14px;
  3776. }
  3777. #u105575 .text {
  3778. position:absolute;
  3779. align-self:center;
  3780. padding:2px 2px 2px 2px;
  3781. box-sizing:border-box;
  3782. width:100%;
  3783. }
  3784. #u105575_text {
  3785. border-width:0px;
  3786. word-wrap:break-word;
  3787. text-transform:none;
  3788. visibility:hidden;
  3789. }
  3790. #u105576_img {
  3791. border-width:0px;
  3792. position:absolute;
  3793. left:0px;
  3794. top:0px;
  3795. width:70px;
  3796. height:44px;
  3797. }
  3798. #u105576 {
  3799. border-width:0px;
  3800. position:absolute;
  3801. left:669px;
  3802. top:132px;
  3803. width:70px;
  3804. height:44px;
  3805. display:flex;
  3806. font-size:14px;
  3807. }
  3808. #u105576 .text {
  3809. position:absolute;
  3810. align-self:center;
  3811. padding:2px 2px 2px 2px;
  3812. box-sizing:border-box;
  3813. width:100%;
  3814. }
  3815. #u105576_text {
  3816. border-width:0px;
  3817. word-wrap:break-word;
  3818. text-transform:none;
  3819. visibility:hidden;
  3820. }
  3821. #u105577_img {
  3822. border-width:0px;
  3823. position:absolute;
  3824. left:0px;
  3825. top:0px;
  3826. width:70px;
  3827. height:44px;
  3828. }
  3829. #u105577 {
  3830. border-width:0px;
  3831. position:absolute;
  3832. left:739px;
  3833. top:132px;
  3834. width:70px;
  3835. height:44px;
  3836. display:flex;
  3837. font-size:14px;
  3838. }
  3839. #u105577 .text {
  3840. position:absolute;
  3841. align-self:center;
  3842. padding:2px 2px 2px 2px;
  3843. box-sizing:border-box;
  3844. width:100%;
  3845. }
  3846. #u105577_text {
  3847. border-width:0px;
  3848. word-wrap:break-word;
  3849. text-transform:none;
  3850. visibility:hidden;
  3851. }
  3852. #u105578_img {
  3853. border-width:0px;
  3854. position:absolute;
  3855. left:0px;
  3856. top:0px;
  3857. width:70px;
  3858. height:44px;
  3859. }
  3860. #u105578 {
  3861. border-width:0px;
  3862. position:absolute;
  3863. left:809px;
  3864. top:132px;
  3865. width:70px;
  3866. height:44px;
  3867. display:flex;
  3868. font-size:14px;
  3869. }
  3870. #u105578 .text {
  3871. position:absolute;
  3872. align-self:center;
  3873. padding:2px 2px 2px 2px;
  3874. box-sizing:border-box;
  3875. width:100%;
  3876. }
  3877. #u105578_text {
  3878. border-width:0px;
  3879. word-wrap:break-word;
  3880. text-transform:none;
  3881. visibility:hidden;
  3882. }
  3883. #u105579_img {
  3884. border-width:0px;
  3885. position:absolute;
  3886. left:0px;
  3887. top:0px;
  3888. width:80px;
  3889. height:44px;
  3890. }
  3891. #u105579 {
  3892. border-width:0px;
  3893. position:absolute;
  3894. left:879px;
  3895. top:132px;
  3896. width:80px;
  3897. height:44px;
  3898. display:flex;
  3899. font-size:14px;
  3900. }
  3901. #u105579 .text {
  3902. position:absolute;
  3903. align-self:center;
  3904. padding:2px 2px 2px 2px;
  3905. box-sizing:border-box;
  3906. width:100%;
  3907. }
  3908. #u105579_text {
  3909. border-width:0px;
  3910. word-wrap:break-word;
  3911. text-transform:none;
  3912. visibility:hidden;
  3913. }
  3914. #u105580_img {
  3915. border-width:0px;
  3916. position:absolute;
  3917. left:0px;
  3918. top:0px;
  3919. width:75px;
  3920. height:44px;
  3921. }
  3922. #u105580 {
  3923. border-width:0px;
  3924. position:absolute;
  3925. left:959px;
  3926. top:132px;
  3927. width:75px;
  3928. height:44px;
  3929. display:flex;
  3930. font-size:14px;
  3931. }
  3932. #u105580 .text {
  3933. position:absolute;
  3934. align-self:center;
  3935. padding:2px 2px 2px 2px;
  3936. box-sizing:border-box;
  3937. width:100%;
  3938. }
  3939. #u105580_text {
  3940. border-width:0px;
  3941. word-wrap:break-word;
  3942. text-transform:none;
  3943. visibility:hidden;
  3944. }
  3945. #u105581_img {
  3946. border-width:0px;
  3947. position:absolute;
  3948. left:0px;
  3949. top:0px;
  3950. width:63px;
  3951. height:44px;
  3952. }
  3953. #u105581 {
  3954. border-width:0px;
  3955. position:absolute;
  3956. left:1034px;
  3957. top:132px;
  3958. width:63px;
  3959. height:44px;
  3960. display:flex;
  3961. font-size:14px;
  3962. }
  3963. #u105581 .text {
  3964. position:absolute;
  3965. align-self:center;
  3966. padding:2px 2px 2px 2px;
  3967. box-sizing:border-box;
  3968. width:100%;
  3969. }
  3970. #u105581_text {
  3971. border-width:0px;
  3972. word-wrap:break-word;
  3973. text-transform:none;
  3974. visibility:hidden;
  3975. }
  3976. #u105582_img {
  3977. border-width:0px;
  3978. position:absolute;
  3979. left:0px;
  3980. top:0px;
  3981. width:60px;
  3982. height:44px;
  3983. }
  3984. #u105582 {
  3985. border-width:0px;
  3986. position:absolute;
  3987. left:1097px;
  3988. top:132px;
  3989. width:60px;
  3990. height:44px;
  3991. display:flex;
  3992. font-size:14px;
  3993. }
  3994. #u105582 .text {
  3995. position:absolute;
  3996. align-self:center;
  3997. padding:2px 2px 2px 2px;
  3998. box-sizing:border-box;
  3999. width:100%;
  4000. }
  4001. #u105582_text {
  4002. border-width:0px;
  4003. word-wrap:break-word;
  4004. text-transform:none;
  4005. visibility:hidden;
  4006. }
  4007. #u105583_img {
  4008. border-width:0px;
  4009. position:absolute;
  4010. left:0px;
  4011. top:0px;
  4012. width:60px;
  4013. height:44px;
  4014. }
  4015. #u105583 {
  4016. border-width:0px;
  4017. position:absolute;
  4018. left:1157px;
  4019. top:132px;
  4020. width:60px;
  4021. height:44px;
  4022. display:flex;
  4023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4024. font-weight:400;
  4025. font-style:normal;
  4026. font-size:14px;
  4027. color:#298FFF;
  4028. }
  4029. #u105583 .text {
  4030. position:absolute;
  4031. align-self:center;
  4032. padding:2px 2px 2px 2px;
  4033. box-sizing:border-box;
  4034. width:100%;
  4035. }
  4036. #u105583_text {
  4037. border-width:0px;
  4038. word-wrap:break-word;
  4039. text-transform:none;
  4040. visibility:hidden;
  4041. }
  4042. #u105584_img {
  4043. border-width:0px;
  4044. position:absolute;
  4045. left:0px;
  4046. top:0px;
  4047. width:70px;
  4048. height:44px;
  4049. }
  4050. #u105584 {
  4051. border-width:0px;
  4052. position:absolute;
  4053. left:0px;
  4054. top:176px;
  4055. width:70px;
  4056. height:44px;
  4057. display:flex;
  4058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4059. font-weight:400;
  4060. font-style:normal;
  4061. font-size:14px;
  4062. }
  4063. #u105584 .text {
  4064. position:absolute;
  4065. align-self:center;
  4066. padding:2px 2px 2px 2px;
  4067. box-sizing:border-box;
  4068. width:100%;
  4069. }
  4070. #u105584_text {
  4071. border-width:0px;
  4072. word-wrap:break-word;
  4073. text-transform:none;
  4074. visibility:hidden;
  4075. }
  4076. #u105585_img {
  4077. border-width:0px;
  4078. position:absolute;
  4079. left:0px;
  4080. top:0px;
  4081. width:70px;
  4082. height:44px;
  4083. }
  4084. #u105585 {
  4085. border-width:0px;
  4086. position:absolute;
  4087. left:70px;
  4088. top:176px;
  4089. width:70px;
  4090. height:44px;
  4091. display:flex;
  4092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4093. font-weight:400;
  4094. font-style:normal;
  4095. font-size:14px;
  4096. }
  4097. #u105585 .text {
  4098. position:absolute;
  4099. align-self:center;
  4100. padding:2px 2px 2px 2px;
  4101. box-sizing:border-box;
  4102. width:100%;
  4103. }
  4104. #u105585_text {
  4105. border-width:0px;
  4106. word-wrap:break-word;
  4107. text-transform:none;
  4108. visibility:hidden;
  4109. }
  4110. #u105586_img {
  4111. border-width:0px;
  4112. position:absolute;
  4113. left:0px;
  4114. top:0px;
  4115. width:70px;
  4116. height:44px;
  4117. }
  4118. #u105586 {
  4119. border-width:0px;
  4120. position:absolute;
  4121. left:140px;
  4122. top:176px;
  4123. width:70px;
  4124. height:44px;
  4125. display:flex;
  4126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4127. font-weight:400;
  4128. font-style:normal;
  4129. font-size:14px;
  4130. }
  4131. #u105586 .text {
  4132. position:absolute;
  4133. align-self:center;
  4134. padding:2px 2px 2px 2px;
  4135. box-sizing:border-box;
  4136. width:100%;
  4137. }
  4138. #u105586_text {
  4139. border-width:0px;
  4140. word-wrap:break-word;
  4141. text-transform:none;
  4142. visibility:hidden;
  4143. }
  4144. #u105587_img {
  4145. border-width:0px;
  4146. position:absolute;
  4147. left:0px;
  4148. top:0px;
  4149. width:70px;
  4150. height:44px;
  4151. }
  4152. #u105587 {
  4153. border-width:0px;
  4154. position:absolute;
  4155. left:210px;
  4156. top:176px;
  4157. width:70px;
  4158. height:44px;
  4159. display:flex;
  4160. font-size:14px;
  4161. }
  4162. #u105587 .text {
  4163. position:absolute;
  4164. align-self:center;
  4165. padding:2px 2px 2px 2px;
  4166. box-sizing:border-box;
  4167. width:100%;
  4168. }
  4169. #u105587_text {
  4170. border-width:0px;
  4171. word-wrap:break-word;
  4172. text-transform:none;
  4173. visibility:hidden;
  4174. }
  4175. #u105588_img {
  4176. border-width:0px;
  4177. position:absolute;
  4178. left:0px;
  4179. top:0px;
  4180. width:109px;
  4181. height:44px;
  4182. }
  4183. #u105588 {
  4184. border-width:0px;
  4185. position:absolute;
  4186. left:280px;
  4187. top:176px;
  4188. width:109px;
  4189. height:44px;
  4190. display:flex;
  4191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4192. font-weight:400;
  4193. font-style:normal;
  4194. font-size:14px;
  4195. }
  4196. #u105588 .text {
  4197. position:absolute;
  4198. align-self:center;
  4199. padding:2px 2px 2px 2px;
  4200. box-sizing:border-box;
  4201. width:100%;
  4202. }
  4203. #u105588_text {
  4204. border-width:0px;
  4205. word-wrap:break-word;
  4206. text-transform:none;
  4207. }
  4208. #u105589_img {
  4209. border-width:0px;
  4210. position:absolute;
  4211. left:0px;
  4212. top:0px;
  4213. width:70px;
  4214. height:44px;
  4215. }
  4216. #u105589 {
  4217. border-width:0px;
  4218. position:absolute;
  4219. left:389px;
  4220. top:176px;
  4221. width:70px;
  4222. height:44px;
  4223. display:flex;
  4224. font-size:14px;
  4225. }
  4226. #u105589 .text {
  4227. position:absolute;
  4228. align-self:center;
  4229. padding:2px 2px 2px 2px;
  4230. box-sizing:border-box;
  4231. width:100%;
  4232. }
  4233. #u105589_text {
  4234. border-width:0px;
  4235. word-wrap:break-word;
  4236. text-transform:none;
  4237. visibility:hidden;
  4238. }
  4239. #u105590_img {
  4240. border-width:0px;
  4241. position:absolute;
  4242. left:0px;
  4243. top:0px;
  4244. width:70px;
  4245. height:44px;
  4246. }
  4247. #u105590 {
  4248. border-width:0px;
  4249. position:absolute;
  4250. left:459px;
  4251. top:176px;
  4252. width:70px;
  4253. height:44px;
  4254. display:flex;
  4255. font-size:14px;
  4256. }
  4257. #u105590 .text {
  4258. position:absolute;
  4259. align-self:center;
  4260. padding:2px 2px 2px 2px;
  4261. box-sizing:border-box;
  4262. width:100%;
  4263. }
  4264. #u105590_text {
  4265. border-width:0px;
  4266. word-wrap:break-word;
  4267. text-transform:none;
  4268. visibility:hidden;
  4269. }
  4270. #u105591_img {
  4271. border-width:0px;
  4272. position:absolute;
  4273. left:0px;
  4274. top:0px;
  4275. width:70px;
  4276. height:44px;
  4277. }
  4278. #u105591 {
  4279. border-width:0px;
  4280. position:absolute;
  4281. left:529px;
  4282. top:176px;
  4283. width:70px;
  4284. height:44px;
  4285. display:flex;
  4286. font-size:14px;
  4287. }
  4288. #u105591 .text {
  4289. position:absolute;
  4290. align-self:center;
  4291. padding:2px 2px 2px 2px;
  4292. box-sizing:border-box;
  4293. width:100%;
  4294. }
  4295. #u105591_text {
  4296. border-width:0px;
  4297. word-wrap:break-word;
  4298. text-transform:none;
  4299. visibility:hidden;
  4300. }
  4301. #u105592_img {
  4302. border-width:0px;
  4303. position:absolute;
  4304. left:0px;
  4305. top:0px;
  4306. width:70px;
  4307. height:44px;
  4308. }
  4309. #u105592 {
  4310. border-width:0px;
  4311. position:absolute;
  4312. left:599px;
  4313. top:176px;
  4314. width:70px;
  4315. height:44px;
  4316. display:flex;
  4317. font-size:14px;
  4318. }
  4319. #u105592 .text {
  4320. position:absolute;
  4321. align-self:center;
  4322. padding:2px 2px 2px 2px;
  4323. box-sizing:border-box;
  4324. width:100%;
  4325. }
  4326. #u105592_text {
  4327. border-width:0px;
  4328. word-wrap:break-word;
  4329. text-transform:none;
  4330. visibility:hidden;
  4331. }
  4332. #u105593_img {
  4333. border-width:0px;
  4334. position:absolute;
  4335. left:0px;
  4336. top:0px;
  4337. width:70px;
  4338. height:44px;
  4339. }
  4340. #u105593 {
  4341. border-width:0px;
  4342. position:absolute;
  4343. left:669px;
  4344. top:176px;
  4345. width:70px;
  4346. height:44px;
  4347. display:flex;
  4348. font-size:14px;
  4349. }
  4350. #u105593 .text {
  4351. position:absolute;
  4352. align-self:center;
  4353. padding:2px 2px 2px 2px;
  4354. box-sizing:border-box;
  4355. width:100%;
  4356. }
  4357. #u105593_text {
  4358. border-width:0px;
  4359. word-wrap:break-word;
  4360. text-transform:none;
  4361. visibility:hidden;
  4362. }
  4363. #u105594_img {
  4364. border-width:0px;
  4365. position:absolute;
  4366. left:0px;
  4367. top:0px;
  4368. width:70px;
  4369. height:44px;
  4370. }
  4371. #u105594 {
  4372. border-width:0px;
  4373. position:absolute;
  4374. left:739px;
  4375. top:176px;
  4376. width:70px;
  4377. height:44px;
  4378. display:flex;
  4379. font-size:14px;
  4380. }
  4381. #u105594 .text {
  4382. position:absolute;
  4383. align-self:center;
  4384. padding:2px 2px 2px 2px;
  4385. box-sizing:border-box;
  4386. width:100%;
  4387. }
  4388. #u105594_text {
  4389. border-width:0px;
  4390. word-wrap:break-word;
  4391. text-transform:none;
  4392. visibility:hidden;
  4393. }
  4394. #u105595_img {
  4395. border-width:0px;
  4396. position:absolute;
  4397. left:0px;
  4398. top:0px;
  4399. width:70px;
  4400. height:44px;
  4401. }
  4402. #u105595 {
  4403. border-width:0px;
  4404. position:absolute;
  4405. left:809px;
  4406. top:176px;
  4407. width:70px;
  4408. height:44px;
  4409. display:flex;
  4410. font-size:14px;
  4411. }
  4412. #u105595 .text {
  4413. position:absolute;
  4414. align-self:center;
  4415. padding:2px 2px 2px 2px;
  4416. box-sizing:border-box;
  4417. width:100%;
  4418. }
  4419. #u105595_text {
  4420. border-width:0px;
  4421. word-wrap:break-word;
  4422. text-transform:none;
  4423. visibility:hidden;
  4424. }
  4425. #u105596_img {
  4426. border-width:0px;
  4427. position:absolute;
  4428. left:0px;
  4429. top:0px;
  4430. width:80px;
  4431. height:44px;
  4432. }
  4433. #u105596 {
  4434. border-width:0px;
  4435. position:absolute;
  4436. left:879px;
  4437. top:176px;
  4438. width:80px;
  4439. height:44px;
  4440. display:flex;
  4441. font-size:14px;
  4442. }
  4443. #u105596 .text {
  4444. position:absolute;
  4445. align-self:center;
  4446. padding:2px 2px 2px 2px;
  4447. box-sizing:border-box;
  4448. width:100%;
  4449. }
  4450. #u105596_text {
  4451. border-width:0px;
  4452. word-wrap:break-word;
  4453. text-transform:none;
  4454. visibility:hidden;
  4455. }
  4456. #u105597_img {
  4457. border-width:0px;
  4458. position:absolute;
  4459. left:0px;
  4460. top:0px;
  4461. width:75px;
  4462. height:44px;
  4463. }
  4464. #u105597 {
  4465. border-width:0px;
  4466. position:absolute;
  4467. left:959px;
  4468. top:176px;
  4469. width:75px;
  4470. height:44px;
  4471. display:flex;
  4472. font-size:14px;
  4473. }
  4474. #u105597 .text {
  4475. position:absolute;
  4476. align-self:center;
  4477. padding:2px 2px 2px 2px;
  4478. box-sizing:border-box;
  4479. width:100%;
  4480. }
  4481. #u105597_text {
  4482. border-width:0px;
  4483. word-wrap:break-word;
  4484. text-transform:none;
  4485. visibility:hidden;
  4486. }
  4487. #u105598_img {
  4488. border-width:0px;
  4489. position:absolute;
  4490. left:0px;
  4491. top:0px;
  4492. width:63px;
  4493. height:44px;
  4494. }
  4495. #u105598 {
  4496. border-width:0px;
  4497. position:absolute;
  4498. left:1034px;
  4499. top:176px;
  4500. width:63px;
  4501. height:44px;
  4502. display:flex;
  4503. font-size:14px;
  4504. }
  4505. #u105598 .text {
  4506. position:absolute;
  4507. align-self:center;
  4508. padding:2px 2px 2px 2px;
  4509. box-sizing:border-box;
  4510. width:100%;
  4511. }
  4512. #u105598_text {
  4513. border-width:0px;
  4514. word-wrap:break-word;
  4515. text-transform:none;
  4516. visibility:hidden;
  4517. }
  4518. #u105599_img {
  4519. border-width:0px;
  4520. position:absolute;
  4521. left:0px;
  4522. top:0px;
  4523. width:60px;
  4524. height:44px;
  4525. }
  4526. #u105599 {
  4527. border-width:0px;
  4528. position:absolute;
  4529. left:1097px;
  4530. top:176px;
  4531. width:60px;
  4532. height:44px;
  4533. display:flex;
  4534. font-size:14px;
  4535. }
  4536. #u105599 .text {
  4537. position:absolute;
  4538. align-self:center;
  4539. padding:2px 2px 2px 2px;
  4540. box-sizing:border-box;
  4541. width:100%;
  4542. }
  4543. #u105599_text {
  4544. border-width:0px;
  4545. word-wrap:break-word;
  4546. text-transform:none;
  4547. visibility:hidden;
  4548. }
  4549. #u105600_img {
  4550. border-width:0px;
  4551. position:absolute;
  4552. left:0px;
  4553. top:0px;
  4554. width:60px;
  4555. height:44px;
  4556. }
  4557. #u105600 {
  4558. border-width:0px;
  4559. position:absolute;
  4560. left:1157px;
  4561. top:176px;
  4562. width:60px;
  4563. height:44px;
  4564. display:flex;
  4565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4566. font-weight:400;
  4567. font-style:normal;
  4568. font-size:14px;
  4569. color:#298FFF;
  4570. }
  4571. #u105600 .text {
  4572. position:absolute;
  4573. align-self:center;
  4574. padding:2px 2px 2px 2px;
  4575. box-sizing:border-box;
  4576. width:100%;
  4577. }
  4578. #u105600_text {
  4579. border-width:0px;
  4580. word-wrap:break-word;
  4581. text-transform:none;
  4582. visibility:hidden;
  4583. }
  4584. #u105601_div {
  4585. border-width:0px;
  4586. position:absolute;
  4587. left:0px;
  4588. top:0px;
  4589. width:59px;
  4590. height:30px;
  4591. background:inherit;
  4592. background-color:rgba(41, 143, 255, 1);
  4593. border:none;
  4594. border-radius:4px;
  4595. -moz-box-shadow:none;
  4596. -webkit-box-shadow:none;
  4597. box-shadow:none;
  4598. font-family:'Microsoft YaHei', sans-serif;
  4599. font-weight:400;
  4600. font-style:normal;
  4601. font-size:14px;
  4602. color:#FFFFFF;
  4603. }
  4604. #u105601 {
  4605. border-width:0px;
  4606. position:absolute;
  4607. left:1113px;
  4608. top:101px;
  4609. width:59px;
  4610. height:30px;
  4611. display:flex;
  4612. font-family:'Microsoft YaHei', sans-serif;
  4613. font-weight:400;
  4614. font-style:normal;
  4615. font-size:14px;
  4616. color:#FFFFFF;
  4617. }
  4618. #u105601 .text {
  4619. position:absolute;
  4620. align-self:center;
  4621. padding:5px 15px 5px 15px;
  4622. box-sizing:border-box;
  4623. width:100%;
  4624. }
  4625. #u105601_text {
  4626. border-width:0px;
  4627. white-space:nowrap;
  4628. text-transform:none;
  4629. }
  4630. #u105602_div {
  4631. border-width:0px;
  4632. position:absolute;
  4633. left:0px;
  4634. top:0px;
  4635. width:55px;
  4636. height:30px;
  4637. background:inherit;
  4638. background-color:rgba(255, 255, 255, 1);
  4639. box-sizing:border-box;
  4640. border-width:1px;
  4641. border-style:solid;
  4642. border-color:rgba(170, 170, 170, 1);
  4643. border-radius:4px;
  4644. -moz-box-shadow:none;
  4645. -webkit-box-shadow:none;
  4646. box-shadow:none;
  4647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4648. font-weight:400;
  4649. font-style:normal;
  4650. font-size:12px;
  4651. color:#555555;
  4652. }
  4653. #u105602 {
  4654. border-width:0px;
  4655. position:absolute;
  4656. left:1182px;
  4657. top:101px;
  4658. width:55px;
  4659. height:30px;
  4660. display:flex;
  4661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4662. font-weight:400;
  4663. font-style:normal;
  4664. font-size:12px;
  4665. color:#555555;
  4666. }
  4667. #u105602 .text {
  4668. position:absolute;
  4669. align-self:center;
  4670. padding:5px 15px 5px 15px;
  4671. box-sizing:border-box;
  4672. width:100%;
  4673. }
  4674. #u105602_text {
  4675. border-width:0px;
  4676. white-space:nowrap;
  4677. text-transform:none;
  4678. }
  4679. #u105603 {
  4680. border-width:0px;
  4681. position:absolute;
  4682. left:0px;
  4683. top:0px;
  4684. width:0px;
  4685. height:0px;
  4686. }
  4687. #u105604_div {
  4688. border-width:0px;
  4689. position:absolute;
  4690. left:0px;
  4691. top:0px;
  4692. width:140px;
  4693. height:30px;
  4694. background:inherit;
  4695. background-color:rgba(255, 255, 255, 1);
  4696. box-sizing:border-box;
  4697. border-width:1px;
  4698. border-style:solid;
  4699. border-color:rgba(215, 215, 215, 1);
  4700. border-radius:4px;
  4701. -moz-box-shadow:none;
  4702. -webkit-box-shadow:none;
  4703. box-shadow:none;
  4704. font-size:11px;
  4705. }
  4706. #u105604 {
  4707. border-width:0px;
  4708. position:absolute;
  4709. left:353px;
  4710. top:101px;
  4711. width:140px;
  4712. height:30px;
  4713. display:flex;
  4714. font-size:11px;
  4715. }
  4716. #u105604 .text {
  4717. position:absolute;
  4718. align-self:center;
  4719. padding:2px 2px 2px 2px;
  4720. box-sizing:border-box;
  4721. width:100%;
  4722. }
  4723. #u105604_text {
  4724. border-width:0px;
  4725. word-wrap:break-word;
  4726. text-transform:none;
  4727. visibility:hidden;
  4728. }
  4729. #u105605_input {
  4730. position:absolute;
  4731. left:0px;
  4732. top:0px;
  4733. width:120px;
  4734. height:23px;
  4735. padding:2px 2px 2px 2px;
  4736. font-family:'ArialMT', 'Arial', sans-serif;
  4737. font-weight:400;
  4738. font-style:normal;
  4739. font-size:11px;
  4740. letter-spacing:normal;
  4741. color:#AAAAAA;
  4742. vertical-align:none;
  4743. text-align:left;
  4744. text-transform:none;
  4745. background-color:transparent;
  4746. border-color:transparent;
  4747. }
  4748. #u105605_input.disabled {
  4749. position:absolute;
  4750. left:0px;
  4751. top:0px;
  4752. width:120px;
  4753. height:23px;
  4754. padding:2px 2px 2px 2px;
  4755. font-family:'ArialMT', 'Arial', sans-serif;
  4756. font-weight:400;
  4757. font-style:normal;
  4758. font-size:11px;
  4759. letter-spacing:normal;
  4760. color:#AAAAAA;
  4761. vertical-align:none;
  4762. text-align:left;
  4763. text-transform:none;
  4764. background-color:transparent;
  4765. border-color:transparent;
  4766. }
  4767. #u105605_div {
  4768. border-width:0px;
  4769. position:absolute;
  4770. left:0px;
  4771. top:0px;
  4772. width:120px;
  4773. height:23px;
  4774. background:inherit;
  4775. background-color:rgba(255, 255, 255, 1);
  4776. border:none;
  4777. border-radius:0px;
  4778. -moz-box-shadow:none;
  4779. -webkit-box-shadow:none;
  4780. box-shadow:none;
  4781. font-size:11px;
  4782. color:#AAAAAA;
  4783. }
  4784. #u105605 {
  4785. border-width:0px;
  4786. position:absolute;
  4787. left:360px;
  4788. top:103px;
  4789. width:120px;
  4790. height:23px;
  4791. display:flex;
  4792. font-size:11px;
  4793. color:#AAAAAA;
  4794. }
  4795. #u105605 .text {
  4796. position:absolute;
  4797. align-self:flex-start;
  4798. padding:2px 2px 2px 2px;
  4799. box-sizing:border-box;
  4800. width:100%;
  4801. }
  4802. #u105605_div.disabled {
  4803. border-width:0px;
  4804. position:absolute;
  4805. left:0px;
  4806. top:0px;
  4807. width:120px;
  4808. height:23px;
  4809. background:inherit;
  4810. background-color:rgba(240, 240, 240, 1);
  4811. border:none;
  4812. border-radius:0px;
  4813. -moz-box-shadow:none;
  4814. -webkit-box-shadow:none;
  4815. box-shadow:none;
  4816. font-size:11px;
  4817. color:#AAAAAA;
  4818. }
  4819. #u105605.disabled {
  4820. }
  4821. .u105605_input_option {
  4822. font-size:11px;
  4823. }
  4824. #u105606 {
  4825. border-width:0px;
  4826. position:absolute;
  4827. left:0px;
  4828. top:0px;
  4829. width:0px;
  4830. height:0px;
  4831. }
  4832. #u105607_div {
  4833. border-width:0px;
  4834. position:absolute;
  4835. left:0px;
  4836. top:0px;
  4837. width:140px;
  4838. height:30px;
  4839. background:inherit;
  4840. background-color:rgba(255, 255, 255, 1);
  4841. box-sizing:border-box;
  4842. border-width:1px;
  4843. border-style:solid;
  4844. border-color:rgba(215, 215, 215, 1);
  4845. border-radius:4px;
  4846. -moz-box-shadow:none;
  4847. -webkit-box-shadow:none;
  4848. box-shadow:none;
  4849. font-size:11px;
  4850. }
  4851. #u105607 {
  4852. border-width:0px;
  4853. position:absolute;
  4854. left:503px;
  4855. top:101px;
  4856. width:140px;
  4857. height:30px;
  4858. display:flex;
  4859. font-size:11px;
  4860. }
  4861. #u105607 .text {
  4862. position:absolute;
  4863. align-self:center;
  4864. padding:2px 2px 2px 2px;
  4865. box-sizing:border-box;
  4866. width:100%;
  4867. }
  4868. #u105607_text {
  4869. border-width:0px;
  4870. word-wrap:break-word;
  4871. text-transform:none;
  4872. visibility:hidden;
  4873. }
  4874. #u105608_input {
  4875. position:absolute;
  4876. left:0px;
  4877. top:0px;
  4878. width:120px;
  4879. height:23px;
  4880. padding:2px 2px 2px 2px;
  4881. font-family:'ArialMT', 'Arial', sans-serif;
  4882. font-weight:400;
  4883. font-style:normal;
  4884. font-size:11px;
  4885. letter-spacing:normal;
  4886. color:#AAAAAA;
  4887. vertical-align:none;
  4888. text-align:left;
  4889. text-transform:none;
  4890. background-color:transparent;
  4891. border-color:transparent;
  4892. }
  4893. #u105608_input.disabled {
  4894. position:absolute;
  4895. left:0px;
  4896. top:0px;
  4897. width:120px;
  4898. height:23px;
  4899. padding:2px 2px 2px 2px;
  4900. font-family:'ArialMT', 'Arial', sans-serif;
  4901. font-weight:400;
  4902. font-style:normal;
  4903. font-size:11px;
  4904. letter-spacing:normal;
  4905. color:#AAAAAA;
  4906. vertical-align:none;
  4907. text-align:left;
  4908. text-transform:none;
  4909. background-color:transparent;
  4910. border-color:transparent;
  4911. }
  4912. #u105608_div {
  4913. border-width:0px;
  4914. position:absolute;
  4915. left:0px;
  4916. top:0px;
  4917. width:120px;
  4918. height:23px;
  4919. background:inherit;
  4920. background-color:rgba(255, 255, 255, 1);
  4921. border:none;
  4922. border-radius:0px;
  4923. -moz-box-shadow:none;
  4924. -webkit-box-shadow:none;
  4925. box-shadow:none;
  4926. font-size:11px;
  4927. color:#AAAAAA;
  4928. }
  4929. #u105608 {
  4930. border-width:0px;
  4931. position:absolute;
  4932. left:510px;
  4933. top:103px;
  4934. width:120px;
  4935. height:23px;
  4936. display:flex;
  4937. font-size:11px;
  4938. color:#AAAAAA;
  4939. }
  4940. #u105608 .text {
  4941. position:absolute;
  4942. align-self:flex-start;
  4943. padding:2px 2px 2px 2px;
  4944. box-sizing:border-box;
  4945. width:100%;
  4946. }
  4947. #u105608_div.disabled {
  4948. border-width:0px;
  4949. position:absolute;
  4950. left:0px;
  4951. top:0px;
  4952. width:120px;
  4953. height:23px;
  4954. background:inherit;
  4955. background-color:rgba(240, 240, 240, 1);
  4956. border:none;
  4957. border-radius:0px;
  4958. -moz-box-shadow:none;
  4959. -webkit-box-shadow:none;
  4960. box-shadow:none;
  4961. font-size:11px;
  4962. color:#AAAAAA;
  4963. }
  4964. #u105608.disabled {
  4965. }
  4966. .u105608_input_option {
  4967. font-size:11px;
  4968. }
  4969. #u105609 {
  4970. border-width:0px;
  4971. position:absolute;
  4972. left:0px;
  4973. top:0px;
  4974. width:0px;
  4975. height:0px;
  4976. }
  4977. #u105610_div {
  4978. border-width:0px;
  4979. position:absolute;
  4980. left:0px;
  4981. top:0px;
  4982. width:140px;
  4983. height:30px;
  4984. background:inherit;
  4985. background-color:rgba(255, 255, 255, 1);
  4986. box-sizing:border-box;
  4987. border-width:1px;
  4988. border-style:solid;
  4989. border-color:rgba(215, 215, 215, 1);
  4990. border-radius:4px;
  4991. -moz-box-shadow:none;
  4992. -webkit-box-shadow:none;
  4993. box-shadow:none;
  4994. font-size:11px;
  4995. }
  4996. #u105610 {
  4997. border-width:0px;
  4998. position:absolute;
  4999. left:653px;
  5000. top:101px;
  5001. width:140px;
  5002. height:30px;
  5003. display:flex;
  5004. font-size:11px;
  5005. }
  5006. #u105610 .text {
  5007. position:absolute;
  5008. align-self:center;
  5009. padding:2px 2px 2px 2px;
  5010. box-sizing:border-box;
  5011. width:100%;
  5012. }
  5013. #u105610_text {
  5014. border-width:0px;
  5015. word-wrap:break-word;
  5016. text-transform:none;
  5017. visibility:hidden;
  5018. }
  5019. #u105611_input {
  5020. position:absolute;
  5021. left:0px;
  5022. top:0px;
  5023. width:120px;
  5024. height:23px;
  5025. padding:2px 2px 2px 2px;
  5026. font-family:'ArialMT', 'Arial', sans-serif;
  5027. font-weight:400;
  5028. font-style:normal;
  5029. font-size:11px;
  5030. letter-spacing:normal;
  5031. color:#AAAAAA;
  5032. vertical-align:none;
  5033. text-align:left;
  5034. text-transform:none;
  5035. background-color:transparent;
  5036. border-color:transparent;
  5037. }
  5038. #u105611_input.disabled {
  5039. position:absolute;
  5040. left:0px;
  5041. top:0px;
  5042. width:120px;
  5043. height:23px;
  5044. padding:2px 2px 2px 2px;
  5045. font-family:'ArialMT', 'Arial', sans-serif;
  5046. font-weight:400;
  5047. font-style:normal;
  5048. font-size:11px;
  5049. letter-spacing:normal;
  5050. color:#AAAAAA;
  5051. vertical-align:none;
  5052. text-align:left;
  5053. text-transform:none;
  5054. background-color:transparent;
  5055. border-color:transparent;
  5056. }
  5057. #u105611_div {
  5058. border-width:0px;
  5059. position:absolute;
  5060. left:0px;
  5061. top:0px;
  5062. width:120px;
  5063. height:23px;
  5064. background:inherit;
  5065. background-color:rgba(255, 255, 255, 1);
  5066. border:none;
  5067. border-radius:0px;
  5068. -moz-box-shadow:none;
  5069. -webkit-box-shadow:none;
  5070. box-shadow:none;
  5071. font-size:11px;
  5072. color:#AAAAAA;
  5073. }
  5074. #u105611 {
  5075. border-width:0px;
  5076. position:absolute;
  5077. left:660px;
  5078. top:103px;
  5079. width:120px;
  5080. height:23px;
  5081. display:flex;
  5082. font-size:11px;
  5083. color:#AAAAAA;
  5084. }
  5085. #u105611 .text {
  5086. position:absolute;
  5087. align-self:flex-start;
  5088. padding:2px 2px 2px 2px;
  5089. box-sizing:border-box;
  5090. width:100%;
  5091. }
  5092. #u105611_div.disabled {
  5093. border-width:0px;
  5094. position:absolute;
  5095. left:0px;
  5096. top:0px;
  5097. width:120px;
  5098. height:23px;
  5099. background:inherit;
  5100. background-color:rgba(240, 240, 240, 1);
  5101. border:none;
  5102. border-radius:0px;
  5103. -moz-box-shadow:none;
  5104. -webkit-box-shadow:none;
  5105. box-shadow:none;
  5106. font-size:11px;
  5107. color:#AAAAAA;
  5108. }
  5109. #u105611.disabled {
  5110. }
  5111. .u105611_input_option {
  5112. font-size:11px;
  5113. }
  5114. #u105612 {
  5115. border-width:0px;
  5116. position:absolute;
  5117. left:0px;
  5118. top:0px;
  5119. width:0px;
  5120. height:0px;
  5121. }
  5122. #u105613_div {
  5123. border-width:0px;
  5124. position:absolute;
  5125. left:0px;
  5126. top:0px;
  5127. width:140px;
  5128. height:30px;
  5129. background:inherit;
  5130. background-color:rgba(255, 255, 255, 1);
  5131. box-sizing:border-box;
  5132. border-width:1px;
  5133. border-style:solid;
  5134. border-color:rgba(215, 215, 215, 1);
  5135. border-radius:4px;
  5136. -moz-box-shadow:none;
  5137. -webkit-box-shadow:none;
  5138. box-shadow:none;
  5139. font-size:11px;
  5140. }
  5141. #u105613 {
  5142. border-width:0px;
  5143. position:absolute;
  5144. left:803px;
  5145. top:101px;
  5146. width:140px;
  5147. height:30px;
  5148. display:flex;
  5149. font-size:11px;
  5150. }
  5151. #u105613 .text {
  5152. position:absolute;
  5153. align-self:center;
  5154. padding:2px 2px 2px 2px;
  5155. box-sizing:border-box;
  5156. width:100%;
  5157. }
  5158. #u105613_text {
  5159. border-width:0px;
  5160. word-wrap:break-word;
  5161. text-transform:none;
  5162. visibility:hidden;
  5163. }
  5164. #u105614_input {
  5165. position:absolute;
  5166. left:0px;
  5167. top:0px;
  5168. width:120px;
  5169. height:23px;
  5170. padding:2px 2px 2px 2px;
  5171. font-family:'ArialMT', 'Arial', sans-serif;
  5172. font-weight:400;
  5173. font-style:normal;
  5174. font-size:11px;
  5175. letter-spacing:normal;
  5176. color:#AAAAAA;
  5177. vertical-align:none;
  5178. text-align:left;
  5179. text-transform:none;
  5180. background-color:transparent;
  5181. border-color:transparent;
  5182. }
  5183. #u105614_input.disabled {
  5184. position:absolute;
  5185. left:0px;
  5186. top:0px;
  5187. width:120px;
  5188. height:23px;
  5189. padding:2px 2px 2px 2px;
  5190. font-family:'ArialMT', 'Arial', sans-serif;
  5191. font-weight:400;
  5192. font-style:normal;
  5193. font-size:11px;
  5194. letter-spacing:normal;
  5195. color:#AAAAAA;
  5196. vertical-align:none;
  5197. text-align:left;
  5198. text-transform:none;
  5199. background-color:transparent;
  5200. border-color:transparent;
  5201. }
  5202. #u105614_div {
  5203. border-width:0px;
  5204. position:absolute;
  5205. left:0px;
  5206. top:0px;
  5207. width:120px;
  5208. height:23px;
  5209. background:inherit;
  5210. background-color:rgba(255, 255, 255, 1);
  5211. border:none;
  5212. border-radius:0px;
  5213. -moz-box-shadow:none;
  5214. -webkit-box-shadow:none;
  5215. box-shadow:none;
  5216. font-size:11px;
  5217. color:#AAAAAA;
  5218. }
  5219. #u105614 {
  5220. border-width:0px;
  5221. position:absolute;
  5222. left:810px;
  5223. top:103px;
  5224. width:120px;
  5225. height:23px;
  5226. display:flex;
  5227. font-size:11px;
  5228. color:#AAAAAA;
  5229. }
  5230. #u105614 .text {
  5231. position:absolute;
  5232. align-self:flex-start;
  5233. padding:2px 2px 2px 2px;
  5234. box-sizing:border-box;
  5235. width:100%;
  5236. }
  5237. #u105614_div.disabled {
  5238. border-width:0px;
  5239. position:absolute;
  5240. left:0px;
  5241. top:0px;
  5242. width:120px;
  5243. height:23px;
  5244. background:inherit;
  5245. background-color:rgba(240, 240, 240, 1);
  5246. border:none;
  5247. border-radius:0px;
  5248. -moz-box-shadow:none;
  5249. -webkit-box-shadow:none;
  5250. box-shadow:none;
  5251. font-size:11px;
  5252. color:#AAAAAA;
  5253. }
  5254. #u105614.disabled {
  5255. }
  5256. .u105614_input_option {
  5257. font-size:11px;
  5258. }
  5259. #u105615 {
  5260. border-width:0px;
  5261. position:absolute;
  5262. left:0px;
  5263. top:0px;
  5264. width:0px;
  5265. height:0px;
  5266. }
  5267. #u105616_div {
  5268. border-width:0px;
  5269. position:absolute;
  5270. left:0px;
  5271. top:0px;
  5272. width:140px;
  5273. height:30px;
  5274. background:inherit;
  5275. background-color:rgba(255, 255, 255, 1);
  5276. box-sizing:border-box;
  5277. border-width:1px;
  5278. border-style:solid;
  5279. border-color:rgba(215, 215, 215, 1);
  5280. border-radius:4px;
  5281. -moz-box-shadow:none;
  5282. -webkit-box-shadow:none;
  5283. box-shadow:none;
  5284. font-size:11px;
  5285. }
  5286. #u105616 {
  5287. border-width:0px;
  5288. position:absolute;
  5289. left:953px;
  5290. top:101px;
  5291. width:140px;
  5292. height:30px;
  5293. display:flex;
  5294. font-size:11px;
  5295. }
  5296. #u105616 .text {
  5297. position:absolute;
  5298. align-self:center;
  5299. padding:2px 2px 2px 2px;
  5300. box-sizing:border-box;
  5301. width:100%;
  5302. }
  5303. #u105616_text {
  5304. border-width:0px;
  5305. word-wrap:break-word;
  5306. text-transform:none;
  5307. visibility:hidden;
  5308. }
  5309. #u105617_input {
  5310. position:absolute;
  5311. left:0px;
  5312. top:0px;
  5313. width:120px;
  5314. height:23px;
  5315. padding:2px 2px 2px 2px;
  5316. font-family:'ArialMT', 'Arial', sans-serif;
  5317. font-weight:400;
  5318. font-style:normal;
  5319. font-size:11px;
  5320. letter-spacing:normal;
  5321. color:#AAAAAA;
  5322. vertical-align:none;
  5323. text-align:left;
  5324. text-transform:none;
  5325. background-color:transparent;
  5326. border-color:transparent;
  5327. }
  5328. #u105617_input.disabled {
  5329. position:absolute;
  5330. left:0px;
  5331. top:0px;
  5332. width:120px;
  5333. height:23px;
  5334. padding:2px 2px 2px 2px;
  5335. font-family:'ArialMT', 'Arial', sans-serif;
  5336. font-weight:400;
  5337. font-style:normal;
  5338. font-size:11px;
  5339. letter-spacing:normal;
  5340. color:#AAAAAA;
  5341. vertical-align:none;
  5342. text-align:left;
  5343. text-transform:none;
  5344. background-color:transparent;
  5345. border-color:transparent;
  5346. }
  5347. #u105617_div {
  5348. border-width:0px;
  5349. position:absolute;
  5350. left:0px;
  5351. top:0px;
  5352. width:120px;
  5353. height:23px;
  5354. background:inherit;
  5355. background-color:rgba(255, 255, 255, 1);
  5356. border:none;
  5357. border-radius:0px;
  5358. -moz-box-shadow:none;
  5359. -webkit-box-shadow:none;
  5360. box-shadow:none;
  5361. font-size:11px;
  5362. color:#AAAAAA;
  5363. }
  5364. #u105617 {
  5365. border-width:0px;
  5366. position:absolute;
  5367. left:960px;
  5368. top:103px;
  5369. width:120px;
  5370. height:23px;
  5371. display:flex;
  5372. font-size:11px;
  5373. color:#AAAAAA;
  5374. }
  5375. #u105617 .text {
  5376. position:absolute;
  5377. align-self:flex-start;
  5378. padding:2px 2px 2px 2px;
  5379. box-sizing:border-box;
  5380. width:100%;
  5381. }
  5382. #u105617_div.disabled {
  5383. border-width:0px;
  5384. position:absolute;
  5385. left:0px;
  5386. top:0px;
  5387. width:120px;
  5388. height:23px;
  5389. background:inherit;
  5390. background-color:rgba(240, 240, 240, 1);
  5391. border:none;
  5392. border-radius:0px;
  5393. -moz-box-shadow:none;
  5394. -webkit-box-shadow:none;
  5395. box-shadow:none;
  5396. font-size:11px;
  5397. color:#AAAAAA;
  5398. }
  5399. #u105617.disabled {
  5400. }
  5401. .u105617_input_option {
  5402. font-size:11px;
  5403. }
  5404. #u105618 {
  5405. border-width:0px;
  5406. position:absolute;
  5407. left:0px;
  5408. top:0px;
  5409. width:0px;
  5410. height:0px;
  5411. }
  5412. #u105619_img {
  5413. border-width:0px;
  5414. position:absolute;
  5415. left:-5px;
  5416. top:-5px;
  5417. width:479px;
  5418. height:189px;
  5419. }
  5420. #u105619 {
  5421. border-width:0px;
  5422. position:absolute;
  5423. left:1020px;
  5424. top:435px;
  5425. width:469px;
  5426. height:179px;
  5427. display:flex;
  5428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5429. font-weight:400;
  5430. font-style:normal;
  5431. font-size:12px;
  5432. color:#FFFFFF;
  5433. }
  5434. #u105619 .text {
  5435. position:absolute;
  5436. align-self:center;
  5437. padding:2px 2px 2px 2px;
  5438. box-sizing:border-box;
  5439. width:100%;
  5440. }
  5441. #u105619_text {
  5442. border-width:0px;
  5443. word-wrap:break-word;
  5444. text-transform:none;
  5445. visibility:hidden;
  5446. }
  5447. #u105620_div {
  5448. border-width:0px;
  5449. position:absolute;
  5450. left:0px;
  5451. top:0px;
  5452. width:141px;
  5453. height:20px;
  5454. background:inherit;
  5455. background-color:rgba(255, 255, 255, 0);
  5456. border:none;
  5457. border-radius:0px;
  5458. -moz-box-shadow:none;
  5459. -webkit-box-shadow:none;
  5460. box-shadow:none;
  5461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5462. font-weight:400;
  5463. font-style:normal;
  5464. }
  5465. #u105620 {
  5466. border-width:0px;
  5467. position:absolute;
  5468. left:1043px;
  5469. top:451px;
  5470. width:141px;
  5471. height:20px;
  5472. display:flex;
  5473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5474. font-weight:400;
  5475. font-style:normal;
  5476. }
  5477. #u105620 .text {
  5478. position:absolute;
  5479. align-self:flex-start;
  5480. padding:0px 0px 0px 0px;
  5481. box-sizing:border-box;
  5482. width:100%;
  5483. }
  5484. #u105620_text {
  5485. border-width:0px;
  5486. white-space:nowrap;
  5487. text-transform:none;
  5488. }
  5489. #u105621_div {
  5490. border-width:0px;
  5491. position:absolute;
  5492. left:0px;
  5493. top:0px;
  5494. width:113px;
  5495. height:20px;
  5496. background:inherit;
  5497. background-color:rgba(255, 255, 255, 0);
  5498. border:none;
  5499. border-radius:0px;
  5500. -moz-box-shadow:none;
  5501. -webkit-box-shadow:none;
  5502. box-shadow:none;
  5503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5504. font-weight:400;
  5505. font-style:normal;
  5506. color:#6B6B6B;
  5507. }
  5508. #u105621 {
  5509. border-width:0px;
  5510. position:absolute;
  5511. left:1044px;
  5512. top:515px;
  5513. width:113px;
  5514. height:20px;
  5515. display:flex;
  5516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5517. font-weight:400;
  5518. font-style:normal;
  5519. color:#6B6B6B;
  5520. }
  5521. #u105621 .text {
  5522. position:absolute;
  5523. align-self:flex-start;
  5524. padding:0px 0px 0px 0px;
  5525. box-sizing:border-box;
  5526. width:100%;
  5527. }
  5528. #u105621_text {
  5529. border-width:0px;
  5530. white-space:nowrap;
  5531. text-transform:none;
  5532. }
  5533. #u105622_img {
  5534. border-width:0px;
  5535. position:absolute;
  5536. left:0px;
  5537. top:0px;
  5538. width:8px;
  5539. height:8px;
  5540. }
  5541. #u105622 {
  5542. border-width:0px;
  5543. position:absolute;
  5544. left:1467px;
  5545. top:447px;
  5546. width:8px;
  5547. height:8px;
  5548. display:flex;
  5549. opacity:0.5;
  5550. }
  5551. #u105622 .text {
  5552. position:absolute;
  5553. align-self:center;
  5554. padding:2px 2px 2px 2px;
  5555. box-sizing:border-box;
  5556. width:100%;
  5557. }
  5558. #u105622_text {
  5559. border-width:0px;
  5560. word-wrap:break-word;
  5561. text-transform:none;
  5562. visibility:hidden;
  5563. }
  5564. #u105623 {
  5565. border-width:0px;
  5566. position:absolute;
  5567. left:0px;
  5568. top:0px;
  5569. width:0px;
  5570. height:0px;
  5571. }
  5572. #u105624_div {
  5573. border-width:0px;
  5574. position:absolute;
  5575. left:0px;
  5576. top:0px;
  5577. width:314px;
  5578. height:40px;
  5579. background:inherit;
  5580. background-color:rgba(255, 255, 255, 1);
  5581. box-sizing:border-box;
  5582. border-width:1px;
  5583. border-style:solid;
  5584. border-color:rgba(215, 215, 215, 1);
  5585. border-radius:4px;
  5586. -moz-box-shadow:none;
  5587. -webkit-box-shadow:none;
  5588. box-shadow:none;
  5589. font-size:14px;
  5590. }
  5591. #u105624 {
  5592. border-width:0px;
  5593. position:absolute;
  5594. left:1157px;
  5595. top:505px;
  5596. width:314px;
  5597. height:40px;
  5598. display:flex;
  5599. font-size:14px;
  5600. }
  5601. #u105624 .text {
  5602. position:absolute;
  5603. align-self:center;
  5604. padding:2px 2px 2px 2px;
  5605. box-sizing:border-box;
  5606. width:100%;
  5607. }
  5608. #u105624_text {
  5609. border-width:0px;
  5610. word-wrap:break-word;
  5611. text-transform:none;
  5612. visibility:hidden;
  5613. }
  5614. #u105625_input {
  5615. position:absolute;
  5616. left:0px;
  5617. top:0px;
  5618. width:300px;
  5619. height:31px;
  5620. padding:2px 2px 2px 2px;
  5621. font-family:'ArialMT', 'Arial', sans-serif;
  5622. font-weight:400;
  5623. font-style:normal;
  5624. font-size:14px;
  5625. letter-spacing:normal;
  5626. color:#AAAAAA;
  5627. vertical-align:none;
  5628. text-align:left;
  5629. text-transform:none;
  5630. background-color:transparent;
  5631. border-color:transparent;
  5632. }
  5633. #u105625_input.disabled {
  5634. position:absolute;
  5635. left:0px;
  5636. top:0px;
  5637. width:300px;
  5638. height:31px;
  5639. padding:2px 2px 2px 2px;
  5640. font-family:'ArialMT', 'Arial', sans-serif;
  5641. font-weight:400;
  5642. font-style:normal;
  5643. font-size:14px;
  5644. letter-spacing:normal;
  5645. color:#AAAAAA;
  5646. vertical-align:none;
  5647. text-align:left;
  5648. text-transform:none;
  5649. background-color:transparent;
  5650. border-color:transparent;
  5651. }
  5652. #u105625_div {
  5653. border-width:0px;
  5654. position:absolute;
  5655. left:0px;
  5656. top:0px;
  5657. width:300px;
  5658. height:31px;
  5659. background:inherit;
  5660. background-color:rgba(255, 255, 255, 1);
  5661. border:none;
  5662. border-radius:0px;
  5663. -moz-box-shadow:none;
  5664. -webkit-box-shadow:none;
  5665. box-shadow:none;
  5666. font-size:14px;
  5667. color:#AAAAAA;
  5668. }
  5669. #u105625 {
  5670. border-width:0px;
  5671. position:absolute;
  5672. left:1166px;
  5673. top:508px;
  5674. width:300px;
  5675. height:31px;
  5676. display:flex;
  5677. font-size:14px;
  5678. color:#AAAAAA;
  5679. }
  5680. #u105625 .text {
  5681. position:absolute;
  5682. align-self:flex-start;
  5683. padding:2px 2px 2px 2px;
  5684. box-sizing:border-box;
  5685. width:100%;
  5686. }
  5687. #u105625_div.disabled {
  5688. border-width:0px;
  5689. position:absolute;
  5690. left:0px;
  5691. top:0px;
  5692. width:300px;
  5693. height:31px;
  5694. background:inherit;
  5695. background-color:rgba(240, 240, 240, 1);
  5696. border:none;
  5697. border-radius:0px;
  5698. -moz-box-shadow:none;
  5699. -webkit-box-shadow:none;
  5700. box-shadow:none;
  5701. font-size:14px;
  5702. color:#AAAAAA;
  5703. }
  5704. #u105625.disabled {
  5705. }
  5706. .u105625_input_option {
  5707. font-size:14px;
  5708. }
  5709. #u105626_div {
  5710. border-width:0px;
  5711. position:absolute;
  5712. left:0px;
  5713. top:0px;
  5714. width:59px;
  5715. height:30px;
  5716. background:inherit;
  5717. background-color:rgba(41, 143, 255, 1);
  5718. border:none;
  5719. border-radius:4px;
  5720. -moz-box-shadow:none;
  5721. -webkit-box-shadow:none;
  5722. box-shadow:none;
  5723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5724. font-weight:400;
  5725. font-style:normal;
  5726. font-size:14px;
  5727. color:#FFFFFF;
  5728. }
  5729. #u105626 {
  5730. border-width:0px;
  5731. position:absolute;
  5732. left:1412px;
  5733. top:564px;
  5734. width:59px;
  5735. height:30px;
  5736. display:flex;
  5737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5738. font-weight:400;
  5739. font-style:normal;
  5740. font-size:14px;
  5741. color:#FFFFFF;
  5742. }
  5743. #u105626 .text {
  5744. position:absolute;
  5745. align-self:center;
  5746. padding:5px 15px 5px 15px;
  5747. box-sizing:border-box;
  5748. width:100%;
  5749. }
  5750. #u105626_text {
  5751. border-width:0px;
  5752. white-space:nowrap;
  5753. text-transform:none;
  5754. }
  5755. #u105627_div {
  5756. border-width:0px;
  5757. position:absolute;
  5758. left:0px;
  5759. top:0px;
  5760. width:55px;
  5761. height:30px;
  5762. background:inherit;
  5763. background-color:rgba(255, 255, 255, 1);
  5764. box-sizing:border-box;
  5765. border-width:1px;
  5766. border-style:solid;
  5767. border-color:rgba(170, 170, 170, 1);
  5768. border-radius:4px;
  5769. -moz-box-shadow:none;
  5770. -webkit-box-shadow:none;
  5771. box-shadow:none;
  5772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5773. font-weight:400;
  5774. font-style:normal;
  5775. font-size:12px;
  5776. color:#555555;
  5777. }
  5778. #u105627 {
  5779. border-width:0px;
  5780. position:absolute;
  5781. left:1347px;
  5782. top:564px;
  5783. width:55px;
  5784. height:30px;
  5785. display:flex;
  5786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5787. font-weight:400;
  5788. font-style:normal;
  5789. font-size:12px;
  5790. color:#555555;
  5791. }
  5792. #u105627 .text {
  5793. position:absolute;
  5794. align-self:center;
  5795. padding:5px 15px 5px 15px;
  5796. box-sizing:border-box;
  5797. width:100%;
  5798. }
  5799. #u105627_text {
  5800. border-width:0px;
  5801. white-space:nowrap;
  5802. text-transform:none;
  5803. }
  5804. #u105628 {
  5805. border-width:0px;
  5806. position:absolute;
  5807. left:0px;
  5808. top:0px;
  5809. width:0px;
  5810. height:0px;
  5811. }
  5812. #u105629_div {
  5813. border-width:0px;
  5814. position:absolute;
  5815. left:0px;
  5816. top:0px;
  5817. width:100px;
  5818. height:180px;
  5819. background:inherit;
  5820. background-color:rgba(255, 255, 255, 1);
  5821. box-sizing:border-box;
  5822. border-width:1px;
  5823. border-style:solid;
  5824. border-color:rgba(242, 242, 242, 1);
  5825. border-radius:4px;
  5826. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5827. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5828. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5830. font-weight:400;
  5831. font-style:normal;
  5832. font-size:14px;
  5833. text-align:left;
  5834. }
  5835. #u105629 {
  5836. border-width:0px;
  5837. position:absolute;
  5838. left:1700px;
  5839. top:231px;
  5840. width:100px;
  5841. height:180px;
  5842. display:flex;
  5843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5844. font-weight:400;
  5845. font-style:normal;
  5846. font-size:14px;
  5847. text-align:left;
  5848. }
  5849. #u105629 .text {
  5850. position:absolute;
  5851. align-self:center;
  5852. padding:2px 2px 2px 2px;
  5853. box-sizing:border-box;
  5854. width:100%;
  5855. }
  5856. #u105629_text {
  5857. border-width:0px;
  5858. word-wrap:break-word;
  5859. text-transform:none;
  5860. visibility:hidden;
  5861. }
  5862. #u105630_div {
  5863. border-width:0px;
  5864. position:absolute;
  5865. left:0px;
  5866. top:0px;
  5867. width:85px;
  5868. height:40px;
  5869. background:inherit;
  5870. background-color:rgba(255, 255, 255, 1);
  5871. box-sizing:border-box;
  5872. border-width:1px;
  5873. border-style:solid;
  5874. border-color:rgba(215, 215, 215, 1);
  5875. border-left:0px;
  5876. border-top:0px;
  5877. border-right:0px;
  5878. border-radius:0px;
  5879. border-bottom-right-radius:0px;
  5880. border-bottom-left-radius:0px;
  5881. -moz-box-shadow:none;
  5882. -webkit-box-shadow:none;
  5883. box-shadow:none;
  5884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5885. font-weight:400;
  5886. font-style:normal;
  5887. font-size:14px;
  5888. }
  5889. #u105630 {
  5890. border-width:0px;
  5891. position:absolute;
  5892. left:1708px;
  5893. top:241px;
  5894. width:85px;
  5895. height:40px;
  5896. display:flex;
  5897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5898. font-weight:400;
  5899. font-style:normal;
  5900. font-size:14px;
  5901. }
  5902. #u105630 .text {
  5903. position:absolute;
  5904. align-self:center;
  5905. padding:2px 2px 2px 2px;
  5906. box-sizing:border-box;
  5907. width:100%;
  5908. }
  5909. #u105630_text {
  5910. border-width:0px;
  5911. word-wrap:break-word;
  5912. text-transform:none;
  5913. }
  5914. #u105631_div {
  5915. border-width:0px;
  5916. position:absolute;
  5917. left:0px;
  5918. top:0px;
  5919. width:85px;
  5920. height:40px;
  5921. background:inherit;
  5922. background-color:rgba(255, 255, 255, 1);
  5923. border:none;
  5924. border-left:0px;
  5925. border-top:0px;
  5926. border-right:0px;
  5927. border-radius:0px;
  5928. border-bottom-right-radius:0px;
  5929. border-bottom-left-radius:0px;
  5930. -moz-box-shadow:none;
  5931. -webkit-box-shadow:none;
  5932. box-shadow:none;
  5933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5934. font-weight:400;
  5935. font-style:normal;
  5936. font-size:14px;
  5937. }
  5938. #u105631 {
  5939. border-width:0px;
  5940. position:absolute;
  5941. left:1708px;
  5942. top:361px;
  5943. width:85px;
  5944. height:40px;
  5945. display:flex;
  5946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5947. font-weight:400;
  5948. font-style:normal;
  5949. font-size:14px;
  5950. }
  5951. #u105631 .text {
  5952. position:absolute;
  5953. align-self:center;
  5954. padding:2px 2px 2px 2px;
  5955. box-sizing:border-box;
  5956. width:100%;
  5957. }
  5958. #u105631_text {
  5959. border-width:0px;
  5960. word-wrap:break-word;
  5961. text-transform:none;
  5962. }
  5963. #u105632_div {
  5964. border-width:0px;
  5965. position:absolute;
  5966. left:0px;
  5967. top:0px;
  5968. width:85px;
  5969. height:40px;
  5970. background:inherit;
  5971. background-color:rgba(255, 255, 255, 1);
  5972. box-sizing:border-box;
  5973. border-width:1px;
  5974. border-style:solid;
  5975. border-color:rgba(215, 215, 215, 1);
  5976. border-left:0px;
  5977. border-top:0px;
  5978. border-right:0px;
  5979. border-radius:0px;
  5980. border-bottom-right-radius:0px;
  5981. border-bottom-left-radius:0px;
  5982. -moz-box-shadow:none;
  5983. -webkit-box-shadow:none;
  5984. box-shadow:none;
  5985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5986. font-weight:400;
  5987. font-style:normal;
  5988. font-size:14px;
  5989. }
  5990. #u105632 {
  5991. border-width:0px;
  5992. position:absolute;
  5993. left:1708px;
  5994. top:281px;
  5995. width:85px;
  5996. height:40px;
  5997. display:flex;
  5998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5999. font-weight:400;
  6000. font-style:normal;
  6001. font-size:14px;
  6002. }
  6003. #u105632 .text {
  6004. position:absolute;
  6005. align-self:center;
  6006. padding:2px 2px 2px 2px;
  6007. box-sizing:border-box;
  6008. width:100%;
  6009. }
  6010. #u105632_text {
  6011. border-width:0px;
  6012. word-wrap:break-word;
  6013. text-transform:none;
  6014. }
  6015. #u105633_div {
  6016. border-width:0px;
  6017. position:absolute;
  6018. left:0px;
  6019. top:0px;
  6020. width:85px;
  6021. height:40px;
  6022. background:inherit;
  6023. background-color:rgba(255, 255, 255, 1);
  6024. box-sizing:border-box;
  6025. border-width:1px;
  6026. border-style:solid;
  6027. border-color:rgba(215, 215, 215, 1);
  6028. border-left:0px;
  6029. border-top:0px;
  6030. border-right:0px;
  6031. border-radius:0px;
  6032. border-bottom-right-radius:0px;
  6033. border-bottom-left-radius:0px;
  6034. -moz-box-shadow:none;
  6035. -webkit-box-shadow:none;
  6036. box-shadow:none;
  6037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6038. font-weight:400;
  6039. font-style:normal;
  6040. font-size:14px;
  6041. }
  6042. #u105633 {
  6043. border-width:0px;
  6044. position:absolute;
  6045. left:1708px;
  6046. top:321px;
  6047. width:85px;
  6048. height:40px;
  6049. display:flex;
  6050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6051. font-weight:400;
  6052. font-style:normal;
  6053. font-size:14px;
  6054. }
  6055. #u105633 .text {
  6056. position:absolute;
  6057. align-self:center;
  6058. padding:2px 2px 2px 2px;
  6059. box-sizing:border-box;
  6060. width:100%;
  6061. }
  6062. #u105633_text {
  6063. border-width:0px;
  6064. word-wrap:break-word;
  6065. text-transform:none;
  6066. }
  6067. #u105634 {
  6068. border-width:0px;
  6069. position:absolute;
  6070. left:0px;
  6071. top:0px;
  6072. width:0px;
  6073. height:0px;
  6074. }
  6075. #u105635_div {
  6076. border-width:0px;
  6077. position:absolute;
  6078. left:0px;
  6079. top:0px;
  6080. width:100px;
  6081. height:180px;
  6082. background:inherit;
  6083. background-color:rgba(255, 255, 255, 1);
  6084. box-sizing:border-box;
  6085. border-width:1px;
  6086. border-style:solid;
  6087. border-color:rgba(242, 242, 242, 1);
  6088. border-radius:4px;
  6089. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6090. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6091. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6093. font-weight:400;
  6094. font-style:normal;
  6095. font-size:14px;
  6096. text-align:left;
  6097. }
  6098. #u105635 {
  6099. border-width:0px;
  6100. position:absolute;
  6101. left:1830px;
  6102. top:231px;
  6103. width:100px;
  6104. height:180px;
  6105. display:flex;
  6106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6107. font-weight:400;
  6108. font-style:normal;
  6109. font-size:14px;
  6110. text-align:left;
  6111. }
  6112. #u105635 .text {
  6113. position:absolute;
  6114. align-self:center;
  6115. padding:2px 2px 2px 2px;
  6116. box-sizing:border-box;
  6117. width:100%;
  6118. }
  6119. #u105635_text {
  6120. border-width:0px;
  6121. word-wrap:break-word;
  6122. text-transform:none;
  6123. visibility:hidden;
  6124. }
  6125. #u105636_div {
  6126. border-width:0px;
  6127. position:absolute;
  6128. left:0px;
  6129. top:0px;
  6130. width:85px;
  6131. height:40px;
  6132. background:inherit;
  6133. background-color:rgba(255, 255, 255, 1);
  6134. box-sizing:border-box;
  6135. border-width:1px;
  6136. border-style:solid;
  6137. border-color:rgba(215, 215, 215, 1);
  6138. border-left:0px;
  6139. border-top:0px;
  6140. border-right:0px;
  6141. border-radius:0px;
  6142. border-bottom-right-radius:0px;
  6143. border-bottom-left-radius:0px;
  6144. -moz-box-shadow:none;
  6145. -webkit-box-shadow:none;
  6146. box-shadow:none;
  6147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6148. font-weight:400;
  6149. font-style:normal;
  6150. font-size:14px;
  6151. }
  6152. #u105636 {
  6153. border-width:0px;
  6154. position:absolute;
  6155. left:1838px;
  6156. top:241px;
  6157. width:85px;
  6158. height:40px;
  6159. display:flex;
  6160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6161. font-weight:400;
  6162. font-style:normal;
  6163. font-size:14px;
  6164. }
  6165. #u105636 .text {
  6166. position:absolute;
  6167. align-self:center;
  6168. padding:2px 2px 2px 2px;
  6169. box-sizing:border-box;
  6170. width:100%;
  6171. }
  6172. #u105636_text {
  6173. border-width:0px;
  6174. word-wrap:break-word;
  6175. text-transform:none;
  6176. }
  6177. #u105637_div {
  6178. border-width:0px;
  6179. position:absolute;
  6180. left:0px;
  6181. top:0px;
  6182. width:85px;
  6183. height:40px;
  6184. background:inherit;
  6185. background-color:rgba(255, 255, 255, 1);
  6186. border:none;
  6187. border-left:0px;
  6188. border-top:0px;
  6189. border-right:0px;
  6190. border-radius:0px;
  6191. border-bottom-right-radius:0px;
  6192. border-bottom-left-radius:0px;
  6193. -moz-box-shadow:none;
  6194. -webkit-box-shadow:none;
  6195. box-shadow:none;
  6196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6197. font-weight:400;
  6198. font-style:normal;
  6199. font-size:14px;
  6200. }
  6201. #u105637 {
  6202. border-width:0px;
  6203. position:absolute;
  6204. left:1838px;
  6205. top:361px;
  6206. width:85px;
  6207. height:40px;
  6208. display:flex;
  6209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6210. font-weight:400;
  6211. font-style:normal;
  6212. font-size:14px;
  6213. }
  6214. #u105637 .text {
  6215. position:absolute;
  6216. align-self:center;
  6217. padding:2px 2px 2px 2px;
  6218. box-sizing:border-box;
  6219. width:100%;
  6220. }
  6221. #u105637_text {
  6222. border-width:0px;
  6223. word-wrap:break-word;
  6224. text-transform:none;
  6225. }
  6226. #u105638_div {
  6227. border-width:0px;
  6228. position:absolute;
  6229. left:0px;
  6230. top:0px;
  6231. width:85px;
  6232. height:40px;
  6233. background:inherit;
  6234. background-color:rgba(255, 255, 255, 1);
  6235. box-sizing:border-box;
  6236. border-width:1px;
  6237. border-style:solid;
  6238. border-color:rgba(215, 215, 215, 1);
  6239. border-left:0px;
  6240. border-top:0px;
  6241. border-right:0px;
  6242. border-radius:0px;
  6243. border-bottom-right-radius:0px;
  6244. border-bottom-left-radius:0px;
  6245. -moz-box-shadow:none;
  6246. -webkit-box-shadow:none;
  6247. box-shadow:none;
  6248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6249. font-weight:400;
  6250. font-style:normal;
  6251. font-size:14px;
  6252. }
  6253. #u105638 {
  6254. border-width:0px;
  6255. position:absolute;
  6256. left:1838px;
  6257. top:281px;
  6258. width:85px;
  6259. height:40px;
  6260. display:flex;
  6261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6262. font-weight:400;
  6263. font-style:normal;
  6264. font-size:14px;
  6265. }
  6266. #u105638 .text {
  6267. position:absolute;
  6268. align-self:center;
  6269. padding:2px 2px 2px 2px;
  6270. box-sizing:border-box;
  6271. width:100%;
  6272. }
  6273. #u105638_text {
  6274. border-width:0px;
  6275. word-wrap:break-word;
  6276. text-transform:none;
  6277. }
  6278. #u105639_div {
  6279. border-width:0px;
  6280. position:absolute;
  6281. left:0px;
  6282. top:0px;
  6283. width:85px;
  6284. height:40px;
  6285. background:inherit;
  6286. background-color:rgba(255, 255, 255, 1);
  6287. box-sizing:border-box;
  6288. border-width:1px;
  6289. border-style:solid;
  6290. border-color:rgba(215, 215, 215, 1);
  6291. border-left:0px;
  6292. border-top:0px;
  6293. border-right:0px;
  6294. border-radius:0px;
  6295. border-bottom-right-radius:0px;
  6296. border-bottom-left-radius:0px;
  6297. -moz-box-shadow:none;
  6298. -webkit-box-shadow:none;
  6299. box-shadow:none;
  6300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6301. font-weight:400;
  6302. font-style:normal;
  6303. font-size:14px;
  6304. }
  6305. #u105639 {
  6306. border-width:0px;
  6307. position:absolute;
  6308. left:1838px;
  6309. top:321px;
  6310. width:85px;
  6311. height:40px;
  6312. display:flex;
  6313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6314. font-weight:400;
  6315. font-style:normal;
  6316. font-size:14px;
  6317. }
  6318. #u105639 .text {
  6319. position:absolute;
  6320. align-self:center;
  6321. padding:2px 2px 2px 2px;
  6322. box-sizing:border-box;
  6323. width:100%;
  6324. }
  6325. #u105639_text {
  6326. border-width:0px;
  6327. word-wrap:break-word;
  6328. text-transform:none;
  6329. }
  6330. #u105640_div {
  6331. border-width:0px;
  6332. position:absolute;
  6333. left:0px;
  6334. top:0px;
  6335. width:60px;
  6336. height:30px;
  6337. background:inherit;
  6338. background-color:rgba(255, 255, 255, 1);
  6339. box-sizing:border-box;
  6340. border-width:1px;
  6341. border-style:solid;
  6342. border-color:rgba(170, 170, 170, 1);
  6343. border-radius:4px;
  6344. -moz-box-shadow:none;
  6345. -webkit-box-shadow:none;
  6346. box-shadow:none;
  6347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6348. font-weight:400;
  6349. font-style:normal;
  6350. font-size:14px;
  6351. }
  6352. #u105640 {
  6353. border-width:0px;
  6354. position:absolute;
  6355. left:423px;
  6356. top:151px;
  6357. width:60px;
  6358. height:30px;
  6359. display:flex;
  6360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6361. font-weight:400;
  6362. font-style:normal;
  6363. font-size:14px;
  6364. }
  6365. #u105640 .text {
  6366. position:absolute;
  6367. align-self:center;
  6368. padding:2px 2px 2px 2px;
  6369. box-sizing:border-box;
  6370. width:100%;
  6371. }
  6372. #u105640_text {
  6373. border-width:0px;
  6374. word-wrap:break-word;
  6375. text-transform:none;
  6376. }
  6377. #u105641 {
  6378. border-width:0px;
  6379. position:absolute;
  6380. left:0px;
  6381. top:0px;
  6382. width:0px;
  6383. height:0px;
  6384. }
  6385. #u105642_div {
  6386. border-width:0px;
  6387. position:absolute;
  6388. left:0px;
  6389. top:0px;
  6390. width:200px;
  6391. height:1180px;
  6392. background:inherit;
  6393. background-color:rgba(255, 255, 255, 1);
  6394. border:none;
  6395. border-radius:0px;
  6396. -moz-box-shadow:none;
  6397. -webkit-box-shadow:none;
  6398. box-shadow:none;
  6399. }
  6400. #u105642 {
  6401. border-width:0px;
  6402. position:absolute;
  6403. left:121px;
  6404. top:51px;
  6405. width:200px;
  6406. height:1180px;
  6407. display:flex;
  6408. }
  6409. #u105642 .text {
  6410. position:absolute;
  6411. align-self:center;
  6412. padding:2px 2px 2px 2px;
  6413. box-sizing:border-box;
  6414. width:100%;
  6415. }
  6416. #u105642_text {
  6417. border-width:0px;
  6418. word-wrap:break-word;
  6419. text-transform:none;
  6420. visibility:hidden;
  6421. }
  6422. #u105643_div {
  6423. border-width:0px;
  6424. position:absolute;
  6425. left:0px;
  6426. top:0px;
  6427. width:200px;
  6428. height:60px;
  6429. background:inherit;
  6430. background-color:rgba(224, 231, 247, 1);
  6431. border:none;
  6432. border-radius:0px;
  6433. -moz-box-shadow:none;
  6434. -webkit-box-shadow:none;
  6435. box-shadow:none;
  6436. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6437. font-weight:500;
  6438. font-style:normal;
  6439. font-size:18px;
  6440. }
  6441. #u105643 {
  6442. border-width:0px;
  6443. position:absolute;
  6444. left:121px;
  6445. top:51px;
  6446. width:200px;
  6447. height:60px;
  6448. display:flex;
  6449. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6450. font-weight:500;
  6451. font-style:normal;
  6452. font-size:18px;
  6453. }
  6454. #u105643 .text {
  6455. position:absolute;
  6456. align-self:center;
  6457. padding:0px 0px 0px 20px;
  6458. box-sizing:border-box;
  6459. width:100%;
  6460. }
  6461. #u105643_text {
  6462. border-width:0px;
  6463. word-wrap:break-word;
  6464. text-transform:none;
  6465. }
  6466. #u105644_div {
  6467. border-width:0px;
  6468. position:absolute;
  6469. left:0px;
  6470. top:0px;
  6471. width:97px;
  6472. height:22px;
  6473. background:inherit;
  6474. background-color:rgba(255, 255, 255, 0);
  6475. border:none;
  6476. border-radius:0px;
  6477. -moz-box-shadow:none;
  6478. -webkit-box-shadow:none;
  6479. box-shadow:none;
  6480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6481. font-weight:400;
  6482. font-style:normal;
  6483. font-size:16px;
  6484. }
  6485. #u105644 {
  6486. border-width:0px;
  6487. position:absolute;
  6488. left:148px;
  6489. top:168px;
  6490. width:97px;
  6491. height:22px;
  6492. display:flex;
  6493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6494. font-weight:400;
  6495. font-style:normal;
  6496. font-size:16px;
  6497. }
  6498. #u105644 .text {
  6499. position:absolute;
  6500. align-self:flex-start;
  6501. padding:0px 0px 0px 0px;
  6502. box-sizing:border-box;
  6503. width:100%;
  6504. }
  6505. #u105644_text {
  6506. border-width:0px;
  6507. word-wrap:break-word;
  6508. text-transform:none;
  6509. }
  6510. #u105645_div {
  6511. border-width:0px;
  6512. position:absolute;
  6513. left:0px;
  6514. top:0px;
  6515. width:65px;
  6516. height:22px;
  6517. background:inherit;
  6518. background-color:rgba(255, 255, 255, 0);
  6519. border:none;
  6520. border-radius:0px;
  6521. -moz-box-shadow:none;
  6522. -webkit-box-shadow:none;
  6523. box-shadow:none;
  6524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6525. font-weight:400;
  6526. font-style:normal;
  6527. font-size:16px;
  6528. }
  6529. #u105645 {
  6530. border-width:0px;
  6531. position:absolute;
  6532. left:148px;
  6533. top:210px;
  6534. width:65px;
  6535. height:22px;
  6536. display:flex;
  6537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6538. font-weight:400;
  6539. font-style:normal;
  6540. font-size:16px;
  6541. }
  6542. #u105645 .text {
  6543. position:absolute;
  6544. align-self:flex-start;
  6545. padding:0px 0px 0px 0px;
  6546. box-sizing:border-box;
  6547. width:100%;
  6548. }
  6549. #u105645_text {
  6550. border-width:0px;
  6551. white-space:nowrap;
  6552. text-transform:none;
  6553. }
  6554. #u105646_div {
  6555. border-width:0px;
  6556. position:absolute;
  6557. left:0px;
  6558. top:0px;
  6559. width:65px;
  6560. height:22px;
  6561. background:inherit;
  6562. background-color:rgba(255, 255, 255, 0);
  6563. border:none;
  6564. border-radius:0px;
  6565. -moz-box-shadow:none;
  6566. -webkit-box-shadow:none;
  6567. box-shadow:none;
  6568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6569. font-weight:400;
  6570. font-style:normal;
  6571. font-size:16px;
  6572. }
  6573. #u105646 {
  6574. border-width:0px;
  6575. position:absolute;
  6576. left:148px;
  6577. top:455px;
  6578. width:65px;
  6579. height:22px;
  6580. display:flex;
  6581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6582. font-weight:400;
  6583. font-style:normal;
  6584. font-size:16px;
  6585. }
  6586. #u105646 .text {
  6587. position:absolute;
  6588. align-self:flex-start;
  6589. padding:0px 0px 0px 0px;
  6590. box-sizing:border-box;
  6591. width:100%;
  6592. }
  6593. #u105646_text {
  6594. border-width:0px;
  6595. white-space:nowrap;
  6596. text-transform:none;
  6597. }
  6598. #u105647_div {
  6599. border-width:0px;
  6600. position:absolute;
  6601. left:0px;
  6602. top:0px;
  6603. width:97px;
  6604. height:22px;
  6605. background:inherit;
  6606. background-color:rgba(255, 255, 255, 0);
  6607. border:none;
  6608. border-radius:0px;
  6609. -moz-box-shadow:none;
  6610. -webkit-box-shadow:none;
  6611. box-shadow:none;
  6612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6613. font-weight:400;
  6614. font-style:normal;
  6615. font-size:16px;
  6616. }
  6617. #u105647 {
  6618. border-width:0px;
  6619. position:absolute;
  6620. left:148px;
  6621. top:497px;
  6622. width:97px;
  6623. height:22px;
  6624. display:flex;
  6625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6626. font-weight:400;
  6627. font-style:normal;
  6628. font-size:16px;
  6629. }
  6630. #u105647 .text {
  6631. position:absolute;
  6632. align-self:flex-start;
  6633. padding:0px 0px 0px 0px;
  6634. box-sizing:border-box;
  6635. width:100%;
  6636. }
  6637. #u105647_text {
  6638. border-width:0px;
  6639. word-wrap:break-word;
  6640. text-transform:none;
  6641. }
  6642. #u105648_img {
  6643. border-width:0px;
  6644. position:absolute;
  6645. left:0px;
  6646. top:0px;
  6647. width:201px;
  6648. height:2px;
  6649. }
  6650. #u105648 {
  6651. border-width:0px;
  6652. position:absolute;
  6653. left:121px;
  6654. top:252px;
  6655. width:200px;
  6656. height:1px;
  6657. display:flex;
  6658. }
  6659. #u105648 .text {
  6660. position:absolute;
  6661. align-self:center;
  6662. padding:2px 2px 2px 2px;
  6663. box-sizing:border-box;
  6664. width:100%;
  6665. }
  6666. #u105648_text {
  6667. border-width:0px;
  6668. word-wrap:break-word;
  6669. text-transform:none;
  6670. visibility:hidden;
  6671. }
  6672. #u105649_div {
  6673. border-width:0px;
  6674. position:absolute;
  6675. left:0px;
  6676. top:0px;
  6677. width:49px;
  6678. height:17px;
  6679. background:inherit;
  6680. background-color:rgba(255, 255, 255, 0);
  6681. border:none;
  6682. border-radius:0px;
  6683. -moz-box-shadow:none;
  6684. -webkit-box-shadow:none;
  6685. box-shadow:none;
  6686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6687. font-weight:400;
  6688. font-style:normal;
  6689. font-size:12px;
  6690. color:#AAAAAA;
  6691. }
  6692. #u105649 {
  6693. border-width:0px;
  6694. position:absolute;
  6695. left:148px;
  6696. top:415px;
  6697. width:49px;
  6698. height:17px;
  6699. display:flex;
  6700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6701. font-weight:400;
  6702. font-style:normal;
  6703. font-size:12px;
  6704. color:#AAAAAA;
  6705. }
  6706. #u105649 .text {
  6707. position:absolute;
  6708. align-self:flex-start;
  6709. padding:0px 0px 0px 0px;
  6710. box-sizing:border-box;
  6711. width:100%;
  6712. }
  6713. #u105649_text {
  6714. border-width:0px;
  6715. white-space:nowrap;
  6716. text-transform:none;
  6717. }
  6718. #u105650_div {
  6719. border-width:0px;
  6720. position:absolute;
  6721. left:0px;
  6722. top:0px;
  6723. width:65px;
  6724. height:22px;
  6725. background:inherit;
  6726. background-color:rgba(255, 255, 255, 0);
  6727. border:none;
  6728. border-radius:0px;
  6729. -moz-box-shadow:none;
  6730. -webkit-box-shadow:none;
  6731. box-shadow:none;
  6732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6733. font-weight:400;
  6734. font-style:normal;
  6735. font-size:16px;
  6736. }
  6737. #u105650 {
  6738. border-width:0px;
  6739. position:absolute;
  6740. left:148px;
  6741. top:600px;
  6742. width:65px;
  6743. height:22px;
  6744. display:flex;
  6745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6746. font-weight:400;
  6747. font-style:normal;
  6748. font-size:16px;
  6749. }
  6750. #u105650 .text {
  6751. position:absolute;
  6752. align-self:flex-start;
  6753. padding:0px 0px 0px 0px;
  6754. box-sizing:border-box;
  6755. width:100%;
  6756. }
  6757. #u105650_text {
  6758. border-width:0px;
  6759. white-space:nowrap;
  6760. text-transform:none;
  6761. }
  6762. #u105651_div {
  6763. border-width:0px;
  6764. position:absolute;
  6765. left:0px;
  6766. top:0px;
  6767. width:97px;
  6768. height:22px;
  6769. background:inherit;
  6770. background-color:rgba(255, 255, 255, 0);
  6771. border:none;
  6772. border-radius:0px;
  6773. -moz-box-shadow:none;
  6774. -webkit-box-shadow:none;
  6775. box-shadow:none;
  6776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6777. font-weight:400;
  6778. font-style:normal;
  6779. font-size:16px;
  6780. }
  6781. #u105651 {
  6782. border-width:0px;
  6783. position:absolute;
  6784. left:148px;
  6785. top:642px;
  6786. width:97px;
  6787. height:22px;
  6788. display:flex;
  6789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6790. font-weight:400;
  6791. font-style:normal;
  6792. font-size:16px;
  6793. }
  6794. #u105651 .text {
  6795. position:absolute;
  6796. align-self:flex-start;
  6797. padding:0px 0px 0px 0px;
  6798. box-sizing:border-box;
  6799. width:100%;
  6800. }
  6801. #u105651_text {
  6802. border-width:0px;
  6803. word-wrap:break-word;
  6804. text-transform:none;
  6805. }
  6806. #u105652_img {
  6807. border-width:0px;
  6808. position:absolute;
  6809. left:0px;
  6810. top:0px;
  6811. width:201px;
  6812. height:2px;
  6813. }
  6814. #u105652 {
  6815. border-width:0px;
  6816. position:absolute;
  6817. left:121px;
  6818. top:539px;
  6819. width:200px;
  6820. height:1px;
  6821. display:flex;
  6822. }
  6823. #u105652 .text {
  6824. position:absolute;
  6825. align-self:center;
  6826. padding:2px 2px 2px 2px;
  6827. box-sizing:border-box;
  6828. width:100%;
  6829. }
  6830. #u105652_text {
  6831. border-width:0px;
  6832. word-wrap:break-word;
  6833. text-transform:none;
  6834. visibility:hidden;
  6835. }
  6836. #u105653_div {
  6837. border-width:0px;
  6838. position:absolute;
  6839. left:0px;
  6840. top:0px;
  6841. width:49px;
  6842. height:17px;
  6843. background:inherit;
  6844. background-color:rgba(255, 255, 255, 0);
  6845. border:none;
  6846. border-radius:0px;
  6847. -moz-box-shadow:none;
  6848. -webkit-box-shadow:none;
  6849. box-shadow:none;
  6850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6851. font-weight:400;
  6852. font-style:normal;
  6853. font-size:12px;
  6854. color:#AAAAAA;
  6855. }
  6856. #u105653 {
  6857. border-width:0px;
  6858. position:absolute;
  6859. left:148px;
  6860. top:560px;
  6861. width:49px;
  6862. height:17px;
  6863. display:flex;
  6864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6865. font-weight:400;
  6866. font-style:normal;
  6867. font-size:12px;
  6868. color:#AAAAAA;
  6869. }
  6870. #u105653 .text {
  6871. position:absolute;
  6872. align-self:flex-start;
  6873. padding:0px 0px 0px 0px;
  6874. box-sizing:border-box;
  6875. width:100%;
  6876. }
  6877. #u105653_text {
  6878. border-width:0px;
  6879. white-space:nowrap;
  6880. text-transform:none;
  6881. }
  6882. #u105654_div {
  6883. border-width:0px;
  6884. position:absolute;
  6885. left:0px;
  6886. top:0px;
  6887. width:49px;
  6888. height:17px;
  6889. background:inherit;
  6890. background-color:rgba(255, 255, 255, 0);
  6891. border:none;
  6892. border-radius:0px;
  6893. -moz-box-shadow:none;
  6894. -webkit-box-shadow:none;
  6895. box-shadow:none;
  6896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6897. font-weight:400;
  6898. font-style:normal;
  6899. font-size:12px;
  6900. color:#AAAAAA;
  6901. }
  6902. #u105654 {
  6903. border-width:0px;
  6904. position:absolute;
  6905. left:148px;
  6906. top:131px;
  6907. width:49px;
  6908. height:17px;
  6909. display:flex;
  6910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6911. font-weight:400;
  6912. font-style:normal;
  6913. font-size:12px;
  6914. color:#AAAAAA;
  6915. }
  6916. #u105654 .text {
  6917. position:absolute;
  6918. align-self:flex-start;
  6919. padding:0px 0px 0px 0px;
  6920. box-sizing:border-box;
  6921. width:100%;
  6922. }
  6923. #u105654_text {
  6924. border-width:0px;
  6925. white-space:nowrap;
  6926. text-transform:none;
  6927. }
  6928. #u105655_div {
  6929. border-width:0px;
  6930. position:absolute;
  6931. left:0px;
  6932. top:0px;
  6933. width:97px;
  6934. height:22px;
  6935. background:inherit;
  6936. background-color:rgba(255, 255, 255, 0);
  6937. border:none;
  6938. border-radius:0px;
  6939. -moz-box-shadow:none;
  6940. -webkit-box-shadow:none;
  6941. box-shadow:none;
  6942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6943. font-weight:400;
  6944. font-style:normal;
  6945. font-size:16px;
  6946. }
  6947. #u105655 {
  6948. border-width:0px;
  6949. position:absolute;
  6950. left:148px;
  6951. top:310px;
  6952. width:97px;
  6953. height:22px;
  6954. display:flex;
  6955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6956. font-weight:400;
  6957. font-style:normal;
  6958. font-size:16px;
  6959. }
  6960. #u105655 .text {
  6961. position:absolute;
  6962. align-self:flex-start;
  6963. padding:0px 0px 0px 0px;
  6964. box-sizing:border-box;
  6965. width:100%;
  6966. }
  6967. #u105655_text {
  6968. border-width:0px;
  6969. word-wrap:break-word;
  6970. text-transform:none;
  6971. }
  6972. #u105656_div {
  6973. border-width:0px;
  6974. position:absolute;
  6975. left:0px;
  6976. top:0px;
  6977. width:65px;
  6978. height:22px;
  6979. background:inherit;
  6980. background-color:rgba(255, 255, 255, 0);
  6981. border:none;
  6982. border-radius:0px;
  6983. -moz-box-shadow:none;
  6984. -webkit-box-shadow:none;
  6985. box-shadow:none;
  6986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6987. font-weight:400;
  6988. font-style:normal;
  6989. font-size:16px;
  6990. }
  6991. #u105656 {
  6992. border-width:0px;
  6993. position:absolute;
  6994. left:148px;
  6995. top:352px;
  6996. width:65px;
  6997. height:22px;
  6998. display:flex;
  6999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7000. font-weight:400;
  7001. font-style:normal;
  7002. font-size:16px;
  7003. }
  7004. #u105656 .text {
  7005. position:absolute;
  7006. align-self:flex-start;
  7007. padding:0px 0px 0px 0px;
  7008. box-sizing:border-box;
  7009. width:100%;
  7010. }
  7011. #u105656_text {
  7012. border-width:0px;
  7013. white-space:nowrap;
  7014. text-transform:none;
  7015. }
  7016. #u105657_img {
  7017. border-width:0px;
  7018. position:absolute;
  7019. left:0px;
  7020. top:0px;
  7021. width:201px;
  7022. height:2px;
  7023. }
  7024. #u105657 {
  7025. border-width:0px;
  7026. position:absolute;
  7027. left:121px;
  7028. top:394px;
  7029. width:200px;
  7030. height:1px;
  7031. display:flex;
  7032. }
  7033. #u105657 .text {
  7034. position:absolute;
  7035. align-self:center;
  7036. padding:2px 2px 2px 2px;
  7037. box-sizing:border-box;
  7038. width:100%;
  7039. }
  7040. #u105657_text {
  7041. border-width:0px;
  7042. word-wrap:break-word;
  7043. text-transform:none;
  7044. visibility:hidden;
  7045. }
  7046. #u105658_div {
  7047. border-width:0px;
  7048. position:absolute;
  7049. left:0px;
  7050. top:0px;
  7051. width:49px;
  7052. height:17px;
  7053. background:inherit;
  7054. background-color:rgba(255, 255, 255, 0);
  7055. border:none;
  7056. border-radius:0px;
  7057. -moz-box-shadow:none;
  7058. -webkit-box-shadow:none;
  7059. box-shadow:none;
  7060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7061. font-weight:400;
  7062. font-style:normal;
  7063. font-size:12px;
  7064. color:#AAAAAA;
  7065. }
  7066. #u105658 {
  7067. border-width:0px;
  7068. position:absolute;
  7069. left:148px;
  7070. top:273px;
  7071. width:49px;
  7072. height:17px;
  7073. display:flex;
  7074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7075. font-weight:400;
  7076. font-style:normal;
  7077. font-size:12px;
  7078. color:#AAAAAA;
  7079. }
  7080. #u105658 .text {
  7081. position:absolute;
  7082. align-self:flex-start;
  7083. padding:0px 0px 0px 0px;
  7084. box-sizing:border-box;
  7085. width:100%;
  7086. }
  7087. #u105658_text {
  7088. border-width:0px;
  7089. white-space:nowrap;
  7090. text-transform:none;
  7091. }