styles.css 123 KB

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