styles.css 130 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  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. #u144103 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u144105_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1480px;
  33. height:1200px;
  34. background:inherit;
  35. background-color:rgba(242, 242, 242, 1);
  36. border:none;
  37. border-radius:0px;
  38. -moz-box-shadow:none;
  39. -webkit-box-shadow:none;
  40. box-shadow:none;
  41. }
  42. #u144105 {
  43. border-width:0px;
  44. position:absolute;
  45. left:120px;
  46. top:50px;
  47. width:1480px;
  48. height:1200px;
  49. display:flex;
  50. }
  51. #u144105 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:2px 2px 2px 2px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u144105_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. visibility:hidden;
  63. }
  64. #u144106_div {
  65. border-width:0px;
  66. position:absolute;
  67. left:0px;
  68. top:0px;
  69. width:129px;
  70. height:22px;
  71. background:inherit;
  72. background-color:rgba(255, 255, 255, 0);
  73. border:none;
  74. border-radius:0px;
  75. -moz-box-shadow:none;
  76. -webkit-box-shadow:none;
  77. box-shadow:none;
  78. font-size:16px;
  79. color:#FFFFFF;
  80. }
  81. #u144106 {
  82. border-width:0px;
  83. position:absolute;
  84. left:49px;
  85. top:14px;
  86. width:129px;
  87. height:22px;
  88. display:flex;
  89. font-size:16px;
  90. color:#FFFFFF;
  91. }
  92. #u144106 .text {
  93. position:absolute;
  94. align-self:flex-start;
  95. padding:0px 0px 0px 0px;
  96. box-sizing:border-box;
  97. width:100%;
  98. }
  99. #u144106_text {
  100. border-width:0px;
  101. white-space:nowrap;
  102. text-transform:none;
  103. }
  104. #u144107_div {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:1600px;
  110. height:50px;
  111. background:inherit;
  112. background-color:rgba(30, 42, 68, 1);
  113. border:none;
  114. border-radius:0px;
  115. -moz-box-shadow:none;
  116. -webkit-box-shadow:none;
  117. box-shadow:none;
  118. color:#AFB3B6;
  119. }
  120. #u144107 {
  121. border-width:0px;
  122. position:absolute;
  123. left:0px;
  124. top:0px;
  125. width:1600px;
  126. height:50px;
  127. display:flex;
  128. color:#AFB3B6;
  129. }
  130. #u144107 .text {
  131. position:absolute;
  132. align-self:center;
  133. padding:2px 2px 2px 2px;
  134. box-sizing:border-box;
  135. width:100%;
  136. }
  137. #u144107_text {
  138. border-width:0px;
  139. word-wrap:break-word;
  140. text-transform:none;
  141. visibility:hidden;
  142. }
  143. #u144108 {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:0px;
  149. height:0px;
  150. }
  151. #u144109_img {
  152. border-width:0px;
  153. position:absolute;
  154. left:0px;
  155. top:0px;
  156. width:31px;
  157. height:31px;
  158. }
  159. #u144109 {
  160. border-width:0px;
  161. position:absolute;
  162. left:19px;
  163. top:10px;
  164. width:31px;
  165. height:31px;
  166. display:flex;
  167. }
  168. #u144109 .text {
  169. position:absolute;
  170. align-self:center;
  171. padding:2px 2px 2px 2px;
  172. box-sizing:border-box;
  173. width:100%;
  174. }
  175. #u144109_text {
  176. border-width:0px;
  177. word-wrap:break-word;
  178. text-transform:none;
  179. }
  180. #u144110_div {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:161px;
  186. height:22px;
  187. background:inherit;
  188. background-color:rgba(255, 255, 255, 0);
  189. border:none;
  190. border-radius:0px;
  191. -moz-box-shadow:none;
  192. -webkit-box-shadow:none;
  193. box-shadow:none;
  194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  195. font-weight:400;
  196. font-style:normal;
  197. font-size:16px;
  198. color:#FFFFFF;
  199. }
  200. #u144110 {
  201. border-width:0px;
  202. position:absolute;
  203. left:62px;
  204. top:14px;
  205. width:161px;
  206. height:22px;
  207. display:flex;
  208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  209. font-weight:400;
  210. font-style:normal;
  211. font-size:16px;
  212. color:#FFFFFF;
  213. }
  214. #u144110 .text {
  215. position:absolute;
  216. align-self:flex-start;
  217. padding:0px 0px 0px 0px;
  218. box-sizing:border-box;
  219. width:100%;
  220. }
  221. #u144110_text {
  222. border-width:0px;
  223. white-space:nowrap;
  224. text-transform:none;
  225. }
  226. #u144111_div {
  227. border-width:0px;
  228. position:absolute;
  229. left:0px;
  230. top:0px;
  231. width:120px;
  232. height:1200px;
  233. background:inherit;
  234. background-color:rgba(30, 42, 68, 1);
  235. border:none;
  236. border-radius:0px;
  237. -moz-box-shadow:none;
  238. -webkit-box-shadow:none;
  239. box-shadow:none;
  240. color:#AFB3B6;
  241. }
  242. #u144111 {
  243. border-width:0px;
  244. position:absolute;
  245. left:0px;
  246. top:47px;
  247. width:120px;
  248. height:1200px;
  249. display:flex;
  250. color:#AFB3B6;
  251. }
  252. #u144111 .text {
  253. position:absolute;
  254. align-self:center;
  255. padding:2px 2px 2px 2px;
  256. box-sizing:border-box;
  257. width:100%;
  258. }
  259. #u144111_text {
  260. border-width:0px;
  261. word-wrap:break-word;
  262. text-transform:none;
  263. visibility:hidden;
  264. }
  265. #u144112 {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:0px;
  271. height:0px;
  272. }
  273. #u144113_input {
  274. position:absolute;
  275. left:0px;
  276. top:0px;
  277. width:214px;
  278. height:27px;
  279. padding:2px 2px 2px 2px;
  280. font-family:'ArialMT', 'Arial', sans-serif;
  281. font-weight:400;
  282. font-style:normal;
  283. font-size:14px;
  284. letter-spacing:normal;
  285. color:#FFFFFF;
  286. vertical-align:none;
  287. text-align:left;
  288. text-transform:none;
  289. background-color:transparent;
  290. border-color:transparent;
  291. }
  292. #u144113_input.disabled {
  293. position:absolute;
  294. left:0px;
  295. top:0px;
  296. width:214px;
  297. height:27px;
  298. padding:2px 2px 2px 2px;
  299. font-family:'ArialMT', 'Arial', sans-serif;
  300. font-weight:400;
  301. font-style:normal;
  302. font-size:14px;
  303. letter-spacing:normal;
  304. color:#FFFFFF;
  305. vertical-align:none;
  306. text-align:left;
  307. text-transform:none;
  308. background-color:transparent;
  309. border-color:transparent;
  310. }
  311. #u144113_div {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:214px;
  317. height:27px;
  318. background:inherit;
  319. background-color:rgba(255, 255, 255, 0);
  320. border:none;
  321. border-radius:0px;
  322. -moz-box-shadow:none;
  323. -webkit-box-shadow:none;
  324. box-shadow:none;
  325. font-size:14px;
  326. color:#FFFFFF;
  327. }
  328. #u144113 {
  329. border-width:0px;
  330. position:absolute;
  331. left:1089px;
  332. top:10px;
  333. width:214px;
  334. height:27px;
  335. display:flex;
  336. font-size:14px;
  337. color:#FFFFFF;
  338. }
  339. #u144113 .text {
  340. position:absolute;
  341. align-self:flex-start;
  342. padding:2px 2px 2px 2px;
  343. box-sizing:border-box;
  344. width:100%;
  345. }
  346. #u144113_div.disabled {
  347. border-width:0px;
  348. position:absolute;
  349. left:0px;
  350. top:0px;
  351. width:214px;
  352. height:27px;
  353. background:inherit;
  354. background-color:rgba(240, 240, 240, 1);
  355. border:none;
  356. border-radius:0px;
  357. -moz-box-shadow:none;
  358. -webkit-box-shadow:none;
  359. box-shadow:none;
  360. font-size:14px;
  361. color:#FFFFFF;
  362. }
  363. #u144113.disabled {
  364. }
  365. .u144113_input_option {
  366. font-size:14px;
  367. }
  368. #u144114_img {
  369. border-width:0px;
  370. position:absolute;
  371. left:0px;
  372. top:0px;
  373. width:22px;
  374. height:22px;
  375. }
  376. #u144114 {
  377. border-width:0px;
  378. position:absolute;
  379. left:1062px;
  380. top:15px;
  381. width:22px;
  382. height:22px;
  383. display:flex;
  384. }
  385. #u144114 .text {
  386. position:absolute;
  387. align-self:center;
  388. padding:2px 2px 2px 2px;
  389. box-sizing:border-box;
  390. width:100%;
  391. }
  392. #u144114_text {
  393. border-width:0px;
  394. word-wrap:break-word;
  395. text-transform:none;
  396. visibility:hidden;
  397. }
  398. #u144115_div {
  399. border-width:0px;
  400. position:absolute;
  401. left:0px;
  402. top:0px;
  403. width:100px;
  404. height:24px;
  405. background:inherit;
  406. background-color:rgba(242, 242, 242, 0.2);
  407. border:none;
  408. border-radius:25px;
  409. -moz-box-shadow:none;
  410. -webkit-box-shadow:none;
  411. box-shadow:none;
  412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  413. font-weight:400;
  414. font-style:normal;
  415. color:#FFFFFF;
  416. text-align:center;
  417. }
  418. #u144115 {
  419. border-width:0px;
  420. position:absolute;
  421. left:1350px;
  422. top:12px;
  423. width:100px;
  424. height:24px;
  425. display:flex;
  426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  427. font-weight:400;
  428. font-style:normal;
  429. color:#FFFFFF;
  430. text-align:center;
  431. }
  432. #u144115 .text {
  433. position:absolute;
  434. align-self:center;
  435. padding:0px 0px 0px 0px;
  436. box-sizing:border-box;
  437. width:100%;
  438. }
  439. #u144115_text {
  440. border-width:0px;
  441. word-wrap:break-word;
  442. text-transform:none;
  443. }
  444. #u144116_div {
  445. border-width:0px;
  446. position:absolute;
  447. left:0px;
  448. top:0px;
  449. width:120px;
  450. height:24px;
  451. background:inherit;
  452. background-color:rgba(242, 242, 242, 0.2);
  453. border:none;
  454. border-radius:25px;
  455. -moz-box-shadow:none;
  456. -webkit-box-shadow:none;
  457. box-shadow:none;
  458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  459. font-weight:400;
  460. font-style:normal;
  461. color:#FFFFFF;
  462. text-align:center;
  463. }
  464. #u144116 {
  465. border-width:0px;
  466. position:absolute;
  467. left:1460px;
  468. top:12px;
  469. width:120px;
  470. height:24px;
  471. display:flex;
  472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  473. font-weight:400;
  474. font-style:normal;
  475. color:#FFFFFF;
  476. text-align:center;
  477. }
  478. #u144116 .text {
  479. position:absolute;
  480. align-self:center;
  481. padding:0px 0px 0px 0px;
  482. box-sizing:border-box;
  483. width:100%;
  484. }
  485. #u144116_text {
  486. border-width:0px;
  487. word-wrap:break-word;
  488. text-transform:none;
  489. }
  490. #u144117 {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:0px;
  496. height:0px;
  497. }
  498. #u144118_div {
  499. border-width:0px;
  500. position:absolute;
  501. left:0px;
  502. top:0px;
  503. width:33px;
  504. height:22px;
  505. background:inherit;
  506. background-color:rgba(255, 255, 255, 0);
  507. border:none;
  508. border-radius:0px;
  509. -moz-box-shadow:none;
  510. -webkit-box-shadow:none;
  511. box-shadow:none;
  512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  513. font-weight:400;
  514. font-style:normal;
  515. font-size:16px;
  516. color:#FFFFFF;
  517. }
  518. #u144118 {
  519. border-width:0px;
  520. position:absolute;
  521. left:39px;
  522. top:71px;
  523. width:33px;
  524. height:22px;
  525. display:flex;
  526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  527. font-weight:400;
  528. font-style:normal;
  529. font-size:16px;
  530. color:#FFFFFF;
  531. }
  532. #u144118 .text {
  533. position:absolute;
  534. align-self:flex-start;
  535. padding:0px 0px 0px 0px;
  536. box-sizing:border-box;
  537. width:100%;
  538. }
  539. #u144118_text {
  540. border-width:0px;
  541. white-space:nowrap;
  542. text-transform:none;
  543. }
  544. #u144119_img {
  545. border-width:0px;
  546. position:absolute;
  547. left:0px;
  548. top:0px;
  549. width:14px;
  550. height:14px;
  551. }
  552. #u144119 {
  553. border-width:0px;
  554. position:absolute;
  555. left:20px;
  556. top:75px;
  557. width:14px;
  558. height:14px;
  559. display:flex;
  560. }
  561. #u144119 .text {
  562. position:absolute;
  563. align-self:center;
  564. padding:2px 2px 2px 2px;
  565. box-sizing:border-box;
  566. width:100%;
  567. }
  568. #u144119_text {
  569. border-width:0px;
  570. word-wrap:break-word;
  571. text-transform:none;
  572. visibility:hidden;
  573. }
  574. #u144120 {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:0px;
  580. height:0px;
  581. }
  582. #u144121_div {
  583. border-width:0px;
  584. position:absolute;
  585. left:0px;
  586. top:0px;
  587. width:33px;
  588. height:22px;
  589. background:inherit;
  590. background-color:rgba(255, 255, 255, 0);
  591. border:none;
  592. border-radius:0px;
  593. -moz-box-shadow:none;
  594. -webkit-box-shadow:none;
  595. box-shadow:none;
  596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  597. font-weight:400;
  598. font-style:normal;
  599. font-size:16px;
  600. color:#FFFFFF;
  601. }
  602. #u144121 {
  603. border-width:0px;
  604. position:absolute;
  605. left:39px;
  606. top:147px;
  607. width:33px;
  608. height:22px;
  609. display:flex;
  610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  611. font-weight:400;
  612. font-style:normal;
  613. font-size:16px;
  614. color:#FFFFFF;
  615. }
  616. #u144121 .text {
  617. position:absolute;
  618. align-self:flex-start;
  619. padding:0px 0px 0px 0px;
  620. box-sizing:border-box;
  621. width:100%;
  622. }
  623. #u144121_text {
  624. border-width:0px;
  625. white-space:nowrap;
  626. text-transform:none;
  627. }
  628. #u144122_img {
  629. border-width:0px;
  630. position:absolute;
  631. left:0px;
  632. top:0px;
  633. width:14px;
  634. height:14px;
  635. }
  636. #u144122 {
  637. border-width:0px;
  638. position:absolute;
  639. left:20px;
  640. top:151px;
  641. width:14px;
  642. height:14px;
  643. display:flex;
  644. }
  645. #u144122 .text {
  646. position:absolute;
  647. align-self:center;
  648. padding:2px 2px 2px 2px;
  649. box-sizing:border-box;
  650. width:100%;
  651. }
  652. #u144122_text {
  653. border-width:0px;
  654. word-wrap:break-word;
  655. text-transform:none;
  656. visibility:hidden;
  657. }
  658. #u144123 {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:0px;
  664. height:0px;
  665. }
  666. #u144124_div {
  667. border-width:0px;
  668. position:absolute;
  669. left:0px;
  670. top:0px;
  671. width:33px;
  672. height:22px;
  673. background:inherit;
  674. background-color:rgba(255, 255, 255, 0);
  675. border:none;
  676. border-radius:0px;
  677. -moz-box-shadow:none;
  678. -webkit-box-shadow:none;
  679. box-shadow:none;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:16px;
  684. color:#FFFFFF;
  685. }
  686. #u144124 {
  687. border-width:0px;
  688. position:absolute;
  689. left:39px;
  690. top:399px;
  691. width:33px;
  692. height:22px;
  693. display:flex;
  694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  695. font-weight:400;
  696. font-style:normal;
  697. font-size:16px;
  698. color:#FFFFFF;
  699. }
  700. #u144124 .text {
  701. position:absolute;
  702. align-self:flex-start;
  703. padding:0px 0px 0px 0px;
  704. box-sizing:border-box;
  705. width:100%;
  706. }
  707. #u144124_text {
  708. border-width:0px;
  709. white-space:nowrap;
  710. text-transform:none;
  711. }
  712. #u144125_img {
  713. border-width:0px;
  714. position:absolute;
  715. left:0px;
  716. top:0px;
  717. width:14px;
  718. height:14px;
  719. }
  720. #u144125 {
  721. border-width:0px;
  722. position:absolute;
  723. left:20px;
  724. top:403px;
  725. width:14px;
  726. height:14px;
  727. display:flex;
  728. }
  729. #u144125 .text {
  730. position:absolute;
  731. align-self:center;
  732. padding:2px 2px 2px 2px;
  733. box-sizing:border-box;
  734. width:100%;
  735. }
  736. #u144125_text {
  737. border-width:0px;
  738. word-wrap:break-word;
  739. text-transform:none;
  740. visibility:hidden;
  741. }
  742. #u144126 {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:0px;
  748. height:0px;
  749. }
  750. #u144127_div {
  751. border-width:0px;
  752. position:absolute;
  753. left:0px;
  754. top:0px;
  755. width:49px;
  756. height:22px;
  757. background:inherit;
  758. background-color:rgba(255, 255, 255, 0);
  759. border:none;
  760. border-radius:0px;
  761. -moz-box-shadow:none;
  762. -webkit-box-shadow:none;
  763. box-shadow:none;
  764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  765. font-weight:400;
  766. font-style:normal;
  767. font-size:16px;
  768. color:#FFFFFF;
  769. }
  770. #u144127 {
  771. border-width:0px;
  772. position:absolute;
  773. left:39px;
  774. top:109px;
  775. width:49px;
  776. height:22px;
  777. display:flex;
  778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  779. font-weight:400;
  780. font-style:normal;
  781. font-size:16px;
  782. color:#FFFFFF;
  783. }
  784. #u144127 .text {
  785. position:absolute;
  786. align-self:flex-start;
  787. padding:0px 0px 0px 0px;
  788. box-sizing:border-box;
  789. width:100%;
  790. }
  791. #u144127_text {
  792. border-width:0px;
  793. white-space:nowrap;
  794. text-transform:none;
  795. }
  796. #u144128_img {
  797. border-width:0px;
  798. position:absolute;
  799. left:0px;
  800. top:0px;
  801. width:14px;
  802. height:14px;
  803. }
  804. #u144128 {
  805. border-width:0px;
  806. position:absolute;
  807. left:20px;
  808. top:113px;
  809. width:14px;
  810. height:14px;
  811. display:flex;
  812. }
  813. #u144128 .text {
  814. position:absolute;
  815. align-self:center;
  816. padding:2px 2px 2px 2px;
  817. box-sizing:border-box;
  818. width:100%;
  819. }
  820. #u144128_text {
  821. border-width:0px;
  822. word-wrap:break-word;
  823. text-transform:none;
  824. visibility:hidden;
  825. }
  826. #u144129 {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:0px;
  832. height:0px;
  833. }
  834. #u144130_div {
  835. border-width:0px;
  836. position:absolute;
  837. left:0px;
  838. top:0px;
  839. width:33px;
  840. height:22px;
  841. background:inherit;
  842. background-color:rgba(255, 255, 255, 0);
  843. border:none;
  844. border-radius:0px;
  845. -moz-box-shadow:none;
  846. -webkit-box-shadow:none;
  847. box-shadow:none;
  848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  849. font-weight:400;
  850. font-style:normal;
  851. font-size:16px;
  852. color:#FFFFFF;
  853. }
  854. #u144130 {
  855. border-width:0px;
  856. position:absolute;
  857. left:39px;
  858. top:441px;
  859. width:33px;
  860. height:22px;
  861. display:flex;
  862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  863. font-weight:400;
  864. font-style:normal;
  865. font-size:16px;
  866. color:#FFFFFF;
  867. }
  868. #u144130 .text {
  869. position:absolute;
  870. align-self:flex-start;
  871. padding:0px 0px 0px 0px;
  872. box-sizing:border-box;
  873. width:100%;
  874. }
  875. #u144130_text {
  876. border-width:0px;
  877. white-space:nowrap;
  878. text-transform:none;
  879. }
  880. #u144131_img {
  881. border-width:0px;
  882. position:absolute;
  883. left:0px;
  884. top:0px;
  885. width:14px;
  886. height:14px;
  887. }
  888. #u144131 {
  889. border-width:0px;
  890. position:absolute;
  891. left:20px;
  892. top:445px;
  893. width:14px;
  894. height:14px;
  895. display:flex;
  896. }
  897. #u144131 .text {
  898. position:absolute;
  899. align-self:center;
  900. padding:2px 2px 2px 2px;
  901. box-sizing:border-box;
  902. width:100%;
  903. }
  904. #u144131_text {
  905. border-width:0px;
  906. word-wrap:break-word;
  907. text-transform:none;
  908. visibility:hidden;
  909. }
  910. #u144132 {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:0px;
  916. height:0px;
  917. }
  918. #u144133_div {
  919. border-width:0px;
  920. position:absolute;
  921. left:0px;
  922. top:0px;
  923. width:33px;
  924. height:22px;
  925. background:inherit;
  926. background-color:rgba(255, 255, 255, 0);
  927. border:none;
  928. border-radius:0px;
  929. -moz-box-shadow:none;
  930. -webkit-box-shadow:none;
  931. box-shadow:none;
  932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  933. font-weight:400;
  934. font-style:normal;
  935. font-size:16px;
  936. color:#FFFFFF;
  937. }
  938. #u144133 {
  939. border-width:0px;
  940. position:absolute;
  941. left:39px;
  942. top:315px;
  943. width:33px;
  944. height:22px;
  945. display:flex;
  946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  947. font-weight:400;
  948. font-style:normal;
  949. font-size:16px;
  950. color:#FFFFFF;
  951. }
  952. #u144133 .text {
  953. position:absolute;
  954. align-self:flex-start;
  955. padding:0px 0px 0px 0px;
  956. box-sizing:border-box;
  957. width:100%;
  958. }
  959. #u144133_text {
  960. border-width:0px;
  961. white-space:nowrap;
  962. text-transform:none;
  963. }
  964. #u144134_img {
  965. border-width:0px;
  966. position:absolute;
  967. left:0px;
  968. top:0px;
  969. width:14px;
  970. height:14px;
  971. }
  972. #u144134 {
  973. border-width:0px;
  974. position:absolute;
  975. left:20px;
  976. top:319px;
  977. width:14px;
  978. height:14px;
  979. display:flex;
  980. }
  981. #u144134 .text {
  982. position:absolute;
  983. align-self:center;
  984. padding:2px 2px 2px 2px;
  985. box-sizing:border-box;
  986. width:100%;
  987. }
  988. #u144134_text {
  989. border-width:0px;
  990. word-wrap:break-word;
  991. text-transform:none;
  992. visibility:hidden;
  993. }
  994. #u144135 {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:0px;
  1000. height:0px;
  1001. }
  1002. #u144136_div {
  1003. border-width:0px;
  1004. position:absolute;
  1005. left:0px;
  1006. top:0px;
  1007. width:33px;
  1008. height:22px;
  1009. background:inherit;
  1010. background-color:rgba(255, 255, 255, 0);
  1011. border:none;
  1012. border-radius:0px;
  1013. -moz-box-shadow:none;
  1014. -webkit-box-shadow:none;
  1015. box-shadow:none;
  1016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1017. font-weight:400;
  1018. font-style:normal;
  1019. font-size:16px;
  1020. color:#FFFFFF;
  1021. }
  1022. #u144136 {
  1023. border-width:0px;
  1024. position:absolute;
  1025. left:39px;
  1026. top:189px;
  1027. width:33px;
  1028. height:22px;
  1029. display:flex;
  1030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1031. font-weight:400;
  1032. font-style:normal;
  1033. font-size:16px;
  1034. color:#FFFFFF;
  1035. }
  1036. #u144136 .text {
  1037. position:absolute;
  1038. align-self:flex-start;
  1039. padding:0px 0px 0px 0px;
  1040. box-sizing:border-box;
  1041. width:100%;
  1042. }
  1043. #u144136_text {
  1044. border-width:0px;
  1045. white-space:nowrap;
  1046. text-transform:none;
  1047. }
  1048. #u144137_img {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:0px;
  1052. top:0px;
  1053. width:14px;
  1054. height:14px;
  1055. }
  1056. #u144137 {
  1057. border-width:0px;
  1058. position:absolute;
  1059. left:20px;
  1060. top:193px;
  1061. width:14px;
  1062. height:14px;
  1063. display:flex;
  1064. }
  1065. #u144137 .text {
  1066. position:absolute;
  1067. align-self:center;
  1068. padding:2px 2px 2px 2px;
  1069. box-sizing:border-box;
  1070. width:100%;
  1071. }
  1072. #u144137_text {
  1073. border-width:0px;
  1074. word-wrap:break-word;
  1075. text-transform:none;
  1076. visibility:hidden;
  1077. }
  1078. #u144138 {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:0px;
  1084. height:0px;
  1085. }
  1086. #u144139_div {
  1087. border-width:0px;
  1088. position:absolute;
  1089. left:0px;
  1090. top:0px;
  1091. width:33px;
  1092. height:22px;
  1093. background:inherit;
  1094. background-color:rgba(255, 255, 255, 0);
  1095. border:none;
  1096. border-radius:0px;
  1097. -moz-box-shadow:none;
  1098. -webkit-box-shadow:none;
  1099. box-shadow:none;
  1100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1101. font-weight:400;
  1102. font-style:normal;
  1103. font-size:16px;
  1104. color:#FFFFFF;
  1105. }
  1106. #u144139 {
  1107. border-width:0px;
  1108. position:absolute;
  1109. left:39px;
  1110. top:357px;
  1111. width:33px;
  1112. height:22px;
  1113. display:flex;
  1114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1115. font-weight:400;
  1116. font-style:normal;
  1117. font-size:16px;
  1118. color:#FFFFFF;
  1119. }
  1120. #u144139 .text {
  1121. position:absolute;
  1122. align-self:flex-start;
  1123. padding:0px 0px 0px 0px;
  1124. box-sizing:border-box;
  1125. width:100%;
  1126. }
  1127. #u144139_text {
  1128. border-width:0px;
  1129. white-space:nowrap;
  1130. text-transform:none;
  1131. }
  1132. #u144140_img {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:0px;
  1136. top:0px;
  1137. width:14px;
  1138. height:14px;
  1139. }
  1140. #u144140 {
  1141. border-width:0px;
  1142. position:absolute;
  1143. left:20px;
  1144. top:361px;
  1145. width:14px;
  1146. height:14px;
  1147. display:flex;
  1148. }
  1149. #u144140 .text {
  1150. position:absolute;
  1151. align-self:center;
  1152. padding:2px 2px 2px 2px;
  1153. box-sizing:border-box;
  1154. width:100%;
  1155. }
  1156. #u144140_text {
  1157. border-width:0px;
  1158. word-wrap:break-word;
  1159. text-transform:none;
  1160. visibility:hidden;
  1161. }
  1162. #u144141 {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:0px;
  1168. height:0px;
  1169. }
  1170. #u144142_div {
  1171. border-width:0px;
  1172. position:absolute;
  1173. left:0px;
  1174. top:0px;
  1175. width:33px;
  1176. height:22px;
  1177. background:inherit;
  1178. background-color:rgba(255, 255, 255, 0);
  1179. border:none;
  1180. border-radius:0px;
  1181. -moz-box-shadow:none;
  1182. -webkit-box-shadow:none;
  1183. box-shadow:none;
  1184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1185. font-weight:400;
  1186. font-style:normal;
  1187. font-size:16px;
  1188. color:#FFFFFF;
  1189. }
  1190. #u144142 {
  1191. border-width:0px;
  1192. position:absolute;
  1193. left:39px;
  1194. top:483px;
  1195. width:33px;
  1196. height:22px;
  1197. display:flex;
  1198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1199. font-weight:400;
  1200. font-style:normal;
  1201. font-size:16px;
  1202. color:#FFFFFF;
  1203. }
  1204. #u144142 .text {
  1205. position:absolute;
  1206. align-self:flex-start;
  1207. padding:0px 0px 0px 0px;
  1208. box-sizing:border-box;
  1209. width:100%;
  1210. }
  1211. #u144142_text {
  1212. border-width:0px;
  1213. white-space:nowrap;
  1214. text-transform:none;
  1215. }
  1216. #u144143_img {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:0px;
  1220. top:0px;
  1221. width:14px;
  1222. height:14px;
  1223. }
  1224. #u144143 {
  1225. border-width:0px;
  1226. position:absolute;
  1227. left:20px;
  1228. top:487px;
  1229. width:14px;
  1230. height:14px;
  1231. display:flex;
  1232. }
  1233. #u144143 .text {
  1234. position:absolute;
  1235. align-self:center;
  1236. padding:2px 2px 2px 2px;
  1237. box-sizing:border-box;
  1238. width:100%;
  1239. }
  1240. #u144143_text {
  1241. border-width:0px;
  1242. word-wrap:break-word;
  1243. text-transform:none;
  1244. visibility:hidden;
  1245. }
  1246. #u144144 {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:0px;
  1252. height:0px;
  1253. }
  1254. #u144145_div {
  1255. border-width:0px;
  1256. position:absolute;
  1257. left:0px;
  1258. top:0px;
  1259. width:33px;
  1260. height:22px;
  1261. background:inherit;
  1262. background-color:rgba(255, 255, 255, 0);
  1263. border:none;
  1264. border-radius:0px;
  1265. -moz-box-shadow:none;
  1266. -webkit-box-shadow:none;
  1267. box-shadow:none;
  1268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1269. font-weight:400;
  1270. font-style:normal;
  1271. font-size:16px;
  1272. color:#FFFFFF;
  1273. }
  1274. #u144145 {
  1275. border-width:0px;
  1276. position:absolute;
  1277. left:39px;
  1278. top:525px;
  1279. width:33px;
  1280. height:22px;
  1281. display:flex;
  1282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1283. font-weight:400;
  1284. font-style:normal;
  1285. font-size:16px;
  1286. color:#FFFFFF;
  1287. }
  1288. #u144145 .text {
  1289. position:absolute;
  1290. align-self:flex-start;
  1291. padding:0px 0px 0px 0px;
  1292. box-sizing:border-box;
  1293. width:100%;
  1294. }
  1295. #u144145_text {
  1296. border-width:0px;
  1297. white-space:nowrap;
  1298. text-transform:none;
  1299. }
  1300. #u144146_img {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:0px;
  1304. top:0px;
  1305. width:14px;
  1306. height:14px;
  1307. }
  1308. #u144146 {
  1309. border-width:0px;
  1310. position:absolute;
  1311. left:20px;
  1312. top:529px;
  1313. width:14px;
  1314. height:14px;
  1315. display:flex;
  1316. }
  1317. #u144146 .text {
  1318. position:absolute;
  1319. align-self:center;
  1320. padding:2px 2px 2px 2px;
  1321. box-sizing:border-box;
  1322. width:100%;
  1323. }
  1324. #u144146_text {
  1325. border-width:0px;
  1326. word-wrap:break-word;
  1327. text-transform:none;
  1328. visibility:hidden;
  1329. }
  1330. #u144147_div {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:0px;
  1334. top:0px;
  1335. width:29px;
  1336. height:20px;
  1337. background:inherit;
  1338. background-color:rgba(255, 255, 255, 0);
  1339. border:none;
  1340. border-radius:25px;
  1341. -moz-box-shadow:none;
  1342. -webkit-box-shadow:none;
  1343. box-shadow:none;
  1344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1345. font-weight:400;
  1346. font-style:normal;
  1347. color:#FFFFFF;
  1348. }
  1349. #u144147 {
  1350. border-width:0px;
  1351. position:absolute;
  1352. left:52px;
  1353. top:1145px;
  1354. width:29px;
  1355. height:20px;
  1356. display:flex;
  1357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1358. font-weight:400;
  1359. font-style:normal;
  1360. color:#FFFFFF;
  1361. }
  1362. #u144147 .text {
  1363. position:absolute;
  1364. align-self:center;
  1365. padding:0px 0px 0px 0px;
  1366. box-sizing:border-box;
  1367. width:100%;
  1368. }
  1369. #u144147_text {
  1370. border-width:0px;
  1371. white-space:nowrap;
  1372. text-transform:none;
  1373. }
  1374. #u144148_img {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:0px;
  1378. top:0px;
  1379. width:22px;
  1380. height:22px;
  1381. }
  1382. #u144148 {
  1383. border-width:0px;
  1384. position:absolute;
  1385. left:20px;
  1386. top:1144px;
  1387. width:22px;
  1388. height:22px;
  1389. display:flex;
  1390. }
  1391. #u144148 .text {
  1392. position:absolute;
  1393. align-self:center;
  1394. padding:2px 2px 2px 2px;
  1395. box-sizing:border-box;
  1396. width:100%;
  1397. }
  1398. #u144148_text {
  1399. border-width:0px;
  1400. word-wrap:break-word;
  1401. text-transform:none;
  1402. visibility:hidden;
  1403. }
  1404. #u144149_div {
  1405. border-width:0px;
  1406. position:absolute;
  1407. left:0px;
  1408. top:0px;
  1409. width:29px;
  1410. height:20px;
  1411. background:inherit;
  1412. background-color:rgba(255, 255, 255, 0);
  1413. border:none;
  1414. border-radius:25px;
  1415. -moz-box-shadow:none;
  1416. -webkit-box-shadow:none;
  1417. box-shadow:none;
  1418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1419. font-weight:400;
  1420. font-style:normal;
  1421. color:#FFFFFF;
  1422. }
  1423. #u144149 {
  1424. border-width:0px;
  1425. position:absolute;
  1426. left:52px;
  1427. top:1187px;
  1428. width:29px;
  1429. height:20px;
  1430. display:flex;
  1431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1432. font-weight:400;
  1433. font-style:normal;
  1434. color:#FFFFFF;
  1435. }
  1436. #u144149 .text {
  1437. position:absolute;
  1438. align-self:center;
  1439. padding:0px 0px 0px 0px;
  1440. box-sizing:border-box;
  1441. width:100%;
  1442. }
  1443. #u144149_text {
  1444. border-width:0px;
  1445. white-space:nowrap;
  1446. text-transform:none;
  1447. }
  1448. #u144150_img {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:0px;
  1452. top:0px;
  1453. width:22px;
  1454. height:22px;
  1455. }
  1456. #u144150 {
  1457. border-width:0px;
  1458. position:absolute;
  1459. left:20px;
  1460. top:1186px;
  1461. width:22px;
  1462. height:22px;
  1463. display:flex;
  1464. }
  1465. #u144150 .text {
  1466. position:absolute;
  1467. align-self:center;
  1468. padding:2px 2px 2px 2px;
  1469. box-sizing:border-box;
  1470. width:100%;
  1471. }
  1472. #u144150_text {
  1473. border-width:0px;
  1474. word-wrap:break-word;
  1475. text-transform:none;
  1476. visibility:hidden;
  1477. }
  1478. #u144151 {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:0px;
  1484. height:0px;
  1485. }
  1486. #u144152_div {
  1487. border-width:0px;
  1488. position:absolute;
  1489. left:0px;
  1490. top:0px;
  1491. width:33px;
  1492. height:22px;
  1493. background:inherit;
  1494. background-color:rgba(255, 255, 255, 0);
  1495. border:none;
  1496. border-radius:0px;
  1497. -moz-box-shadow:none;
  1498. -webkit-box-shadow:none;
  1499. box-shadow:none;
  1500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1501. font-weight:400;
  1502. font-style:normal;
  1503. font-size:16px;
  1504. color:#FFFFFF;
  1505. }
  1506. #u144152 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:39px;
  1510. top:231px;
  1511. width:33px;
  1512. height:22px;
  1513. display:flex;
  1514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1515. font-weight:400;
  1516. font-style:normal;
  1517. font-size:16px;
  1518. color:#FFFFFF;
  1519. }
  1520. #u144152 .text {
  1521. position:absolute;
  1522. align-self:flex-start;
  1523. padding:0px 0px 0px 0px;
  1524. box-sizing:border-box;
  1525. width:100%;
  1526. }
  1527. #u144152_text {
  1528. border-width:0px;
  1529. white-space:nowrap;
  1530. text-transform:none;
  1531. }
  1532. #u144153_img {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:0px;
  1536. top:0px;
  1537. width:14px;
  1538. height:14px;
  1539. }
  1540. #u144153 {
  1541. border-width:0px;
  1542. position:absolute;
  1543. left:20px;
  1544. top:235px;
  1545. width:14px;
  1546. height:14px;
  1547. display:flex;
  1548. }
  1549. #u144153 .text {
  1550. position:absolute;
  1551. align-self:center;
  1552. padding:2px 2px 2px 2px;
  1553. box-sizing:border-box;
  1554. width:100%;
  1555. }
  1556. #u144153_text {
  1557. border-width:0px;
  1558. word-wrap:break-word;
  1559. text-transform:none;
  1560. visibility:hidden;
  1561. }
  1562. #u144154 {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:0px;
  1568. height:0px;
  1569. }
  1570. #u144155_div {
  1571. border-width:0px;
  1572. position:absolute;
  1573. left:0px;
  1574. top:0px;
  1575. width:33px;
  1576. height:22px;
  1577. background:inherit;
  1578. background-color:rgba(255, 255, 255, 0);
  1579. border:none;
  1580. border-radius:0px;
  1581. -moz-box-shadow:none;
  1582. -webkit-box-shadow:none;
  1583. box-shadow:none;
  1584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1585. font-weight:400;
  1586. font-style:normal;
  1587. font-size:16px;
  1588. color:#FFFFFF;
  1589. }
  1590. #u144155 {
  1591. border-width:0px;
  1592. position:absolute;
  1593. left:39px;
  1594. top:273px;
  1595. width:33px;
  1596. height:22px;
  1597. display:flex;
  1598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1599. font-weight:400;
  1600. font-style:normal;
  1601. font-size:16px;
  1602. color:#FFFFFF;
  1603. }
  1604. #u144155 .text {
  1605. position:absolute;
  1606. align-self:flex-start;
  1607. padding:0px 0px 0px 0px;
  1608. box-sizing:border-box;
  1609. width:100%;
  1610. }
  1611. #u144155_text {
  1612. border-width:0px;
  1613. white-space:nowrap;
  1614. text-transform:none;
  1615. }
  1616. #u144156_img {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:0px;
  1620. top:0px;
  1621. width:14px;
  1622. height:14px;
  1623. }
  1624. #u144156 {
  1625. border-width:0px;
  1626. position:absolute;
  1627. left:20px;
  1628. top:277px;
  1629. width:14px;
  1630. height:14px;
  1631. display:flex;
  1632. }
  1633. #u144156 .text {
  1634. position:absolute;
  1635. align-self:center;
  1636. padding:2px 2px 2px 2px;
  1637. box-sizing:border-box;
  1638. width:100%;
  1639. }
  1640. #u144156_text {
  1641. border-width:0px;
  1642. word-wrap:break-word;
  1643. text-transform:none;
  1644. visibility:hidden;
  1645. }
  1646. #u144157 {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:0px;
  1652. height:0px;
  1653. }
  1654. #u144158_div {
  1655. border-width:0px;
  1656. position:absolute;
  1657. left:0px;
  1658. top:0px;
  1659. width:200px;
  1660. height:1187px;
  1661. background:inherit;
  1662. background-color:rgba(255, 255, 255, 1);
  1663. border:none;
  1664. border-radius:0px;
  1665. -moz-box-shadow:none;
  1666. -webkit-box-shadow:none;
  1667. box-shadow:none;
  1668. }
  1669. #u144158 {
  1670. border-width:0px;
  1671. position:absolute;
  1672. left:120px;
  1673. top:50px;
  1674. width:200px;
  1675. height:1187px;
  1676. display:flex;
  1677. }
  1678. #u144158 .text {
  1679. position:absolute;
  1680. align-self:center;
  1681. padding:2px 2px 2px 2px;
  1682. box-sizing:border-box;
  1683. width:100%;
  1684. }
  1685. #u144158_text {
  1686. border-width:0px;
  1687. word-wrap:break-word;
  1688. text-transform:none;
  1689. visibility:hidden;
  1690. }
  1691. #u144159_div {
  1692. border-width:0px;
  1693. position:absolute;
  1694. left:0px;
  1695. top:0px;
  1696. width:200px;
  1697. height:60px;
  1698. background:inherit;
  1699. background-color:rgba(224, 231, 247, 1);
  1700. border:none;
  1701. border-radius:0px;
  1702. -moz-box-shadow:none;
  1703. -webkit-box-shadow:none;
  1704. box-shadow:none;
  1705. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1706. font-weight:500;
  1707. font-style:normal;
  1708. font-size:18px;
  1709. }
  1710. #u144159 {
  1711. border-width:0px;
  1712. position:absolute;
  1713. left:120px;
  1714. top:50px;
  1715. width:200px;
  1716. height:60px;
  1717. display:flex;
  1718. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1719. font-weight:500;
  1720. font-style:normal;
  1721. font-size:18px;
  1722. }
  1723. #u144159 .text {
  1724. position:absolute;
  1725. align-self:center;
  1726. padding:0px 0px 0px 20px;
  1727. box-sizing:border-box;
  1728. width:100%;
  1729. }
  1730. #u144159_text {
  1731. border-width:0px;
  1732. word-wrap:break-word;
  1733. text-transform:none;
  1734. }
  1735. #u144160_div {
  1736. border-width:0px;
  1737. position:absolute;
  1738. left:0px;
  1739. top:0px;
  1740. width:97px;
  1741. height:22px;
  1742. background:inherit;
  1743. background-color:rgba(255, 255, 255, 0);
  1744. border:none;
  1745. border-radius:0px;
  1746. -moz-box-shadow:none;
  1747. -webkit-box-shadow:none;
  1748. box-shadow:none;
  1749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1750. font-weight:400;
  1751. font-style:normal;
  1752. font-size:16px;
  1753. }
  1754. #u144160 {
  1755. border-width:0px;
  1756. position:absolute;
  1757. left:147px;
  1758. top:167px;
  1759. width:97px;
  1760. height:22px;
  1761. display:flex;
  1762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1763. font-weight:400;
  1764. font-style:normal;
  1765. font-size:16px;
  1766. }
  1767. #u144160 .text {
  1768. position:absolute;
  1769. align-self:flex-start;
  1770. padding:0px 0px 0px 0px;
  1771. box-sizing:border-box;
  1772. width:100%;
  1773. }
  1774. #u144160_text {
  1775. border-width:0px;
  1776. word-wrap:break-word;
  1777. text-transform:none;
  1778. }
  1779. #u144161_img {
  1780. border-width:0px;
  1781. position:absolute;
  1782. left:0px;
  1783. top:0px;
  1784. width:201px;
  1785. height:2px;
  1786. }
  1787. #u144161 {
  1788. border-width:0px;
  1789. position:absolute;
  1790. left:120px;
  1791. top:255px;
  1792. width:200px;
  1793. height:1px;
  1794. display:flex;
  1795. }
  1796. #u144161 .text {
  1797. position:absolute;
  1798. align-self:center;
  1799. padding:2px 2px 2px 2px;
  1800. box-sizing:border-box;
  1801. width:100%;
  1802. }
  1803. #u144161_text {
  1804. border-width:0px;
  1805. word-wrap:break-word;
  1806. text-transform:none;
  1807. visibility:hidden;
  1808. }
  1809. #u144162_div {
  1810. border-width:0px;
  1811. position:absolute;
  1812. left:0px;
  1813. top:0px;
  1814. width:97px;
  1815. height:22px;
  1816. background:inherit;
  1817. background-color:rgba(255, 255, 255, 0);
  1818. border:none;
  1819. border-radius:0px;
  1820. -moz-box-shadow:none;
  1821. -webkit-box-shadow:none;
  1822. box-shadow:none;
  1823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1824. font-weight:400;
  1825. font-style:normal;
  1826. font-size:16px;
  1827. }
  1828. #u144162 {
  1829. border-width:0px;
  1830. position:absolute;
  1831. left:147px;
  1832. top:208px;
  1833. width:97px;
  1834. height:22px;
  1835. display:flex;
  1836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1837. font-weight:400;
  1838. font-style:normal;
  1839. font-size:16px;
  1840. }
  1841. #u144162 .text {
  1842. position:absolute;
  1843. align-self:flex-start;
  1844. padding:0px 0px 0px 0px;
  1845. box-sizing:border-box;
  1846. width:100%;
  1847. }
  1848. #u144162_text {
  1849. border-width:0px;
  1850. white-space:nowrap;
  1851. text-transform:none;
  1852. }
  1853. #u144163_div {
  1854. border-width:0px;
  1855. position:absolute;
  1856. left:0px;
  1857. top:0px;
  1858. width:65px;
  1859. height:22px;
  1860. background:inherit;
  1861. background-color:rgba(255, 255, 255, 0);
  1862. border:none;
  1863. border-radius:0px;
  1864. -moz-box-shadow:none;
  1865. -webkit-box-shadow:none;
  1866. box-shadow:none;
  1867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1868. font-weight:400;
  1869. font-style:normal;
  1870. font-size:16px;
  1871. }
  1872. #u144163 {
  1873. border-width:0px;
  1874. position:absolute;
  1875. left:147px;
  1876. top:312px;
  1877. width:65px;
  1878. height:22px;
  1879. display:flex;
  1880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1881. font-weight:400;
  1882. font-style:normal;
  1883. font-size:16px;
  1884. }
  1885. #u144163 .text {
  1886. position:absolute;
  1887. align-self:flex-start;
  1888. padding:0px 0px 0px 0px;
  1889. box-sizing:border-box;
  1890. width:100%;
  1891. }
  1892. #u144163_text {
  1893. border-width:0px;
  1894. white-space:nowrap;
  1895. text-transform:none;
  1896. }
  1897. #u144164_div {
  1898. border-width:0px;
  1899. position:absolute;
  1900. left:0px;
  1901. top:0px;
  1902. width:49px;
  1903. height:17px;
  1904. background:inherit;
  1905. background-color:rgba(255, 255, 255, 0);
  1906. border:none;
  1907. border-radius:0px;
  1908. -moz-box-shadow:none;
  1909. -webkit-box-shadow:none;
  1910. box-shadow:none;
  1911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1912. font-weight:400;
  1913. font-style:normal;
  1914. font-size:12px;
  1915. color:#AAAAAA;
  1916. }
  1917. #u144164 {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:147px;
  1921. top:275px;
  1922. width:49px;
  1923. height:17px;
  1924. display:flex;
  1925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1926. font-weight:400;
  1927. font-style:normal;
  1928. font-size:12px;
  1929. color:#AAAAAA;
  1930. }
  1931. #u144164 .text {
  1932. position:absolute;
  1933. align-self:flex-start;
  1934. padding:0px 0px 0px 0px;
  1935. box-sizing:border-box;
  1936. width:100%;
  1937. }
  1938. #u144164_text {
  1939. border-width:0px;
  1940. white-space:nowrap;
  1941. text-transform:none;
  1942. }
  1943. #u144165_div {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:0px;
  1947. top:0px;
  1948. width:49px;
  1949. height:17px;
  1950. background:inherit;
  1951. background-color:rgba(255, 255, 255, 0);
  1952. border:none;
  1953. border-radius:0px;
  1954. -moz-box-shadow:none;
  1955. -webkit-box-shadow:none;
  1956. box-shadow:none;
  1957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1958. font-weight:400;
  1959. font-style:normal;
  1960. font-size:12px;
  1961. color:#AAAAAA;
  1962. }
  1963. #u144165 {
  1964. border-width:0px;
  1965. position:absolute;
  1966. left:147px;
  1967. top:130px;
  1968. width:49px;
  1969. height:17px;
  1970. display:flex;
  1971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1972. font-weight:400;
  1973. font-style:normal;
  1974. font-size:12px;
  1975. color:#AAAAAA;
  1976. }
  1977. #u144165 .text {
  1978. position:absolute;
  1979. align-self:flex-start;
  1980. padding:0px 0px 0px 0px;
  1981. box-sizing:border-box;
  1982. width:100%;
  1983. }
  1984. #u144165_text {
  1985. border-width:0px;
  1986. white-space:nowrap;
  1987. text-transform:none;
  1988. }
  1989. #u144166_img {
  1990. border-width:0px;
  1991. position:absolute;
  1992. left:0px;
  1993. top:0px;
  1994. width:201px;
  1995. height:2px;
  1996. }
  1997. #u144166 {
  1998. border-width:0px;
  1999. position:absolute;
  2000. left:120px;
  2001. top:1017px;
  2002. width:200px;
  2003. height:1px;
  2004. display:flex;
  2005. }
  2006. #u144166 .text {
  2007. position:absolute;
  2008. align-self:center;
  2009. padding:2px 2px 2px 2px;
  2010. box-sizing:border-box;
  2011. width:100%;
  2012. }
  2013. #u144166_text {
  2014. border-width:0px;
  2015. word-wrap:break-word;
  2016. text-transform:none;
  2017. visibility:hidden;
  2018. }
  2019. #u144167_div {
  2020. border-width:0px;
  2021. position:absolute;
  2022. left:0px;
  2023. top:0px;
  2024. width:65px;
  2025. height:22px;
  2026. background:inherit;
  2027. background-color:rgba(255, 255, 255, 0);
  2028. border:none;
  2029. border-radius:0px;
  2030. -moz-box-shadow:none;
  2031. -webkit-box-shadow:none;
  2032. box-shadow:none;
  2033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2034. font-weight:400;
  2035. font-style:normal;
  2036. font-size:16px;
  2037. }
  2038. #u144167 {
  2039. border-width:0px;
  2040. position:absolute;
  2041. left:147px;
  2042. top:1074px;
  2043. width:65px;
  2044. height:22px;
  2045. display:flex;
  2046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2047. font-weight:400;
  2048. font-style:normal;
  2049. font-size:16px;
  2050. }
  2051. #u144167 .text {
  2052. position:absolute;
  2053. align-self:flex-start;
  2054. padding:0px 0px 0px 0px;
  2055. box-sizing:border-box;
  2056. width:100%;
  2057. }
  2058. #u144167_text {
  2059. border-width:0px;
  2060. white-space:nowrap;
  2061. text-transform:none;
  2062. }
  2063. #u144168_div {
  2064. border-width:0px;
  2065. position:absolute;
  2066. left:0px;
  2067. top:0px;
  2068. width:49px;
  2069. height:17px;
  2070. background:inherit;
  2071. background-color:rgba(255, 255, 255, 0);
  2072. border:none;
  2073. border-radius:0px;
  2074. -moz-box-shadow:none;
  2075. -webkit-box-shadow:none;
  2076. box-shadow:none;
  2077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2078. font-weight:400;
  2079. font-style:normal;
  2080. font-size:12px;
  2081. color:#AAAAAA;
  2082. }
  2083. #u144168 {
  2084. border-width:0px;
  2085. position:absolute;
  2086. left:147px;
  2087. top:1037px;
  2088. width:49px;
  2089. height:17px;
  2090. display:flex;
  2091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2092. font-weight:400;
  2093. font-style:normal;
  2094. font-size:12px;
  2095. color:#AAAAAA;
  2096. }
  2097. #u144168 .text {
  2098. position:absolute;
  2099. align-self:flex-start;
  2100. padding:0px 0px 0px 0px;
  2101. box-sizing:border-box;
  2102. width:100%;
  2103. }
  2104. #u144168_text {
  2105. border-width:0px;
  2106. white-space:nowrap;
  2107. text-transform:none;
  2108. }
  2109. #u144169_img {
  2110. border-width:0px;
  2111. position:absolute;
  2112. left:0px;
  2113. top:0px;
  2114. width:201px;
  2115. height:2px;
  2116. }
  2117. #u144169 {
  2118. border-width:0px;
  2119. position:absolute;
  2120. left:120px;
  2121. top:481px;
  2122. width:200px;
  2123. height:1px;
  2124. display:flex;
  2125. }
  2126. #u144169 .text {
  2127. position:absolute;
  2128. align-self:center;
  2129. padding:2px 2px 2px 2px;
  2130. box-sizing:border-box;
  2131. width:100%;
  2132. }
  2133. #u144169_text {
  2134. border-width:0px;
  2135. word-wrap:break-word;
  2136. text-transform:none;
  2137. visibility:hidden;
  2138. }
  2139. #u144170_div {
  2140. border-width:0px;
  2141. position:absolute;
  2142. left:0px;
  2143. top:0px;
  2144. width:65px;
  2145. height:22px;
  2146. background:inherit;
  2147. background-color:rgba(255, 255, 255, 0);
  2148. border:none;
  2149. border-radius:0px;
  2150. -moz-box-shadow:none;
  2151. -webkit-box-shadow:none;
  2152. box-shadow:none;
  2153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2154. font-weight:400;
  2155. font-style:normal;
  2156. font-size:16px;
  2157. }
  2158. #u144170 {
  2159. border-width:0px;
  2160. position:absolute;
  2161. left:147px;
  2162. top:538px;
  2163. width:65px;
  2164. height:22px;
  2165. display:flex;
  2166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2167. font-weight:400;
  2168. font-style:normal;
  2169. font-size:16px;
  2170. }
  2171. #u144170 .text {
  2172. position:absolute;
  2173. align-self:flex-start;
  2174. padding:0px 0px 0px 0px;
  2175. box-sizing:border-box;
  2176. width:100%;
  2177. }
  2178. #u144170_text {
  2179. border-width:0px;
  2180. white-space:nowrap;
  2181. text-transform:none;
  2182. }
  2183. #u144171_div {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:0px;
  2187. top:0px;
  2188. width:49px;
  2189. height:17px;
  2190. background:inherit;
  2191. background-color:rgba(255, 255, 255, 0);
  2192. border:none;
  2193. border-radius:0px;
  2194. -moz-box-shadow:none;
  2195. -webkit-box-shadow:none;
  2196. box-shadow:none;
  2197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2198. font-weight:400;
  2199. font-style:normal;
  2200. font-size:12px;
  2201. color:#AAAAAA;
  2202. }
  2203. #u144171 {
  2204. border-width:0px;
  2205. position:absolute;
  2206. left:147px;
  2207. top:501px;
  2208. width:49px;
  2209. height:17px;
  2210. display:flex;
  2211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2212. font-weight:400;
  2213. font-style:normal;
  2214. font-size:12px;
  2215. color:#AAAAAA;
  2216. }
  2217. #u144171 .text {
  2218. position:absolute;
  2219. align-self:flex-start;
  2220. padding:0px 0px 0px 0px;
  2221. box-sizing:border-box;
  2222. width:100%;
  2223. }
  2224. #u144171_text {
  2225. border-width:0px;
  2226. white-space:nowrap;
  2227. text-transform:none;
  2228. }
  2229. #u144172_div {
  2230. border-width:0px;
  2231. position:absolute;
  2232. left:0px;
  2233. top:0px;
  2234. width:97px;
  2235. height:22px;
  2236. background:inherit;
  2237. background-color:rgba(255, 255, 255, 0);
  2238. border:none;
  2239. border-radius:0px;
  2240. -moz-box-shadow:none;
  2241. -webkit-box-shadow:none;
  2242. box-shadow:none;
  2243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2244. font-weight:400;
  2245. font-style:normal;
  2246. font-size:16px;
  2247. }
  2248. #u144172 {
  2249. border-width:0px;
  2250. position:absolute;
  2251. left:147px;
  2252. top:579px;
  2253. width:97px;
  2254. height:22px;
  2255. display:flex;
  2256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2257. font-weight:400;
  2258. font-style:normal;
  2259. font-size:16px;
  2260. }
  2261. #u144172 .text {
  2262. position:absolute;
  2263. align-self:flex-start;
  2264. padding:0px 0px 0px 0px;
  2265. box-sizing:border-box;
  2266. width:100%;
  2267. }
  2268. #u144172_text {
  2269. border-width:0px;
  2270. word-wrap:break-word;
  2271. text-transform:none;
  2272. }
  2273. #u144173_div {
  2274. border-width:0px;
  2275. position:absolute;
  2276. left:0px;
  2277. top:0px;
  2278. width:65px;
  2279. height:22px;
  2280. background:inherit;
  2281. background-color:rgba(255, 255, 255, 0);
  2282. border:none;
  2283. border-radius:0px;
  2284. -moz-box-shadow:none;
  2285. -webkit-box-shadow:none;
  2286. box-shadow:none;
  2287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2288. font-weight:400;
  2289. font-style:normal;
  2290. font-size:16px;
  2291. }
  2292. #u144173 {
  2293. border-width:0px;
  2294. position:absolute;
  2295. left:147px;
  2296. top:354px;
  2297. width:65px;
  2298. height:22px;
  2299. display:flex;
  2300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2301. font-weight:400;
  2302. font-style:normal;
  2303. font-size:16px;
  2304. }
  2305. #u144173 .text {
  2306. position:absolute;
  2307. align-self:flex-start;
  2308. padding:0px 0px 0px 0px;
  2309. box-sizing:border-box;
  2310. width:100%;
  2311. }
  2312. #u144173_text {
  2313. border-width:0px;
  2314. white-space:nowrap;
  2315. text-transform:none;
  2316. }
  2317. #u144174_div {
  2318. border-width:0px;
  2319. position:absolute;
  2320. left:0px;
  2321. top:0px;
  2322. width:97px;
  2323. height:22px;
  2324. background:inherit;
  2325. background-color:rgba(255, 255, 255, 0);
  2326. border:none;
  2327. border-radius:0px;
  2328. -moz-box-shadow:none;
  2329. -webkit-box-shadow:none;
  2330. box-shadow:none;
  2331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2332. font-weight:400;
  2333. font-style:normal;
  2334. font-size:16px;
  2335. }
  2336. #u144174 {
  2337. border-width:0px;
  2338. position:absolute;
  2339. left:147px;
  2340. top:621px;
  2341. width:97px;
  2342. height:22px;
  2343. display:flex;
  2344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2345. font-weight:400;
  2346. font-style:normal;
  2347. font-size:16px;
  2348. }
  2349. #u144174 .text {
  2350. position:absolute;
  2351. align-self:flex-start;
  2352. padding:0px 0px 0px 0px;
  2353. box-sizing:border-box;
  2354. width:100%;
  2355. }
  2356. #u144174_text {
  2357. border-width:0px;
  2358. word-wrap:break-word;
  2359. text-transform:none;
  2360. }
  2361. #u144175_div {
  2362. border-width:0px;
  2363. position:absolute;
  2364. left:0px;
  2365. top:0px;
  2366. width:97px;
  2367. height:22px;
  2368. background:inherit;
  2369. background-color:rgba(255, 255, 255, 0);
  2370. border:none;
  2371. border-radius:0px;
  2372. -moz-box-shadow:none;
  2373. -webkit-box-shadow:none;
  2374. box-shadow:none;
  2375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2376. font-weight:400;
  2377. font-style:normal;
  2378. font-size:16px;
  2379. }
  2380. #u144175 {
  2381. border-width:0px;
  2382. position:absolute;
  2383. left:147px;
  2384. top:663px;
  2385. width:97px;
  2386. height:22px;
  2387. display:flex;
  2388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2389. font-weight:400;
  2390. font-style:normal;
  2391. font-size:16px;
  2392. }
  2393. #u144175 .text {
  2394. position:absolute;
  2395. align-self:flex-start;
  2396. padding:0px 0px 0px 0px;
  2397. box-sizing:border-box;
  2398. width:100%;
  2399. }
  2400. #u144175_text {
  2401. border-width:0px;
  2402. word-wrap:break-word;
  2403. text-transform:none;
  2404. }
  2405. #u144176_img {
  2406. border-width:0px;
  2407. position:absolute;
  2408. left:0px;
  2409. top:0px;
  2410. width:201px;
  2411. height:2px;
  2412. }
  2413. #u144176 {
  2414. border-width:0px;
  2415. position:absolute;
  2416. left:120px;
  2417. top:708px;
  2418. width:200px;
  2419. height:1px;
  2420. display:flex;
  2421. }
  2422. #u144176 .text {
  2423. position:absolute;
  2424. align-self:center;
  2425. padding:2px 2px 2px 2px;
  2426. box-sizing:border-box;
  2427. width:100%;
  2428. }
  2429. #u144176_text {
  2430. border-width:0px;
  2431. word-wrap:break-word;
  2432. text-transform:none;
  2433. visibility:hidden;
  2434. }
  2435. #u144177_div {
  2436. border-width:0px;
  2437. position:absolute;
  2438. left:0px;
  2439. top:0px;
  2440. width:65px;
  2441. height:22px;
  2442. background:inherit;
  2443. background-color:rgba(255, 255, 255, 0);
  2444. border:none;
  2445. border-radius:0px;
  2446. -moz-box-shadow:none;
  2447. -webkit-box-shadow:none;
  2448. box-shadow:none;
  2449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2450. font-weight:400;
  2451. font-style:normal;
  2452. font-size:16px;
  2453. }
  2454. #u144177 {
  2455. border-width:0px;
  2456. position:absolute;
  2457. left:147px;
  2458. top:765px;
  2459. width:65px;
  2460. height:22px;
  2461. display:flex;
  2462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2463. font-weight:400;
  2464. font-style:normal;
  2465. font-size:16px;
  2466. }
  2467. #u144177 .text {
  2468. position:absolute;
  2469. align-self:flex-start;
  2470. padding:0px 0px 0px 0px;
  2471. box-sizing:border-box;
  2472. width:100%;
  2473. }
  2474. #u144177_text {
  2475. border-width:0px;
  2476. white-space:nowrap;
  2477. text-transform:none;
  2478. }
  2479. #u144178_div {
  2480. border-width:0px;
  2481. position:absolute;
  2482. left:0px;
  2483. top:0px;
  2484. width:49px;
  2485. height:17px;
  2486. background:inherit;
  2487. background-color:rgba(255, 255, 255, 0);
  2488. border:none;
  2489. border-radius:0px;
  2490. -moz-box-shadow:none;
  2491. -webkit-box-shadow:none;
  2492. box-shadow:none;
  2493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2494. font-weight:400;
  2495. font-style:normal;
  2496. font-size:12px;
  2497. color:#AAAAAA;
  2498. }
  2499. #u144178 {
  2500. border-width:0px;
  2501. position:absolute;
  2502. left:147px;
  2503. top:728px;
  2504. width:49px;
  2505. height:17px;
  2506. display:flex;
  2507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2508. font-weight:400;
  2509. font-style:normal;
  2510. font-size:12px;
  2511. color:#AAAAAA;
  2512. }
  2513. #u144178 .text {
  2514. position:absolute;
  2515. align-self:flex-start;
  2516. padding:0px 0px 0px 0px;
  2517. box-sizing:border-box;
  2518. width:100%;
  2519. }
  2520. #u144178_text {
  2521. border-width:0px;
  2522. white-space:nowrap;
  2523. text-transform:none;
  2524. }
  2525. #u144179_div {
  2526. border-width:0px;
  2527. position:absolute;
  2528. left:0px;
  2529. top:0px;
  2530. width:97px;
  2531. height:22px;
  2532. background:inherit;
  2533. background-color:rgba(255, 255, 255, 0);
  2534. border:none;
  2535. border-radius:0px;
  2536. -moz-box-shadow:none;
  2537. -webkit-box-shadow:none;
  2538. box-shadow:none;
  2539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2540. font-weight:400;
  2541. font-style:normal;
  2542. font-size:16px;
  2543. }
  2544. #u144179 {
  2545. border-width:0px;
  2546. position:absolute;
  2547. left:147px;
  2548. top:806px;
  2549. width:97px;
  2550. height:22px;
  2551. display:flex;
  2552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2553. font-weight:400;
  2554. font-style:normal;
  2555. font-size:16px;
  2556. }
  2557. #u144179 .text {
  2558. position:absolute;
  2559. align-self:flex-start;
  2560. padding:0px 0px 0px 0px;
  2561. box-sizing:border-box;
  2562. width:100%;
  2563. }
  2564. #u144179_text {
  2565. border-width:0px;
  2566. word-wrap:break-word;
  2567. text-transform:none;
  2568. }
  2569. #u144180_div {
  2570. border-width:0px;
  2571. position:absolute;
  2572. left:0px;
  2573. top:0px;
  2574. width:65px;
  2575. height:22px;
  2576. background:inherit;
  2577. background-color:rgba(255, 255, 255, 0);
  2578. border:none;
  2579. border-radius:0px;
  2580. -moz-box-shadow:none;
  2581. -webkit-box-shadow:none;
  2582. box-shadow:none;
  2583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2584. font-weight:400;
  2585. font-style:normal;
  2586. font-size:16px;
  2587. }
  2588. #u144180 {
  2589. border-width:0px;
  2590. position:absolute;
  2591. left:147px;
  2592. top:888px;
  2593. width:65px;
  2594. height:22px;
  2595. display:flex;
  2596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2597. font-weight:400;
  2598. font-style:normal;
  2599. font-size:16px;
  2600. }
  2601. #u144180 .text {
  2602. position:absolute;
  2603. align-self:flex-start;
  2604. padding:0px 0px 0px 0px;
  2605. box-sizing:border-box;
  2606. width:100%;
  2607. }
  2608. #u144180_text {
  2609. border-width:0px;
  2610. white-space:nowrap;
  2611. text-transform:none;
  2612. }
  2613. #u144181_div {
  2614. border-width:0px;
  2615. position:absolute;
  2616. left:0px;
  2617. top:0px;
  2618. width:65px;
  2619. height:22px;
  2620. background:inherit;
  2621. background-color:rgba(255, 255, 255, 0);
  2622. border:none;
  2623. border-radius:0px;
  2624. -moz-box-shadow:none;
  2625. -webkit-box-shadow:none;
  2626. box-shadow:none;
  2627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2628. font-weight:400;
  2629. font-style:normal;
  2630. font-size:16px;
  2631. }
  2632. #u144181 {
  2633. border-width:0px;
  2634. position:absolute;
  2635. left:147px;
  2636. top:972px;
  2637. width:65px;
  2638. height:22px;
  2639. display:flex;
  2640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2641. font-weight:400;
  2642. font-style:normal;
  2643. font-size:16px;
  2644. }
  2645. #u144181 .text {
  2646. position:absolute;
  2647. align-self:flex-start;
  2648. padding:0px 0px 0px 0px;
  2649. box-sizing:border-box;
  2650. width:100%;
  2651. }
  2652. #u144181_text {
  2653. border-width:0px;
  2654. white-space:nowrap;
  2655. text-transform:none;
  2656. }
  2657. #u144182_div {
  2658. border-width:0px;
  2659. position:absolute;
  2660. left:0px;
  2661. top:0px;
  2662. width:65px;
  2663. height:22px;
  2664. background:inherit;
  2665. background-color:rgba(255, 255, 255, 0);
  2666. border:none;
  2667. border-radius:0px;
  2668. -moz-box-shadow:none;
  2669. -webkit-box-shadow:none;
  2670. box-shadow:none;
  2671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2672. font-weight:400;
  2673. font-style:normal;
  2674. font-size:16px;
  2675. }
  2676. #u144182 {
  2677. border-width:0px;
  2678. position:absolute;
  2679. left:147px;
  2680. top:930px;
  2681. width:65px;
  2682. height:22px;
  2683. display:flex;
  2684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2685. font-weight:400;
  2686. font-style:normal;
  2687. font-size:16px;
  2688. }
  2689. #u144182 .text {
  2690. position:absolute;
  2691. align-self:flex-start;
  2692. padding:0px 0px 0px 0px;
  2693. box-sizing:border-box;
  2694. width:100%;
  2695. }
  2696. #u144182_text {
  2697. border-width:0px;
  2698. white-space:nowrap;
  2699. text-transform:none;
  2700. }
  2701. #u144183_div {
  2702. border-width:0px;
  2703. position:absolute;
  2704. left:0px;
  2705. top:0px;
  2706. width:65px;
  2707. height:22px;
  2708. background:inherit;
  2709. background-color:rgba(255, 255, 255, 0);
  2710. border:none;
  2711. border-radius:0px;
  2712. -moz-box-shadow:none;
  2713. -webkit-box-shadow:none;
  2714. box-shadow:none;
  2715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2716. font-weight:400;
  2717. font-style:normal;
  2718. font-size:16px;
  2719. }
  2720. #u144183 {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:147px;
  2724. top:847px;
  2725. width:65px;
  2726. height:22px;
  2727. display:flex;
  2728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2729. font-weight:400;
  2730. font-style:normal;
  2731. font-size:16px;
  2732. }
  2733. #u144183 .text {
  2734. position:absolute;
  2735. align-self:flex-start;
  2736. padding:0px 0px 0px 0px;
  2737. box-sizing:border-box;
  2738. width:100%;
  2739. }
  2740. #u144183_text {
  2741. border-width:0px;
  2742. white-space:nowrap;
  2743. text-transform:none;
  2744. }
  2745. #u144184_div {
  2746. border-width:0px;
  2747. position:absolute;
  2748. left:0px;
  2749. top:0px;
  2750. width:65px;
  2751. height:22px;
  2752. background:inherit;
  2753. background-color:rgba(255, 255, 255, 0);
  2754. border:none;
  2755. border-radius:0px;
  2756. -moz-box-shadow:none;
  2757. -webkit-box-shadow:none;
  2758. box-shadow:none;
  2759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2760. font-weight:400;
  2761. font-style:normal;
  2762. font-size:16px;
  2763. }
  2764. #u144184 {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:147px;
  2768. top:396px;
  2769. width:65px;
  2770. height:22px;
  2771. display:flex;
  2772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2773. font-weight:400;
  2774. font-style:normal;
  2775. font-size:16px;
  2776. }
  2777. #u144184 .text {
  2778. position:absolute;
  2779. align-self:flex-start;
  2780. padding:0px 0px 0px 0px;
  2781. box-sizing:border-box;
  2782. width:100%;
  2783. }
  2784. #u144184_text {
  2785. border-width:0px;
  2786. white-space:nowrap;
  2787. text-transform:none;
  2788. }
  2789. #u144185_div {
  2790. border-width:0px;
  2791. position:absolute;
  2792. left:0px;
  2793. top:0px;
  2794. width:65px;
  2795. height:22px;
  2796. background:inherit;
  2797. background-color:rgba(255, 255, 255, 0);
  2798. border:none;
  2799. border-radius:0px;
  2800. -moz-box-shadow:none;
  2801. -webkit-box-shadow:none;
  2802. box-shadow:none;
  2803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2804. font-weight:400;
  2805. font-style:normal;
  2806. font-size:16px;
  2807. }
  2808. #u144185 {
  2809. border-width:0px;
  2810. position:absolute;
  2811. left:147px;
  2812. top:438px;
  2813. width:65px;
  2814. height:22px;
  2815. display:flex;
  2816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2817. font-weight:400;
  2818. font-style:normal;
  2819. font-size:16px;
  2820. }
  2821. #u144185 .text {
  2822. position:absolute;
  2823. align-self:flex-start;
  2824. padding:0px 0px 0px 0px;
  2825. box-sizing:border-box;
  2826. width:100%;
  2827. }
  2828. #u144185_text {
  2829. border-width:0px;
  2830. white-space:nowrap;
  2831. text-transform:none;
  2832. }
  2833. #u144186_div {
  2834. border-width:0px;
  2835. position:absolute;
  2836. left:0px;
  2837. top:0px;
  2838. width:1265px;
  2839. height:1187px;
  2840. background:inherit;
  2841. background-color:rgba(255, 255, 255, 1);
  2842. box-sizing:border-box;
  2843. border-width:1px;
  2844. border-style:solid;
  2845. border-color:rgba(215, 215, 215, 1);
  2846. border-radius:0px;
  2847. -moz-box-shadow:none;
  2848. -webkit-box-shadow:none;
  2849. box-shadow:none;
  2850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2851. font-weight:400;
  2852. font-style:normal;
  2853. font-size:12px;
  2854. color:#FFFFFF;
  2855. text-align:left;
  2856. }
  2857. #u144186 {
  2858. border-width:0px;
  2859. position:absolute;
  2860. left:330px;
  2861. top:50px;
  2862. width:1265px;
  2863. height:1187px;
  2864. display:flex;
  2865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2866. font-weight:400;
  2867. font-style:normal;
  2868. font-size:12px;
  2869. color:#FFFFFF;
  2870. text-align:left;
  2871. }
  2872. #u144186 .text {
  2873. position:absolute;
  2874. align-self:center;
  2875. padding:2px 2px 2px 50px;
  2876. box-sizing:border-box;
  2877. width:100%;
  2878. }
  2879. #u144186_text {
  2880. border-width:0px;
  2881. word-wrap:break-word;
  2882. text-transform:none;
  2883. visibility:hidden;
  2884. }
  2885. #u144187 {
  2886. border-width:0px;
  2887. position:absolute;
  2888. left:0px;
  2889. top:0px;
  2890. width:0px;
  2891. height:0px;
  2892. }
  2893. #u144188_div {
  2894. border-width:0px;
  2895. position:absolute;
  2896. left:0px;
  2897. top:0px;
  2898. width:300px;
  2899. height:1191px;
  2900. background:inherit;
  2901. background-color:rgba(240, 242, 245, 1);
  2902. border:none;
  2903. border-radius:0px;
  2904. -moz-box-shadow:none;
  2905. -webkit-box-shadow:none;
  2906. box-shadow:none;
  2907. }
  2908. #u144188 {
  2909. border-width:0px;
  2910. position:absolute;
  2911. left:329px;
  2912. top:50px;
  2913. width:300px;
  2914. height:1191px;
  2915. display:flex;
  2916. }
  2917. #u144188 .text {
  2918. position:absolute;
  2919. align-self:center;
  2920. padding:2px 2px 2px 2px;
  2921. box-sizing:border-box;
  2922. width:100%;
  2923. }
  2924. #u144188_text {
  2925. border-width:0px;
  2926. word-wrap:break-word;
  2927. text-transform:none;
  2928. visibility:hidden;
  2929. }
  2930. #u144189 {
  2931. border-width:0px;
  2932. position:absolute;
  2933. left:0px;
  2934. top:0px;
  2935. width:0px;
  2936. height:0px;
  2937. }
  2938. #u144190_div {
  2939. border-width:0px;
  2940. position:absolute;
  2941. left:0px;
  2942. top:0px;
  2943. width:260px;
  2944. height:38px;
  2945. background:inherit;
  2946. background-color:rgba(255, 255, 255, 1);
  2947. box-sizing:border-box;
  2948. border-width:1px;
  2949. border-style:solid;
  2950. border-color:rgba(242, 242, 242, 1);
  2951. border-radius:4px;
  2952. -moz-box-shadow:none;
  2953. -webkit-box-shadow:none;
  2954. box-shadow:none;
  2955. font-family:'Microsoft YaHei', sans-serif;
  2956. font-weight:400;
  2957. font-style:normal;
  2958. font-size:14px;
  2959. color:#CCCCCC;
  2960. text-align:left;
  2961. }
  2962. #u144190 {
  2963. border-width:0px;
  2964. position:absolute;
  2965. left:349px;
  2966. top:120px;
  2967. width:260px;
  2968. height:38px;
  2969. display:flex;
  2970. font-family:'Microsoft YaHei', sans-serif;
  2971. font-weight:400;
  2972. font-style:normal;
  2973. font-size:14px;
  2974. color:#CCCCCC;
  2975. text-align:left;
  2976. }
  2977. #u144190 .text {
  2978. position:absolute;
  2979. align-self:center;
  2980. padding:2px 8px 2px 8px;
  2981. box-sizing:border-box;
  2982. width:100%;
  2983. }
  2984. #u144190_text {
  2985. border-width:0px;
  2986. word-wrap:break-word;
  2987. text-transform:none;
  2988. visibility:hidden;
  2989. }
  2990. #u144191_input {
  2991. position:absolute;
  2992. left:0px;
  2993. top:0px;
  2994. width:201px;
  2995. height:31px;
  2996. padding:2px 2px 2px 2px;
  2997. font-family:'Microsoft YaHei', sans-serif;
  2998. font-weight:400;
  2999. font-style:normal;
  3000. font-size:14px;
  3001. letter-spacing:normal;
  3002. color:#000000;
  3003. vertical-align:none;
  3004. text-align:left;
  3005. text-transform:none;
  3006. background-color:transparent;
  3007. border-color:transparent;
  3008. }
  3009. #u144191_input.disabled {
  3010. position:absolute;
  3011. left:0px;
  3012. top:0px;
  3013. width:201px;
  3014. height:31px;
  3015. padding:2px 2px 2px 2px;
  3016. font-family:'Microsoft YaHei', sans-serif;
  3017. font-weight:400;
  3018. font-style:normal;
  3019. font-size:14px;
  3020. letter-spacing:normal;
  3021. color:#000000;
  3022. vertical-align:none;
  3023. text-align:left;
  3024. text-transform:none;
  3025. background-color:transparent;
  3026. border-color:transparent;
  3027. }
  3028. #u144191_div {
  3029. border-width:0px;
  3030. position:absolute;
  3031. left:0px;
  3032. top:0px;
  3033. width:201px;
  3034. height:31px;
  3035. background:inherit;
  3036. background-color:rgba(255, 255, 255, 1);
  3037. border:none;
  3038. border-radius:0px;
  3039. -moz-box-shadow:none;
  3040. -webkit-box-shadow:none;
  3041. box-shadow:none;
  3042. font-family:'Microsoft YaHei', sans-serif;
  3043. font-weight:400;
  3044. font-style:normal;
  3045. font-size:14px;
  3046. }
  3047. #u144191 {
  3048. border-width:0px;
  3049. position:absolute;
  3050. left:357px;
  3051. top:121px;
  3052. width:201px;
  3053. height:31px;
  3054. display:flex;
  3055. font-family:'Microsoft YaHei', sans-serif;
  3056. font-weight:400;
  3057. font-style:normal;
  3058. font-size:14px;
  3059. }
  3060. #u144191 .text {
  3061. position:absolute;
  3062. align-self:center;
  3063. padding:2px 2px 2px 2px;
  3064. box-sizing:border-box;
  3065. width:100%;
  3066. }
  3067. #u144191_div.disabled {
  3068. border-width:0px;
  3069. position:absolute;
  3070. left:0px;
  3071. top:0px;
  3072. width:201px;
  3073. height:31px;
  3074. background:inherit;
  3075. background-color:rgba(240, 240, 240, 1);
  3076. border:none;
  3077. border-radius:0px;
  3078. -moz-box-shadow:none;
  3079. -webkit-box-shadow:none;
  3080. box-shadow:none;
  3081. font-family:'Microsoft YaHei', sans-serif;
  3082. font-weight:400;
  3083. font-style:normal;
  3084. font-size:14px;
  3085. }
  3086. #u144191.disabled {
  3087. }
  3088. #u144192_img {
  3089. border-width:0px;
  3090. position:absolute;
  3091. left:0px;
  3092. top:0px;
  3093. width:14px;
  3094. height:14px;
  3095. }
  3096. #u144192 {
  3097. border-width:0px;
  3098. position:absolute;
  3099. left:567px;
  3100. top:132px;
  3101. width:14px;
  3102. height:14px;
  3103. display:flex;
  3104. }
  3105. #u144192 .text {
  3106. position:absolute;
  3107. align-self:center;
  3108. padding:2px 2px 2px 2px;
  3109. box-sizing:border-box;
  3110. width:100%;
  3111. }
  3112. #u144192_text {
  3113. border-width:0px;
  3114. word-wrap:break-word;
  3115. text-transform:none;
  3116. visibility:hidden;
  3117. }
  3118. #u144193 {
  3119. border-width:0px;
  3120. position:absolute;
  3121. left:0px;
  3122. top:0px;
  3123. width:0px;
  3124. height:0px;
  3125. }
  3126. #u144194_div {
  3127. border-width:0px;
  3128. position:absolute;
  3129. left:0px;
  3130. top:0px;
  3131. width:260px;
  3132. height:48px;
  3133. background:inherit;
  3134. background-color:rgba(0, 153, 255, 0.0980392156862745);
  3135. border:none;
  3136. border-radius:4px;
  3137. -moz-box-shadow:none;
  3138. -webkit-box-shadow:none;
  3139. box-shadow:none;
  3140. font-family:'Microsoft YaHei', sans-serif;
  3141. font-weight:400;
  3142. font-style:normal;
  3143. font-size:14px;
  3144. color:#CCCCCC;
  3145. text-align:left;
  3146. }
  3147. #u144194 {
  3148. border-width:0px;
  3149. position:absolute;
  3150. left:349px;
  3151. top:178px;
  3152. width:260px;
  3153. height:48px;
  3154. display:flex;
  3155. font-family:'Microsoft YaHei', sans-serif;
  3156. font-weight:400;
  3157. font-style:normal;
  3158. font-size:14px;
  3159. color:#CCCCCC;
  3160. text-align:left;
  3161. }
  3162. #u144194 .text {
  3163. position:absolute;
  3164. align-self:center;
  3165. padding:2px 8px 2px 8px;
  3166. box-sizing:border-box;
  3167. width:100%;
  3168. }
  3169. #u144194_text {
  3170. border-width:0px;
  3171. word-wrap:break-word;
  3172. text-transform:none;
  3173. visibility:hidden;
  3174. }
  3175. #u144195_div {
  3176. border-width:0px;
  3177. position:absolute;
  3178. left:0px;
  3179. top:0px;
  3180. width:12px;
  3181. height:15px;
  3182. background:inherit;
  3183. background-color:rgba(51, 51, 51, 1);
  3184. border:none;
  3185. border-radius:4px;
  3186. -moz-box-shadow:none;
  3187. -webkit-box-shadow:none;
  3188. box-shadow:none;
  3189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3190. font-weight:400;
  3191. font-style:normal;
  3192. font-size:10px;
  3193. color:#FFFFFF;
  3194. }
  3195. #u144195 {
  3196. border-width:0px;
  3197. position:absolute;
  3198. left:362px;
  3199. top:194px;
  3200. width:12px;
  3201. height:15px;
  3202. display:flex;
  3203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3204. font-weight:400;
  3205. font-style:normal;
  3206. font-size:10px;
  3207. color:#FFFFFF;
  3208. }
  3209. #u144195 .text {
  3210. position:absolute;
  3211. align-self:center;
  3212. padding:0px 0px 0px 0px;
  3213. box-sizing:border-box;
  3214. width:100%;
  3215. }
  3216. #u144195_text {
  3217. border-width:0px;
  3218. word-wrap:break-word;
  3219. text-transform:none;
  3220. }
  3221. #u144196_div {
  3222. border-width:0px;
  3223. position:absolute;
  3224. left:0px;
  3225. top:0px;
  3226. width:122px;
  3227. height:19px;
  3228. background:inherit;
  3229. background-color:rgba(51, 51, 51, 0);
  3230. border:none;
  3231. border-radius:4px;
  3232. -moz-box-shadow:none;
  3233. -webkit-box-shadow:none;
  3234. box-shadow:none;
  3235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3236. font-weight:400;
  3237. font-style:normal;
  3238. font-size:14px;
  3239. text-align:left;
  3240. }
  3241. #u144196 {
  3242. border-width:0px;
  3243. position:absolute;
  3244. left:383px;
  3245. top:192px;
  3246. width:122px;
  3247. height:19px;
  3248. display:flex;
  3249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3250. font-weight:400;
  3251. font-style:normal;
  3252. font-size:14px;
  3253. text-align:left;
  3254. }
  3255. #u144196 .text {
  3256. position:absolute;
  3257. align-self:center;
  3258. padding:0px 0px 0px 0px;
  3259. box-sizing:border-box;
  3260. width:100%;
  3261. }
  3262. #u144196_text {
  3263. border-width:0px;
  3264. white-space:nowrap;
  3265. text-transform:none;
  3266. }
  3267. #u144197_div {
  3268. border-width:0px;
  3269. position:absolute;
  3270. left:0px;
  3271. top:0px;
  3272. width:73px;
  3273. height:50px;
  3274. background:inherit;
  3275. background-color:rgba(255, 255, 255, 0);
  3276. border:none;
  3277. border-left:0px;
  3278. border-top:0px;
  3279. border-right:0px;
  3280. border-radius:0px;
  3281. border-bottom-right-radius:0px;
  3282. border-bottom-left-radius:0px;
  3283. -moz-box-shadow:none;
  3284. -webkit-box-shadow:none;
  3285. box-shadow:none;
  3286. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3287. font-weight:500;
  3288. font-style:normal;
  3289. font-size:18px;
  3290. line-height:40px;
  3291. }
  3292. #u144197 {
  3293. border-width:0px;
  3294. position:absolute;
  3295. left:349px;
  3296. top:60px;
  3297. width:73px;
  3298. height:50px;
  3299. display:flex;
  3300. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3301. font-weight:500;
  3302. font-style:normal;
  3303. font-size:18px;
  3304. line-height:40px;
  3305. }
  3306. #u144197 .text {
  3307. position:absolute;
  3308. align-self:center;
  3309. padding:5px 0px 5px 0px;
  3310. box-sizing:border-box;
  3311. width:100%;
  3312. }
  3313. #u144197_text {
  3314. border-width:0px;
  3315. white-space:nowrap;
  3316. text-transform:none;
  3317. }
  3318. #u144198 {
  3319. border-width:0px;
  3320. position:absolute;
  3321. left:0px;
  3322. top:0px;
  3323. width:0px;
  3324. height:0px;
  3325. }
  3326. #u144199_div {
  3327. border-width:0px;
  3328. position:absolute;
  3329. left:0px;
  3330. top:0px;
  3331. width:260px;
  3332. height:48px;
  3333. background:inherit;
  3334. background-color:rgba(242, 242, 242, 0.0980392156862745);
  3335. border:none;
  3336. border-radius:4px;
  3337. -moz-box-shadow:none;
  3338. -webkit-box-shadow:none;
  3339. box-shadow:none;
  3340. font-family:'Microsoft YaHei', sans-serif;
  3341. font-weight:400;
  3342. font-style:normal;
  3343. font-size:14px;
  3344. color:#CCCCCC;
  3345. text-align:left;
  3346. }
  3347. #u144199 {
  3348. border-width:0px;
  3349. position:absolute;
  3350. left:349px;
  3351. top:227px;
  3352. width:260px;
  3353. height:48px;
  3354. display:flex;
  3355. font-family:'Microsoft YaHei', sans-serif;
  3356. font-weight:400;
  3357. font-style:normal;
  3358. font-size:14px;
  3359. color:#CCCCCC;
  3360. text-align:left;
  3361. }
  3362. #u144199 .text {
  3363. position:absolute;
  3364. align-self:center;
  3365. padding:2px 8px 2px 8px;
  3366. box-sizing:border-box;
  3367. width:100%;
  3368. }
  3369. #u144199_text {
  3370. border-width:0px;
  3371. word-wrap:break-word;
  3372. text-transform:none;
  3373. visibility:hidden;
  3374. }
  3375. #u144200_div {
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:0px;
  3379. top:0px;
  3380. width:12px;
  3381. height:15px;
  3382. background:inherit;
  3383. background-color:rgba(51, 51, 51, 1);
  3384. border:none;
  3385. border-radius:4px;
  3386. -moz-box-shadow:none;
  3387. -webkit-box-shadow:none;
  3388. box-shadow:none;
  3389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3390. font-weight:400;
  3391. font-style:normal;
  3392. font-size:10px;
  3393. color:#FFFFFF;
  3394. }
  3395. #u144200 {
  3396. border-width:0px;
  3397. position:absolute;
  3398. left:362px;
  3399. top:243px;
  3400. width:12px;
  3401. height:15px;
  3402. display:flex;
  3403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3404. font-weight:400;
  3405. font-style:normal;
  3406. font-size:10px;
  3407. color:#FFFFFF;
  3408. }
  3409. #u144200 .text {
  3410. position:absolute;
  3411. align-self:center;
  3412. padding:0px 0px 0px 0px;
  3413. box-sizing:border-box;
  3414. width:100%;
  3415. }
  3416. #u144200_text {
  3417. border-width:0px;
  3418. word-wrap:break-word;
  3419. text-transform:none;
  3420. }
  3421. #u144201_div {
  3422. border-width:0px;
  3423. position:absolute;
  3424. left:0px;
  3425. top:0px;
  3426. width:122px;
  3427. height:19px;
  3428. background:inherit;
  3429. background-color:rgba(51, 51, 51, 0);
  3430. border:none;
  3431. border-radius:4px;
  3432. -moz-box-shadow:none;
  3433. -webkit-box-shadow:none;
  3434. box-shadow:none;
  3435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3436. font-weight:400;
  3437. font-style:normal;
  3438. font-size:14px;
  3439. text-align:left;
  3440. }
  3441. #u144201 {
  3442. border-width:0px;
  3443. position:absolute;
  3444. left:383px;
  3445. top:241px;
  3446. width:122px;
  3447. height:19px;
  3448. display:flex;
  3449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3450. font-weight:400;
  3451. font-style:normal;
  3452. font-size:14px;
  3453. text-align:left;
  3454. }
  3455. #u144201 .text {
  3456. position:absolute;
  3457. align-self:center;
  3458. padding:0px 0px 0px 0px;
  3459. box-sizing:border-box;
  3460. width:100%;
  3461. }
  3462. #u144201_text {
  3463. border-width:0px;
  3464. white-space:nowrap;
  3465. text-transform:none;
  3466. }
  3467. #u144202_div {
  3468. border-width:0px;
  3469. position:absolute;
  3470. left:0px;
  3471. top:0px;
  3472. width:67px;
  3473. height:30px;
  3474. background:inherit;
  3475. background-color:rgba(24, 144, 255, 1);
  3476. border:none;
  3477. border-radius:4px;
  3478. -moz-box-shadow:none;
  3479. -webkit-box-shadow:none;
  3480. box-shadow:none;
  3481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3482. font-weight:400;
  3483. font-style:normal;
  3484. font-size:14px;
  3485. color:#FFFFFF;
  3486. }
  3487. #u144202 {
  3488. border-width:0px;
  3489. position:absolute;
  3490. left:652px;
  3491. top:155px;
  3492. width:67px;
  3493. height:30px;
  3494. display:flex;
  3495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3496. font-weight:400;
  3497. font-style:normal;
  3498. font-size:14px;
  3499. color:#FFFFFF;
  3500. }
  3501. #u144202 .text {
  3502. position:absolute;
  3503. align-self:center;
  3504. padding:5px 15px 5px 15px;
  3505. box-sizing:border-box;
  3506. width:100%;
  3507. }
  3508. #u144202_text {
  3509. border-width:0px;
  3510. white-space:nowrap;
  3511. text-transform:none;
  3512. }
  3513. #u144203 {
  3514. border-width:0px;
  3515. position:absolute;
  3516. left:652px;
  3517. top:192px;
  3518. width:924px;
  3519. height:364px;
  3520. }
  3521. #u144204_img {
  3522. border-width:0px;
  3523. position:absolute;
  3524. left:0px;
  3525. top:0px;
  3526. width:115px;
  3527. height:39px;
  3528. }
  3529. #u144204 {
  3530. border-width:0px;
  3531. position:absolute;
  3532. left:0px;
  3533. top:0px;
  3534. width:115px;
  3535. height:39px;
  3536. display:flex;
  3537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3538. font-weight:400;
  3539. font-style:normal;
  3540. font-size:12px;
  3541. color:#FFFFFF;
  3542. }
  3543. #u144204 .text {
  3544. position:absolute;
  3545. align-self:center;
  3546. padding:2px 2px 2px 0px;
  3547. box-sizing:border-box;
  3548. width:100%;
  3549. }
  3550. #u144204_text {
  3551. border-width:0px;
  3552. word-wrap:break-word;
  3553. text-transform:none;
  3554. }
  3555. #u144205_img {
  3556. border-width:0px;
  3557. position:absolute;
  3558. left:0px;
  3559. top:0px;
  3560. width:115px;
  3561. height:39px;
  3562. }
  3563. #u144205 {
  3564. border-width:0px;
  3565. position:absolute;
  3566. left:115px;
  3567. top:0px;
  3568. width:115px;
  3569. height:39px;
  3570. display:flex;
  3571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3572. font-weight:400;
  3573. font-style:normal;
  3574. font-size:12px;
  3575. color:#FFFFFF;
  3576. }
  3577. #u144205 .text {
  3578. position:absolute;
  3579. align-self:center;
  3580. padding:2px 2px 2px 0px;
  3581. box-sizing:border-box;
  3582. width:100%;
  3583. }
  3584. #u144205_text {
  3585. border-width:0px;
  3586. word-wrap:break-word;
  3587. text-transform:none;
  3588. }
  3589. #u144206_img {
  3590. border-width:0px;
  3591. position:absolute;
  3592. left:0px;
  3593. top:0px;
  3594. width:115px;
  3595. height:39px;
  3596. }
  3597. #u144206 {
  3598. border-width:0px;
  3599. position:absolute;
  3600. left:230px;
  3601. top:0px;
  3602. width:115px;
  3603. height:39px;
  3604. display:flex;
  3605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3606. font-weight:400;
  3607. font-style:normal;
  3608. font-size:12px;
  3609. color:#FFFFFF;
  3610. }
  3611. #u144206 .text {
  3612. position:absolute;
  3613. align-self:center;
  3614. padding:2px 2px 2px 0px;
  3615. box-sizing:border-box;
  3616. width:100%;
  3617. }
  3618. #u144206_text {
  3619. border-width:0px;
  3620. word-wrap:break-word;
  3621. text-transform:none;
  3622. }
  3623. #u144207_img {
  3624. border-width:0px;
  3625. position:absolute;
  3626. left:0px;
  3627. top:0px;
  3628. width:115px;
  3629. height:39px;
  3630. }
  3631. #u144207 {
  3632. border-width:0px;
  3633. position:absolute;
  3634. left:345px;
  3635. top:0px;
  3636. width:115px;
  3637. height:39px;
  3638. display:flex;
  3639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3640. font-weight:400;
  3641. font-style:normal;
  3642. font-size:12px;
  3643. color:#FFFFFF;
  3644. }
  3645. #u144207 .text {
  3646. position:absolute;
  3647. align-self:center;
  3648. padding:2px 2px 2px 0px;
  3649. box-sizing:border-box;
  3650. width:100%;
  3651. }
  3652. #u144207_text {
  3653. border-width:0px;
  3654. word-wrap:break-word;
  3655. text-transform:none;
  3656. }
  3657. #u144208_img {
  3658. border-width:0px;
  3659. position:absolute;
  3660. left:0px;
  3661. top:0px;
  3662. width:115px;
  3663. height:39px;
  3664. }
  3665. #u144208 {
  3666. border-width:0px;
  3667. position:absolute;
  3668. left:460px;
  3669. top:0px;
  3670. width:115px;
  3671. height:39px;
  3672. display:flex;
  3673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3674. font-weight:400;
  3675. font-style:normal;
  3676. font-size:12px;
  3677. color:#FFFFFF;
  3678. }
  3679. #u144208 .text {
  3680. position:absolute;
  3681. align-self:center;
  3682. padding:2px 2px 2px 0px;
  3683. box-sizing:border-box;
  3684. width:100%;
  3685. }
  3686. #u144208_text {
  3687. border-width:0px;
  3688. word-wrap:break-word;
  3689. text-transform:none;
  3690. }
  3691. #u144209_img {
  3692. border-width:0px;
  3693. position:absolute;
  3694. left:0px;
  3695. top:0px;
  3696. width:115px;
  3697. height:39px;
  3698. }
  3699. #u144209 {
  3700. border-width:0px;
  3701. position:absolute;
  3702. left:575px;
  3703. top:0px;
  3704. width:115px;
  3705. height:39px;
  3706. display:flex;
  3707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3708. font-weight:400;
  3709. font-style:normal;
  3710. font-size:12px;
  3711. color:#FFFFFF;
  3712. }
  3713. #u144209 .text {
  3714. position:absolute;
  3715. align-self:center;
  3716. padding:2px 2px 2px 0px;
  3717. box-sizing:border-box;
  3718. width:100%;
  3719. }
  3720. #u144209_text {
  3721. border-width:0px;
  3722. word-wrap:break-word;
  3723. text-transform:none;
  3724. }
  3725. #u144210_img {
  3726. border-width:0px;
  3727. position:absolute;
  3728. left:0px;
  3729. top:0px;
  3730. width:115px;
  3731. height:39px;
  3732. }
  3733. #u144210 {
  3734. border-width:0px;
  3735. position:absolute;
  3736. left:690px;
  3737. top:0px;
  3738. width:115px;
  3739. height:39px;
  3740. display:flex;
  3741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3742. font-weight:400;
  3743. font-style:normal;
  3744. font-size:12px;
  3745. color:#FFFFFF;
  3746. }
  3747. #u144210 .text {
  3748. position:absolute;
  3749. align-self:center;
  3750. padding:2px 2px 2px 0px;
  3751. box-sizing:border-box;
  3752. width:100%;
  3753. }
  3754. #u144210_text {
  3755. border-width:0px;
  3756. word-wrap:break-word;
  3757. text-transform:none;
  3758. }
  3759. #u144211_img {
  3760. border-width:0px;
  3761. position:absolute;
  3762. left:0px;
  3763. top:0px;
  3764. width:119px;
  3765. height:39px;
  3766. }
  3767. #u144211 {
  3768. border-width:0px;
  3769. position:absolute;
  3770. left:805px;
  3771. top:0px;
  3772. width:119px;
  3773. height:39px;
  3774. display:flex;
  3775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3776. font-weight:400;
  3777. font-style:normal;
  3778. font-size:12px;
  3779. color:#FFFFFF;
  3780. }
  3781. #u144211 .text {
  3782. position:absolute;
  3783. align-self:center;
  3784. padding:2px 2px 2px 0px;
  3785. box-sizing:border-box;
  3786. width:100%;
  3787. }
  3788. #u144211_text {
  3789. border-width:0px;
  3790. word-wrap:break-word;
  3791. text-transform:none;
  3792. }
  3793. #u144212_img {
  3794. border-width:0px;
  3795. position:absolute;
  3796. left:0px;
  3797. top:0px;
  3798. width:115px;
  3799. height:36px;
  3800. }
  3801. #u144212 {
  3802. border-width:0px;
  3803. position:absolute;
  3804. left:0px;
  3805. top:39px;
  3806. width:115px;
  3807. height:36px;
  3808. display:flex;
  3809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3810. font-weight:400;
  3811. font-style:normal;
  3812. font-size:12px;
  3813. }
  3814. #u144212 .text {
  3815. position:absolute;
  3816. align-self:center;
  3817. padding:2px 2px 2px 0px;
  3818. box-sizing:border-box;
  3819. width:100%;
  3820. }
  3821. #u144212_text {
  3822. border-width:0px;
  3823. word-wrap:break-word;
  3824. text-transform:none;
  3825. visibility:hidden;
  3826. }
  3827. #u144213_img {
  3828. border-width:0px;
  3829. position:absolute;
  3830. left:0px;
  3831. top:0px;
  3832. width:115px;
  3833. height:36px;
  3834. }
  3835. #u144213 {
  3836. border-width:0px;
  3837. position:absolute;
  3838. left:115px;
  3839. top:39px;
  3840. width:115px;
  3841. height:36px;
  3842. display:flex;
  3843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3844. font-weight:400;
  3845. font-style:normal;
  3846. font-size:12px;
  3847. }
  3848. #u144213 .text {
  3849. position:absolute;
  3850. align-self:center;
  3851. padding:2px 2px 2px 0px;
  3852. box-sizing:border-box;
  3853. width:100%;
  3854. }
  3855. #u144213_text {
  3856. border-width:0px;
  3857. word-wrap:break-word;
  3858. text-transform:none;
  3859. visibility:hidden;
  3860. }
  3861. #u144214_img {
  3862. border-width:0px;
  3863. position:absolute;
  3864. left:0px;
  3865. top:0px;
  3866. width:115px;
  3867. height:36px;
  3868. }
  3869. #u144214 {
  3870. border-width:0px;
  3871. position:absolute;
  3872. left:230px;
  3873. top:39px;
  3874. width:115px;
  3875. height:36px;
  3876. display:flex;
  3877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3878. font-weight:400;
  3879. font-style:normal;
  3880. font-size:12px;
  3881. }
  3882. #u144214 .text {
  3883. position:absolute;
  3884. align-self:center;
  3885. padding:2px 2px 2px 0px;
  3886. box-sizing:border-box;
  3887. width:100%;
  3888. }
  3889. #u144214_text {
  3890. border-width:0px;
  3891. word-wrap:break-word;
  3892. text-transform:none;
  3893. visibility:hidden;
  3894. }
  3895. #u144215_img {
  3896. border-width:0px;
  3897. position:absolute;
  3898. left:0px;
  3899. top:0px;
  3900. width:115px;
  3901. height:36px;
  3902. }
  3903. #u144215 {
  3904. border-width:0px;
  3905. position:absolute;
  3906. left:345px;
  3907. top:39px;
  3908. width:115px;
  3909. height:36px;
  3910. display:flex;
  3911. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3912. font-weight:400;
  3913. font-style:normal;
  3914. font-size:12px;
  3915. }
  3916. #u144215 .text {
  3917. position:absolute;
  3918. align-self:center;
  3919. padding:2px 2px 2px 0px;
  3920. box-sizing:border-box;
  3921. width:100%;
  3922. }
  3923. #u144215_text {
  3924. border-width:0px;
  3925. word-wrap:break-word;
  3926. text-transform:none;
  3927. visibility:hidden;
  3928. }
  3929. #u144216_img {
  3930. border-width:0px;
  3931. position:absolute;
  3932. left:0px;
  3933. top:0px;
  3934. width:115px;
  3935. height:36px;
  3936. }
  3937. #u144216 {
  3938. border-width:0px;
  3939. position:absolute;
  3940. left:460px;
  3941. top:39px;
  3942. width:115px;
  3943. height:36px;
  3944. display:flex;
  3945. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3946. font-weight:400;
  3947. font-style:normal;
  3948. font-size:12px;
  3949. }
  3950. #u144216 .text {
  3951. position:absolute;
  3952. align-self:center;
  3953. padding:2px 2px 2px 0px;
  3954. box-sizing:border-box;
  3955. width:100%;
  3956. }
  3957. #u144216_text {
  3958. border-width:0px;
  3959. word-wrap:break-word;
  3960. text-transform:none;
  3961. visibility:hidden;
  3962. }
  3963. #u144217_img {
  3964. border-width:0px;
  3965. position:absolute;
  3966. left:0px;
  3967. top:0px;
  3968. width:115px;
  3969. height:36px;
  3970. }
  3971. #u144217 {
  3972. border-width:0px;
  3973. position:absolute;
  3974. left:575px;
  3975. top:39px;
  3976. width:115px;
  3977. height:36px;
  3978. display:flex;
  3979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3980. font-weight:400;
  3981. font-style:normal;
  3982. font-size:12px;
  3983. }
  3984. #u144217 .text {
  3985. position:absolute;
  3986. align-self:center;
  3987. padding:2px 2px 2px 0px;
  3988. box-sizing:border-box;
  3989. width:100%;
  3990. }
  3991. #u144217_text {
  3992. border-width:0px;
  3993. word-wrap:break-word;
  3994. text-transform:none;
  3995. visibility:hidden;
  3996. }
  3997. #u144218_img {
  3998. border-width:0px;
  3999. position:absolute;
  4000. left:0px;
  4001. top:0px;
  4002. width:115px;
  4003. height:36px;
  4004. }
  4005. #u144218 {
  4006. border-width:0px;
  4007. position:absolute;
  4008. left:690px;
  4009. top:39px;
  4010. width:115px;
  4011. height:36px;
  4012. display:flex;
  4013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4014. font-weight:400;
  4015. font-style:normal;
  4016. font-size:12px;
  4017. }
  4018. #u144218 .text {
  4019. position:absolute;
  4020. align-self:center;
  4021. padding:2px 2px 2px 0px;
  4022. box-sizing:border-box;
  4023. width:100%;
  4024. }
  4025. #u144218_text {
  4026. border-width:0px;
  4027. word-wrap:break-word;
  4028. text-transform:none;
  4029. visibility:hidden;
  4030. }
  4031. #u144219_img {
  4032. border-width:0px;
  4033. position:absolute;
  4034. left:0px;
  4035. top:0px;
  4036. width:119px;
  4037. height:36px;
  4038. }
  4039. #u144219 {
  4040. border-width:0px;
  4041. position:absolute;
  4042. left:805px;
  4043. top:39px;
  4044. width:119px;
  4045. height:36px;
  4046. display:flex;
  4047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4048. font-weight:400;
  4049. font-style:normal;
  4050. font-size:12px;
  4051. color:#1890FF;
  4052. }
  4053. #u144219 .text {
  4054. position:absolute;
  4055. align-self:center;
  4056. padding:2px 2px 2px 0px;
  4057. box-sizing:border-box;
  4058. width:100%;
  4059. }
  4060. #u144219_text {
  4061. border-width:0px;
  4062. word-wrap:break-word;
  4063. text-transform:none;
  4064. }
  4065. #u144220_img {
  4066. border-width:0px;
  4067. position:absolute;
  4068. left:0px;
  4069. top:0px;
  4070. width:115px;
  4071. height:38px;
  4072. }
  4073. #u144220 {
  4074. border-width:0px;
  4075. position:absolute;
  4076. left:0px;
  4077. top:75px;
  4078. width:115px;
  4079. height:38px;
  4080. display:flex;
  4081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4082. font-weight:400;
  4083. font-style:normal;
  4084. font-size:12px;
  4085. }
  4086. #u144220 .text {
  4087. position:absolute;
  4088. align-self:center;
  4089. padding:2px 2px 2px 0px;
  4090. box-sizing:border-box;
  4091. width:100%;
  4092. }
  4093. #u144220_text {
  4094. border-width:0px;
  4095. word-wrap:break-word;
  4096. text-transform:none;
  4097. visibility:hidden;
  4098. }
  4099. #u144221_img {
  4100. border-width:0px;
  4101. position:absolute;
  4102. left:0px;
  4103. top:0px;
  4104. width:115px;
  4105. height:38px;
  4106. }
  4107. #u144221 {
  4108. border-width:0px;
  4109. position:absolute;
  4110. left:115px;
  4111. top:75px;
  4112. width:115px;
  4113. height:38px;
  4114. display:flex;
  4115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4116. font-weight:400;
  4117. font-style:normal;
  4118. font-size:12px;
  4119. }
  4120. #u144221 .text {
  4121. position:absolute;
  4122. align-self:center;
  4123. padding:2px 2px 2px 0px;
  4124. box-sizing:border-box;
  4125. width:100%;
  4126. }
  4127. #u144221_text {
  4128. border-width:0px;
  4129. word-wrap:break-word;
  4130. text-transform:none;
  4131. visibility:hidden;
  4132. }
  4133. #u144222_img {
  4134. border-width:0px;
  4135. position:absolute;
  4136. left:0px;
  4137. top:0px;
  4138. width:115px;
  4139. height:38px;
  4140. }
  4141. #u144222 {
  4142. border-width:0px;
  4143. position:absolute;
  4144. left:230px;
  4145. top:75px;
  4146. width:115px;
  4147. height:38px;
  4148. display:flex;
  4149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4150. font-weight:400;
  4151. font-style:normal;
  4152. font-size:12px;
  4153. }
  4154. #u144222 .text {
  4155. position:absolute;
  4156. align-self:center;
  4157. padding:2px 2px 2px 0px;
  4158. box-sizing:border-box;
  4159. width:100%;
  4160. }
  4161. #u144222_text {
  4162. border-width:0px;
  4163. word-wrap:break-word;
  4164. text-transform:none;
  4165. visibility:hidden;
  4166. }
  4167. #u144223_img {
  4168. border-width:0px;
  4169. position:absolute;
  4170. left:0px;
  4171. top:0px;
  4172. width:115px;
  4173. height:38px;
  4174. }
  4175. #u144223 {
  4176. border-width:0px;
  4177. position:absolute;
  4178. left:345px;
  4179. top:75px;
  4180. width:115px;
  4181. height:38px;
  4182. display:flex;
  4183. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4184. font-weight:400;
  4185. font-style:normal;
  4186. font-size:12px;
  4187. }
  4188. #u144223 .text {
  4189. position:absolute;
  4190. align-self:center;
  4191. padding:2px 2px 2px 0px;
  4192. box-sizing:border-box;
  4193. width:100%;
  4194. }
  4195. #u144223_text {
  4196. border-width:0px;
  4197. word-wrap:break-word;
  4198. text-transform:none;
  4199. visibility:hidden;
  4200. }
  4201. #u144224_img {
  4202. border-width:0px;
  4203. position:absolute;
  4204. left:0px;
  4205. top:0px;
  4206. width:115px;
  4207. height:38px;
  4208. }
  4209. #u144224 {
  4210. border-width:0px;
  4211. position:absolute;
  4212. left:460px;
  4213. top:75px;
  4214. width:115px;
  4215. height:38px;
  4216. display:flex;
  4217. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4218. font-weight:400;
  4219. font-style:normal;
  4220. font-size:12px;
  4221. }
  4222. #u144224 .text {
  4223. position:absolute;
  4224. align-self:center;
  4225. padding:2px 2px 2px 0px;
  4226. box-sizing:border-box;
  4227. width:100%;
  4228. }
  4229. #u144224_text {
  4230. border-width:0px;
  4231. word-wrap:break-word;
  4232. text-transform:none;
  4233. visibility:hidden;
  4234. }
  4235. #u144225_img {
  4236. border-width:0px;
  4237. position:absolute;
  4238. left:0px;
  4239. top:0px;
  4240. width:115px;
  4241. height:38px;
  4242. }
  4243. #u144225 {
  4244. border-width:0px;
  4245. position:absolute;
  4246. left:575px;
  4247. top:75px;
  4248. width:115px;
  4249. height:38px;
  4250. display:flex;
  4251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4252. font-weight:400;
  4253. font-style:normal;
  4254. font-size:12px;
  4255. }
  4256. #u144225 .text {
  4257. position:absolute;
  4258. align-self:center;
  4259. padding:2px 2px 2px 0px;
  4260. box-sizing:border-box;
  4261. width:100%;
  4262. }
  4263. #u144225_text {
  4264. border-width:0px;
  4265. word-wrap:break-word;
  4266. text-transform:none;
  4267. visibility:hidden;
  4268. }
  4269. #u144226_img {
  4270. border-width:0px;
  4271. position:absolute;
  4272. left:0px;
  4273. top:0px;
  4274. width:115px;
  4275. height:38px;
  4276. }
  4277. #u144226 {
  4278. border-width:0px;
  4279. position:absolute;
  4280. left:690px;
  4281. top:75px;
  4282. width:115px;
  4283. height:38px;
  4284. display:flex;
  4285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4286. font-weight:400;
  4287. font-style:normal;
  4288. font-size:12px;
  4289. }
  4290. #u144226 .text {
  4291. position:absolute;
  4292. align-self:center;
  4293. padding:2px 2px 2px 0px;
  4294. box-sizing:border-box;
  4295. width:100%;
  4296. }
  4297. #u144226_text {
  4298. border-width:0px;
  4299. word-wrap:break-word;
  4300. text-transform:none;
  4301. visibility:hidden;
  4302. }
  4303. #u144227_img {
  4304. border-width:0px;
  4305. position:absolute;
  4306. left:0px;
  4307. top:0px;
  4308. width:119px;
  4309. height:38px;
  4310. }
  4311. #u144227 {
  4312. border-width:0px;
  4313. position:absolute;
  4314. left:805px;
  4315. top:75px;
  4316. width:119px;
  4317. height:38px;
  4318. display:flex;
  4319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4320. font-weight:400;
  4321. font-style:normal;
  4322. font-size:12px;
  4323. color:#1890FF;
  4324. }
  4325. #u144227 .text {
  4326. position:absolute;
  4327. align-self:center;
  4328. padding:2px 2px 2px 0px;
  4329. box-sizing:border-box;
  4330. width:100%;
  4331. }
  4332. #u144227_text {
  4333. border-width:0px;
  4334. word-wrap:break-word;
  4335. text-transform:none;
  4336. visibility:hidden;
  4337. }
  4338. #u144228_img {
  4339. border-width:0px;
  4340. position:absolute;
  4341. left:0px;
  4342. top:0px;
  4343. width:115px;
  4344. height:38px;
  4345. }
  4346. #u144228 {
  4347. border-width:0px;
  4348. position:absolute;
  4349. left:0px;
  4350. top:113px;
  4351. width:115px;
  4352. height:38px;
  4353. display:flex;
  4354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4355. font-weight:400;
  4356. font-style:normal;
  4357. font-size:12px;
  4358. }
  4359. #u144228 .text {
  4360. position:absolute;
  4361. align-self:center;
  4362. padding:2px 2px 2px 0px;
  4363. box-sizing:border-box;
  4364. width:100%;
  4365. }
  4366. #u144228_text {
  4367. border-width:0px;
  4368. word-wrap:break-word;
  4369. text-transform:none;
  4370. visibility:hidden;
  4371. }
  4372. #u144229_img {
  4373. border-width:0px;
  4374. position:absolute;
  4375. left:0px;
  4376. top:0px;
  4377. width:115px;
  4378. height:38px;
  4379. }
  4380. #u144229 {
  4381. border-width:0px;
  4382. position:absolute;
  4383. left:115px;
  4384. top:113px;
  4385. width:115px;
  4386. height:38px;
  4387. display:flex;
  4388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4389. font-weight:400;
  4390. font-style:normal;
  4391. font-size:12px;
  4392. }
  4393. #u144229 .text {
  4394. position:absolute;
  4395. align-self:center;
  4396. padding:2px 2px 2px 0px;
  4397. box-sizing:border-box;
  4398. width:100%;
  4399. }
  4400. #u144229_text {
  4401. border-width:0px;
  4402. word-wrap:break-word;
  4403. text-transform:none;
  4404. visibility:hidden;
  4405. }
  4406. #u144230_img {
  4407. border-width:0px;
  4408. position:absolute;
  4409. left:0px;
  4410. top:0px;
  4411. width:115px;
  4412. height:38px;
  4413. }
  4414. #u144230 {
  4415. border-width:0px;
  4416. position:absolute;
  4417. left:230px;
  4418. top:113px;
  4419. width:115px;
  4420. height:38px;
  4421. display:flex;
  4422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4423. font-weight:400;
  4424. font-style:normal;
  4425. font-size:12px;
  4426. }
  4427. #u144230 .text {
  4428. position:absolute;
  4429. align-self:center;
  4430. padding:2px 2px 2px 0px;
  4431. box-sizing:border-box;
  4432. width:100%;
  4433. }
  4434. #u144230_text {
  4435. border-width:0px;
  4436. word-wrap:break-word;
  4437. text-transform:none;
  4438. visibility:hidden;
  4439. }
  4440. #u144231_img {
  4441. border-width:0px;
  4442. position:absolute;
  4443. left:0px;
  4444. top:0px;
  4445. width:115px;
  4446. height:38px;
  4447. }
  4448. #u144231 {
  4449. border-width:0px;
  4450. position:absolute;
  4451. left:345px;
  4452. top:113px;
  4453. width:115px;
  4454. height:38px;
  4455. display:flex;
  4456. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4457. font-weight:400;
  4458. font-style:normal;
  4459. font-size:12px;
  4460. }
  4461. #u144231 .text {
  4462. position:absolute;
  4463. align-self:center;
  4464. padding:2px 2px 2px 0px;
  4465. box-sizing:border-box;
  4466. width:100%;
  4467. }
  4468. #u144231_text {
  4469. border-width:0px;
  4470. word-wrap:break-word;
  4471. text-transform:none;
  4472. visibility:hidden;
  4473. }
  4474. #u144232_img {
  4475. border-width:0px;
  4476. position:absolute;
  4477. left:0px;
  4478. top:0px;
  4479. width:115px;
  4480. height:38px;
  4481. }
  4482. #u144232 {
  4483. border-width:0px;
  4484. position:absolute;
  4485. left:460px;
  4486. top:113px;
  4487. width:115px;
  4488. height:38px;
  4489. display:flex;
  4490. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4491. font-weight:400;
  4492. font-style:normal;
  4493. font-size:12px;
  4494. }
  4495. #u144232 .text {
  4496. position:absolute;
  4497. align-self:center;
  4498. padding:2px 2px 2px 0px;
  4499. box-sizing:border-box;
  4500. width:100%;
  4501. }
  4502. #u144232_text {
  4503. border-width:0px;
  4504. word-wrap:break-word;
  4505. text-transform:none;
  4506. visibility:hidden;
  4507. }
  4508. #u144233_img {
  4509. border-width:0px;
  4510. position:absolute;
  4511. left:0px;
  4512. top:0px;
  4513. width:115px;
  4514. height:38px;
  4515. }
  4516. #u144233 {
  4517. border-width:0px;
  4518. position:absolute;
  4519. left:575px;
  4520. top:113px;
  4521. width:115px;
  4522. height:38px;
  4523. display:flex;
  4524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4525. font-weight:400;
  4526. font-style:normal;
  4527. font-size:12px;
  4528. }
  4529. #u144233 .text {
  4530. position:absolute;
  4531. align-self:center;
  4532. padding:2px 2px 2px 0px;
  4533. box-sizing:border-box;
  4534. width:100%;
  4535. }
  4536. #u144233_text {
  4537. border-width:0px;
  4538. word-wrap:break-word;
  4539. text-transform:none;
  4540. visibility:hidden;
  4541. }
  4542. #u144234_img {
  4543. border-width:0px;
  4544. position:absolute;
  4545. left:0px;
  4546. top:0px;
  4547. width:115px;
  4548. height:38px;
  4549. }
  4550. #u144234 {
  4551. border-width:0px;
  4552. position:absolute;
  4553. left:690px;
  4554. top:113px;
  4555. width:115px;
  4556. height:38px;
  4557. display:flex;
  4558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4559. font-weight:400;
  4560. font-style:normal;
  4561. font-size:12px;
  4562. }
  4563. #u144234 .text {
  4564. position:absolute;
  4565. align-self:center;
  4566. padding:2px 2px 2px 0px;
  4567. box-sizing:border-box;
  4568. width:100%;
  4569. }
  4570. #u144234_text {
  4571. border-width:0px;
  4572. word-wrap:break-word;
  4573. text-transform:none;
  4574. visibility:hidden;
  4575. }
  4576. #u144235_img {
  4577. border-width:0px;
  4578. position:absolute;
  4579. left:0px;
  4580. top:0px;
  4581. width:119px;
  4582. height:38px;
  4583. }
  4584. #u144235 {
  4585. border-width:0px;
  4586. position:absolute;
  4587. left:805px;
  4588. top:113px;
  4589. width:119px;
  4590. height:38px;
  4591. display:flex;
  4592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4593. font-weight:400;
  4594. font-style:normal;
  4595. font-size:12px;
  4596. color:#1890FF;
  4597. }
  4598. #u144235 .text {
  4599. position:absolute;
  4600. align-self:center;
  4601. padding:2px 2px 2px 0px;
  4602. box-sizing:border-box;
  4603. width:100%;
  4604. }
  4605. #u144235_text {
  4606. border-width:0px;
  4607. word-wrap:break-word;
  4608. text-transform:none;
  4609. visibility:hidden;
  4610. }
  4611. #u144236_img {
  4612. border-width:0px;
  4613. position:absolute;
  4614. left:0px;
  4615. top:0px;
  4616. width:115px;
  4617. height:38px;
  4618. }
  4619. #u144236 {
  4620. border-width:0px;
  4621. position:absolute;
  4622. left:0px;
  4623. top:151px;
  4624. width:115px;
  4625. height:38px;
  4626. display:flex;
  4627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4628. font-weight:400;
  4629. font-style:normal;
  4630. font-size:12px;
  4631. }
  4632. #u144236 .text {
  4633. position:absolute;
  4634. align-self:center;
  4635. padding:2px 2px 2px 0px;
  4636. box-sizing:border-box;
  4637. width:100%;
  4638. }
  4639. #u144236_text {
  4640. border-width:0px;
  4641. word-wrap:break-word;
  4642. text-transform:none;
  4643. visibility:hidden;
  4644. }
  4645. #u144237_img {
  4646. border-width:0px;
  4647. position:absolute;
  4648. left:0px;
  4649. top:0px;
  4650. width:115px;
  4651. height:38px;
  4652. }
  4653. #u144237 {
  4654. border-width:0px;
  4655. position:absolute;
  4656. left:115px;
  4657. top:151px;
  4658. width:115px;
  4659. height:38px;
  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. }
  4666. #u144237 .text {
  4667. position:absolute;
  4668. align-self:center;
  4669. padding:2px 2px 2px 0px;
  4670. box-sizing:border-box;
  4671. width:100%;
  4672. }
  4673. #u144237_text {
  4674. border-width:0px;
  4675. word-wrap:break-word;
  4676. text-transform:none;
  4677. visibility:hidden;
  4678. }
  4679. #u144238_img {
  4680. border-width:0px;
  4681. position:absolute;
  4682. left:0px;
  4683. top:0px;
  4684. width:115px;
  4685. height:38px;
  4686. }
  4687. #u144238 {
  4688. border-width:0px;
  4689. position:absolute;
  4690. left:230px;
  4691. top:151px;
  4692. width:115px;
  4693. height:38px;
  4694. display:flex;
  4695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4696. font-weight:400;
  4697. font-style:normal;
  4698. font-size:12px;
  4699. }
  4700. #u144238 .text {
  4701. position:absolute;
  4702. align-self:center;
  4703. padding:2px 2px 2px 0px;
  4704. box-sizing:border-box;
  4705. width:100%;
  4706. }
  4707. #u144238_text {
  4708. border-width:0px;
  4709. word-wrap:break-word;
  4710. text-transform:none;
  4711. visibility:hidden;
  4712. }
  4713. #u144239_img {
  4714. border-width:0px;
  4715. position:absolute;
  4716. left:0px;
  4717. top:0px;
  4718. width:115px;
  4719. height:38px;
  4720. }
  4721. #u144239 {
  4722. border-width:0px;
  4723. position:absolute;
  4724. left:345px;
  4725. top:151px;
  4726. width:115px;
  4727. height:38px;
  4728. display:flex;
  4729. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4730. font-weight:400;
  4731. font-style:normal;
  4732. font-size:12px;
  4733. }
  4734. #u144239 .text {
  4735. position:absolute;
  4736. align-self:center;
  4737. padding:2px 2px 2px 0px;
  4738. box-sizing:border-box;
  4739. width:100%;
  4740. }
  4741. #u144239_text {
  4742. border-width:0px;
  4743. word-wrap:break-word;
  4744. text-transform:none;
  4745. visibility:hidden;
  4746. }
  4747. #u144240_img {
  4748. border-width:0px;
  4749. position:absolute;
  4750. left:0px;
  4751. top:0px;
  4752. width:115px;
  4753. height:38px;
  4754. }
  4755. #u144240 {
  4756. border-width:0px;
  4757. position:absolute;
  4758. left:460px;
  4759. top:151px;
  4760. width:115px;
  4761. height:38px;
  4762. display:flex;
  4763. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4764. font-weight:400;
  4765. font-style:normal;
  4766. font-size:12px;
  4767. }
  4768. #u144240 .text {
  4769. position:absolute;
  4770. align-self:center;
  4771. padding:2px 2px 2px 0px;
  4772. box-sizing:border-box;
  4773. width:100%;
  4774. }
  4775. #u144240_text {
  4776. border-width:0px;
  4777. word-wrap:break-word;
  4778. text-transform:none;
  4779. visibility:hidden;
  4780. }
  4781. #u144241_img {
  4782. border-width:0px;
  4783. position:absolute;
  4784. left:0px;
  4785. top:0px;
  4786. width:115px;
  4787. height:38px;
  4788. }
  4789. #u144241 {
  4790. border-width:0px;
  4791. position:absolute;
  4792. left:575px;
  4793. top:151px;
  4794. width:115px;
  4795. height:38px;
  4796. display:flex;
  4797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4798. font-weight:400;
  4799. font-style:normal;
  4800. font-size:12px;
  4801. }
  4802. #u144241 .text {
  4803. position:absolute;
  4804. align-self:center;
  4805. padding:2px 2px 2px 0px;
  4806. box-sizing:border-box;
  4807. width:100%;
  4808. }
  4809. #u144241_text {
  4810. border-width:0px;
  4811. word-wrap:break-word;
  4812. text-transform:none;
  4813. visibility:hidden;
  4814. }
  4815. #u144242_img {
  4816. border-width:0px;
  4817. position:absolute;
  4818. left:0px;
  4819. top:0px;
  4820. width:115px;
  4821. height:38px;
  4822. }
  4823. #u144242 {
  4824. border-width:0px;
  4825. position:absolute;
  4826. left:690px;
  4827. top:151px;
  4828. width:115px;
  4829. height:38px;
  4830. display:flex;
  4831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4832. font-weight:400;
  4833. font-style:normal;
  4834. font-size:12px;
  4835. }
  4836. #u144242 .text {
  4837. position:absolute;
  4838. align-self:center;
  4839. padding:2px 2px 2px 0px;
  4840. box-sizing:border-box;
  4841. width:100%;
  4842. }
  4843. #u144242_text {
  4844. border-width:0px;
  4845. word-wrap:break-word;
  4846. text-transform:none;
  4847. visibility:hidden;
  4848. }
  4849. #u144243_img {
  4850. border-width:0px;
  4851. position:absolute;
  4852. left:0px;
  4853. top:0px;
  4854. width:119px;
  4855. height:38px;
  4856. }
  4857. #u144243 {
  4858. border-width:0px;
  4859. position:absolute;
  4860. left:805px;
  4861. top:151px;
  4862. width:119px;
  4863. height:38px;
  4864. display:flex;
  4865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4866. font-weight:400;
  4867. font-style:normal;
  4868. font-size:12px;
  4869. color:#1890FF;
  4870. }
  4871. #u144243 .text {
  4872. position:absolute;
  4873. align-self:center;
  4874. padding:2px 2px 2px 0px;
  4875. box-sizing:border-box;
  4876. width:100%;
  4877. }
  4878. #u144243_text {
  4879. border-width:0px;
  4880. word-wrap:break-word;
  4881. text-transform:none;
  4882. visibility:hidden;
  4883. }
  4884. #u144244_img {
  4885. border-width:0px;
  4886. position:absolute;
  4887. left:0px;
  4888. top:0px;
  4889. width:115px;
  4890. height:35px;
  4891. }
  4892. #u144244 {
  4893. border-width:0px;
  4894. position:absolute;
  4895. left:0px;
  4896. top:189px;
  4897. width:115px;
  4898. height:35px;
  4899. display:flex;
  4900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4901. font-weight:400;
  4902. font-style:normal;
  4903. font-size:12px;
  4904. color:#606266;
  4905. }
  4906. #u144244 .text {
  4907. position:absolute;
  4908. align-self:center;
  4909. padding:2px 2px 2px 0px;
  4910. box-sizing:border-box;
  4911. width:100%;
  4912. }
  4913. #u144244_text {
  4914. border-width:0px;
  4915. word-wrap:break-word;
  4916. text-transform:none;
  4917. visibility:hidden;
  4918. }
  4919. #u144245_img {
  4920. border-width:0px;
  4921. position:absolute;
  4922. left:0px;
  4923. top:0px;
  4924. width:115px;
  4925. height:35px;
  4926. }
  4927. #u144245 {
  4928. border-width:0px;
  4929. position:absolute;
  4930. left:115px;
  4931. top:189px;
  4932. width:115px;
  4933. height:35px;
  4934. display:flex;
  4935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4936. font-weight:400;
  4937. font-style:normal;
  4938. font-size:12px;
  4939. color:#606266;
  4940. }
  4941. #u144245 .text {
  4942. position:absolute;
  4943. align-self:center;
  4944. padding:2px 2px 2px 0px;
  4945. box-sizing:border-box;
  4946. width:100%;
  4947. }
  4948. #u144245_text {
  4949. border-width:0px;
  4950. word-wrap:break-word;
  4951. text-transform:none;
  4952. visibility:hidden;
  4953. }
  4954. #u144246_img {
  4955. border-width:0px;
  4956. position:absolute;
  4957. left:0px;
  4958. top:0px;
  4959. width:115px;
  4960. height:35px;
  4961. }
  4962. #u144246 {
  4963. border-width:0px;
  4964. position:absolute;
  4965. left:230px;
  4966. top:189px;
  4967. width:115px;
  4968. height:35px;
  4969. display:flex;
  4970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4971. font-weight:400;
  4972. font-style:normal;
  4973. font-size:12px;
  4974. color:#606266;
  4975. }
  4976. #u144246 .text {
  4977. position:absolute;
  4978. align-self:center;
  4979. padding:2px 2px 2px 0px;
  4980. box-sizing:border-box;
  4981. width:100%;
  4982. }
  4983. #u144246_text {
  4984. border-width:0px;
  4985. word-wrap:break-word;
  4986. text-transform:none;
  4987. visibility:hidden;
  4988. }
  4989. #u144247_img {
  4990. border-width:0px;
  4991. position:absolute;
  4992. left:0px;
  4993. top:0px;
  4994. width:115px;
  4995. height:35px;
  4996. }
  4997. #u144247 {
  4998. border-width:0px;
  4999. position:absolute;
  5000. left:345px;
  5001. top:189px;
  5002. width:115px;
  5003. height:35px;
  5004. display:flex;
  5005. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5006. font-weight:400;
  5007. font-style:normal;
  5008. font-size:12px;
  5009. color:#606266;
  5010. }
  5011. #u144247 .text {
  5012. position:absolute;
  5013. align-self:center;
  5014. padding:2px 2px 2px 0px;
  5015. box-sizing:border-box;
  5016. width:100%;
  5017. }
  5018. #u144247_text {
  5019. border-width:0px;
  5020. word-wrap:break-word;
  5021. text-transform:none;
  5022. visibility:hidden;
  5023. }
  5024. #u144248_img {
  5025. border-width:0px;
  5026. position:absolute;
  5027. left:0px;
  5028. top:0px;
  5029. width:115px;
  5030. height:35px;
  5031. }
  5032. #u144248 {
  5033. border-width:0px;
  5034. position:absolute;
  5035. left:460px;
  5036. top:189px;
  5037. width:115px;
  5038. height:35px;
  5039. display:flex;
  5040. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5041. font-weight:400;
  5042. font-style:normal;
  5043. font-size:12px;
  5044. color:#606266;
  5045. }
  5046. #u144248 .text {
  5047. position:absolute;
  5048. align-self:center;
  5049. padding:2px 2px 2px 0px;
  5050. box-sizing:border-box;
  5051. width:100%;
  5052. }
  5053. #u144248_text {
  5054. border-width:0px;
  5055. word-wrap:break-word;
  5056. text-transform:none;
  5057. visibility:hidden;
  5058. }
  5059. #u144249_img {
  5060. border-width:0px;
  5061. position:absolute;
  5062. left:0px;
  5063. top:0px;
  5064. width:115px;
  5065. height:35px;
  5066. }
  5067. #u144249 {
  5068. border-width:0px;
  5069. position:absolute;
  5070. left:575px;
  5071. top:189px;
  5072. width:115px;
  5073. height:35px;
  5074. display:flex;
  5075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5076. font-weight:400;
  5077. font-style:normal;
  5078. font-size:12px;
  5079. color:#606266;
  5080. }
  5081. #u144249 .text {
  5082. position:absolute;
  5083. align-self:center;
  5084. padding:2px 2px 2px 0px;
  5085. box-sizing:border-box;
  5086. width:100%;
  5087. }
  5088. #u144249_text {
  5089. border-width:0px;
  5090. word-wrap:break-word;
  5091. text-transform:none;
  5092. visibility:hidden;
  5093. }
  5094. #u144250_img {
  5095. border-width:0px;
  5096. position:absolute;
  5097. left:0px;
  5098. top:0px;
  5099. width:115px;
  5100. height:35px;
  5101. }
  5102. #u144250 {
  5103. border-width:0px;
  5104. position:absolute;
  5105. left:690px;
  5106. top:189px;
  5107. width:115px;
  5108. height:35px;
  5109. display:flex;
  5110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5111. font-weight:400;
  5112. font-style:normal;
  5113. font-size:12px;
  5114. color:#606266;
  5115. }
  5116. #u144250 .text {
  5117. position:absolute;
  5118. align-self:center;
  5119. padding:2px 2px 2px 0px;
  5120. box-sizing:border-box;
  5121. width:100%;
  5122. }
  5123. #u144250_text {
  5124. border-width:0px;
  5125. word-wrap:break-word;
  5126. text-transform:none;
  5127. visibility:hidden;
  5128. }
  5129. #u144251_img {
  5130. border-width:0px;
  5131. position:absolute;
  5132. left:0px;
  5133. top:0px;
  5134. width:119px;
  5135. height:35px;
  5136. }
  5137. #u144251 {
  5138. border-width:0px;
  5139. position:absolute;
  5140. left:805px;
  5141. top:189px;
  5142. width:119px;
  5143. height:35px;
  5144. display:flex;
  5145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5146. font-weight:400;
  5147. font-style:normal;
  5148. font-size:12px;
  5149. color:#02A7F0;
  5150. }
  5151. #u144251 .text {
  5152. position:absolute;
  5153. align-self:center;
  5154. padding:2px 2px 2px 0px;
  5155. box-sizing:border-box;
  5156. width:100%;
  5157. }
  5158. #u144251_text {
  5159. border-width:0px;
  5160. word-wrap:break-word;
  5161. text-transform:none;
  5162. visibility:hidden;
  5163. }
  5164. #u144252_img {
  5165. border-width:0px;
  5166. position:absolute;
  5167. left:0px;
  5168. top:0px;
  5169. width:115px;
  5170. height:35px;
  5171. }
  5172. #u144252 {
  5173. border-width:0px;
  5174. position:absolute;
  5175. left:0px;
  5176. top:224px;
  5177. width:115px;
  5178. height:35px;
  5179. display:flex;
  5180. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5181. font-weight:400;
  5182. font-style:normal;
  5183. font-size:12px;
  5184. color:#606266;
  5185. }
  5186. #u144252 .text {
  5187. position:absolute;
  5188. align-self:center;
  5189. padding:2px 2px 2px 0px;
  5190. box-sizing:border-box;
  5191. width:100%;
  5192. }
  5193. #u144252_text {
  5194. border-width:0px;
  5195. word-wrap:break-word;
  5196. text-transform:none;
  5197. visibility:hidden;
  5198. }
  5199. #u144253_img {
  5200. border-width:0px;
  5201. position:absolute;
  5202. left:0px;
  5203. top:0px;
  5204. width:115px;
  5205. height:35px;
  5206. }
  5207. #u144253 {
  5208. border-width:0px;
  5209. position:absolute;
  5210. left:115px;
  5211. top:224px;
  5212. width:115px;
  5213. height:35px;
  5214. display:flex;
  5215. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5216. font-weight:400;
  5217. font-style:normal;
  5218. font-size:12px;
  5219. color:#606266;
  5220. }
  5221. #u144253 .text {
  5222. position:absolute;
  5223. align-self:center;
  5224. padding:2px 2px 2px 0px;
  5225. box-sizing:border-box;
  5226. width:100%;
  5227. }
  5228. #u144253_text {
  5229. border-width:0px;
  5230. word-wrap:break-word;
  5231. text-transform:none;
  5232. visibility:hidden;
  5233. }
  5234. #u144254_img {
  5235. border-width:0px;
  5236. position:absolute;
  5237. left:0px;
  5238. top:0px;
  5239. width:115px;
  5240. height:35px;
  5241. }
  5242. #u144254 {
  5243. border-width:0px;
  5244. position:absolute;
  5245. left:230px;
  5246. top:224px;
  5247. width:115px;
  5248. height:35px;
  5249. display:flex;
  5250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5251. font-weight:400;
  5252. font-style:normal;
  5253. font-size:12px;
  5254. color:#606266;
  5255. }
  5256. #u144254 .text {
  5257. position:absolute;
  5258. align-self:center;
  5259. padding:2px 2px 2px 0px;
  5260. box-sizing:border-box;
  5261. width:100%;
  5262. }
  5263. #u144254_text {
  5264. border-width:0px;
  5265. word-wrap:break-word;
  5266. text-transform:none;
  5267. visibility:hidden;
  5268. }
  5269. #u144255_img {
  5270. border-width:0px;
  5271. position:absolute;
  5272. left:0px;
  5273. top:0px;
  5274. width:115px;
  5275. height:35px;
  5276. }
  5277. #u144255 {
  5278. border-width:0px;
  5279. position:absolute;
  5280. left:345px;
  5281. top:224px;
  5282. width:115px;
  5283. height:35px;
  5284. display:flex;
  5285. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5286. font-weight:400;
  5287. font-style:normal;
  5288. font-size:12px;
  5289. color:#606266;
  5290. }
  5291. #u144255 .text {
  5292. position:absolute;
  5293. align-self:center;
  5294. padding:2px 2px 2px 0px;
  5295. box-sizing:border-box;
  5296. width:100%;
  5297. }
  5298. #u144255_text {
  5299. border-width:0px;
  5300. word-wrap:break-word;
  5301. text-transform:none;
  5302. visibility:hidden;
  5303. }
  5304. #u144256_img {
  5305. border-width:0px;
  5306. position:absolute;
  5307. left:0px;
  5308. top:0px;
  5309. width:115px;
  5310. height:35px;
  5311. }
  5312. #u144256 {
  5313. border-width:0px;
  5314. position:absolute;
  5315. left:460px;
  5316. top:224px;
  5317. width:115px;
  5318. height:35px;
  5319. display:flex;
  5320. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5321. font-weight:400;
  5322. font-style:normal;
  5323. font-size:12px;
  5324. color:#606266;
  5325. }
  5326. #u144256 .text {
  5327. position:absolute;
  5328. align-self:center;
  5329. padding:2px 2px 2px 0px;
  5330. box-sizing:border-box;
  5331. width:100%;
  5332. }
  5333. #u144256_text {
  5334. border-width:0px;
  5335. word-wrap:break-word;
  5336. text-transform:none;
  5337. visibility:hidden;
  5338. }
  5339. #u144257_img {
  5340. border-width:0px;
  5341. position:absolute;
  5342. left:0px;
  5343. top:0px;
  5344. width:115px;
  5345. height:35px;
  5346. }
  5347. #u144257 {
  5348. border-width:0px;
  5349. position:absolute;
  5350. left:575px;
  5351. top:224px;
  5352. width:115px;
  5353. height:35px;
  5354. display:flex;
  5355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5356. font-weight:400;
  5357. font-style:normal;
  5358. font-size:12px;
  5359. color:#606266;
  5360. }
  5361. #u144257 .text {
  5362. position:absolute;
  5363. align-self:center;
  5364. padding:2px 2px 2px 0px;
  5365. box-sizing:border-box;
  5366. width:100%;
  5367. }
  5368. #u144257_text {
  5369. border-width:0px;
  5370. word-wrap:break-word;
  5371. text-transform:none;
  5372. visibility:hidden;
  5373. }
  5374. #u144258_img {
  5375. border-width:0px;
  5376. position:absolute;
  5377. left:0px;
  5378. top:0px;
  5379. width:115px;
  5380. height:35px;
  5381. }
  5382. #u144258 {
  5383. border-width:0px;
  5384. position:absolute;
  5385. left:690px;
  5386. top:224px;
  5387. width:115px;
  5388. height:35px;
  5389. display:flex;
  5390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5391. font-weight:400;
  5392. font-style:normal;
  5393. font-size:12px;
  5394. color:#606266;
  5395. }
  5396. #u144258 .text {
  5397. position:absolute;
  5398. align-self:center;
  5399. padding:2px 2px 2px 0px;
  5400. box-sizing:border-box;
  5401. width:100%;
  5402. }
  5403. #u144258_text {
  5404. border-width:0px;
  5405. word-wrap:break-word;
  5406. text-transform:none;
  5407. visibility:hidden;
  5408. }
  5409. #u144259_img {
  5410. border-width:0px;
  5411. position:absolute;
  5412. left:0px;
  5413. top:0px;
  5414. width:119px;
  5415. height:35px;
  5416. }
  5417. #u144259 {
  5418. border-width:0px;
  5419. position:absolute;
  5420. left:805px;
  5421. top:224px;
  5422. width:119px;
  5423. height:35px;
  5424. display:flex;
  5425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5426. font-weight:400;
  5427. font-style:normal;
  5428. font-size:12px;
  5429. color:#02A7F0;
  5430. }
  5431. #u144259 .text {
  5432. position:absolute;
  5433. align-self:center;
  5434. padding:2px 2px 2px 0px;
  5435. box-sizing:border-box;
  5436. width:100%;
  5437. }
  5438. #u144259_text {
  5439. border-width:0px;
  5440. word-wrap:break-word;
  5441. text-transform:none;
  5442. visibility:hidden;
  5443. }
  5444. #u144260_img {
  5445. border-width:0px;
  5446. position:absolute;
  5447. left:0px;
  5448. top:0px;
  5449. width:115px;
  5450. height:35px;
  5451. }
  5452. #u144260 {
  5453. border-width:0px;
  5454. position:absolute;
  5455. left:0px;
  5456. top:259px;
  5457. width:115px;
  5458. height:35px;
  5459. display:flex;
  5460. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5461. font-weight:400;
  5462. font-style:normal;
  5463. font-size:12px;
  5464. color:#606266;
  5465. }
  5466. #u144260 .text {
  5467. position:absolute;
  5468. align-self:center;
  5469. padding:2px 2px 2px 0px;
  5470. box-sizing:border-box;
  5471. width:100%;
  5472. }
  5473. #u144260_text {
  5474. border-width:0px;
  5475. word-wrap:break-word;
  5476. text-transform:none;
  5477. visibility:hidden;
  5478. }
  5479. #u144261_img {
  5480. border-width:0px;
  5481. position:absolute;
  5482. left:0px;
  5483. top:0px;
  5484. width:115px;
  5485. height:35px;
  5486. }
  5487. #u144261 {
  5488. border-width:0px;
  5489. position:absolute;
  5490. left:115px;
  5491. top:259px;
  5492. width:115px;
  5493. height:35px;
  5494. display:flex;
  5495. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5496. font-weight:400;
  5497. font-style:normal;
  5498. font-size:12px;
  5499. color:#606266;
  5500. }
  5501. #u144261 .text {
  5502. position:absolute;
  5503. align-self:center;
  5504. padding:2px 2px 2px 0px;
  5505. box-sizing:border-box;
  5506. width:100%;
  5507. }
  5508. #u144261_text {
  5509. border-width:0px;
  5510. word-wrap:break-word;
  5511. text-transform:none;
  5512. visibility:hidden;
  5513. }
  5514. #u144262_img {
  5515. border-width:0px;
  5516. position:absolute;
  5517. left:0px;
  5518. top:0px;
  5519. width:115px;
  5520. height:35px;
  5521. }
  5522. #u144262 {
  5523. border-width:0px;
  5524. position:absolute;
  5525. left:230px;
  5526. top:259px;
  5527. width:115px;
  5528. height:35px;
  5529. display:flex;
  5530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5531. font-weight:400;
  5532. font-style:normal;
  5533. font-size:12px;
  5534. color:#606266;
  5535. }
  5536. #u144262 .text {
  5537. position:absolute;
  5538. align-self:center;
  5539. padding:2px 2px 2px 0px;
  5540. box-sizing:border-box;
  5541. width:100%;
  5542. }
  5543. #u144262_text {
  5544. border-width:0px;
  5545. word-wrap:break-word;
  5546. text-transform:none;
  5547. visibility:hidden;
  5548. }
  5549. #u144263_img {
  5550. border-width:0px;
  5551. position:absolute;
  5552. left:0px;
  5553. top:0px;
  5554. width:115px;
  5555. height:35px;
  5556. }
  5557. #u144263 {
  5558. border-width:0px;
  5559. position:absolute;
  5560. left:345px;
  5561. top:259px;
  5562. width:115px;
  5563. height:35px;
  5564. display:flex;
  5565. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5566. font-weight:400;
  5567. font-style:normal;
  5568. font-size:12px;
  5569. color:#606266;
  5570. }
  5571. #u144263 .text {
  5572. position:absolute;
  5573. align-self:center;
  5574. padding:2px 2px 2px 0px;
  5575. box-sizing:border-box;
  5576. width:100%;
  5577. }
  5578. #u144263_text {
  5579. border-width:0px;
  5580. word-wrap:break-word;
  5581. text-transform:none;
  5582. visibility:hidden;
  5583. }
  5584. #u144264_img {
  5585. border-width:0px;
  5586. position:absolute;
  5587. left:0px;
  5588. top:0px;
  5589. width:115px;
  5590. height:35px;
  5591. }
  5592. #u144264 {
  5593. border-width:0px;
  5594. position:absolute;
  5595. left:460px;
  5596. top:259px;
  5597. width:115px;
  5598. height:35px;
  5599. display:flex;
  5600. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5601. font-weight:400;
  5602. font-style:normal;
  5603. font-size:12px;
  5604. color:#606266;
  5605. }
  5606. #u144264 .text {
  5607. position:absolute;
  5608. align-self:center;
  5609. padding:2px 2px 2px 0px;
  5610. box-sizing:border-box;
  5611. width:100%;
  5612. }
  5613. #u144264_text {
  5614. border-width:0px;
  5615. word-wrap:break-word;
  5616. text-transform:none;
  5617. visibility:hidden;
  5618. }
  5619. #u144265_img {
  5620. border-width:0px;
  5621. position:absolute;
  5622. left:0px;
  5623. top:0px;
  5624. width:115px;
  5625. height:35px;
  5626. }
  5627. #u144265 {
  5628. border-width:0px;
  5629. position:absolute;
  5630. left:575px;
  5631. top:259px;
  5632. width:115px;
  5633. height:35px;
  5634. display:flex;
  5635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5636. font-weight:400;
  5637. font-style:normal;
  5638. font-size:12px;
  5639. color:#606266;
  5640. }
  5641. #u144265 .text {
  5642. position:absolute;
  5643. align-self:center;
  5644. padding:2px 2px 2px 0px;
  5645. box-sizing:border-box;
  5646. width:100%;
  5647. }
  5648. #u144265_text {
  5649. border-width:0px;
  5650. word-wrap:break-word;
  5651. text-transform:none;
  5652. visibility:hidden;
  5653. }
  5654. #u144266_img {
  5655. border-width:0px;
  5656. position:absolute;
  5657. left:0px;
  5658. top:0px;
  5659. width:115px;
  5660. height:35px;
  5661. }
  5662. #u144266 {
  5663. border-width:0px;
  5664. position:absolute;
  5665. left:690px;
  5666. top:259px;
  5667. width:115px;
  5668. height:35px;
  5669. display:flex;
  5670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5671. font-weight:400;
  5672. font-style:normal;
  5673. font-size:12px;
  5674. color:#606266;
  5675. }
  5676. #u144266 .text {
  5677. position:absolute;
  5678. align-self:center;
  5679. padding:2px 2px 2px 0px;
  5680. box-sizing:border-box;
  5681. width:100%;
  5682. }
  5683. #u144266_text {
  5684. border-width:0px;
  5685. word-wrap:break-word;
  5686. text-transform:none;
  5687. visibility:hidden;
  5688. }
  5689. #u144267_img {
  5690. border-width:0px;
  5691. position:absolute;
  5692. left:0px;
  5693. top:0px;
  5694. width:119px;
  5695. height:35px;
  5696. }
  5697. #u144267 {
  5698. border-width:0px;
  5699. position:absolute;
  5700. left:805px;
  5701. top:259px;
  5702. width:119px;
  5703. height:35px;
  5704. display:flex;
  5705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5706. font-weight:400;
  5707. font-style:normal;
  5708. font-size:12px;
  5709. color:#02A7F0;
  5710. }
  5711. #u144267 .text {
  5712. position:absolute;
  5713. align-self:center;
  5714. padding:2px 2px 2px 0px;
  5715. box-sizing:border-box;
  5716. width:100%;
  5717. }
  5718. #u144267_text {
  5719. border-width:0px;
  5720. word-wrap:break-word;
  5721. text-transform:none;
  5722. visibility:hidden;
  5723. }
  5724. #u144268_img {
  5725. border-width:0px;
  5726. position:absolute;
  5727. left:0px;
  5728. top:0px;
  5729. width:115px;
  5730. height:35px;
  5731. }
  5732. #u144268 {
  5733. border-width:0px;
  5734. position:absolute;
  5735. left:0px;
  5736. top:294px;
  5737. width:115px;
  5738. height:35px;
  5739. display:flex;
  5740. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5741. font-weight:400;
  5742. font-style:normal;
  5743. font-size:12px;
  5744. color:#606266;
  5745. }
  5746. #u144268 .text {
  5747. position:absolute;
  5748. align-self:center;
  5749. padding:2px 2px 2px 0px;
  5750. box-sizing:border-box;
  5751. width:100%;
  5752. }
  5753. #u144268_text {
  5754. border-width:0px;
  5755. word-wrap:break-word;
  5756. text-transform:none;
  5757. visibility:hidden;
  5758. }
  5759. #u144269_img {
  5760. border-width:0px;
  5761. position:absolute;
  5762. left:0px;
  5763. top:0px;
  5764. width:115px;
  5765. height:35px;
  5766. }
  5767. #u144269 {
  5768. border-width:0px;
  5769. position:absolute;
  5770. left:115px;
  5771. top:294px;
  5772. width:115px;
  5773. height:35px;
  5774. display:flex;
  5775. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5776. font-weight:400;
  5777. font-style:normal;
  5778. font-size:12px;
  5779. color:#606266;
  5780. }
  5781. #u144269 .text {
  5782. position:absolute;
  5783. align-self:center;
  5784. padding:2px 2px 2px 0px;
  5785. box-sizing:border-box;
  5786. width:100%;
  5787. }
  5788. #u144269_text {
  5789. border-width:0px;
  5790. word-wrap:break-word;
  5791. text-transform:none;
  5792. visibility:hidden;
  5793. }
  5794. #u144270_img {
  5795. border-width:0px;
  5796. position:absolute;
  5797. left:0px;
  5798. top:0px;
  5799. width:115px;
  5800. height:35px;
  5801. }
  5802. #u144270 {
  5803. border-width:0px;
  5804. position:absolute;
  5805. left:230px;
  5806. top:294px;
  5807. width:115px;
  5808. height:35px;
  5809. display:flex;
  5810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5811. font-weight:400;
  5812. font-style:normal;
  5813. font-size:12px;
  5814. color:#606266;
  5815. }
  5816. #u144270 .text {
  5817. position:absolute;
  5818. align-self:center;
  5819. padding:2px 2px 2px 0px;
  5820. box-sizing:border-box;
  5821. width:100%;
  5822. }
  5823. #u144270_text {
  5824. border-width:0px;
  5825. word-wrap:break-word;
  5826. text-transform:none;
  5827. visibility:hidden;
  5828. }
  5829. #u144271_img {
  5830. border-width:0px;
  5831. position:absolute;
  5832. left:0px;
  5833. top:0px;
  5834. width:115px;
  5835. height:35px;
  5836. }
  5837. #u144271 {
  5838. border-width:0px;
  5839. position:absolute;
  5840. left:345px;
  5841. top:294px;
  5842. width:115px;
  5843. height:35px;
  5844. display:flex;
  5845. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5846. font-weight:400;
  5847. font-style:normal;
  5848. font-size:12px;
  5849. color:#606266;
  5850. }
  5851. #u144271 .text {
  5852. position:absolute;
  5853. align-self:center;
  5854. padding:2px 2px 2px 0px;
  5855. box-sizing:border-box;
  5856. width:100%;
  5857. }
  5858. #u144271_text {
  5859. border-width:0px;
  5860. word-wrap:break-word;
  5861. text-transform:none;
  5862. visibility:hidden;
  5863. }
  5864. #u144272_img {
  5865. border-width:0px;
  5866. position:absolute;
  5867. left:0px;
  5868. top:0px;
  5869. width:115px;
  5870. height:35px;
  5871. }
  5872. #u144272 {
  5873. border-width:0px;
  5874. position:absolute;
  5875. left:460px;
  5876. top:294px;
  5877. width:115px;
  5878. height:35px;
  5879. display:flex;
  5880. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5881. font-weight:400;
  5882. font-style:normal;
  5883. font-size:12px;
  5884. color:#606266;
  5885. }
  5886. #u144272 .text {
  5887. position:absolute;
  5888. align-self:center;
  5889. padding:2px 2px 2px 0px;
  5890. box-sizing:border-box;
  5891. width:100%;
  5892. }
  5893. #u144272_text {
  5894. border-width:0px;
  5895. word-wrap:break-word;
  5896. text-transform:none;
  5897. visibility:hidden;
  5898. }
  5899. #u144273_img {
  5900. border-width:0px;
  5901. position:absolute;
  5902. left:0px;
  5903. top:0px;
  5904. width:115px;
  5905. height:35px;
  5906. }
  5907. #u144273 {
  5908. border-width:0px;
  5909. position:absolute;
  5910. left:575px;
  5911. top:294px;
  5912. width:115px;
  5913. height:35px;
  5914. display:flex;
  5915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5916. font-weight:400;
  5917. font-style:normal;
  5918. font-size:12px;
  5919. color:#606266;
  5920. }
  5921. #u144273 .text {
  5922. position:absolute;
  5923. align-self:center;
  5924. padding:2px 2px 2px 0px;
  5925. box-sizing:border-box;
  5926. width:100%;
  5927. }
  5928. #u144273_text {
  5929. border-width:0px;
  5930. word-wrap:break-word;
  5931. text-transform:none;
  5932. visibility:hidden;
  5933. }
  5934. #u144274_img {
  5935. border-width:0px;
  5936. position:absolute;
  5937. left:0px;
  5938. top:0px;
  5939. width:115px;
  5940. height:35px;
  5941. }
  5942. #u144274 {
  5943. border-width:0px;
  5944. position:absolute;
  5945. left:690px;
  5946. top:294px;
  5947. width:115px;
  5948. height:35px;
  5949. display:flex;
  5950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5951. font-weight:400;
  5952. font-style:normal;
  5953. font-size:12px;
  5954. color:#606266;
  5955. }
  5956. #u144274 .text {
  5957. position:absolute;
  5958. align-self:center;
  5959. padding:2px 2px 2px 0px;
  5960. box-sizing:border-box;
  5961. width:100%;
  5962. }
  5963. #u144274_text {
  5964. border-width:0px;
  5965. word-wrap:break-word;
  5966. text-transform:none;
  5967. visibility:hidden;
  5968. }
  5969. #u144275_img {
  5970. border-width:0px;
  5971. position:absolute;
  5972. left:0px;
  5973. top:0px;
  5974. width:119px;
  5975. height:35px;
  5976. }
  5977. #u144275 {
  5978. border-width:0px;
  5979. position:absolute;
  5980. left:805px;
  5981. top:294px;
  5982. width:119px;
  5983. height:35px;
  5984. display:flex;
  5985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5986. font-weight:400;
  5987. font-style:normal;
  5988. font-size:12px;
  5989. color:#02A7F0;
  5990. }
  5991. #u144275 .text {
  5992. position:absolute;
  5993. align-self:center;
  5994. padding:2px 2px 2px 0px;
  5995. box-sizing:border-box;
  5996. width:100%;
  5997. }
  5998. #u144275_text {
  5999. border-width:0px;
  6000. word-wrap:break-word;
  6001. text-transform:none;
  6002. visibility:hidden;
  6003. }
  6004. #u144276_img {
  6005. border-width:0px;
  6006. position:absolute;
  6007. left:0px;
  6008. top:0px;
  6009. width:115px;
  6010. height:35px;
  6011. }
  6012. #u144276 {
  6013. border-width:0px;
  6014. position:absolute;
  6015. left:0px;
  6016. top:329px;
  6017. width:115px;
  6018. height:35px;
  6019. display:flex;
  6020. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6021. font-weight:400;
  6022. font-style:normal;
  6023. font-size:12px;
  6024. color:#606266;
  6025. }
  6026. #u144276 .text {
  6027. position:absolute;
  6028. align-self:center;
  6029. padding:2px 2px 2px 0px;
  6030. box-sizing:border-box;
  6031. width:100%;
  6032. }
  6033. #u144276_text {
  6034. border-width:0px;
  6035. word-wrap:break-word;
  6036. text-transform:none;
  6037. visibility:hidden;
  6038. }
  6039. #u144277_img {
  6040. border-width:0px;
  6041. position:absolute;
  6042. left:0px;
  6043. top:0px;
  6044. width:115px;
  6045. height:35px;
  6046. }
  6047. #u144277 {
  6048. border-width:0px;
  6049. position:absolute;
  6050. left:115px;
  6051. top:329px;
  6052. width:115px;
  6053. height:35px;
  6054. display:flex;
  6055. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6056. font-weight:400;
  6057. font-style:normal;
  6058. font-size:12px;
  6059. color:#606266;
  6060. }
  6061. #u144277 .text {
  6062. position:absolute;
  6063. align-self:center;
  6064. padding:2px 2px 2px 0px;
  6065. box-sizing:border-box;
  6066. width:100%;
  6067. }
  6068. #u144277_text {
  6069. border-width:0px;
  6070. word-wrap:break-word;
  6071. text-transform:none;
  6072. visibility:hidden;
  6073. }
  6074. #u144278_img {
  6075. border-width:0px;
  6076. position:absolute;
  6077. left:0px;
  6078. top:0px;
  6079. width:115px;
  6080. height:35px;
  6081. }
  6082. #u144278 {
  6083. border-width:0px;
  6084. position:absolute;
  6085. left:230px;
  6086. top:329px;
  6087. width:115px;
  6088. height:35px;
  6089. display:flex;
  6090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6091. font-weight:400;
  6092. font-style:normal;
  6093. font-size:12px;
  6094. color:#606266;
  6095. }
  6096. #u144278 .text {
  6097. position:absolute;
  6098. align-self:center;
  6099. padding:2px 2px 2px 0px;
  6100. box-sizing:border-box;
  6101. width:100%;
  6102. }
  6103. #u144278_text {
  6104. border-width:0px;
  6105. word-wrap:break-word;
  6106. text-transform:none;
  6107. visibility:hidden;
  6108. }
  6109. #u144279_img {
  6110. border-width:0px;
  6111. position:absolute;
  6112. left:0px;
  6113. top:0px;
  6114. width:115px;
  6115. height:35px;
  6116. }
  6117. #u144279 {
  6118. border-width:0px;
  6119. position:absolute;
  6120. left:345px;
  6121. top:329px;
  6122. width:115px;
  6123. height:35px;
  6124. display:flex;
  6125. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6126. font-weight:400;
  6127. font-style:normal;
  6128. font-size:12px;
  6129. color:#606266;
  6130. }
  6131. #u144279 .text {
  6132. position:absolute;
  6133. align-self:center;
  6134. padding:2px 2px 2px 0px;
  6135. box-sizing:border-box;
  6136. width:100%;
  6137. }
  6138. #u144279_text {
  6139. border-width:0px;
  6140. word-wrap:break-word;
  6141. text-transform:none;
  6142. visibility:hidden;
  6143. }
  6144. #u144280_img {
  6145. border-width:0px;
  6146. position:absolute;
  6147. left:0px;
  6148. top:0px;
  6149. width:115px;
  6150. height:35px;
  6151. }
  6152. #u144280 {
  6153. border-width:0px;
  6154. position:absolute;
  6155. left:460px;
  6156. top:329px;
  6157. width:115px;
  6158. height:35px;
  6159. display:flex;
  6160. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6161. font-weight:400;
  6162. font-style:normal;
  6163. font-size:12px;
  6164. color:#606266;
  6165. }
  6166. #u144280 .text {
  6167. position:absolute;
  6168. align-self:center;
  6169. padding:2px 2px 2px 0px;
  6170. box-sizing:border-box;
  6171. width:100%;
  6172. }
  6173. #u144280_text {
  6174. border-width:0px;
  6175. word-wrap:break-word;
  6176. text-transform:none;
  6177. visibility:hidden;
  6178. }
  6179. #u144281_img {
  6180. border-width:0px;
  6181. position:absolute;
  6182. left:0px;
  6183. top:0px;
  6184. width:115px;
  6185. height:35px;
  6186. }
  6187. #u144281 {
  6188. border-width:0px;
  6189. position:absolute;
  6190. left:575px;
  6191. top:329px;
  6192. width:115px;
  6193. height:35px;
  6194. display:flex;
  6195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6196. font-weight:400;
  6197. font-style:normal;
  6198. font-size:12px;
  6199. color:#606266;
  6200. }
  6201. #u144281 .text {
  6202. position:absolute;
  6203. align-self:center;
  6204. padding:2px 2px 2px 0px;
  6205. box-sizing:border-box;
  6206. width:100%;
  6207. }
  6208. #u144281_text {
  6209. border-width:0px;
  6210. word-wrap:break-word;
  6211. text-transform:none;
  6212. visibility:hidden;
  6213. }
  6214. #u144282_img {
  6215. border-width:0px;
  6216. position:absolute;
  6217. left:0px;
  6218. top:0px;
  6219. width:115px;
  6220. height:35px;
  6221. }
  6222. #u144282 {
  6223. border-width:0px;
  6224. position:absolute;
  6225. left:690px;
  6226. top:329px;
  6227. width:115px;
  6228. height:35px;
  6229. display:flex;
  6230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6231. font-weight:400;
  6232. font-style:normal;
  6233. font-size:12px;
  6234. color:#606266;
  6235. }
  6236. #u144282 .text {
  6237. position:absolute;
  6238. align-self:center;
  6239. padding:2px 2px 2px 0px;
  6240. box-sizing:border-box;
  6241. width:100%;
  6242. }
  6243. #u144282_text {
  6244. border-width:0px;
  6245. word-wrap:break-word;
  6246. text-transform:none;
  6247. visibility:hidden;
  6248. }
  6249. #u144283_img {
  6250. border-width:0px;
  6251. position:absolute;
  6252. left:0px;
  6253. top:0px;
  6254. width:119px;
  6255. height:35px;
  6256. }
  6257. #u144283 {
  6258. border-width:0px;
  6259. position:absolute;
  6260. left:805px;
  6261. top:329px;
  6262. width:119px;
  6263. height:35px;
  6264. display:flex;
  6265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6266. font-weight:400;
  6267. font-style:normal;
  6268. font-size:12px;
  6269. color:#02A7F0;
  6270. }
  6271. #u144283 .text {
  6272. position:absolute;
  6273. align-self:center;
  6274. padding:2px 2px 2px 0px;
  6275. box-sizing:border-box;
  6276. width:100%;
  6277. }
  6278. #u144283_text {
  6279. border-width:0px;
  6280. word-wrap:break-word;
  6281. text-transform:none;
  6282. visibility:hidden;
  6283. }
  6284. #u144284 {
  6285. border-width:0px;
  6286. position:absolute;
  6287. left:0px;
  6288. top:0px;
  6289. width:0px;
  6290. height:0px;
  6291. }
  6292. #u144285_div {
  6293. border-width:0px;
  6294. position:absolute;
  6295. left:0px;
  6296. top:0px;
  6297. width:100px;
  6298. height:100px;
  6299. background:inherit;
  6300. background-color:rgba(255, 255, 255, 1);
  6301. box-sizing:border-box;
  6302. border-width:1px;
  6303. border-style:solid;
  6304. border-color:rgba(242, 242, 242, 1);
  6305. border-left:0px;
  6306. border-right:0px;
  6307. border-radius:3px;
  6308. border-top-left-radius:0px;
  6309. border-top-right-radius:0px;
  6310. border-bottom-right-radius:0px;
  6311. border-bottom-left-radius:0px;
  6312. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  6313. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  6314. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  6315. }
  6316. #u144285 {
  6317. border-width:0px;
  6318. position:absolute;
  6319. left:1432px;
  6320. top:265px;
  6321. width:100px;
  6322. height:100px;
  6323. display:flex;
  6324. }
  6325. #u144285 .text {
  6326. position:absolute;
  6327. align-self:center;
  6328. padding:2px 2px 2px 2px;
  6329. box-sizing:border-box;
  6330. width:100%;
  6331. }
  6332. #u144285_text {
  6333. border-width:0px;
  6334. word-wrap:break-word;
  6335. text-transform:none;
  6336. visibility:hidden;
  6337. }
  6338. #u144286_div {
  6339. border-width:0px;
  6340. position:absolute;
  6341. left:0px;
  6342. top:0px;
  6343. width:83px;
  6344. height:40px;
  6345. background:inherit;
  6346. background-color:rgba(255, 255, 255, 1);
  6347. box-sizing:border-box;
  6348. border-width:1px;
  6349. border-style:solid;
  6350. border-color:rgba(242, 242, 242, 1);
  6351. border-left:0px;
  6352. border-top:0px;
  6353. border-right:0px;
  6354. border-radius:4px;
  6355. border-bottom-right-radius:0px;
  6356. border-bottom-left-radius:0px;
  6357. -moz-box-shadow:none;
  6358. -webkit-box-shadow:none;
  6359. box-shadow:none;
  6360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6361. font-weight:400;
  6362. font-style:normal;
  6363. font-size:14px;
  6364. }
  6365. #u144286 {
  6366. border-width:0px;
  6367. position:absolute;
  6368. left:1440px;
  6369. top:276px;
  6370. width:83px;
  6371. height:40px;
  6372. display:flex;
  6373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6374. font-weight:400;
  6375. font-style:normal;
  6376. font-size:14px;
  6377. }
  6378. #u144286 .text {
  6379. position:absolute;
  6380. align-self:center;
  6381. padding:5px 0px 5px 0px;
  6382. box-sizing:border-box;
  6383. width:100%;
  6384. }
  6385. #u144286_text {
  6386. border-width:0px;
  6387. word-wrap:break-word;
  6388. text-transform:none;
  6389. }
  6390. #u144287_div {
  6391. border-width:0px;
  6392. position:absolute;
  6393. left:0px;
  6394. top:0px;
  6395. width:83px;
  6396. height:40px;
  6397. background:inherit;
  6398. background-color:rgba(255, 255, 255, 1);
  6399. border:none;
  6400. border-left:0px;
  6401. border-top:0px;
  6402. border-right:0px;
  6403. border-radius:4px;
  6404. border-bottom-right-radius:0px;
  6405. border-bottom-left-radius:0px;
  6406. -moz-box-shadow:none;
  6407. -webkit-box-shadow:none;
  6408. box-shadow:none;
  6409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6410. font-weight:400;
  6411. font-style:normal;
  6412. font-size:14px;
  6413. }
  6414. #u144287 {
  6415. border-width:0px;
  6416. position:absolute;
  6417. left:1440px;
  6418. top:316px;
  6419. width:83px;
  6420. height:40px;
  6421. display:flex;
  6422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6423. font-weight:400;
  6424. font-style:normal;
  6425. font-size:14px;
  6426. }
  6427. #u144287 .text {
  6428. position:absolute;
  6429. align-self:center;
  6430. padding:5px 0px 5px 0px;
  6431. box-sizing:border-box;
  6432. width:100%;
  6433. }
  6434. #u144287_text {
  6435. border-width:0px;
  6436. word-wrap:break-word;
  6437. text-transform:none;
  6438. }
  6439. #u144288 {
  6440. border-width:0px;
  6441. position:absolute;
  6442. left:0px;
  6443. top:0px;
  6444. width:0px;
  6445. height:0px;
  6446. }
  6447. #u144289_div {
  6448. border-width:0px;
  6449. position:absolute;
  6450. left:0px;
  6451. top:0px;
  6452. width:140px;
  6453. height:30px;
  6454. background:inherit;
  6455. background-color:rgba(255, 255, 255, 1);
  6456. box-sizing:border-box;
  6457. border-width:1px;
  6458. border-style:solid;
  6459. border-color:rgba(215, 215, 215, 1);
  6460. border-radius:4px;
  6461. -moz-box-shadow:none;
  6462. -webkit-box-shadow:none;
  6463. box-shadow:none;
  6464. font-size:11px;
  6465. }
  6466. #u144289 {
  6467. border-width:0px;
  6468. position:absolute;
  6469. left:652px;
  6470. top:105px;
  6471. width:140px;
  6472. height:30px;
  6473. display:flex;
  6474. font-size:11px;
  6475. }
  6476. #u144289 .text {
  6477. position:absolute;
  6478. align-self:center;
  6479. padding:2px 2px 2px 2px;
  6480. box-sizing:border-box;
  6481. width:100%;
  6482. }
  6483. #u144289_text {
  6484. border-width:0px;
  6485. word-wrap:break-word;
  6486. text-transform:none;
  6487. visibility:hidden;
  6488. }
  6489. #u144290_input {
  6490. position:absolute;
  6491. left:0px;
  6492. top:0px;
  6493. width:126px;
  6494. height:23px;
  6495. padding:2px 2px 2px 2px;
  6496. font-family:'ArialMT', 'Arial', sans-serif;
  6497. font-weight:400;
  6498. font-style:normal;
  6499. font-size:11px;
  6500. letter-spacing:normal;
  6501. color:#AAAAAA;
  6502. vertical-align:none;
  6503. text-align:left;
  6504. text-transform:none;
  6505. background-color:transparent;
  6506. border-color:transparent;
  6507. }
  6508. #u144290_input.disabled {
  6509. position:absolute;
  6510. left:0px;
  6511. top:0px;
  6512. width:126px;
  6513. height:23px;
  6514. padding:2px 2px 2px 2px;
  6515. font-family:'ArialMT', 'Arial', sans-serif;
  6516. font-weight:400;
  6517. font-style:normal;
  6518. font-size:11px;
  6519. letter-spacing:normal;
  6520. color:#AAAAAA;
  6521. vertical-align:none;
  6522. text-align:left;
  6523. text-transform:none;
  6524. background-color:transparent;
  6525. border-color:transparent;
  6526. }
  6527. #u144290_div {
  6528. border-width:0px;
  6529. position:absolute;
  6530. left:0px;
  6531. top:0px;
  6532. width:126px;
  6533. height:23px;
  6534. background:inherit;
  6535. background-color:rgba(255, 255, 255, 1);
  6536. border:none;
  6537. border-radius:0px;
  6538. -moz-box-shadow:none;
  6539. -webkit-box-shadow:none;
  6540. box-shadow:none;
  6541. font-size:11px;
  6542. color:#AAAAAA;
  6543. }
  6544. #u144290 {
  6545. border-width:0px;
  6546. position:absolute;
  6547. left:659px;
  6548. top:107px;
  6549. width:126px;
  6550. height:23px;
  6551. display:flex;
  6552. font-size:11px;
  6553. color:#AAAAAA;
  6554. }
  6555. #u144290 .text {
  6556. position:absolute;
  6557. align-self:flex-start;
  6558. padding:2px 2px 2px 2px;
  6559. box-sizing:border-box;
  6560. width:100%;
  6561. }
  6562. #u144290_div.disabled {
  6563. border-width:0px;
  6564. position:absolute;
  6565. left:0px;
  6566. top:0px;
  6567. width:126px;
  6568. height:23px;
  6569. background:inherit;
  6570. background-color:rgba(240, 240, 240, 1);
  6571. border:none;
  6572. border-radius:0px;
  6573. -moz-box-shadow:none;
  6574. -webkit-box-shadow:none;
  6575. box-shadow:none;
  6576. font-size:11px;
  6577. color:#AAAAAA;
  6578. }
  6579. #u144290.disabled {
  6580. }
  6581. .u144290_input_option {
  6582. font-size:11px;
  6583. }
  6584. #u144291 {
  6585. border-width:0px;
  6586. position:absolute;
  6587. left:0px;
  6588. top:0px;
  6589. width:0px;
  6590. height:0px;
  6591. }
  6592. #u144292_div {
  6593. border-width:0px;
  6594. position:absolute;
  6595. left:0px;
  6596. top:0px;
  6597. width:140px;
  6598. height:30px;
  6599. background:inherit;
  6600. background-color:rgba(255, 255, 255, 1);
  6601. box-sizing:border-box;
  6602. border-width:1px;
  6603. border-style:solid;
  6604. border-color:rgba(201, 201, 201, 1);
  6605. border-radius:4px;
  6606. -moz-box-shadow:none;
  6607. -webkit-box-shadow:none;
  6608. box-shadow:none;
  6609. font-family:'Microsoft YaHei', sans-serif;
  6610. font-weight:400;
  6611. font-style:normal;
  6612. font-size:14px;
  6613. color:#CCCCCC;
  6614. text-align:left;
  6615. }
  6616. #u144292 {
  6617. border-width:0px;
  6618. position:absolute;
  6619. left:802px;
  6620. top:106px;
  6621. width:140px;
  6622. height:30px;
  6623. display:flex;
  6624. font-family:'Microsoft YaHei', sans-serif;
  6625. font-weight:400;
  6626. font-style:normal;
  6627. font-size:14px;
  6628. color:#CCCCCC;
  6629. text-align:left;
  6630. }
  6631. #u144292 .text {
  6632. position:absolute;
  6633. align-self:center;
  6634. padding:2px 8px 2px 8px;
  6635. box-sizing:border-box;
  6636. width:100%;
  6637. }
  6638. #u144292_text {
  6639. border-width:0px;
  6640. word-wrap:break-word;
  6641. text-transform:none;
  6642. visibility:hidden;
  6643. }
  6644. #u144293_input {
  6645. position:absolute;
  6646. left:0px;
  6647. top:0px;
  6648. width:127px;
  6649. height:25px;
  6650. padding:2px 2px 2px 2px;
  6651. font-family:'Microsoft YaHei', sans-serif;
  6652. font-weight:400;
  6653. font-style:normal;
  6654. font-size:10px;
  6655. letter-spacing:normal;
  6656. color:#000000;
  6657. vertical-align:none;
  6658. text-align:left;
  6659. text-transform:none;
  6660. background-color:transparent;
  6661. border-color:transparent;
  6662. }
  6663. #u144293_input.disabled {
  6664. position:absolute;
  6665. left:0px;
  6666. top:0px;
  6667. width:127px;
  6668. height:25px;
  6669. padding:2px 2px 2px 2px;
  6670. font-family:'Microsoft YaHei', sans-serif;
  6671. font-weight:400;
  6672. font-style:normal;
  6673. font-size:10px;
  6674. letter-spacing:normal;
  6675. color:#000000;
  6676. vertical-align:none;
  6677. text-align:left;
  6678. text-transform:none;
  6679. background-color:transparent;
  6680. border-color:transparent;
  6681. }
  6682. #u144293_div {
  6683. border-width:0px;
  6684. position:absolute;
  6685. left:0px;
  6686. top:0px;
  6687. width:127px;
  6688. height:25px;
  6689. background:inherit;
  6690. background-color:rgba(255, 255, 255, 1);
  6691. border:none;
  6692. border-radius:0px;
  6693. -moz-box-shadow:none;
  6694. -webkit-box-shadow:none;
  6695. box-shadow:none;
  6696. font-family:'Microsoft YaHei', sans-serif;
  6697. font-weight:400;
  6698. font-style:normal;
  6699. font-size:10px;
  6700. }
  6701. #u144293 {
  6702. border-width:0px;
  6703. position:absolute;
  6704. left:810px;
  6705. top:107px;
  6706. width:127px;
  6707. height:25px;
  6708. display:flex;
  6709. font-family:'Microsoft YaHei', sans-serif;
  6710. font-weight:400;
  6711. font-style:normal;
  6712. font-size:10px;
  6713. }
  6714. #u144293 .text {
  6715. position:absolute;
  6716. align-self:center;
  6717. padding:2px 2px 2px 2px;
  6718. box-sizing:border-box;
  6719. width:100%;
  6720. }
  6721. #u144293_div.disabled {
  6722. border-width:0px;
  6723. position:absolute;
  6724. left:0px;
  6725. top:0px;
  6726. width:127px;
  6727. height:25px;
  6728. background:inherit;
  6729. background-color:rgba(240, 240, 240, 1);
  6730. border:none;
  6731. border-radius:0px;
  6732. -moz-box-shadow:none;
  6733. -webkit-box-shadow:none;
  6734. box-shadow:none;
  6735. font-family:'Microsoft YaHei', sans-serif;
  6736. font-weight:400;
  6737. font-style:normal;
  6738. font-size:10px;
  6739. }
  6740. #u144293.disabled {
  6741. }
  6742. #u144294 {
  6743. border-width:0px;
  6744. position:absolute;
  6745. left:0px;
  6746. top:0px;
  6747. width:0px;
  6748. height:0px;
  6749. }
  6750. #u144295_div {
  6751. border-width:0px;
  6752. position:absolute;
  6753. left:0px;
  6754. top:0px;
  6755. width:140px;
  6756. height:30px;
  6757. background:inherit;
  6758. background-color:rgba(255, 255, 255, 1);
  6759. box-sizing:border-box;
  6760. border-width:1px;
  6761. border-style:solid;
  6762. border-color:rgba(215, 215, 215, 1);
  6763. border-radius:4px;
  6764. -moz-box-shadow:none;
  6765. -webkit-box-shadow:none;
  6766. box-shadow:none;
  6767. font-size:11px;
  6768. }
  6769. #u144295 {
  6770. border-width:0px;
  6771. position:absolute;
  6772. left:952px;
  6773. top:105px;
  6774. width:140px;
  6775. height:30px;
  6776. display:flex;
  6777. font-size:11px;
  6778. }
  6779. #u144295 .text {
  6780. position:absolute;
  6781. align-self:center;
  6782. padding:2px 2px 2px 2px;
  6783. box-sizing:border-box;
  6784. width:100%;
  6785. }
  6786. #u144295_text {
  6787. border-width:0px;
  6788. word-wrap:break-word;
  6789. text-transform:none;
  6790. visibility:hidden;
  6791. }
  6792. #u144296_input {
  6793. position:absolute;
  6794. left:0px;
  6795. top:0px;
  6796. width:126px;
  6797. height:23px;
  6798. padding:2px 2px 2px 2px;
  6799. font-family:'ArialMT', 'Arial', sans-serif;
  6800. font-weight:400;
  6801. font-style:normal;
  6802. font-size:11px;
  6803. letter-spacing:normal;
  6804. color:#AAAAAA;
  6805. vertical-align:none;
  6806. text-align:left;
  6807. text-transform:none;
  6808. background-color:transparent;
  6809. border-color:transparent;
  6810. }
  6811. #u144296_input.disabled {
  6812. position:absolute;
  6813. left:0px;
  6814. top:0px;
  6815. width:126px;
  6816. height:23px;
  6817. padding:2px 2px 2px 2px;
  6818. font-family:'ArialMT', 'Arial', sans-serif;
  6819. font-weight:400;
  6820. font-style:normal;
  6821. font-size:11px;
  6822. letter-spacing:normal;
  6823. color:#AAAAAA;
  6824. vertical-align:none;
  6825. text-align:left;
  6826. text-transform:none;
  6827. background-color:transparent;
  6828. border-color:transparent;
  6829. }
  6830. #u144296_div {
  6831. border-width:0px;
  6832. position:absolute;
  6833. left:0px;
  6834. top:0px;
  6835. width:126px;
  6836. height:23px;
  6837. background:inherit;
  6838. background-color:rgba(255, 255, 255, 1);
  6839. border:none;
  6840. border-radius:0px;
  6841. -moz-box-shadow:none;
  6842. -webkit-box-shadow:none;
  6843. box-shadow:none;
  6844. font-size:11px;
  6845. color:#AAAAAA;
  6846. }
  6847. #u144296 {
  6848. border-width:0px;
  6849. position:absolute;
  6850. left:959px;
  6851. top:107px;
  6852. width:126px;
  6853. height:23px;
  6854. display:flex;
  6855. font-size:11px;
  6856. color:#AAAAAA;
  6857. }
  6858. #u144296 .text {
  6859. position:absolute;
  6860. align-self:flex-start;
  6861. padding:2px 2px 2px 2px;
  6862. box-sizing:border-box;
  6863. width:100%;
  6864. }
  6865. #u144296_div.disabled {
  6866. border-width:0px;
  6867. position:absolute;
  6868. left:0px;
  6869. top:0px;
  6870. width:126px;
  6871. height:23px;
  6872. background:inherit;
  6873. background-color:rgba(240, 240, 240, 1);
  6874. border:none;
  6875. border-radius:0px;
  6876. -moz-box-shadow:none;
  6877. -webkit-box-shadow:none;
  6878. box-shadow:none;
  6879. font-size:11px;
  6880. color:#AAAAAA;
  6881. }
  6882. #u144296.disabled {
  6883. }
  6884. .u144296_input_option {
  6885. font-size:11px;
  6886. }
  6887. #u144297 {
  6888. border-width:0px;
  6889. position:absolute;
  6890. left:0px;
  6891. top:0px;
  6892. width:0px;
  6893. height:0px;
  6894. }
  6895. #u144298_div {
  6896. border-width:0px;
  6897. position:absolute;
  6898. left:0px;
  6899. top:0px;
  6900. width:140px;
  6901. height:30px;
  6902. background:inherit;
  6903. background-color:rgba(255, 255, 255, 1);
  6904. box-sizing:border-box;
  6905. border-width:1px;
  6906. border-style:solid;
  6907. border-color:rgba(215, 215, 215, 1);
  6908. border-radius:4px;
  6909. -moz-box-shadow:none;
  6910. -webkit-box-shadow:none;
  6911. box-shadow:none;
  6912. font-size:11px;
  6913. }
  6914. #u144298 {
  6915. border-width:0px;
  6916. position:absolute;
  6917. left:1102px;
  6918. top:105px;
  6919. width:140px;
  6920. height:30px;
  6921. display:flex;
  6922. font-size:11px;
  6923. }
  6924. #u144298 .text {
  6925. position:absolute;
  6926. align-self:center;
  6927. padding:2px 2px 2px 2px;
  6928. box-sizing:border-box;
  6929. width:100%;
  6930. }
  6931. #u144298_text {
  6932. border-width:0px;
  6933. word-wrap:break-word;
  6934. text-transform:none;
  6935. visibility:hidden;
  6936. }
  6937. #u144299_input {
  6938. position:absolute;
  6939. left:0px;
  6940. top:0px;
  6941. width:126px;
  6942. height:23px;
  6943. padding:2px 2px 2px 2px;
  6944. font-family:'ArialMT', 'Arial', sans-serif;
  6945. font-weight:400;
  6946. font-style:normal;
  6947. font-size:11px;
  6948. letter-spacing:normal;
  6949. color:#AAAAAA;
  6950. vertical-align:none;
  6951. text-align:left;
  6952. text-transform:none;
  6953. background-color:transparent;
  6954. border-color:transparent;
  6955. }
  6956. #u144299_input.disabled {
  6957. position:absolute;
  6958. left:0px;
  6959. top:0px;
  6960. width:126px;
  6961. height:23px;
  6962. padding:2px 2px 2px 2px;
  6963. font-family:'ArialMT', 'Arial', sans-serif;
  6964. font-weight:400;
  6965. font-style:normal;
  6966. font-size:11px;
  6967. letter-spacing:normal;
  6968. color:#AAAAAA;
  6969. vertical-align:none;
  6970. text-align:left;
  6971. text-transform:none;
  6972. background-color:transparent;
  6973. border-color:transparent;
  6974. }
  6975. #u144299_div {
  6976. border-width:0px;
  6977. position:absolute;
  6978. left:0px;
  6979. top:0px;
  6980. width:126px;
  6981. height:23px;
  6982. background:inherit;
  6983. background-color:rgba(255, 255, 255, 1);
  6984. border:none;
  6985. border-radius:0px;
  6986. -moz-box-shadow:none;
  6987. -webkit-box-shadow:none;
  6988. box-shadow:none;
  6989. font-size:11px;
  6990. color:#AAAAAA;
  6991. }
  6992. #u144299 {
  6993. border-width:0px;
  6994. position:absolute;
  6995. left:1109px;
  6996. top:107px;
  6997. width:126px;
  6998. height:23px;
  6999. display:flex;
  7000. font-size:11px;
  7001. color:#AAAAAA;
  7002. }
  7003. #u144299 .text {
  7004. position:absolute;
  7005. align-self:flex-start;
  7006. padding:2px 2px 2px 2px;
  7007. box-sizing:border-box;
  7008. width:100%;
  7009. }
  7010. #u144299_div.disabled {
  7011. border-width:0px;
  7012. position:absolute;
  7013. left:0px;
  7014. top:0px;
  7015. width:126px;
  7016. height:23px;
  7017. background:inherit;
  7018. background-color:rgba(240, 240, 240, 1);
  7019. border:none;
  7020. border-radius:0px;
  7021. -moz-box-shadow:none;
  7022. -webkit-box-shadow:none;
  7023. box-shadow:none;
  7024. font-size:11px;
  7025. color:#AAAAAA;
  7026. }
  7027. #u144299.disabled {
  7028. }
  7029. .u144299_input_option {
  7030. font-size:11px;
  7031. }
  7032. #u144300 {
  7033. border-width:0px;
  7034. position:absolute;
  7035. left:0px;
  7036. top:0px;
  7037. width:0px;
  7038. height:0px;
  7039. }
  7040. #u144301_div {
  7041. border-width:0px;
  7042. position:absolute;
  7043. left:0px;
  7044. top:0px;
  7045. width:140px;
  7046. height:30px;
  7047. background:inherit;
  7048. background-color:rgba(255, 255, 255, 1);
  7049. box-sizing:border-box;
  7050. border-width:1px;
  7051. border-style:solid;
  7052. border-color:rgba(215, 215, 215, 1);
  7053. border-radius:4px;
  7054. -moz-box-shadow:none;
  7055. -webkit-box-shadow:none;
  7056. box-shadow:none;
  7057. font-size:11px;
  7058. }
  7059. #u144301 {
  7060. border-width:0px;
  7061. position:absolute;
  7062. left:1252px;
  7063. top:105px;
  7064. width:140px;
  7065. height:30px;
  7066. display:flex;
  7067. font-size:11px;
  7068. }
  7069. #u144301 .text {
  7070. position:absolute;
  7071. align-self:center;
  7072. padding:2px 2px 2px 2px;
  7073. box-sizing:border-box;
  7074. width:100%;
  7075. }
  7076. #u144301_text {
  7077. border-width:0px;
  7078. word-wrap:break-word;
  7079. text-transform:none;
  7080. visibility:hidden;
  7081. }
  7082. #u144302_input {
  7083. position:absolute;
  7084. left:0px;
  7085. top:0px;
  7086. width:126px;
  7087. height:23px;
  7088. padding:2px 2px 2px 2px;
  7089. font-family:'ArialMT', 'Arial', sans-serif;
  7090. font-weight:400;
  7091. font-style:normal;
  7092. font-size:11px;
  7093. letter-spacing:normal;
  7094. color:#AAAAAA;
  7095. vertical-align:none;
  7096. text-align:left;
  7097. text-transform:none;
  7098. background-color:transparent;
  7099. border-color:transparent;
  7100. }
  7101. #u144302_input.disabled {
  7102. position:absolute;
  7103. left:0px;
  7104. top:0px;
  7105. width:126px;
  7106. height:23px;
  7107. padding:2px 2px 2px 2px;
  7108. font-family:'ArialMT', 'Arial', sans-serif;
  7109. font-weight:400;
  7110. font-style:normal;
  7111. font-size:11px;
  7112. letter-spacing:normal;
  7113. color:#AAAAAA;
  7114. vertical-align:none;
  7115. text-align:left;
  7116. text-transform:none;
  7117. background-color:transparent;
  7118. border-color:transparent;
  7119. }
  7120. #u144302_div {
  7121. border-width:0px;
  7122. position:absolute;
  7123. left:0px;
  7124. top:0px;
  7125. width:126px;
  7126. height:23px;
  7127. background:inherit;
  7128. background-color:rgba(255, 255, 255, 1);
  7129. border:none;
  7130. border-radius:0px;
  7131. -moz-box-shadow:none;
  7132. -webkit-box-shadow:none;
  7133. box-shadow:none;
  7134. font-size:11px;
  7135. color:#AAAAAA;
  7136. }
  7137. #u144302 {
  7138. border-width:0px;
  7139. position:absolute;
  7140. left:1259px;
  7141. top:107px;
  7142. width:126px;
  7143. height:23px;
  7144. display:flex;
  7145. font-size:11px;
  7146. color:#AAAAAA;
  7147. }
  7148. #u144302 .text {
  7149. position:absolute;
  7150. align-self:flex-start;
  7151. padding:2px 2px 2px 2px;
  7152. box-sizing:border-box;
  7153. width:100%;
  7154. }
  7155. #u144302_div.disabled {
  7156. border-width:0px;
  7157. position:absolute;
  7158. left:0px;
  7159. top:0px;
  7160. width:126px;
  7161. height:23px;
  7162. background:inherit;
  7163. background-color:rgba(240, 240, 240, 1);
  7164. border:none;
  7165. border-radius:0px;
  7166. -moz-box-shadow:none;
  7167. -webkit-box-shadow:none;
  7168. box-shadow:none;
  7169. font-size:11px;
  7170. color:#AAAAAA;
  7171. }
  7172. #u144302.disabled {
  7173. }
  7174. .u144302_input_option {
  7175. font-size:11px;
  7176. }
  7177. #u144303_div {
  7178. border-width:0px;
  7179. position:absolute;
  7180. left:0px;
  7181. top:0px;
  7182. width:59px;
  7183. height:30px;
  7184. background:inherit;
  7185. background-color:rgba(24, 144, 255, 1);
  7186. box-sizing:border-box;
  7187. border-width:1px;
  7188. border-style:solid;
  7189. border-color:rgba(0, 153, 255, 1);
  7190. border-radius:4px;
  7191. -moz-box-shadow:none;
  7192. -webkit-box-shadow:none;
  7193. box-shadow:none;
  7194. font-family:'Microsoft YaHei', sans-serif;
  7195. font-weight:400;
  7196. font-style:normal;
  7197. font-size:14px;
  7198. color:#FFFFFF;
  7199. }
  7200. #u144303 {
  7201. border-width:0px;
  7202. position:absolute;
  7203. left:1402px;
  7204. top:104px;
  7205. width:59px;
  7206. height:30px;
  7207. display:flex;
  7208. font-family:'Microsoft YaHei', sans-serif;
  7209. font-weight:400;
  7210. font-style:normal;
  7211. font-size:14px;
  7212. color:#FFFFFF;
  7213. }
  7214. #u144303 .text {
  7215. position:absolute;
  7216. align-self:center;
  7217. padding:5px 15px 5px 15px;
  7218. box-sizing:border-box;
  7219. width:100%;
  7220. }
  7221. #u144303_text {
  7222. border-width:0px;
  7223. white-space:nowrap;
  7224. text-transform:none;
  7225. }
  7226. #u144304_div {
  7227. border-width:0px;
  7228. position:absolute;
  7229. left:0px;
  7230. top:0px;
  7231. width:55px;
  7232. height:30px;
  7233. background:inherit;
  7234. background-color:rgba(255, 255, 255, 1);
  7235. box-sizing:border-box;
  7236. border-width:1px;
  7237. border-style:solid;
  7238. border-color:rgba(170, 170, 170, 1);
  7239. border-radius:4px;
  7240. -moz-box-shadow:none;
  7241. -webkit-box-shadow:none;
  7242. box-shadow:none;
  7243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7244. font-weight:400;
  7245. font-style:normal;
  7246. font-size:12px;
  7247. color:#555555;
  7248. }
  7249. #u144304 {
  7250. border-width:0px;
  7251. position:absolute;
  7252. left:1471px;
  7253. top:104px;
  7254. width:55px;
  7255. height:30px;
  7256. display:flex;
  7257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7258. font-weight:400;
  7259. font-style:normal;
  7260. font-size:12px;
  7261. color:#555555;
  7262. }
  7263. #u144304 .text {
  7264. position:absolute;
  7265. align-self:center;
  7266. padding:5px 15px 5px 15px;
  7267. box-sizing:border-box;
  7268. width:100%;
  7269. }
  7270. #u144304_text {
  7271. border-width:0px;
  7272. white-space:nowrap;
  7273. text-transform:none;
  7274. }
  7275. #u144305_div {
  7276. border-width:0px;
  7277. position:absolute;
  7278. left:0px;
  7279. top:0px;
  7280. width:157px;
  7281. height:50px;
  7282. background:inherit;
  7283. background-color:rgba(255, 255, 255, 0);
  7284. border:none;
  7285. border-left:0px;
  7286. border-top:0px;
  7287. border-right:0px;
  7288. border-radius:0px;
  7289. border-bottom-right-radius:0px;
  7290. border-bottom-left-radius:0px;
  7291. -moz-box-shadow:none;
  7292. -webkit-box-shadow:none;
  7293. box-shadow:none;
  7294. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7295. font-weight:500;
  7296. font-style:normal;
  7297. font-size:18px;
  7298. line-height:40px;
  7299. }
  7300. #u144305 {
  7301. border-width:0px;
  7302. position:absolute;
  7303. left:649px;
  7304. top:50px;
  7305. width:157px;
  7306. height:50px;
  7307. display:flex;
  7308. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7309. font-weight:500;
  7310. font-style:normal;
  7311. font-size:18px;
  7312. line-height:40px;
  7313. }
  7314. #u144305 .text {
  7315. position:absolute;
  7316. align-self:center;
  7317. padding:5px 0px 5px 0px;
  7318. box-sizing:border-box;
  7319. width:100%;
  7320. }
  7321. #u144305_text {
  7322. border-width:0px;
  7323. white-space:nowrap;
  7324. text-transform:none;
  7325. }