styles.css 140 KB

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