styles.css 122 KB

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