styles.css 138 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2650px;
  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. #u57117_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. #u57117 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u57117 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u57117_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u57118_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. #u57118 {
  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. #u57118 .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. #u57118_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u57119_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. #u57119 {
  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. #u57119 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u57119_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u57120 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u57121_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u57121 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u57121 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u57121_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u57122_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. #u57122 {
  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. #u57122 .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. #u57122_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u57123_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. #u57123 {
  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. #u57123 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u57123_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u57124 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u57125_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. #u57125 {
  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. #u57125 .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. #u57125_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u57126_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u57126 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u57126 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u57126_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u57127 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u57128_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. #u57128 {
  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. #u57128 .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. #u57128_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u57129_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u57129 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u57129 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u57129_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u57130 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u57131_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. #u57131 {
  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. #u57131 .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. #u57131_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u57132_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u57132 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u57132 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u57132_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u57133 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u57134_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. #u57134 {
  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. #u57134 .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. #u57134_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u57135_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u57135 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u57135 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u57135_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u57136 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u57137_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. #u57137 {
  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. #u57137 .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. #u57137_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u57138_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u57138 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u57138 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u57138_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u57139 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u57140_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. #u57140 {
  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. #u57140 .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. #u57140_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u57141_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u57141 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u57141 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u57141_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u57142 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u57143_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. #u57143 {
  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. #u57143 .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. #u57143_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u57144_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u57144 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u57144 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u57144_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u57145 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u57146_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. #u57146 {
  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. #u57146 .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. #u57146_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u57147_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u57147 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u57147 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u57147_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u57148 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u57149_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. #u57149 {
  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. #u57149 .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. #u57149_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u57150_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u57150 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u57150 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u57150_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u57151_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. #u57151 {
  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. #u57151 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u57151_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u57152_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u57152 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u57152 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u57152_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u57153_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. #u57153 {
  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. #u57153 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u57153_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u57154_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u57154 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u57154 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u57154_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u57155 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u57156_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. #u57156 {
  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. #u57156 .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. #u57156_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u57157_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u57157 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u57157 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u57157_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u57158 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u57159_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. #u57159 {
  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. #u57159 .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. #u57159_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u57160_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u57160 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u57160 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u57160_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u57161 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u57162_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. #u57162_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. #u57162_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. #u57162 {
  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. #u57162 .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. #u57162_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. #u57162.disabled {
  1428. }
  1429. .u57162_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u57163_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u57163 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u57163 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u57163_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u57164_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. #u57164 {
  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. #u57164 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u57164_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u57165_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u57165 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u57165 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u57165_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u57166_div {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:1258px;
  1544. height:1179px;
  1545. background:inherit;
  1546. background-color:rgba(255, 255, 255, 1);
  1547. box-sizing:border-box;
  1548. border-width:1px;
  1549. border-style:solid;
  1550. border-color:rgba(242, 242, 242, 1);
  1551. border-radius:0px;
  1552. -moz-box-shadow:none;
  1553. -webkit-box-shadow:none;
  1554. box-shadow:none;
  1555. }
  1556. #u57166 {
  1557. border-width:0px;
  1558. position:absolute;
  1559. left:333px;
  1560. top:51px;
  1561. width:1258px;
  1562. height:1179px;
  1563. display:flex;
  1564. }
  1565. #u57166 .text {
  1566. position:absolute;
  1567. align-self:center;
  1568. padding:2px 2px 2px 2px;
  1569. box-sizing:border-box;
  1570. width:100%;
  1571. }
  1572. #u57166_text {
  1573. border-width:0px;
  1574. word-wrap:break-word;
  1575. text-transform:none;
  1576. visibility:hidden;
  1577. }
  1578. #u57167 {
  1579. border-width:0px;
  1580. position:absolute;
  1581. left:356px;
  1582. top:151px;
  1583. width:1212px;
  1584. height:296px;
  1585. }
  1586. #u57168_img {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:0px;
  1590. top:0px;
  1591. width:164px;
  1592. height:30px;
  1593. }
  1594. #u57168 {
  1595. border-width:0px;
  1596. position:absolute;
  1597. left:0px;
  1598. top:0px;
  1599. width:164px;
  1600. height:30px;
  1601. display:flex;
  1602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1603. font-weight:400;
  1604. font-style:normal;
  1605. font-size:14px;
  1606. color:#FFFFFF;
  1607. }
  1608. #u57168 .text {
  1609. position:absolute;
  1610. align-self:center;
  1611. padding:2px 2px 2px 2px;
  1612. box-sizing:border-box;
  1613. width:100%;
  1614. }
  1615. #u57168_text {
  1616. border-width:0px;
  1617. word-wrap:break-word;
  1618. text-transform:none;
  1619. }
  1620. #u57169_img {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:0px;
  1624. top:0px;
  1625. width:208px;
  1626. height:30px;
  1627. }
  1628. #u57169 {
  1629. border-width:0px;
  1630. position:absolute;
  1631. left:164px;
  1632. top:0px;
  1633. width:208px;
  1634. height:30px;
  1635. display:flex;
  1636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1637. font-weight:400;
  1638. font-style:normal;
  1639. font-size:14px;
  1640. color:#FFFFFF;
  1641. }
  1642. #u57169 .text {
  1643. position:absolute;
  1644. align-self:center;
  1645. padding:2px 2px 2px 2px;
  1646. box-sizing:border-box;
  1647. width:100%;
  1648. }
  1649. #u57169_text {
  1650. border-width:0px;
  1651. word-wrap:break-word;
  1652. text-transform:none;
  1653. }
  1654. #u57170_img {
  1655. border-width:0px;
  1656. position:absolute;
  1657. left:0px;
  1658. top:0px;
  1659. width:169px;
  1660. height:30px;
  1661. }
  1662. #u57170 {
  1663. border-width:0px;
  1664. position:absolute;
  1665. left:372px;
  1666. top:0px;
  1667. width:169px;
  1668. height:30px;
  1669. display:flex;
  1670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1671. font-weight:400;
  1672. font-style:normal;
  1673. font-size:14px;
  1674. color:#FFFFFF;
  1675. }
  1676. #u57170 .text {
  1677. position:absolute;
  1678. align-self:center;
  1679. padding:2px 2px 2px 2px;
  1680. box-sizing:border-box;
  1681. width:100%;
  1682. }
  1683. #u57170_text {
  1684. border-width:0px;
  1685. word-wrap:break-word;
  1686. text-transform:none;
  1687. }
  1688. #u57171_img {
  1689. border-width:0px;
  1690. position:absolute;
  1691. left:0px;
  1692. top:0px;
  1693. width:209px;
  1694. height:30px;
  1695. }
  1696. #u57171 {
  1697. border-width:0px;
  1698. position:absolute;
  1699. left:541px;
  1700. top:0px;
  1701. width:209px;
  1702. height:30px;
  1703. display:flex;
  1704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1705. font-weight:400;
  1706. font-style:normal;
  1707. font-size:14px;
  1708. color:#FFFFFF;
  1709. }
  1710. #u57171 .text {
  1711. position:absolute;
  1712. align-self:center;
  1713. padding:2px 2px 2px 2px;
  1714. box-sizing:border-box;
  1715. width:100%;
  1716. }
  1717. #u57171_text {
  1718. border-width:0px;
  1719. word-wrap:break-word;
  1720. text-transform:none;
  1721. }
  1722. #u57172_img {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:0px;
  1726. top:0px;
  1727. width:168px;
  1728. height:30px;
  1729. }
  1730. #u57172 {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:750px;
  1734. top:0px;
  1735. width:168px;
  1736. height:30px;
  1737. display:flex;
  1738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1739. font-weight:400;
  1740. font-style:normal;
  1741. font-size:14px;
  1742. color:#FFFFFF;
  1743. }
  1744. #u57172 .text {
  1745. position:absolute;
  1746. align-self:center;
  1747. padding:2px 2px 2px 2px;
  1748. box-sizing:border-box;
  1749. width:100%;
  1750. }
  1751. #u57172_text {
  1752. border-width:0px;
  1753. word-wrap:break-word;
  1754. text-transform:none;
  1755. }
  1756. #u57173_img {
  1757. border-width:0px;
  1758. position:absolute;
  1759. left:0px;
  1760. top:0px;
  1761. width:134px;
  1762. height:30px;
  1763. }
  1764. #u57173 {
  1765. border-width:0px;
  1766. position:absolute;
  1767. left:918px;
  1768. top:0px;
  1769. width:134px;
  1770. height:30px;
  1771. display:flex;
  1772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1773. font-weight:400;
  1774. font-style:normal;
  1775. font-size:14px;
  1776. color:#FFFFFF;
  1777. }
  1778. #u57173 .text {
  1779. position:absolute;
  1780. align-self:center;
  1781. padding:2px 2px 2px 2px;
  1782. box-sizing:border-box;
  1783. width:100%;
  1784. }
  1785. #u57173_text {
  1786. border-width:0px;
  1787. word-wrap:break-word;
  1788. text-transform:none;
  1789. }
  1790. #u57174_img {
  1791. border-width:0px;
  1792. position:absolute;
  1793. left:0px;
  1794. top:0px;
  1795. width:160px;
  1796. height:30px;
  1797. }
  1798. #u57174 {
  1799. border-width:0px;
  1800. position:absolute;
  1801. left:1052px;
  1802. top:0px;
  1803. width:160px;
  1804. height:30px;
  1805. display:flex;
  1806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1807. font-weight:400;
  1808. font-style:normal;
  1809. font-size:14px;
  1810. color:#FFFFFF;
  1811. }
  1812. #u57174 .text {
  1813. position:absolute;
  1814. align-self:center;
  1815. padding:2px 2px 2px 2px;
  1816. box-sizing:border-box;
  1817. width:100%;
  1818. }
  1819. #u57174_text {
  1820. border-width:0px;
  1821. word-wrap:break-word;
  1822. text-transform:none;
  1823. }
  1824. #u57175_img {
  1825. border-width:0px;
  1826. position:absolute;
  1827. left:0px;
  1828. top:0px;
  1829. width:164px;
  1830. height:38px;
  1831. }
  1832. #u57175 {
  1833. border-width:0px;
  1834. position:absolute;
  1835. left:0px;
  1836. top:30px;
  1837. width:164px;
  1838. height:38px;
  1839. display:flex;
  1840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1841. font-weight:400;
  1842. font-style:normal;
  1843. font-size:14px;
  1844. }
  1845. #u57175 .text {
  1846. position:absolute;
  1847. align-self:center;
  1848. padding:2px 2px 2px 2px;
  1849. box-sizing:border-box;
  1850. width:100%;
  1851. }
  1852. #u57175_text {
  1853. border-width:0px;
  1854. word-wrap:break-word;
  1855. text-transform:none;
  1856. visibility:hidden;
  1857. }
  1858. #u57176_img {
  1859. border-width:0px;
  1860. position:absolute;
  1861. left:0px;
  1862. top:0px;
  1863. width:208px;
  1864. height:38px;
  1865. }
  1866. #u57176 {
  1867. border-width:0px;
  1868. position:absolute;
  1869. left:164px;
  1870. top:30px;
  1871. width:208px;
  1872. height:38px;
  1873. display:flex;
  1874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1875. font-weight:400;
  1876. font-style:normal;
  1877. font-size:14px;
  1878. }
  1879. #u57176 .text {
  1880. position:absolute;
  1881. align-self:center;
  1882. padding:2px 2px 2px 2px;
  1883. box-sizing:border-box;
  1884. width:100%;
  1885. }
  1886. #u57176_text {
  1887. border-width:0px;
  1888. word-wrap:break-word;
  1889. text-transform:none;
  1890. visibility:hidden;
  1891. }
  1892. #u57177_img {
  1893. border-width:0px;
  1894. position:absolute;
  1895. left:0px;
  1896. top:0px;
  1897. width:169px;
  1898. height:38px;
  1899. }
  1900. #u57177 {
  1901. border-width:0px;
  1902. position:absolute;
  1903. left:372px;
  1904. top:30px;
  1905. width:169px;
  1906. height:38px;
  1907. display:flex;
  1908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1909. font-weight:400;
  1910. font-style:normal;
  1911. font-size:14px;
  1912. }
  1913. #u57177 .text {
  1914. position:absolute;
  1915. align-self:center;
  1916. padding:2px 2px 2px 2px;
  1917. box-sizing:border-box;
  1918. width:100%;
  1919. }
  1920. #u57177_text {
  1921. border-width:0px;
  1922. word-wrap:break-word;
  1923. text-transform:none;
  1924. visibility:hidden;
  1925. }
  1926. #u57178_img {
  1927. border-width:0px;
  1928. position:absolute;
  1929. left:0px;
  1930. top:0px;
  1931. width:209px;
  1932. height:38px;
  1933. }
  1934. #u57178 {
  1935. border-width:0px;
  1936. position:absolute;
  1937. left:541px;
  1938. top:30px;
  1939. width:209px;
  1940. height:38px;
  1941. display:flex;
  1942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1943. font-weight:400;
  1944. font-style:normal;
  1945. font-size:14px;
  1946. }
  1947. #u57178 .text {
  1948. position:absolute;
  1949. align-self:center;
  1950. padding:2px 2px 2px 2px;
  1951. box-sizing:border-box;
  1952. width:100%;
  1953. }
  1954. #u57178_text {
  1955. border-width:0px;
  1956. word-wrap:break-word;
  1957. text-transform:none;
  1958. visibility:hidden;
  1959. }
  1960. #u57179_img {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:0px;
  1964. top:0px;
  1965. width:168px;
  1966. height:38px;
  1967. }
  1968. #u57179 {
  1969. border-width:0px;
  1970. position:absolute;
  1971. left:750px;
  1972. top:30px;
  1973. width:168px;
  1974. height:38px;
  1975. display:flex;
  1976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1977. font-weight:400;
  1978. font-style:normal;
  1979. font-size:14px;
  1980. }
  1981. #u57179 .text {
  1982. position:absolute;
  1983. align-self:center;
  1984. padding:2px 2px 2px 2px;
  1985. box-sizing:border-box;
  1986. width:100%;
  1987. }
  1988. #u57179_text {
  1989. border-width:0px;
  1990. word-wrap:break-word;
  1991. text-transform:none;
  1992. visibility:hidden;
  1993. }
  1994. #u57180_img {
  1995. border-width:0px;
  1996. position:absolute;
  1997. left:0px;
  1998. top:0px;
  1999. width:134px;
  2000. height:38px;
  2001. }
  2002. #u57180 {
  2003. border-width:0px;
  2004. position:absolute;
  2005. left:918px;
  2006. top:30px;
  2007. width:134px;
  2008. height:38px;
  2009. display:flex;
  2010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2011. font-weight:400;
  2012. font-style:normal;
  2013. font-size:14px;
  2014. }
  2015. #u57180 .text {
  2016. position:absolute;
  2017. align-self:center;
  2018. padding:2px 2px 2px 2px;
  2019. box-sizing:border-box;
  2020. width:100%;
  2021. }
  2022. #u57180_text {
  2023. border-width:0px;
  2024. word-wrap:break-word;
  2025. text-transform:none;
  2026. visibility:hidden;
  2027. }
  2028. #u57181_img {
  2029. border-width:0px;
  2030. position:absolute;
  2031. left:0px;
  2032. top:0px;
  2033. width:160px;
  2034. height:38px;
  2035. }
  2036. #u57181 {
  2037. border-width:0px;
  2038. position:absolute;
  2039. left:1052px;
  2040. top:30px;
  2041. width:160px;
  2042. height:38px;
  2043. display:flex;
  2044. font-size:14px;
  2045. color:#1890FF;
  2046. }
  2047. #u57181 .text {
  2048. position:absolute;
  2049. align-self:center;
  2050. padding:2px 2px 2px 2px;
  2051. box-sizing:border-box;
  2052. width:100%;
  2053. }
  2054. #u57181_text {
  2055. border-width:0px;
  2056. word-wrap:break-word;
  2057. text-transform:none;
  2058. }
  2059. #u57182_img {
  2060. border-width:0px;
  2061. position:absolute;
  2062. left:0px;
  2063. top:0px;
  2064. width:164px;
  2065. height:38px;
  2066. }
  2067. #u57182 {
  2068. border-width:0px;
  2069. position:absolute;
  2070. left:0px;
  2071. top:68px;
  2072. width:164px;
  2073. height:38px;
  2074. display:flex;
  2075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2076. font-weight:400;
  2077. font-style:normal;
  2078. font-size:14px;
  2079. }
  2080. #u57182 .text {
  2081. position:absolute;
  2082. align-self:center;
  2083. padding:2px 2px 2px 2px;
  2084. box-sizing:border-box;
  2085. width:100%;
  2086. }
  2087. #u57182_text {
  2088. border-width:0px;
  2089. word-wrap:break-word;
  2090. text-transform:none;
  2091. visibility:hidden;
  2092. }
  2093. #u57183_img {
  2094. border-width:0px;
  2095. position:absolute;
  2096. left:0px;
  2097. top:0px;
  2098. width:208px;
  2099. height:38px;
  2100. }
  2101. #u57183 {
  2102. border-width:0px;
  2103. position:absolute;
  2104. left:164px;
  2105. top:68px;
  2106. width:208px;
  2107. height:38px;
  2108. display:flex;
  2109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2110. font-weight:400;
  2111. font-style:normal;
  2112. font-size:14px;
  2113. }
  2114. #u57183 .text {
  2115. position:absolute;
  2116. align-self:center;
  2117. padding:2px 2px 2px 2px;
  2118. box-sizing:border-box;
  2119. width:100%;
  2120. }
  2121. #u57183_text {
  2122. border-width:0px;
  2123. word-wrap:break-word;
  2124. text-transform:none;
  2125. visibility:hidden;
  2126. }
  2127. #u57184_img {
  2128. border-width:0px;
  2129. position:absolute;
  2130. left:0px;
  2131. top:0px;
  2132. width:169px;
  2133. height:38px;
  2134. }
  2135. #u57184 {
  2136. border-width:0px;
  2137. position:absolute;
  2138. left:372px;
  2139. top:68px;
  2140. width:169px;
  2141. height:38px;
  2142. display:flex;
  2143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2144. font-weight:400;
  2145. font-style:normal;
  2146. font-size:14px;
  2147. }
  2148. #u57184 .text {
  2149. position:absolute;
  2150. align-self:center;
  2151. padding:2px 2px 2px 2px;
  2152. box-sizing:border-box;
  2153. width:100%;
  2154. }
  2155. #u57184_text {
  2156. border-width:0px;
  2157. word-wrap:break-word;
  2158. text-transform:none;
  2159. visibility:hidden;
  2160. }
  2161. #u57185_img {
  2162. border-width:0px;
  2163. position:absolute;
  2164. left:0px;
  2165. top:0px;
  2166. width:209px;
  2167. height:38px;
  2168. }
  2169. #u57185 {
  2170. border-width:0px;
  2171. position:absolute;
  2172. left:541px;
  2173. top:68px;
  2174. width:209px;
  2175. height:38px;
  2176. display:flex;
  2177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2178. font-weight:400;
  2179. font-style:normal;
  2180. font-size:14px;
  2181. }
  2182. #u57185 .text {
  2183. position:absolute;
  2184. align-self:center;
  2185. padding:2px 2px 2px 2px;
  2186. box-sizing:border-box;
  2187. width:100%;
  2188. }
  2189. #u57185_text {
  2190. border-width:0px;
  2191. word-wrap:break-word;
  2192. text-transform:none;
  2193. visibility:hidden;
  2194. }
  2195. #u57186_img {
  2196. border-width:0px;
  2197. position:absolute;
  2198. left:0px;
  2199. top:0px;
  2200. width:168px;
  2201. height:38px;
  2202. }
  2203. #u57186 {
  2204. border-width:0px;
  2205. position:absolute;
  2206. left:750px;
  2207. top:68px;
  2208. width:168px;
  2209. height:38px;
  2210. display:flex;
  2211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2212. font-weight:400;
  2213. font-style:normal;
  2214. font-size:14px;
  2215. }
  2216. #u57186 .text {
  2217. position:absolute;
  2218. align-self:center;
  2219. padding:2px 2px 2px 2px;
  2220. box-sizing:border-box;
  2221. width:100%;
  2222. }
  2223. #u57186_text {
  2224. border-width:0px;
  2225. word-wrap:break-word;
  2226. text-transform:none;
  2227. visibility:hidden;
  2228. }
  2229. #u57187_img {
  2230. border-width:0px;
  2231. position:absolute;
  2232. left:0px;
  2233. top:0px;
  2234. width:134px;
  2235. height:38px;
  2236. }
  2237. #u57187 {
  2238. border-width:0px;
  2239. position:absolute;
  2240. left:918px;
  2241. top:68px;
  2242. width:134px;
  2243. height:38px;
  2244. display:flex;
  2245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2246. font-weight:400;
  2247. font-style:normal;
  2248. font-size:14px;
  2249. }
  2250. #u57187 .text {
  2251. position:absolute;
  2252. align-self:center;
  2253. padding:2px 2px 2px 2px;
  2254. box-sizing:border-box;
  2255. width:100%;
  2256. }
  2257. #u57187_text {
  2258. border-width:0px;
  2259. word-wrap:break-word;
  2260. text-transform:none;
  2261. visibility:hidden;
  2262. }
  2263. #u57188_img {
  2264. border-width:0px;
  2265. position:absolute;
  2266. left:0px;
  2267. top:0px;
  2268. width:160px;
  2269. height:38px;
  2270. }
  2271. #u57188 {
  2272. border-width:0px;
  2273. position:absolute;
  2274. left:1052px;
  2275. top:68px;
  2276. width:160px;
  2277. height:38px;
  2278. display:flex;
  2279. font-size:14px;
  2280. color:#1890FF;
  2281. }
  2282. #u57188 .text {
  2283. position:absolute;
  2284. align-self:center;
  2285. padding:2px 2px 2px 2px;
  2286. box-sizing:border-box;
  2287. width:100%;
  2288. }
  2289. #u57188_text {
  2290. border-width:0px;
  2291. word-wrap:break-word;
  2292. text-transform:none;
  2293. }
  2294. #u57189_img {
  2295. border-width:0px;
  2296. position:absolute;
  2297. left:0px;
  2298. top:0px;
  2299. width:164px;
  2300. height:38px;
  2301. }
  2302. #u57189 {
  2303. border-width:0px;
  2304. position:absolute;
  2305. left:0px;
  2306. top:106px;
  2307. width:164px;
  2308. height:38px;
  2309. display:flex;
  2310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2311. font-weight:400;
  2312. font-style:normal;
  2313. font-size:14px;
  2314. }
  2315. #u57189 .text {
  2316. position:absolute;
  2317. align-self:center;
  2318. padding:2px 2px 2px 2px;
  2319. box-sizing:border-box;
  2320. width:100%;
  2321. }
  2322. #u57189_text {
  2323. border-width:0px;
  2324. word-wrap:break-word;
  2325. text-transform:none;
  2326. visibility:hidden;
  2327. }
  2328. #u57190_img {
  2329. border-width:0px;
  2330. position:absolute;
  2331. left:0px;
  2332. top:0px;
  2333. width:208px;
  2334. height:38px;
  2335. }
  2336. #u57190 {
  2337. border-width:0px;
  2338. position:absolute;
  2339. left:164px;
  2340. top:106px;
  2341. width:208px;
  2342. height:38px;
  2343. display:flex;
  2344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2345. font-weight:400;
  2346. font-style:normal;
  2347. font-size:14px;
  2348. }
  2349. #u57190 .text {
  2350. position:absolute;
  2351. align-self:center;
  2352. padding:2px 2px 2px 2px;
  2353. box-sizing:border-box;
  2354. width:100%;
  2355. }
  2356. #u57190_text {
  2357. border-width:0px;
  2358. word-wrap:break-word;
  2359. text-transform:none;
  2360. visibility:hidden;
  2361. }
  2362. #u57191_img {
  2363. border-width:0px;
  2364. position:absolute;
  2365. left:0px;
  2366. top:0px;
  2367. width:169px;
  2368. height:38px;
  2369. }
  2370. #u57191 {
  2371. border-width:0px;
  2372. position:absolute;
  2373. left:372px;
  2374. top:106px;
  2375. width:169px;
  2376. height:38px;
  2377. display:flex;
  2378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2379. font-weight:400;
  2380. font-style:normal;
  2381. font-size:14px;
  2382. }
  2383. #u57191 .text {
  2384. position:absolute;
  2385. align-self:center;
  2386. padding:2px 2px 2px 2px;
  2387. box-sizing:border-box;
  2388. width:100%;
  2389. }
  2390. #u57191_text {
  2391. border-width:0px;
  2392. word-wrap:break-word;
  2393. text-transform:none;
  2394. visibility:hidden;
  2395. }
  2396. #u57192_img {
  2397. border-width:0px;
  2398. position:absolute;
  2399. left:0px;
  2400. top:0px;
  2401. width:209px;
  2402. height:38px;
  2403. }
  2404. #u57192 {
  2405. border-width:0px;
  2406. position:absolute;
  2407. left:541px;
  2408. top:106px;
  2409. width:209px;
  2410. height:38px;
  2411. display:flex;
  2412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2413. font-weight:400;
  2414. font-style:normal;
  2415. font-size:14px;
  2416. }
  2417. #u57192 .text {
  2418. position:absolute;
  2419. align-self:center;
  2420. padding:2px 2px 2px 2px;
  2421. box-sizing:border-box;
  2422. width:100%;
  2423. }
  2424. #u57192_text {
  2425. border-width:0px;
  2426. word-wrap:break-word;
  2427. text-transform:none;
  2428. visibility:hidden;
  2429. }
  2430. #u57193_img {
  2431. border-width:0px;
  2432. position:absolute;
  2433. left:0px;
  2434. top:0px;
  2435. width:168px;
  2436. height:38px;
  2437. }
  2438. #u57193 {
  2439. border-width:0px;
  2440. position:absolute;
  2441. left:750px;
  2442. top:106px;
  2443. width:168px;
  2444. height:38px;
  2445. display:flex;
  2446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2447. font-weight:400;
  2448. font-style:normal;
  2449. font-size:14px;
  2450. }
  2451. #u57193 .text {
  2452. position:absolute;
  2453. align-self:center;
  2454. padding:2px 2px 2px 2px;
  2455. box-sizing:border-box;
  2456. width:100%;
  2457. }
  2458. #u57193_text {
  2459. border-width:0px;
  2460. word-wrap:break-word;
  2461. text-transform:none;
  2462. visibility:hidden;
  2463. }
  2464. #u57194_img {
  2465. border-width:0px;
  2466. position:absolute;
  2467. left:0px;
  2468. top:0px;
  2469. width:134px;
  2470. height:38px;
  2471. }
  2472. #u57194 {
  2473. border-width:0px;
  2474. position:absolute;
  2475. left:918px;
  2476. top:106px;
  2477. width:134px;
  2478. height:38px;
  2479. display:flex;
  2480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2481. font-weight:400;
  2482. font-style:normal;
  2483. font-size:14px;
  2484. }
  2485. #u57194 .text {
  2486. position:absolute;
  2487. align-self:center;
  2488. padding:2px 2px 2px 2px;
  2489. box-sizing:border-box;
  2490. width:100%;
  2491. }
  2492. #u57194_text {
  2493. border-width:0px;
  2494. word-wrap:break-word;
  2495. text-transform:none;
  2496. visibility:hidden;
  2497. }
  2498. #u57195_img {
  2499. border-width:0px;
  2500. position:absolute;
  2501. left:0px;
  2502. top:0px;
  2503. width:160px;
  2504. height:38px;
  2505. }
  2506. #u57195 {
  2507. border-width:0px;
  2508. position:absolute;
  2509. left:1052px;
  2510. top:106px;
  2511. width:160px;
  2512. height:38px;
  2513. display:flex;
  2514. font-size:14px;
  2515. }
  2516. #u57195 .text {
  2517. position:absolute;
  2518. align-self:center;
  2519. padding:2px 2px 2px 2px;
  2520. box-sizing:border-box;
  2521. width:100%;
  2522. }
  2523. #u57195_text {
  2524. border-width:0px;
  2525. word-wrap:break-word;
  2526. text-transform:none;
  2527. visibility:hidden;
  2528. }
  2529. #u57196_img {
  2530. border-width:0px;
  2531. position:absolute;
  2532. left:0px;
  2533. top:0px;
  2534. width:164px;
  2535. height:38px;
  2536. }
  2537. #u57196 {
  2538. border-width:0px;
  2539. position:absolute;
  2540. left:0px;
  2541. top:144px;
  2542. width:164px;
  2543. height:38px;
  2544. display:flex;
  2545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2546. font-weight:400;
  2547. font-style:normal;
  2548. font-size:14px;
  2549. }
  2550. #u57196 .text {
  2551. position:absolute;
  2552. align-self:center;
  2553. padding:2px 2px 2px 2px;
  2554. box-sizing:border-box;
  2555. width:100%;
  2556. }
  2557. #u57196_text {
  2558. border-width:0px;
  2559. word-wrap:break-word;
  2560. text-transform:none;
  2561. visibility:hidden;
  2562. }
  2563. #u57197_img {
  2564. border-width:0px;
  2565. position:absolute;
  2566. left:0px;
  2567. top:0px;
  2568. width:208px;
  2569. height:38px;
  2570. }
  2571. #u57197 {
  2572. border-width:0px;
  2573. position:absolute;
  2574. left:164px;
  2575. top:144px;
  2576. width:208px;
  2577. height:38px;
  2578. display:flex;
  2579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2580. font-weight:400;
  2581. font-style:normal;
  2582. font-size:14px;
  2583. }
  2584. #u57197 .text {
  2585. position:absolute;
  2586. align-self:center;
  2587. padding:2px 2px 2px 2px;
  2588. box-sizing:border-box;
  2589. width:100%;
  2590. }
  2591. #u57197_text {
  2592. border-width:0px;
  2593. word-wrap:break-word;
  2594. text-transform:none;
  2595. visibility:hidden;
  2596. }
  2597. #u57198_img {
  2598. border-width:0px;
  2599. position:absolute;
  2600. left:0px;
  2601. top:0px;
  2602. width:169px;
  2603. height:38px;
  2604. }
  2605. #u57198 {
  2606. border-width:0px;
  2607. position:absolute;
  2608. left:372px;
  2609. top:144px;
  2610. width:169px;
  2611. height:38px;
  2612. display:flex;
  2613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2614. font-weight:400;
  2615. font-style:normal;
  2616. font-size:14px;
  2617. }
  2618. #u57198 .text {
  2619. position:absolute;
  2620. align-self:center;
  2621. padding:2px 2px 2px 2px;
  2622. box-sizing:border-box;
  2623. width:100%;
  2624. }
  2625. #u57198_text {
  2626. border-width:0px;
  2627. word-wrap:break-word;
  2628. text-transform:none;
  2629. visibility:hidden;
  2630. }
  2631. #u57199_img {
  2632. border-width:0px;
  2633. position:absolute;
  2634. left:0px;
  2635. top:0px;
  2636. width:209px;
  2637. height:38px;
  2638. }
  2639. #u57199 {
  2640. border-width:0px;
  2641. position:absolute;
  2642. left:541px;
  2643. top:144px;
  2644. width:209px;
  2645. height:38px;
  2646. display:flex;
  2647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2648. font-weight:400;
  2649. font-style:normal;
  2650. font-size:14px;
  2651. }
  2652. #u57199 .text {
  2653. position:absolute;
  2654. align-self:center;
  2655. padding:2px 2px 2px 2px;
  2656. box-sizing:border-box;
  2657. width:100%;
  2658. }
  2659. #u57199_text {
  2660. border-width:0px;
  2661. word-wrap:break-word;
  2662. text-transform:none;
  2663. visibility:hidden;
  2664. }
  2665. #u57200_img {
  2666. border-width:0px;
  2667. position:absolute;
  2668. left:0px;
  2669. top:0px;
  2670. width:168px;
  2671. height:38px;
  2672. }
  2673. #u57200 {
  2674. border-width:0px;
  2675. position:absolute;
  2676. left:750px;
  2677. top:144px;
  2678. width:168px;
  2679. height:38px;
  2680. display:flex;
  2681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2682. font-weight:400;
  2683. font-style:normal;
  2684. font-size:14px;
  2685. }
  2686. #u57200 .text {
  2687. position:absolute;
  2688. align-self:center;
  2689. padding:2px 2px 2px 2px;
  2690. box-sizing:border-box;
  2691. width:100%;
  2692. }
  2693. #u57200_text {
  2694. border-width:0px;
  2695. word-wrap:break-word;
  2696. text-transform:none;
  2697. visibility:hidden;
  2698. }
  2699. #u57201_img {
  2700. border-width:0px;
  2701. position:absolute;
  2702. left:0px;
  2703. top:0px;
  2704. width:134px;
  2705. height:38px;
  2706. }
  2707. #u57201 {
  2708. border-width:0px;
  2709. position:absolute;
  2710. left:918px;
  2711. top:144px;
  2712. width:134px;
  2713. height:38px;
  2714. display:flex;
  2715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2716. font-weight:400;
  2717. font-style:normal;
  2718. font-size:14px;
  2719. }
  2720. #u57201 .text {
  2721. position:absolute;
  2722. align-self:center;
  2723. padding:2px 2px 2px 2px;
  2724. box-sizing:border-box;
  2725. width:100%;
  2726. }
  2727. #u57201_text {
  2728. border-width:0px;
  2729. word-wrap:break-word;
  2730. text-transform:none;
  2731. visibility:hidden;
  2732. }
  2733. #u57202_img {
  2734. border-width:0px;
  2735. position:absolute;
  2736. left:0px;
  2737. top:0px;
  2738. width:160px;
  2739. height:38px;
  2740. }
  2741. #u57202 {
  2742. border-width:0px;
  2743. position:absolute;
  2744. left:1052px;
  2745. top:144px;
  2746. width:160px;
  2747. height:38px;
  2748. display:flex;
  2749. font-size:14px;
  2750. }
  2751. #u57202 .text {
  2752. position:absolute;
  2753. align-self:center;
  2754. padding:2px 2px 2px 2px;
  2755. box-sizing:border-box;
  2756. width:100%;
  2757. }
  2758. #u57202_text {
  2759. border-width:0px;
  2760. word-wrap:break-word;
  2761. text-transform:none;
  2762. visibility:hidden;
  2763. }
  2764. #u57203_img {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:0px;
  2768. top:0px;
  2769. width:164px;
  2770. height:38px;
  2771. }
  2772. #u57203 {
  2773. border-width:0px;
  2774. position:absolute;
  2775. left:0px;
  2776. top:182px;
  2777. width:164px;
  2778. height:38px;
  2779. display:flex;
  2780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2781. font-weight:400;
  2782. font-style:normal;
  2783. font-size:14px;
  2784. }
  2785. #u57203 .text {
  2786. position:absolute;
  2787. align-self:center;
  2788. padding:2px 2px 2px 2px;
  2789. box-sizing:border-box;
  2790. width:100%;
  2791. }
  2792. #u57203_text {
  2793. border-width:0px;
  2794. word-wrap:break-word;
  2795. text-transform:none;
  2796. visibility:hidden;
  2797. }
  2798. #u57204_img {
  2799. border-width:0px;
  2800. position:absolute;
  2801. left:0px;
  2802. top:0px;
  2803. width:208px;
  2804. height:38px;
  2805. }
  2806. #u57204 {
  2807. border-width:0px;
  2808. position:absolute;
  2809. left:164px;
  2810. top:182px;
  2811. width:208px;
  2812. height:38px;
  2813. display:flex;
  2814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2815. font-weight:400;
  2816. font-style:normal;
  2817. font-size:14px;
  2818. }
  2819. #u57204 .text {
  2820. position:absolute;
  2821. align-self:center;
  2822. padding:2px 2px 2px 2px;
  2823. box-sizing:border-box;
  2824. width:100%;
  2825. }
  2826. #u57204_text {
  2827. border-width:0px;
  2828. word-wrap:break-word;
  2829. text-transform:none;
  2830. visibility:hidden;
  2831. }
  2832. #u57205_img {
  2833. border-width:0px;
  2834. position:absolute;
  2835. left:0px;
  2836. top:0px;
  2837. width:169px;
  2838. height:38px;
  2839. }
  2840. #u57205 {
  2841. border-width:0px;
  2842. position:absolute;
  2843. left:372px;
  2844. top:182px;
  2845. width:169px;
  2846. height:38px;
  2847. display:flex;
  2848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2849. font-weight:400;
  2850. font-style:normal;
  2851. font-size:14px;
  2852. }
  2853. #u57205 .text {
  2854. position:absolute;
  2855. align-self:center;
  2856. padding:2px 2px 2px 2px;
  2857. box-sizing:border-box;
  2858. width:100%;
  2859. }
  2860. #u57205_text {
  2861. border-width:0px;
  2862. word-wrap:break-word;
  2863. text-transform:none;
  2864. visibility:hidden;
  2865. }
  2866. #u57206_img {
  2867. border-width:0px;
  2868. position:absolute;
  2869. left:0px;
  2870. top:0px;
  2871. width:209px;
  2872. height:38px;
  2873. }
  2874. #u57206 {
  2875. border-width:0px;
  2876. position:absolute;
  2877. left:541px;
  2878. top:182px;
  2879. width:209px;
  2880. height:38px;
  2881. display:flex;
  2882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2883. font-weight:400;
  2884. font-style:normal;
  2885. font-size:14px;
  2886. }
  2887. #u57206 .text {
  2888. position:absolute;
  2889. align-self:center;
  2890. padding:2px 2px 2px 2px;
  2891. box-sizing:border-box;
  2892. width:100%;
  2893. }
  2894. #u57206_text {
  2895. border-width:0px;
  2896. word-wrap:break-word;
  2897. text-transform:none;
  2898. visibility:hidden;
  2899. }
  2900. #u57207_img {
  2901. border-width:0px;
  2902. position:absolute;
  2903. left:0px;
  2904. top:0px;
  2905. width:168px;
  2906. height:38px;
  2907. }
  2908. #u57207 {
  2909. border-width:0px;
  2910. position:absolute;
  2911. left:750px;
  2912. top:182px;
  2913. width:168px;
  2914. height:38px;
  2915. display:flex;
  2916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2917. font-weight:400;
  2918. font-style:normal;
  2919. font-size:14px;
  2920. }
  2921. #u57207 .text {
  2922. position:absolute;
  2923. align-self:center;
  2924. padding:2px 2px 2px 2px;
  2925. box-sizing:border-box;
  2926. width:100%;
  2927. }
  2928. #u57207_text {
  2929. border-width:0px;
  2930. word-wrap:break-word;
  2931. text-transform:none;
  2932. visibility:hidden;
  2933. }
  2934. #u57208_img {
  2935. border-width:0px;
  2936. position:absolute;
  2937. left:0px;
  2938. top:0px;
  2939. width:134px;
  2940. height:38px;
  2941. }
  2942. #u57208 {
  2943. border-width:0px;
  2944. position:absolute;
  2945. left:918px;
  2946. top:182px;
  2947. width:134px;
  2948. height:38px;
  2949. display:flex;
  2950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2951. font-weight:400;
  2952. font-style:normal;
  2953. font-size:14px;
  2954. }
  2955. #u57208 .text {
  2956. position:absolute;
  2957. align-self:center;
  2958. padding:2px 2px 2px 2px;
  2959. box-sizing:border-box;
  2960. width:100%;
  2961. }
  2962. #u57208_text {
  2963. border-width:0px;
  2964. word-wrap:break-word;
  2965. text-transform:none;
  2966. visibility:hidden;
  2967. }
  2968. #u57209_img {
  2969. border-width:0px;
  2970. position:absolute;
  2971. left:0px;
  2972. top:0px;
  2973. width:160px;
  2974. height:38px;
  2975. }
  2976. #u57209 {
  2977. border-width:0px;
  2978. position:absolute;
  2979. left:1052px;
  2980. top:182px;
  2981. width:160px;
  2982. height:38px;
  2983. display:flex;
  2984. font-size:14px;
  2985. }
  2986. #u57209 .text {
  2987. position:absolute;
  2988. align-self:center;
  2989. padding:2px 2px 2px 2px;
  2990. box-sizing:border-box;
  2991. width:100%;
  2992. }
  2993. #u57209_text {
  2994. border-width:0px;
  2995. word-wrap:break-word;
  2996. text-transform:none;
  2997. visibility:hidden;
  2998. }
  2999. #u57210_img {
  3000. border-width:0px;
  3001. position:absolute;
  3002. left:0px;
  3003. top:0px;
  3004. width:164px;
  3005. height:38px;
  3006. }
  3007. #u57210 {
  3008. border-width:0px;
  3009. position:absolute;
  3010. left:0px;
  3011. top:220px;
  3012. width:164px;
  3013. height:38px;
  3014. display:flex;
  3015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3016. font-weight:400;
  3017. font-style:normal;
  3018. font-size:14px;
  3019. }
  3020. #u57210 .text {
  3021. position:absolute;
  3022. align-self:center;
  3023. padding:2px 2px 2px 2px;
  3024. box-sizing:border-box;
  3025. width:100%;
  3026. }
  3027. #u57210_text {
  3028. border-width:0px;
  3029. word-wrap:break-word;
  3030. text-transform:none;
  3031. visibility:hidden;
  3032. }
  3033. #u57211_img {
  3034. border-width:0px;
  3035. position:absolute;
  3036. left:0px;
  3037. top:0px;
  3038. width:208px;
  3039. height:38px;
  3040. }
  3041. #u57211 {
  3042. border-width:0px;
  3043. position:absolute;
  3044. left:164px;
  3045. top:220px;
  3046. width:208px;
  3047. height:38px;
  3048. display:flex;
  3049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3050. font-weight:400;
  3051. font-style:normal;
  3052. font-size:14px;
  3053. }
  3054. #u57211 .text {
  3055. position:absolute;
  3056. align-self:center;
  3057. padding:2px 2px 2px 2px;
  3058. box-sizing:border-box;
  3059. width:100%;
  3060. }
  3061. #u57211_text {
  3062. border-width:0px;
  3063. word-wrap:break-word;
  3064. text-transform:none;
  3065. visibility:hidden;
  3066. }
  3067. #u57212_img {
  3068. border-width:0px;
  3069. position:absolute;
  3070. left:0px;
  3071. top:0px;
  3072. width:169px;
  3073. height:38px;
  3074. }
  3075. #u57212 {
  3076. border-width:0px;
  3077. position:absolute;
  3078. left:372px;
  3079. top:220px;
  3080. width:169px;
  3081. height:38px;
  3082. display:flex;
  3083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3084. font-weight:400;
  3085. font-style:normal;
  3086. font-size:14px;
  3087. }
  3088. #u57212 .text {
  3089. position:absolute;
  3090. align-self:center;
  3091. padding:2px 2px 2px 2px;
  3092. box-sizing:border-box;
  3093. width:100%;
  3094. }
  3095. #u57212_text {
  3096. border-width:0px;
  3097. word-wrap:break-word;
  3098. text-transform:none;
  3099. visibility:hidden;
  3100. }
  3101. #u57213_img {
  3102. border-width:0px;
  3103. position:absolute;
  3104. left:0px;
  3105. top:0px;
  3106. width:209px;
  3107. height:38px;
  3108. }
  3109. #u57213 {
  3110. border-width:0px;
  3111. position:absolute;
  3112. left:541px;
  3113. top:220px;
  3114. width:209px;
  3115. height:38px;
  3116. display:flex;
  3117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3118. font-weight:400;
  3119. font-style:normal;
  3120. font-size:14px;
  3121. }
  3122. #u57213 .text {
  3123. position:absolute;
  3124. align-self:center;
  3125. padding:2px 2px 2px 2px;
  3126. box-sizing:border-box;
  3127. width:100%;
  3128. }
  3129. #u57213_text {
  3130. border-width:0px;
  3131. word-wrap:break-word;
  3132. text-transform:none;
  3133. visibility:hidden;
  3134. }
  3135. #u57214_img {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:0px;
  3139. top:0px;
  3140. width:168px;
  3141. height:38px;
  3142. }
  3143. #u57214 {
  3144. border-width:0px;
  3145. position:absolute;
  3146. left:750px;
  3147. top:220px;
  3148. width:168px;
  3149. height:38px;
  3150. display:flex;
  3151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3152. font-weight:400;
  3153. font-style:normal;
  3154. font-size:14px;
  3155. }
  3156. #u57214 .text {
  3157. position:absolute;
  3158. align-self:center;
  3159. padding:2px 2px 2px 2px;
  3160. box-sizing:border-box;
  3161. width:100%;
  3162. }
  3163. #u57214_text {
  3164. border-width:0px;
  3165. word-wrap:break-word;
  3166. text-transform:none;
  3167. visibility:hidden;
  3168. }
  3169. #u57215_img {
  3170. border-width:0px;
  3171. position:absolute;
  3172. left:0px;
  3173. top:0px;
  3174. width:134px;
  3175. height:38px;
  3176. }
  3177. #u57215 {
  3178. border-width:0px;
  3179. position:absolute;
  3180. left:918px;
  3181. top:220px;
  3182. width:134px;
  3183. height:38px;
  3184. display:flex;
  3185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3186. font-weight:400;
  3187. font-style:normal;
  3188. font-size:14px;
  3189. }
  3190. #u57215 .text {
  3191. position:absolute;
  3192. align-self:center;
  3193. padding:2px 2px 2px 2px;
  3194. box-sizing:border-box;
  3195. width:100%;
  3196. }
  3197. #u57215_text {
  3198. border-width:0px;
  3199. word-wrap:break-word;
  3200. text-transform:none;
  3201. visibility:hidden;
  3202. }
  3203. #u57216_img {
  3204. border-width:0px;
  3205. position:absolute;
  3206. left:0px;
  3207. top:0px;
  3208. width:160px;
  3209. height:38px;
  3210. }
  3211. #u57216 {
  3212. border-width:0px;
  3213. position:absolute;
  3214. left:1052px;
  3215. top:220px;
  3216. width:160px;
  3217. height:38px;
  3218. display:flex;
  3219. font-size:14px;
  3220. }
  3221. #u57216 .text {
  3222. position:absolute;
  3223. align-self:center;
  3224. padding:2px 2px 2px 2px;
  3225. box-sizing:border-box;
  3226. width:100%;
  3227. }
  3228. #u57216_text {
  3229. border-width:0px;
  3230. word-wrap:break-word;
  3231. text-transform:none;
  3232. visibility:hidden;
  3233. }
  3234. #u57217_img {
  3235. border-width:0px;
  3236. position:absolute;
  3237. left:0px;
  3238. top:0px;
  3239. width:164px;
  3240. height:38px;
  3241. }
  3242. #u57217 {
  3243. border-width:0px;
  3244. position:absolute;
  3245. left:0px;
  3246. top:258px;
  3247. width:164px;
  3248. height:38px;
  3249. display:flex;
  3250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3251. font-weight:400;
  3252. font-style:normal;
  3253. font-size:14px;
  3254. }
  3255. #u57217 .text {
  3256. position:absolute;
  3257. align-self:center;
  3258. padding:2px 2px 2px 2px;
  3259. box-sizing:border-box;
  3260. width:100%;
  3261. }
  3262. #u57217_text {
  3263. border-width:0px;
  3264. word-wrap:break-word;
  3265. text-transform:none;
  3266. visibility:hidden;
  3267. }
  3268. #u57218_img {
  3269. border-width:0px;
  3270. position:absolute;
  3271. left:0px;
  3272. top:0px;
  3273. width:208px;
  3274. height:38px;
  3275. }
  3276. #u57218 {
  3277. border-width:0px;
  3278. position:absolute;
  3279. left:164px;
  3280. top:258px;
  3281. width:208px;
  3282. height:38px;
  3283. display:flex;
  3284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3285. font-weight:400;
  3286. font-style:normal;
  3287. font-size:14px;
  3288. }
  3289. #u57218 .text {
  3290. position:absolute;
  3291. align-self:center;
  3292. padding:2px 2px 2px 2px;
  3293. box-sizing:border-box;
  3294. width:100%;
  3295. }
  3296. #u57218_text {
  3297. border-width:0px;
  3298. word-wrap:break-word;
  3299. text-transform:none;
  3300. visibility:hidden;
  3301. }
  3302. #u57219_img {
  3303. border-width:0px;
  3304. position:absolute;
  3305. left:0px;
  3306. top:0px;
  3307. width:169px;
  3308. height:38px;
  3309. }
  3310. #u57219 {
  3311. border-width:0px;
  3312. position:absolute;
  3313. left:372px;
  3314. top:258px;
  3315. width:169px;
  3316. height:38px;
  3317. display:flex;
  3318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3319. font-weight:400;
  3320. font-style:normal;
  3321. font-size:14px;
  3322. }
  3323. #u57219 .text {
  3324. position:absolute;
  3325. align-self:center;
  3326. padding:2px 2px 2px 2px;
  3327. box-sizing:border-box;
  3328. width:100%;
  3329. }
  3330. #u57219_text {
  3331. border-width:0px;
  3332. word-wrap:break-word;
  3333. text-transform:none;
  3334. visibility:hidden;
  3335. }
  3336. #u57220_img {
  3337. border-width:0px;
  3338. position:absolute;
  3339. left:0px;
  3340. top:0px;
  3341. width:209px;
  3342. height:38px;
  3343. }
  3344. #u57220 {
  3345. border-width:0px;
  3346. position:absolute;
  3347. left:541px;
  3348. top:258px;
  3349. width:209px;
  3350. height:38px;
  3351. display:flex;
  3352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3353. font-weight:400;
  3354. font-style:normal;
  3355. font-size:14px;
  3356. }
  3357. #u57220 .text {
  3358. position:absolute;
  3359. align-self:center;
  3360. padding:2px 2px 2px 2px;
  3361. box-sizing:border-box;
  3362. width:100%;
  3363. }
  3364. #u57220_text {
  3365. border-width:0px;
  3366. word-wrap:break-word;
  3367. text-transform:none;
  3368. visibility:hidden;
  3369. }
  3370. #u57221_img {
  3371. border-width:0px;
  3372. position:absolute;
  3373. left:0px;
  3374. top:0px;
  3375. width:168px;
  3376. height:38px;
  3377. }
  3378. #u57221 {
  3379. border-width:0px;
  3380. position:absolute;
  3381. left:750px;
  3382. top:258px;
  3383. width:168px;
  3384. height:38px;
  3385. display:flex;
  3386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3387. font-weight:400;
  3388. font-style:normal;
  3389. font-size:14px;
  3390. }
  3391. #u57221 .text {
  3392. position:absolute;
  3393. align-self:center;
  3394. padding:2px 2px 2px 2px;
  3395. box-sizing:border-box;
  3396. width:100%;
  3397. }
  3398. #u57221_text {
  3399. border-width:0px;
  3400. word-wrap:break-word;
  3401. text-transform:none;
  3402. visibility:hidden;
  3403. }
  3404. #u57222_img {
  3405. border-width:0px;
  3406. position:absolute;
  3407. left:0px;
  3408. top:0px;
  3409. width:134px;
  3410. height:38px;
  3411. }
  3412. #u57222 {
  3413. border-width:0px;
  3414. position:absolute;
  3415. left:918px;
  3416. top:258px;
  3417. width:134px;
  3418. height:38px;
  3419. display:flex;
  3420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3421. font-weight:400;
  3422. font-style:normal;
  3423. font-size:14px;
  3424. }
  3425. #u57222 .text {
  3426. position:absolute;
  3427. align-self:center;
  3428. padding:2px 2px 2px 2px;
  3429. box-sizing:border-box;
  3430. width:100%;
  3431. }
  3432. #u57222_text {
  3433. border-width:0px;
  3434. word-wrap:break-word;
  3435. text-transform:none;
  3436. visibility:hidden;
  3437. }
  3438. #u57223_img {
  3439. border-width:0px;
  3440. position:absolute;
  3441. left:0px;
  3442. top:0px;
  3443. width:160px;
  3444. height:38px;
  3445. }
  3446. #u57223 {
  3447. border-width:0px;
  3448. position:absolute;
  3449. left:1052px;
  3450. top:258px;
  3451. width:160px;
  3452. height:38px;
  3453. display:flex;
  3454. font-size:14px;
  3455. }
  3456. #u57223 .text {
  3457. position:absolute;
  3458. align-self:center;
  3459. padding:2px 2px 2px 2px;
  3460. box-sizing:border-box;
  3461. width:100%;
  3462. }
  3463. #u57223_text {
  3464. border-width:0px;
  3465. word-wrap:break-word;
  3466. text-transform:none;
  3467. visibility:hidden;
  3468. }
  3469. #u57224 {
  3470. border-width:0px;
  3471. position:absolute;
  3472. left:0px;
  3473. top:0px;
  3474. width:0px;
  3475. height:0px;
  3476. }
  3477. #u57225_div {
  3478. border-width:0px;
  3479. position:absolute;
  3480. left:0px;
  3481. top:0px;
  3482. width:60px;
  3483. height:30px;
  3484. background:inherit;
  3485. background-color:rgba(24, 144, 255, 1);
  3486. border:none;
  3487. border-radius:4px;
  3488. -moz-box-shadow:none;
  3489. -webkit-box-shadow:none;
  3490. box-shadow:none;
  3491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3492. font-weight:400;
  3493. font-style:normal;
  3494. font-size:14px;
  3495. color:#FFFFFF;
  3496. }
  3497. #u57225 {
  3498. border-width:0px;
  3499. position:absolute;
  3500. left:1408px;
  3501. top:100px;
  3502. width:60px;
  3503. height:30px;
  3504. display:flex;
  3505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3506. font-weight:400;
  3507. font-style:normal;
  3508. font-size:14px;
  3509. color:#FFFFFF;
  3510. }
  3511. #u57225 .text {
  3512. position:absolute;
  3513. align-self:center;
  3514. padding:2px 2px 2px 2px;
  3515. box-sizing:border-box;
  3516. width:100%;
  3517. }
  3518. #u57225_text {
  3519. border-width:0px;
  3520. word-wrap:break-word;
  3521. text-transform:none;
  3522. }
  3523. #u57226_div {
  3524. border-width:0px;
  3525. position:absolute;
  3526. left:0px;
  3527. top:0px;
  3528. width:60px;
  3529. height:30px;
  3530. background:inherit;
  3531. background-color:rgba(255, 255, 255, 1);
  3532. box-sizing:border-box;
  3533. border-width:1px;
  3534. border-style:solid;
  3535. border-color:rgba(170, 170, 170, 1);
  3536. border-radius:4px;
  3537. -moz-box-shadow:none;
  3538. -webkit-box-shadow:none;
  3539. box-shadow:none;
  3540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3541. font-weight:400;
  3542. font-style:normal;
  3543. font-size:14px;
  3544. }
  3545. #u57226 {
  3546. border-width:0px;
  3547. position:absolute;
  3548. left:1478px;
  3549. top:100px;
  3550. width:60px;
  3551. height:30px;
  3552. display:flex;
  3553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3554. font-weight:400;
  3555. font-style:normal;
  3556. font-size:14px;
  3557. }
  3558. #u57226 .text {
  3559. position:absolute;
  3560. align-self:center;
  3561. padding:2px 2px 2px 2px;
  3562. box-sizing:border-box;
  3563. width:100%;
  3564. }
  3565. #u57226_text {
  3566. border-width:0px;
  3567. word-wrap:break-word;
  3568. text-transform:none;
  3569. }
  3570. #u57227 {
  3571. border-width:0px;
  3572. position:absolute;
  3573. left:0px;
  3574. top:0px;
  3575. width:0px;
  3576. height:0px;
  3577. }
  3578. #u57228_div {
  3579. border-width:0px;
  3580. position:absolute;
  3581. left:0px;
  3582. top:0px;
  3583. width:140px;
  3584. height:30px;
  3585. background:inherit;
  3586. background-color:rgba(255, 255, 255, 1);
  3587. box-sizing:border-box;
  3588. border-width:1px;
  3589. border-style:solid;
  3590. border-color:rgba(215, 215, 215, 1);
  3591. border-radius:4px;
  3592. -moz-box-shadow:none;
  3593. -webkit-box-shadow:none;
  3594. box-shadow:none;
  3595. font-size:14px;
  3596. }
  3597. #u57228 {
  3598. border-width:0px;
  3599. position:absolute;
  3600. left:957px;
  3601. top:101px;
  3602. width:140px;
  3603. height:30px;
  3604. display:flex;
  3605. font-size:14px;
  3606. }
  3607. #u57228 .text {
  3608. position:absolute;
  3609. align-self:center;
  3610. padding:2px 2px 2px 2px;
  3611. box-sizing:border-box;
  3612. width:100%;
  3613. }
  3614. #u57228_text {
  3615. border-width:0px;
  3616. word-wrap:break-word;
  3617. text-transform:none;
  3618. visibility:hidden;
  3619. }
  3620. #u57229_input {
  3621. position:absolute;
  3622. left:0px;
  3623. top:0px;
  3624. width:134px;
  3625. height:23px;
  3626. padding:2px 2px 2px 2px;
  3627. font-family:'ArialMT', 'Arial', sans-serif;
  3628. font-weight:400;
  3629. font-style:normal;
  3630. font-size:14px;
  3631. letter-spacing:normal;
  3632. color:#AAAAAA;
  3633. vertical-align:none;
  3634. text-align:left;
  3635. text-transform:none;
  3636. background-color:transparent;
  3637. border-color:transparent;
  3638. }
  3639. #u57229_input.disabled {
  3640. position:absolute;
  3641. left:0px;
  3642. top:0px;
  3643. width:134px;
  3644. height:23px;
  3645. padding:2px 2px 2px 2px;
  3646. font-family:'ArialMT', 'Arial', sans-serif;
  3647. font-weight:400;
  3648. font-style:normal;
  3649. font-size:14px;
  3650. letter-spacing:normal;
  3651. color:#AAAAAA;
  3652. vertical-align:none;
  3653. text-align:left;
  3654. text-transform:none;
  3655. background-color:transparent;
  3656. border-color:transparent;
  3657. }
  3658. #u57229_div {
  3659. border-width:0px;
  3660. position:absolute;
  3661. left:0px;
  3662. top:0px;
  3663. width:134px;
  3664. height:23px;
  3665. background:inherit;
  3666. background-color:rgba(255, 255, 255, 1);
  3667. border:none;
  3668. border-radius:0px;
  3669. -moz-box-shadow:none;
  3670. -webkit-box-shadow:none;
  3671. box-shadow:none;
  3672. font-size:14px;
  3673. color:#AAAAAA;
  3674. }
  3675. #u57229 {
  3676. border-width:0px;
  3677. position:absolute;
  3678. left:961px;
  3679. top:103px;
  3680. width:134px;
  3681. height:23px;
  3682. display:flex;
  3683. font-size:14px;
  3684. color:#AAAAAA;
  3685. }
  3686. #u57229 .text {
  3687. position:absolute;
  3688. align-self:flex-start;
  3689. padding:2px 2px 2px 2px;
  3690. box-sizing:border-box;
  3691. width:100%;
  3692. }
  3693. #u57229_div.disabled {
  3694. border-width:0px;
  3695. position:absolute;
  3696. left:0px;
  3697. top:0px;
  3698. width:134px;
  3699. height:23px;
  3700. background:inherit;
  3701. background-color:rgba(240, 240, 240, 1);
  3702. border:none;
  3703. border-radius:0px;
  3704. -moz-box-shadow:none;
  3705. -webkit-box-shadow:none;
  3706. box-shadow:none;
  3707. font-size:14px;
  3708. color:#AAAAAA;
  3709. }
  3710. #u57229.disabled {
  3711. }
  3712. .u57229_input_option {
  3713. font-size:14px;
  3714. }
  3715. #u57230_div {
  3716. border-width:0px;
  3717. position:absolute;
  3718. left:0px;
  3719. top:0px;
  3720. width:73px;
  3721. height:50px;
  3722. background:inherit;
  3723. background-color:rgba(255, 255, 255, 0);
  3724. border:none;
  3725. border-left:0px;
  3726. border-top:0px;
  3727. border-right:0px;
  3728. border-radius:0px;
  3729. border-bottom-right-radius:0px;
  3730. border-bottom-left-radius:0px;
  3731. -moz-box-shadow:none;
  3732. -webkit-box-shadow:none;
  3733. box-shadow:none;
  3734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3735. font-weight:400;
  3736. font-style:normal;
  3737. font-size:18px;
  3738. line-height:40px;
  3739. }
  3740. #u57230 {
  3741. border-width:0px;
  3742. position:absolute;
  3743. left:355px;
  3744. top:50px;
  3745. width:73px;
  3746. height:50px;
  3747. display:flex;
  3748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3749. font-weight:400;
  3750. font-style:normal;
  3751. font-size:18px;
  3752. line-height:40px;
  3753. }
  3754. #u57230 .text {
  3755. position:absolute;
  3756. align-self:center;
  3757. padding:0px 0px 0px 0px;
  3758. box-sizing:border-box;
  3759. width:100%;
  3760. }
  3761. #u57230_text {
  3762. border-width:0px;
  3763. white-space:nowrap;
  3764. text-transform:none;
  3765. }
  3766. #u57231 {
  3767. border-width:0px;
  3768. position:absolute;
  3769. left:0px;
  3770. top:0px;
  3771. width:0px;
  3772. height:0px;
  3773. }
  3774. #u57232_div {
  3775. border-width:0px;
  3776. position:absolute;
  3777. left:0px;
  3778. top:0px;
  3779. width:140px;
  3780. height:30px;
  3781. background:inherit;
  3782. background-color:rgba(255, 255, 255, 1);
  3783. box-sizing:border-box;
  3784. border-width:1px;
  3785. border-style:solid;
  3786. border-color:rgba(215, 215, 215, 1);
  3787. border-radius:4px;
  3788. -moz-box-shadow:none;
  3789. -webkit-box-shadow:none;
  3790. box-shadow:none;
  3791. font-size:14px;
  3792. }
  3793. #u57232 {
  3794. border-width:0px;
  3795. position:absolute;
  3796. left:507px;
  3797. top:101px;
  3798. width:140px;
  3799. height:30px;
  3800. display:flex;
  3801. font-size:14px;
  3802. }
  3803. #u57232 .text {
  3804. position:absolute;
  3805. align-self:center;
  3806. padding:2px 2px 2px 2px;
  3807. box-sizing:border-box;
  3808. width:100%;
  3809. }
  3810. #u57232_text {
  3811. border-width:0px;
  3812. word-wrap:break-word;
  3813. text-transform:none;
  3814. visibility:hidden;
  3815. }
  3816. #u57233_input {
  3817. position:absolute;
  3818. left:0px;
  3819. top:0px;
  3820. width:134px;
  3821. height:23px;
  3822. padding:2px 2px 2px 2px;
  3823. font-family:'ArialMT', 'Arial', sans-serif;
  3824. font-weight:400;
  3825. font-style:normal;
  3826. font-size:14px;
  3827. letter-spacing:normal;
  3828. color:#AAAAAA;
  3829. vertical-align:none;
  3830. text-align:left;
  3831. text-transform:none;
  3832. background-color:transparent;
  3833. border-color:transparent;
  3834. }
  3835. #u57233_input.disabled {
  3836. position:absolute;
  3837. left:0px;
  3838. top:0px;
  3839. width:134px;
  3840. height:23px;
  3841. padding:2px 2px 2px 2px;
  3842. font-family:'ArialMT', 'Arial', sans-serif;
  3843. font-weight:400;
  3844. font-style:normal;
  3845. font-size:14px;
  3846. letter-spacing:normal;
  3847. color:#AAAAAA;
  3848. vertical-align:none;
  3849. text-align:left;
  3850. text-transform:none;
  3851. background-color:transparent;
  3852. border-color:transparent;
  3853. }
  3854. #u57233_div {
  3855. border-width:0px;
  3856. position:absolute;
  3857. left:0px;
  3858. top:0px;
  3859. width:134px;
  3860. height:23px;
  3861. background:inherit;
  3862. background-color:rgba(255, 255, 255, 1);
  3863. border:none;
  3864. border-radius:0px;
  3865. -moz-box-shadow:none;
  3866. -webkit-box-shadow:none;
  3867. box-shadow:none;
  3868. font-size:14px;
  3869. color:#AAAAAA;
  3870. }
  3871. #u57233 {
  3872. border-width:0px;
  3873. position:absolute;
  3874. left:511px;
  3875. top:103px;
  3876. width:134px;
  3877. height:23px;
  3878. display:flex;
  3879. font-size:14px;
  3880. color:#AAAAAA;
  3881. }
  3882. #u57233 .text {
  3883. position:absolute;
  3884. align-self:flex-start;
  3885. padding:2px 2px 2px 2px;
  3886. box-sizing:border-box;
  3887. width:100%;
  3888. }
  3889. #u57233_div.disabled {
  3890. border-width:0px;
  3891. position:absolute;
  3892. left:0px;
  3893. top:0px;
  3894. width:134px;
  3895. height:23px;
  3896. background:inherit;
  3897. background-color:rgba(240, 240, 240, 1);
  3898. border:none;
  3899. border-radius:0px;
  3900. -moz-box-shadow:none;
  3901. -webkit-box-shadow:none;
  3902. box-shadow:none;
  3903. font-size:14px;
  3904. color:#AAAAAA;
  3905. }
  3906. #u57233.disabled {
  3907. }
  3908. .u57233_input_option {
  3909. font-size:14px;
  3910. }
  3911. #u57234 {
  3912. border-width:0px;
  3913. position:absolute;
  3914. left:0px;
  3915. top:0px;
  3916. width:0px;
  3917. height:0px;
  3918. }
  3919. #u57235_div {
  3920. border-width:0px;
  3921. position:absolute;
  3922. left:0px;
  3923. top:0px;
  3924. width:140px;
  3925. height:30px;
  3926. background:inherit;
  3927. background-color:rgba(255, 255, 255, 1);
  3928. box-sizing:border-box;
  3929. border-width:1px;
  3930. border-style:solid;
  3931. border-color:rgba(215, 215, 215, 1);
  3932. border-radius:4px;
  3933. -moz-box-shadow:none;
  3934. -webkit-box-shadow:none;
  3935. box-shadow:none;
  3936. font-size:14px;
  3937. }
  3938. #u57235 {
  3939. border-width:0px;
  3940. position:absolute;
  3941. left:1107px;
  3942. top:101px;
  3943. width:140px;
  3944. height:30px;
  3945. display:flex;
  3946. font-size:14px;
  3947. }
  3948. #u57235 .text {
  3949. position:absolute;
  3950. align-self:center;
  3951. padding:2px 2px 2px 2px;
  3952. box-sizing:border-box;
  3953. width:100%;
  3954. }
  3955. #u57235_text {
  3956. border-width:0px;
  3957. word-wrap:break-word;
  3958. text-transform:none;
  3959. visibility:hidden;
  3960. }
  3961. #u57236_input {
  3962. position:absolute;
  3963. left:0px;
  3964. top:0px;
  3965. width:134px;
  3966. height:23px;
  3967. padding:2px 2px 2px 2px;
  3968. font-family:'ArialMT', 'Arial', sans-serif;
  3969. font-weight:400;
  3970. font-style:normal;
  3971. font-size:14px;
  3972. letter-spacing:normal;
  3973. color:#AAAAAA;
  3974. vertical-align:none;
  3975. text-align:left;
  3976. text-transform:none;
  3977. background-color:transparent;
  3978. border-color:transparent;
  3979. }
  3980. #u57236_input.disabled {
  3981. position:absolute;
  3982. left:0px;
  3983. top:0px;
  3984. width:134px;
  3985. height:23px;
  3986. padding:2px 2px 2px 2px;
  3987. font-family:'ArialMT', 'Arial', sans-serif;
  3988. font-weight:400;
  3989. font-style:normal;
  3990. font-size:14px;
  3991. letter-spacing:normal;
  3992. color:#AAAAAA;
  3993. vertical-align:none;
  3994. text-align:left;
  3995. text-transform:none;
  3996. background-color:transparent;
  3997. border-color:transparent;
  3998. }
  3999. #u57236_div {
  4000. border-width:0px;
  4001. position:absolute;
  4002. left:0px;
  4003. top:0px;
  4004. width:134px;
  4005. height:23px;
  4006. background:inherit;
  4007. background-color:rgba(255, 255, 255, 1);
  4008. border:none;
  4009. border-radius:0px;
  4010. -moz-box-shadow:none;
  4011. -webkit-box-shadow:none;
  4012. box-shadow:none;
  4013. font-size:14px;
  4014. color:#AAAAAA;
  4015. }
  4016. #u57236 {
  4017. border-width:0px;
  4018. position:absolute;
  4019. left:1111px;
  4020. top:103px;
  4021. width:134px;
  4022. height:23px;
  4023. display:flex;
  4024. font-size:14px;
  4025. color:#AAAAAA;
  4026. }
  4027. #u57236 .text {
  4028. position:absolute;
  4029. align-self:flex-start;
  4030. padding:2px 2px 2px 2px;
  4031. box-sizing:border-box;
  4032. width:100%;
  4033. }
  4034. #u57236_div.disabled {
  4035. border-width:0px;
  4036. position:absolute;
  4037. left:0px;
  4038. top:0px;
  4039. width:134px;
  4040. height:23px;
  4041. background:inherit;
  4042. background-color:rgba(240, 240, 240, 1);
  4043. border:none;
  4044. border-radius:0px;
  4045. -moz-box-shadow:none;
  4046. -webkit-box-shadow:none;
  4047. box-shadow:none;
  4048. font-size:14px;
  4049. color:#AAAAAA;
  4050. }
  4051. #u57236.disabled {
  4052. }
  4053. .u57236_input_option {
  4054. font-size:14px;
  4055. }
  4056. #u57237 {
  4057. border-width:0px;
  4058. position:absolute;
  4059. left:0px;
  4060. top:0px;
  4061. width:0px;
  4062. height:0px;
  4063. }
  4064. #u57238_div {
  4065. border-width:0px;
  4066. position:absolute;
  4067. left:0px;
  4068. top:0px;
  4069. width:140px;
  4070. height:30px;
  4071. background:inherit;
  4072. background-color:rgba(255, 255, 255, 1);
  4073. box-sizing:border-box;
  4074. border-width:1px;
  4075. border-style:solid;
  4076. border-color:rgba(215, 215, 215, 1);
  4077. border-radius:4px;
  4078. -moz-box-shadow:none;
  4079. -webkit-box-shadow:none;
  4080. box-shadow:none;
  4081. font-size:14px;
  4082. }
  4083. #u57238 {
  4084. border-width:0px;
  4085. position:absolute;
  4086. left:1257px;
  4087. top:101px;
  4088. width:140px;
  4089. height:30px;
  4090. display:flex;
  4091. font-size:14px;
  4092. }
  4093. #u57238 .text {
  4094. position:absolute;
  4095. align-self:center;
  4096. padding:2px 2px 2px 2px;
  4097. box-sizing:border-box;
  4098. width:100%;
  4099. }
  4100. #u57238_text {
  4101. border-width:0px;
  4102. word-wrap:break-word;
  4103. text-transform:none;
  4104. visibility:hidden;
  4105. }
  4106. #u57239_input {
  4107. position:absolute;
  4108. left:0px;
  4109. top:0px;
  4110. width:134px;
  4111. height:23px;
  4112. padding:2px 2px 2px 2px;
  4113. font-family:'ArialMT', 'Arial', sans-serif;
  4114. font-weight:400;
  4115. font-style:normal;
  4116. font-size:14px;
  4117. letter-spacing:normal;
  4118. color:#AAAAAA;
  4119. vertical-align:none;
  4120. text-align:left;
  4121. text-transform:none;
  4122. background-color:transparent;
  4123. border-color:transparent;
  4124. }
  4125. #u57239_input.disabled {
  4126. position:absolute;
  4127. left:0px;
  4128. top:0px;
  4129. width:134px;
  4130. height:23px;
  4131. padding:2px 2px 2px 2px;
  4132. font-family:'ArialMT', 'Arial', sans-serif;
  4133. font-weight:400;
  4134. font-style:normal;
  4135. font-size:14px;
  4136. letter-spacing:normal;
  4137. color:#AAAAAA;
  4138. vertical-align:none;
  4139. text-align:left;
  4140. text-transform:none;
  4141. background-color:transparent;
  4142. border-color:transparent;
  4143. }
  4144. #u57239_div {
  4145. border-width:0px;
  4146. position:absolute;
  4147. left:0px;
  4148. top:0px;
  4149. width:134px;
  4150. height:23px;
  4151. background:inherit;
  4152. background-color:rgba(255, 255, 255, 1);
  4153. border:none;
  4154. border-radius:0px;
  4155. -moz-box-shadow:none;
  4156. -webkit-box-shadow:none;
  4157. box-shadow:none;
  4158. font-size:14px;
  4159. color:#AAAAAA;
  4160. }
  4161. #u57239 {
  4162. border-width:0px;
  4163. position:absolute;
  4164. left:1261px;
  4165. top:103px;
  4166. width:134px;
  4167. height:23px;
  4168. display:flex;
  4169. font-size:14px;
  4170. color:#AAAAAA;
  4171. }
  4172. #u57239 .text {
  4173. position:absolute;
  4174. align-self:flex-start;
  4175. padding:2px 2px 2px 2px;
  4176. box-sizing:border-box;
  4177. width:100%;
  4178. }
  4179. #u57239_div.disabled {
  4180. border-width:0px;
  4181. position:absolute;
  4182. left:0px;
  4183. top:0px;
  4184. width:134px;
  4185. height:23px;
  4186. background:inherit;
  4187. background-color:rgba(240, 240, 240, 1);
  4188. border:none;
  4189. border-radius:0px;
  4190. -moz-box-shadow:none;
  4191. -webkit-box-shadow:none;
  4192. box-shadow:none;
  4193. font-size:14px;
  4194. color:#AAAAAA;
  4195. }
  4196. #u57239.disabled {
  4197. }
  4198. .u57239_input_option {
  4199. font-size:14px;
  4200. }
  4201. #u57240 {
  4202. border-width:0px;
  4203. position:absolute;
  4204. left:0px;
  4205. top:0px;
  4206. width:0px;
  4207. height:0px;
  4208. }
  4209. #u57241 {
  4210. border-width:0px;
  4211. position:absolute;
  4212. left:0px;
  4213. top:0px;
  4214. width:0px;
  4215. height:0px;
  4216. }
  4217. #u57242_div {
  4218. border-width:0px;
  4219. position:absolute;
  4220. left:0px;
  4221. top:0px;
  4222. width:480px;
  4223. height:300px;
  4224. background:inherit;
  4225. background-color:rgba(255, 255, 255, 1);
  4226. border:none;
  4227. border-radius:4px;
  4228. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  4229. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  4230. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  4231. font-family:'Microsoft YaHei', sans-serif;
  4232. font-weight:400;
  4233. font-style:normal;
  4234. }
  4235. #u57242 {
  4236. border-width:0px;
  4237. position:absolute;
  4238. left:436px;
  4239. top:516px;
  4240. width:480px;
  4241. height:300px;
  4242. display:flex;
  4243. font-family:'Microsoft YaHei', sans-serif;
  4244. font-weight:400;
  4245. font-style:normal;
  4246. }
  4247. #u57242 .text {
  4248. position:absolute;
  4249. align-self:center;
  4250. padding:2px 2px 2px 2px;
  4251. box-sizing:border-box;
  4252. width:100%;
  4253. }
  4254. #u57242_text {
  4255. border-width:0px;
  4256. word-wrap:break-word;
  4257. text-transform:none;
  4258. visibility:hidden;
  4259. }
  4260. #u57243_div {
  4261. border-width:0px;
  4262. position:absolute;
  4263. left:0px;
  4264. top:0px;
  4265. width:299px;
  4266. height:22px;
  4267. background:inherit;
  4268. background-color:rgba(255, 255, 255, 0);
  4269. border:none;
  4270. border-radius:0px;
  4271. -moz-box-shadow:none;
  4272. -webkit-box-shadow:none;
  4273. box-shadow:none;
  4274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4275. font-weight:400;
  4276. font-style:normal;
  4277. font-size:14px;
  4278. color:#666666;
  4279. line-height:22px;
  4280. }
  4281. #u57243 {
  4282. border-width:0px;
  4283. position:absolute;
  4284. left:463px;
  4285. top:579px;
  4286. width:299px;
  4287. height:22px;
  4288. display:flex;
  4289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4290. font-weight:400;
  4291. font-style:normal;
  4292. font-size:14px;
  4293. color:#666666;
  4294. line-height:22px;
  4295. }
  4296. #u57243 .text {
  4297. position:absolute;
  4298. align-self:flex-start;
  4299. padding:0px 0px 0px 0px;
  4300. box-sizing:border-box;
  4301. width:100%;
  4302. }
  4303. #u57243_text {
  4304. border-width:0px;
  4305. word-wrap:break-word;
  4306. text-transform:none;
  4307. }
  4308. #u57244_div {
  4309. border-width:0px;
  4310. position:absolute;
  4311. left:0px;
  4312. top:0px;
  4313. width:109px;
  4314. height:21px;
  4315. background:inherit;
  4316. background-color:rgba(255, 255, 255, 0);
  4317. border:none;
  4318. border-radius:0px;
  4319. -moz-box-shadow:none;
  4320. -webkit-box-shadow:none;
  4321. box-shadow:none;
  4322. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  4323. font-weight:650;
  4324. font-style:normal;
  4325. font-size:18px;
  4326. color:#000000;
  4327. line-height:22px;
  4328. }
  4329. #u57244 {
  4330. border-width:0px;
  4331. position:absolute;
  4332. left:463px;
  4333. top:537px;
  4334. width:109px;
  4335. height:21px;
  4336. display:flex;
  4337. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  4338. font-weight:650;
  4339. font-style:normal;
  4340. font-size:18px;
  4341. color:#000000;
  4342. line-height:22px;
  4343. }
  4344. #u57244 .text {
  4345. position:absolute;
  4346. align-self:flex-start;
  4347. padding:0px 0px 0px 0px;
  4348. box-sizing:border-box;
  4349. width:100%;
  4350. }
  4351. #u57244_text {
  4352. border-width:0px;
  4353. white-space:nowrap;
  4354. text-transform:none;
  4355. }
  4356. #u57245 label {
  4357. left:0px;
  4358. width:100%;
  4359. }
  4360. #u57245_img {
  4361. border-width:0px;
  4362. position:absolute;
  4363. left:0px;
  4364. top:3px;
  4365. width:12px;
  4366. height:12px;
  4367. }
  4368. #u57245 {
  4369. border-width:0px;
  4370. position:absolute;
  4371. left:540px;
  4372. top:582px;
  4373. width:100px;
  4374. height:18px;
  4375. display:flex;
  4376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4377. font-weight:400;
  4378. font-style:normal;
  4379. }
  4380. #u57245 .text {
  4381. position:absolute;
  4382. align-self:center;
  4383. padding:0px 2px 0px 2px;
  4384. box-sizing:border-box;
  4385. }
  4386. #u57245_img.selected {
  4387. }
  4388. #u57245.selected {
  4389. }
  4390. #u57245_img.disabled {
  4391. }
  4392. #u57245.disabled {
  4393. }
  4394. #u57245_img.selectedDisabled {
  4395. }
  4396. #u57245.selectedDisabled {
  4397. }
  4398. #u57245_text {
  4399. border-width:0px;
  4400. position:absolute;
  4401. left:14px;
  4402. top:0px;
  4403. width:84px;
  4404. word-wrap:break-word;
  4405. text-transform:none;
  4406. }
  4407. #u57245_input {
  4408. border-width:0px;
  4409. position:absolute;
  4410. left:0px;
  4411. top:0px;
  4412. width:0px;
  4413. height:0px;
  4414. opacity:0;
  4415. }
  4416. #u57246 label {
  4417. left:0px;
  4418. width:100%;
  4419. }
  4420. #u57246_img {
  4421. border-width:0px;
  4422. position:absolute;
  4423. left:0px;
  4424. top:3px;
  4425. width:12px;
  4426. height:12px;
  4427. }
  4428. #u57246 {
  4429. border-width:0px;
  4430. position:absolute;
  4431. left:540px;
  4432. top:615px;
  4433. width:100px;
  4434. height:18px;
  4435. display:flex;
  4436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4437. font-weight:400;
  4438. font-style:normal;
  4439. }
  4440. #u57246 .text {
  4441. position:absolute;
  4442. align-self:center;
  4443. padding:0px 2px 0px 2px;
  4444. box-sizing:border-box;
  4445. }
  4446. #u57246_img.selected {
  4447. }
  4448. #u57246.selected {
  4449. }
  4450. #u57246_img.disabled {
  4451. }
  4452. #u57246.disabled {
  4453. }
  4454. #u57246_img.selectedDisabled {
  4455. }
  4456. #u57246.selectedDisabled {
  4457. }
  4458. #u57246_text {
  4459. border-width:0px;
  4460. position:absolute;
  4461. left:14px;
  4462. top:0px;
  4463. width:84px;
  4464. word-wrap:break-word;
  4465. text-transform:none;
  4466. }
  4467. #u57246_input {
  4468. border-width:0px;
  4469. position:absolute;
  4470. left:0px;
  4471. top:0px;
  4472. width:0px;
  4473. height:0px;
  4474. opacity:0;
  4475. }
  4476. #u57247 label {
  4477. left:0px;
  4478. width:100%;
  4479. }
  4480. #u57247_img {
  4481. border-width:0px;
  4482. position:absolute;
  4483. left:0px;
  4484. top:3px;
  4485. width:12px;
  4486. height:12px;
  4487. }
  4488. #u57247 {
  4489. border-width:0px;
  4490. position:absolute;
  4491. left:540px;
  4492. top:648px;
  4493. width:100px;
  4494. height:18px;
  4495. display:flex;
  4496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4497. font-weight:400;
  4498. font-style:normal;
  4499. }
  4500. #u57247 .text {
  4501. position:absolute;
  4502. align-self:center;
  4503. padding:0px 2px 0px 2px;
  4504. box-sizing:border-box;
  4505. }
  4506. #u57247_img.selected {
  4507. }
  4508. #u57247.selected {
  4509. }
  4510. #u57247_img.disabled {
  4511. }
  4512. #u57247.disabled {
  4513. }
  4514. #u57247_img.selectedDisabled {
  4515. }
  4516. #u57247.selectedDisabled {
  4517. }
  4518. #u57247_text {
  4519. border-width:0px;
  4520. position:absolute;
  4521. left:14px;
  4522. top:0px;
  4523. width:84px;
  4524. word-wrap:break-word;
  4525. text-transform:none;
  4526. }
  4527. #u57247_input {
  4528. border-width:0px;
  4529. position:absolute;
  4530. left:0px;
  4531. top:0px;
  4532. width:0px;
  4533. height:0px;
  4534. opacity:0;
  4535. }
  4536. #u57248 {
  4537. border-width:0px;
  4538. position:absolute;
  4539. left:0px;
  4540. top:0px;
  4541. width:0px;
  4542. height:0px;
  4543. }
  4544. #u57249_div {
  4545. border-width:0px;
  4546. position:absolute;
  4547. left:0px;
  4548. top:0px;
  4549. width:347px;
  4550. height:60px;
  4551. background:inherit;
  4552. background-color:rgba(255, 255, 255, 1);
  4553. box-sizing:border-box;
  4554. border-width:1px;
  4555. border-style:solid;
  4556. border-color:rgba(41, 143, 255, 1);
  4557. border-radius:4px;
  4558. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4559. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4560. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4561. font-family:'Microsoft YaHei', sans-serif;
  4562. font-weight:400;
  4563. font-style:normal;
  4564. font-size:14px;
  4565. color:#CCCCCC;
  4566. text-align:left;
  4567. }
  4568. #u57249 {
  4569. border-width:0px;
  4570. position:absolute;
  4571. left:540px;
  4572. top:676px;
  4573. width:347px;
  4574. height:60px;
  4575. display:flex;
  4576. font-family:'Microsoft YaHei', sans-serif;
  4577. font-weight:400;
  4578. font-style:normal;
  4579. font-size:14px;
  4580. color:#CCCCCC;
  4581. text-align:left;
  4582. }
  4583. #u57249 .text {
  4584. position:absolute;
  4585. align-self:center;
  4586. padding:2px 8px 2px 8px;
  4587. box-sizing:border-box;
  4588. width:100%;
  4589. }
  4590. #u57249_text {
  4591. border-width:0px;
  4592. word-wrap:break-word;
  4593. text-transform:none;
  4594. visibility:hidden;
  4595. }
  4596. #u57250_input {
  4597. position:absolute;
  4598. left:0px;
  4599. top:0px;
  4600. width:330px;
  4601. height:38px;
  4602. padding:2px 2px 2px 2px;
  4603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4604. font-weight:400;
  4605. font-style:normal;
  4606. font-size:14px;
  4607. letter-spacing:normal;
  4608. color:#000000;
  4609. vertical-align:none;
  4610. text-align:left;
  4611. text-transform:none;
  4612. background-color:transparent;
  4613. border-color:transparent;
  4614. }
  4615. #u57250_input.disabled {
  4616. position:absolute;
  4617. left:0px;
  4618. top:0px;
  4619. width:330px;
  4620. height:38px;
  4621. padding:2px 2px 2px 2px;
  4622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4623. font-weight:400;
  4624. font-style:normal;
  4625. font-size:14px;
  4626. letter-spacing:normal;
  4627. color:#000000;
  4628. vertical-align:none;
  4629. text-align:left;
  4630. text-transform:none;
  4631. background-color:transparent;
  4632. border-color:transparent;
  4633. }
  4634. #u57250_div {
  4635. border-width:0px;
  4636. position:absolute;
  4637. left:0px;
  4638. top:0px;
  4639. width:330px;
  4640. height:38px;
  4641. background:inherit;
  4642. background-color:rgba(255, 255, 255, 1);
  4643. border:none;
  4644. border-radius:0px;
  4645. -moz-box-shadow:none;
  4646. -webkit-box-shadow:none;
  4647. box-shadow:none;
  4648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4649. font-weight:400;
  4650. font-style:normal;
  4651. font-size:14px;
  4652. }
  4653. #u57250 {
  4654. border-width:0px;
  4655. position:absolute;
  4656. left:549px;
  4657. top:677px;
  4658. width:330px;
  4659. height:38px;
  4660. display:flex;
  4661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4662. font-weight:400;
  4663. font-style:normal;
  4664. font-size:14px;
  4665. }
  4666. #u57250 .text {
  4667. position:absolute;
  4668. align-self:center;
  4669. padding:2px 2px 2px 2px;
  4670. box-sizing:border-box;
  4671. width:100%;
  4672. }
  4673. #u57250_div.disabled {
  4674. border-width:0px;
  4675. position:absolute;
  4676. left:0px;
  4677. top:0px;
  4678. width:330px;
  4679. height:38px;
  4680. background:inherit;
  4681. background-color:rgba(240, 240, 240, 1);
  4682. border:none;
  4683. border-radius:0px;
  4684. -moz-box-shadow:none;
  4685. -webkit-box-shadow:none;
  4686. box-shadow:none;
  4687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4688. font-weight:400;
  4689. font-style:normal;
  4690. font-size:14px;
  4691. }
  4692. #u57250.disabled {
  4693. }
  4694. #u57251 {
  4695. border-width:0px;
  4696. position:absolute;
  4697. left:0px;
  4698. top:0px;
  4699. width:0px;
  4700. height:0px;
  4701. }
  4702. #u57252_div {
  4703. border-width:0px;
  4704. position:absolute;
  4705. left:0px;
  4706. top:0px;
  4707. width:80px;
  4708. height:30px;
  4709. background:inherit;
  4710. background-color:rgba(24, 144, 255, 1);
  4711. border:none;
  4712. border-radius:4px;
  4713. -moz-box-shadow:none;
  4714. -webkit-box-shadow:none;
  4715. box-shadow:none;
  4716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4717. font-weight:400;
  4718. font-style:normal;
  4719. font-size:14px;
  4720. color:#FFFFFF;
  4721. }
  4722. #u57252 {
  4723. border-width:0px;
  4724. position:absolute;
  4725. left:807px;
  4726. top:766px;
  4727. width:80px;
  4728. height:30px;
  4729. display:flex;
  4730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4731. font-weight:400;
  4732. font-style:normal;
  4733. font-size:14px;
  4734. color:#FFFFFF;
  4735. }
  4736. #u57252 .text {
  4737. position:absolute;
  4738. align-self:center;
  4739. padding:2px 2px 2px 2px;
  4740. box-sizing:border-box;
  4741. width:100%;
  4742. }
  4743. #u57252_text {
  4744. border-width:0px;
  4745. word-wrap:break-word;
  4746. text-transform:none;
  4747. }
  4748. #u57253_div {
  4749. border-width:0px;
  4750. position:absolute;
  4751. left:0px;
  4752. top:0px;
  4753. width:80px;
  4754. height:30px;
  4755. background:inherit;
  4756. background-color:rgba(255, 255, 255, 1);
  4757. box-sizing:border-box;
  4758. border-width:1px;
  4759. border-style:solid;
  4760. border-color:rgba(170, 170, 170, 1);
  4761. border-radius:4px;
  4762. -moz-box-shadow:none;
  4763. -webkit-box-shadow:none;
  4764. box-shadow:none;
  4765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4766. font-weight:400;
  4767. font-style:normal;
  4768. font-size:14px;
  4769. }
  4770. #u57253 {
  4771. border-width:0px;
  4772. position:absolute;
  4773. left:708px;
  4774. top:766px;
  4775. width:80px;
  4776. height:30px;
  4777. display:flex;
  4778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4779. font-weight:400;
  4780. font-style:normal;
  4781. font-size:14px;
  4782. }
  4783. #u57253 .text {
  4784. position:absolute;
  4785. align-self:center;
  4786. padding:2px 2px 2px 2px;
  4787. box-sizing:border-box;
  4788. width:100%;
  4789. }
  4790. #u57253_text {
  4791. border-width:0px;
  4792. word-wrap:break-word;
  4793. text-transform:none;
  4794. }
  4795. #u57254 {
  4796. border-width:0px;
  4797. position:absolute;
  4798. left:0px;
  4799. top:0px;
  4800. width:0px;
  4801. height:0px;
  4802. }
  4803. #u57255_div {
  4804. border-width:0px;
  4805. position:absolute;
  4806. left:0px;
  4807. top:0px;
  4808. width:140px;
  4809. height:30px;
  4810. background:inherit;
  4811. background-color:rgba(255, 255, 255, 1);
  4812. box-sizing:border-box;
  4813. border-width:1px;
  4814. border-style:solid;
  4815. border-color:rgba(215, 215, 215, 1);
  4816. border-radius:4px;
  4817. -moz-box-shadow:none;
  4818. -webkit-box-shadow:none;
  4819. box-shadow:none;
  4820. font-size:14px;
  4821. }
  4822. #u57255 {
  4823. border-width:0px;
  4824. position:absolute;
  4825. left:357px;
  4826. top:101px;
  4827. width:140px;
  4828. height:30px;
  4829. display:flex;
  4830. font-size:14px;
  4831. }
  4832. #u57255 .text {
  4833. position:absolute;
  4834. align-self:center;
  4835. padding:2px 2px 2px 2px;
  4836. box-sizing:border-box;
  4837. width:100%;
  4838. }
  4839. #u57255_text {
  4840. border-width:0px;
  4841. word-wrap:break-word;
  4842. text-transform:none;
  4843. visibility:hidden;
  4844. }
  4845. #u57256_input {
  4846. position:absolute;
  4847. left:0px;
  4848. top:0px;
  4849. width:134px;
  4850. height:23px;
  4851. padding:2px 2px 2px 2px;
  4852. font-family:'ArialMT', 'Arial', sans-serif;
  4853. font-weight:400;
  4854. font-style:normal;
  4855. font-size:14px;
  4856. letter-spacing:normal;
  4857. color:#AAAAAA;
  4858. vertical-align:none;
  4859. text-align:left;
  4860. text-transform:none;
  4861. background-color:transparent;
  4862. border-color:transparent;
  4863. }
  4864. #u57256_input.disabled {
  4865. position:absolute;
  4866. left:0px;
  4867. top:0px;
  4868. width:134px;
  4869. height:23px;
  4870. padding:2px 2px 2px 2px;
  4871. font-family:'ArialMT', 'Arial', sans-serif;
  4872. font-weight:400;
  4873. font-style:normal;
  4874. font-size:14px;
  4875. letter-spacing:normal;
  4876. color:#AAAAAA;
  4877. vertical-align:none;
  4878. text-align:left;
  4879. text-transform:none;
  4880. background-color:transparent;
  4881. border-color:transparent;
  4882. }
  4883. #u57256_div {
  4884. border-width:0px;
  4885. position:absolute;
  4886. left:0px;
  4887. top:0px;
  4888. width:134px;
  4889. height:23px;
  4890. background:inherit;
  4891. background-color:rgba(255, 255, 255, 1);
  4892. border:none;
  4893. border-radius:0px;
  4894. -moz-box-shadow:none;
  4895. -webkit-box-shadow:none;
  4896. box-shadow:none;
  4897. font-size:14px;
  4898. color:#AAAAAA;
  4899. }
  4900. #u57256 {
  4901. border-width:0px;
  4902. position:absolute;
  4903. left:361px;
  4904. top:103px;
  4905. width:134px;
  4906. height:23px;
  4907. display:flex;
  4908. font-size:14px;
  4909. color:#AAAAAA;
  4910. }
  4911. #u57256 .text {
  4912. position:absolute;
  4913. align-self:flex-start;
  4914. padding:2px 2px 2px 2px;
  4915. box-sizing:border-box;
  4916. width:100%;
  4917. }
  4918. #u57256_div.disabled {
  4919. border-width:0px;
  4920. position:absolute;
  4921. left:0px;
  4922. top:0px;
  4923. width:134px;
  4924. height:23px;
  4925. background:inherit;
  4926. background-color:rgba(240, 240, 240, 1);
  4927. border:none;
  4928. border-radius:0px;
  4929. -moz-box-shadow:none;
  4930. -webkit-box-shadow:none;
  4931. box-shadow:none;
  4932. font-size:14px;
  4933. color:#AAAAAA;
  4934. }
  4935. #u57256.disabled {
  4936. }
  4937. .u57256_input_option {
  4938. font-size:14px;
  4939. }
  4940. #u57257 {
  4941. border-width:0px;
  4942. position:absolute;
  4943. left:0px;
  4944. top:0px;
  4945. width:0px;
  4946. height:0px;
  4947. }
  4948. #u57258_div {
  4949. border-width:0px;
  4950. position:absolute;
  4951. left:0px;
  4952. top:0px;
  4953. width:200px;
  4954. height:1180px;
  4955. background:inherit;
  4956. background-color:rgba(255, 255, 255, 1);
  4957. border:none;
  4958. border-radius:0px;
  4959. -moz-box-shadow:none;
  4960. -webkit-box-shadow:none;
  4961. box-shadow:none;
  4962. }
  4963. #u57258 {
  4964. border-width:0px;
  4965. position:absolute;
  4966. left:120px;
  4967. top:50px;
  4968. width:200px;
  4969. height:1180px;
  4970. display:flex;
  4971. }
  4972. #u57258 .text {
  4973. position:absolute;
  4974. align-self:center;
  4975. padding:2px 2px 2px 2px;
  4976. box-sizing:border-box;
  4977. width:100%;
  4978. }
  4979. #u57258_text {
  4980. border-width:0px;
  4981. word-wrap:break-word;
  4982. text-transform:none;
  4983. visibility:hidden;
  4984. }
  4985. #u57259_div {
  4986. border-width:0px;
  4987. position:absolute;
  4988. left:0px;
  4989. top:0px;
  4990. width:200px;
  4991. height:60px;
  4992. background:inherit;
  4993. background-color:rgba(224, 231, 247, 1);
  4994. border:none;
  4995. border-radius:0px;
  4996. -moz-box-shadow:none;
  4997. -webkit-box-shadow:none;
  4998. box-shadow:none;
  4999. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5000. font-weight:500;
  5001. font-style:normal;
  5002. font-size:18px;
  5003. }
  5004. #u57259 {
  5005. border-width:0px;
  5006. position:absolute;
  5007. left:120px;
  5008. top:50px;
  5009. width:200px;
  5010. height:60px;
  5011. display:flex;
  5012. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5013. font-weight:500;
  5014. font-style:normal;
  5015. font-size:18px;
  5016. }
  5017. #u57259 .text {
  5018. position:absolute;
  5019. align-self:center;
  5020. padding:0px 0px 0px 20px;
  5021. box-sizing:border-box;
  5022. width:100%;
  5023. }
  5024. #u57259_text {
  5025. border-width:0px;
  5026. word-wrap:break-word;
  5027. text-transform:none;
  5028. }
  5029. #u57260_div {
  5030. border-width:0px;
  5031. position:absolute;
  5032. left:0px;
  5033. top:0px;
  5034. width:65px;
  5035. height:22px;
  5036. background:inherit;
  5037. background-color:rgba(255, 255, 255, 0);
  5038. border:none;
  5039. border-radius:0px;
  5040. -moz-box-shadow:none;
  5041. -webkit-box-shadow:none;
  5042. box-shadow:none;
  5043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5044. font-weight:400;
  5045. font-style:normal;
  5046. font-size:16px;
  5047. }
  5048. #u57260 {
  5049. border-width:0px;
  5050. position:absolute;
  5051. left:147px;
  5052. top:160px;
  5053. width:65px;
  5054. height:22px;
  5055. display:flex;
  5056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5057. font-weight:400;
  5058. font-style:normal;
  5059. font-size:16px;
  5060. }
  5061. #u57260 .text {
  5062. position:absolute;
  5063. align-self:flex-start;
  5064. padding:0px 0px 0px 0px;
  5065. box-sizing:border-box;
  5066. width:100%;
  5067. }
  5068. #u57260_text {
  5069. border-width:0px;
  5070. white-space:nowrap;
  5071. text-transform:none;
  5072. }
  5073. #u57261_img {
  5074. border-width:0px;
  5075. position:absolute;
  5076. left:0px;
  5077. top:0px;
  5078. width:201px;
  5079. height:2px;
  5080. }
  5081. #u57261 {
  5082. border-width:0px;
  5083. position:absolute;
  5084. left:120px;
  5085. top:279px;
  5086. width:200px;
  5087. height:1px;
  5088. display:flex;
  5089. }
  5090. #u57261 .text {
  5091. position:absolute;
  5092. align-self:center;
  5093. padding:2px 2px 2px 2px;
  5094. box-sizing:border-box;
  5095. width:100%;
  5096. }
  5097. #u57261_text {
  5098. border-width:0px;
  5099. word-wrap:break-word;
  5100. text-transform:none;
  5101. visibility:hidden;
  5102. }
  5103. #u57262_div {
  5104. border-width:0px;
  5105. position:absolute;
  5106. left:0px;
  5107. top:0px;
  5108. width:65px;
  5109. height:22px;
  5110. background:inherit;
  5111. background-color:rgba(255, 255, 255, 0);
  5112. border:none;
  5113. border-radius:0px;
  5114. -moz-box-shadow:none;
  5115. -webkit-box-shadow:none;
  5116. box-shadow:none;
  5117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5118. font-weight:400;
  5119. font-style:normal;
  5120. font-size:16px;
  5121. }
  5122. #u57262 {
  5123. border-width:0px;
  5124. position:absolute;
  5125. left:147px;
  5126. top:336px;
  5127. width:65px;
  5128. height:22px;
  5129. display:flex;
  5130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5131. font-weight:400;
  5132. font-style:normal;
  5133. font-size:16px;
  5134. }
  5135. #u57262 .text {
  5136. position:absolute;
  5137. align-self:flex-start;
  5138. padding:0px 0px 0px 0px;
  5139. box-sizing:border-box;
  5140. width:100%;
  5141. }
  5142. #u57262_text {
  5143. border-width:0px;
  5144. white-space:nowrap;
  5145. text-transform:none;
  5146. }
  5147. #u57263_div {
  5148. border-width:0px;
  5149. position:absolute;
  5150. left:0px;
  5151. top:0px;
  5152. width:49px;
  5153. height:17px;
  5154. background:inherit;
  5155. background-color:rgba(255, 255, 255, 0);
  5156. border:none;
  5157. border-radius:0px;
  5158. -moz-box-shadow:none;
  5159. -webkit-box-shadow:none;
  5160. box-shadow:none;
  5161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5162. font-weight:400;
  5163. font-style:normal;
  5164. font-size:12px;
  5165. color:#AAAAAA;
  5166. }
  5167. #u57263 {
  5168. border-width:0px;
  5169. position:absolute;
  5170. left:147px;
  5171. top:300px;
  5172. width:49px;
  5173. height:17px;
  5174. display:flex;
  5175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5176. font-weight:400;
  5177. font-style:normal;
  5178. font-size:12px;
  5179. color:#AAAAAA;
  5180. }
  5181. #u57263 .text {
  5182. position:absolute;
  5183. align-self:flex-start;
  5184. padding:0px 0px 0px 0px;
  5185. box-sizing:border-box;
  5186. width:100%;
  5187. }
  5188. #u57263_text {
  5189. border-width:0px;
  5190. white-space:nowrap;
  5191. text-transform:none;
  5192. }
  5193. #u57264_div {
  5194. border-width:0px;
  5195. position:absolute;
  5196. left:0px;
  5197. top:0px;
  5198. width:65px;
  5199. height:22px;
  5200. background:inherit;
  5201. background-color:rgba(255, 255, 255, 0);
  5202. border:none;
  5203. border-radius:0px;
  5204. -moz-box-shadow:none;
  5205. -webkit-box-shadow:none;
  5206. box-shadow:none;
  5207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5208. font-weight:400;
  5209. font-style:normal;
  5210. font-size:16px;
  5211. }
  5212. #u57264 {
  5213. border-width:0px;
  5214. position:absolute;
  5215. left:147px;
  5216. top:202px;
  5217. width:65px;
  5218. height:22px;
  5219. display:flex;
  5220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5221. font-weight:400;
  5222. font-style:normal;
  5223. font-size:16px;
  5224. }
  5225. #u57264 .text {
  5226. position:absolute;
  5227. align-self:flex-start;
  5228. padding:0px 0px 0px 0px;
  5229. box-sizing:border-box;
  5230. width:100%;
  5231. }
  5232. #u57264_text {
  5233. border-width:0px;
  5234. white-space:nowrap;
  5235. text-transform:none;
  5236. }
  5237. #u57265_div {
  5238. border-width:0px;
  5239. position:absolute;
  5240. left:0px;
  5241. top:0px;
  5242. width:65px;
  5243. height:22px;
  5244. background:inherit;
  5245. background-color:rgba(255, 255, 255, 0);
  5246. border:none;
  5247. border-radius:0px;
  5248. -moz-box-shadow:none;
  5249. -webkit-box-shadow:none;
  5250. box-shadow:none;
  5251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5252. font-weight:400;
  5253. font-style:normal;
  5254. font-size:16px;
  5255. }
  5256. #u57265 {
  5257. border-width:0px;
  5258. position:absolute;
  5259. left:147px;
  5260. top:244px;
  5261. width:65px;
  5262. height:22px;
  5263. display:flex;
  5264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5265. font-weight:400;
  5266. font-style:normal;
  5267. font-size:16px;
  5268. }
  5269. #u57265 .text {
  5270. position:absolute;
  5271. align-self:flex-start;
  5272. padding:0px 0px 0px 0px;
  5273. box-sizing:border-box;
  5274. width:100%;
  5275. }
  5276. #u57265_text {
  5277. border-width:0px;
  5278. white-space:nowrap;
  5279. text-transform:none;
  5280. }
  5281. #u57266_img {
  5282. border-width:0px;
  5283. position:absolute;
  5284. left:0px;
  5285. top:0px;
  5286. width:201px;
  5287. height:2px;
  5288. }
  5289. #u57266 {
  5290. border-width:0px;
  5291. position:absolute;
  5292. left:120px;
  5293. top:422px;
  5294. width:200px;
  5295. height:1px;
  5296. display:flex;
  5297. }
  5298. #u57266 .text {
  5299. position:absolute;
  5300. align-self:center;
  5301. padding:2px 2px 2px 2px;
  5302. box-sizing:border-box;
  5303. width:100%;
  5304. }
  5305. #u57266_text {
  5306. border-width:0px;
  5307. word-wrap:break-word;
  5308. text-transform:none;
  5309. visibility:hidden;
  5310. }
  5311. #u57267_div {
  5312. border-width:0px;
  5313. position:absolute;
  5314. left:0px;
  5315. top:0px;
  5316. width:65px;
  5317. height:22px;
  5318. background:inherit;
  5319. background-color:rgba(255, 255, 255, 0);
  5320. border:none;
  5321. border-radius:0px;
  5322. -moz-box-shadow:none;
  5323. -webkit-box-shadow:none;
  5324. box-shadow:none;
  5325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5326. font-weight:400;
  5327. font-style:normal;
  5328. font-size:16px;
  5329. }
  5330. #u57267 {
  5331. border-width:0px;
  5332. position:absolute;
  5333. left:147px;
  5334. top:479px;
  5335. width:65px;
  5336. height:22px;
  5337. display:flex;
  5338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5339. font-weight:400;
  5340. font-style:normal;
  5341. font-size:16px;
  5342. }
  5343. #u57267 .text {
  5344. position:absolute;
  5345. align-self:flex-start;
  5346. padding:0px 0px 0px 0px;
  5347. box-sizing:border-box;
  5348. width:100%;
  5349. }
  5350. #u57267_text {
  5351. border-width:0px;
  5352. white-space:nowrap;
  5353. text-transform:none;
  5354. }
  5355. #u57268_div {
  5356. border-width:0px;
  5357. position:absolute;
  5358. left:0px;
  5359. top:0px;
  5360. width:49px;
  5361. height:17px;
  5362. background:inherit;
  5363. background-color:rgba(255, 255, 255, 0);
  5364. border:none;
  5365. border-radius:0px;
  5366. -moz-box-shadow:none;
  5367. -webkit-box-shadow:none;
  5368. box-shadow:none;
  5369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5370. font-weight:400;
  5371. font-style:normal;
  5372. font-size:12px;
  5373. color:#AAAAAA;
  5374. }
  5375. #u57268 {
  5376. border-width:0px;
  5377. position:absolute;
  5378. left:147px;
  5379. top:443px;
  5380. width:49px;
  5381. height:17px;
  5382. display:flex;
  5383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5384. font-weight:400;
  5385. font-style:normal;
  5386. font-size:12px;
  5387. color:#AAAAAA;
  5388. }
  5389. #u57268 .text {
  5390. position:absolute;
  5391. align-self:flex-start;
  5392. padding:0px 0px 0px 0px;
  5393. box-sizing:border-box;
  5394. width:100%;
  5395. }
  5396. #u57268_text {
  5397. border-width:0px;
  5398. white-space:nowrap;
  5399. text-transform:none;
  5400. }
  5401. #u57269_div {
  5402. border-width:0px;
  5403. position:absolute;
  5404. left:0px;
  5405. top:0px;
  5406. width:65px;
  5407. height:22px;
  5408. background:inherit;
  5409. background-color:rgba(255, 255, 255, 0);
  5410. border:none;
  5411. border-radius:0px;
  5412. -moz-box-shadow:none;
  5413. -webkit-box-shadow:none;
  5414. box-shadow:none;
  5415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5416. font-weight:400;
  5417. font-style:normal;
  5418. font-size:16px;
  5419. }
  5420. #u57269 {
  5421. border-width:0px;
  5422. position:absolute;
  5423. left:147px;
  5424. top:561px;
  5425. width:65px;
  5426. height:22px;
  5427. display:flex;
  5428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5429. font-weight:400;
  5430. font-style:normal;
  5431. font-size:16px;
  5432. }
  5433. #u57269 .text {
  5434. position:absolute;
  5435. align-self:flex-start;
  5436. padding:0px 0px 0px 0px;
  5437. box-sizing:border-box;
  5438. width:100%;
  5439. }
  5440. #u57269_text {
  5441. border-width:0px;
  5442. white-space:nowrap;
  5443. text-transform:none;
  5444. }
  5445. #u57270_div {
  5446. border-width:0px;
  5447. position:absolute;
  5448. left:0px;
  5449. top:0px;
  5450. width:65px;
  5451. height:22px;
  5452. background:inherit;
  5453. background-color:rgba(255, 255, 255, 0);
  5454. border:none;
  5455. border-radius:0px;
  5456. -moz-box-shadow:none;
  5457. -webkit-box-shadow:none;
  5458. box-shadow:none;
  5459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5460. font-weight:400;
  5461. font-style:normal;
  5462. font-size:16px;
  5463. }
  5464. #u57270 {
  5465. border-width:0px;
  5466. position:absolute;
  5467. left:147px;
  5468. top:603px;
  5469. width:65px;
  5470. height:22px;
  5471. display:flex;
  5472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5473. font-weight:400;
  5474. font-style:normal;
  5475. font-size:16px;
  5476. }
  5477. #u57270 .text {
  5478. position:absolute;
  5479. align-self:flex-start;
  5480. padding:0px 0px 0px 0px;
  5481. box-sizing:border-box;
  5482. width:100%;
  5483. }
  5484. #u57270_text {
  5485. border-width:0px;
  5486. white-space:nowrap;
  5487. text-transform:none;
  5488. }
  5489. #u57271_div {
  5490. border-width:0px;
  5491. position:absolute;
  5492. left:0px;
  5493. top:0px;
  5494. width:65px;
  5495. height:22px;
  5496. background:inherit;
  5497. background-color:rgba(255, 255, 255, 0);
  5498. border:none;
  5499. border-radius:0px;
  5500. -moz-box-shadow:none;
  5501. -webkit-box-shadow:none;
  5502. box-shadow:none;
  5503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5504. font-weight:400;
  5505. font-style:normal;
  5506. font-size:16px;
  5507. }
  5508. #u57271 {
  5509. border-width:0px;
  5510. position:absolute;
  5511. left:147px;
  5512. top:378px;
  5513. width:65px;
  5514. height:22px;
  5515. display:flex;
  5516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5517. font-weight:400;
  5518. font-style:normal;
  5519. font-size:16px;
  5520. }
  5521. #u57271 .text {
  5522. position:absolute;
  5523. align-self:flex-start;
  5524. padding:0px 0px 0px 0px;
  5525. box-sizing:border-box;
  5526. width:100%;
  5527. }
  5528. #u57271_text {
  5529. border-width:0px;
  5530. white-space:nowrap;
  5531. text-transform:none;
  5532. }
  5533. #u57272_div {
  5534. border-width:0px;
  5535. position:absolute;
  5536. left:0px;
  5537. top:0px;
  5538. width:49px;
  5539. height:17px;
  5540. background:inherit;
  5541. background-color:rgba(255, 255, 255, 0);
  5542. border:none;
  5543. border-radius:0px;
  5544. -moz-box-shadow:none;
  5545. -webkit-box-shadow:none;
  5546. box-shadow:none;
  5547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5548. font-weight:400;
  5549. font-style:normal;
  5550. font-size:12px;
  5551. color:#AAAAAA;
  5552. }
  5553. #u57272 {
  5554. border-width:0px;
  5555. position:absolute;
  5556. left:147px;
  5557. top:123px;
  5558. width:49px;
  5559. height:17px;
  5560. display:flex;
  5561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5562. font-weight:400;
  5563. font-style:normal;
  5564. font-size:12px;
  5565. color:#AAAAAA;
  5566. }
  5567. #u57272 .text {
  5568. position:absolute;
  5569. align-self:flex-start;
  5570. padding:0px 0px 0px 0px;
  5571. box-sizing:border-box;
  5572. width:100%;
  5573. }
  5574. #u57272_text {
  5575. border-width:0px;
  5576. white-space:nowrap;
  5577. text-transform:none;
  5578. }
  5579. #u57273_div {
  5580. border-width:0px;
  5581. position:absolute;
  5582. left:0px;
  5583. top:0px;
  5584. width:65px;
  5585. height:22px;
  5586. background:inherit;
  5587. background-color:rgba(255, 255, 255, 0);
  5588. border:none;
  5589. border-radius:0px;
  5590. -moz-box-shadow:none;
  5591. -webkit-box-shadow:none;
  5592. box-shadow:none;
  5593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5594. font-weight:400;
  5595. font-style:normal;
  5596. font-size:16px;
  5597. }
  5598. #u57273 {
  5599. border-width:0px;
  5600. position:absolute;
  5601. left:147px;
  5602. top:521px;
  5603. width:65px;
  5604. height:22px;
  5605. display:flex;
  5606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5607. font-weight:400;
  5608. font-style:normal;
  5609. font-size:16px;
  5610. }
  5611. #u57273 .text {
  5612. position:absolute;
  5613. align-self:flex-start;
  5614. padding:0px 0px 0px 0px;
  5615. box-sizing:border-box;
  5616. width:100%;
  5617. }
  5618. #u57273_text {
  5619. border-width:0px;
  5620. white-space:nowrap;
  5621. text-transform:none;
  5622. }
  5623. #u57274 {
  5624. border-width:0px;
  5625. position:absolute;
  5626. left:0px;
  5627. top:0px;
  5628. width:0px;
  5629. height:0px;
  5630. }
  5631. #u57275_div {
  5632. border-width:0px;
  5633. position:absolute;
  5634. left:0px;
  5635. top:0px;
  5636. width:140px;
  5637. height:30px;
  5638. background:inherit;
  5639. background-color:rgba(255, 255, 255, 1);
  5640. box-sizing:border-box;
  5641. border-width:1px;
  5642. border-style:solid;
  5643. border-color:rgba(215, 215, 215, 1);
  5644. border-radius:4px;
  5645. -moz-box-shadow:none;
  5646. -webkit-box-shadow:none;
  5647. box-shadow:none;
  5648. font-size:14px;
  5649. }
  5650. #u57275 {
  5651. border-width:0px;
  5652. position:absolute;
  5653. left:657px;
  5654. top:101px;
  5655. width:140px;
  5656. height:30px;
  5657. display:flex;
  5658. font-size:14px;
  5659. }
  5660. #u57275 .text {
  5661. position:absolute;
  5662. align-self:center;
  5663. padding:2px 2px 2px 2px;
  5664. box-sizing:border-box;
  5665. width:100%;
  5666. }
  5667. #u57275_text {
  5668. border-width:0px;
  5669. word-wrap:break-word;
  5670. text-transform:none;
  5671. visibility:hidden;
  5672. }
  5673. #u57276_input {
  5674. position:absolute;
  5675. left:0px;
  5676. top:0px;
  5677. width:134px;
  5678. height:23px;
  5679. padding:2px 2px 2px 2px;
  5680. font-family:'ArialMT', 'Arial', sans-serif;
  5681. font-weight:400;
  5682. font-style:normal;
  5683. font-size:14px;
  5684. letter-spacing:normal;
  5685. color:#AAAAAA;
  5686. vertical-align:none;
  5687. text-align:left;
  5688. text-transform:none;
  5689. background-color:transparent;
  5690. border-color:transparent;
  5691. }
  5692. #u57276_input.disabled {
  5693. position:absolute;
  5694. left:0px;
  5695. top:0px;
  5696. width:134px;
  5697. height:23px;
  5698. padding:2px 2px 2px 2px;
  5699. font-family:'ArialMT', 'Arial', sans-serif;
  5700. font-weight:400;
  5701. font-style:normal;
  5702. font-size:14px;
  5703. letter-spacing:normal;
  5704. color:#AAAAAA;
  5705. vertical-align:none;
  5706. text-align:left;
  5707. text-transform:none;
  5708. background-color:transparent;
  5709. border-color:transparent;
  5710. }
  5711. #u57276_div {
  5712. border-width:0px;
  5713. position:absolute;
  5714. left:0px;
  5715. top:0px;
  5716. width:134px;
  5717. height:23px;
  5718. background:inherit;
  5719. background-color:rgba(255, 255, 255, 1);
  5720. border:none;
  5721. border-radius:0px;
  5722. -moz-box-shadow:none;
  5723. -webkit-box-shadow:none;
  5724. box-shadow:none;
  5725. font-size:14px;
  5726. color:#AAAAAA;
  5727. }
  5728. #u57276 {
  5729. border-width:0px;
  5730. position:absolute;
  5731. left:661px;
  5732. top:103px;
  5733. width:134px;
  5734. height:23px;
  5735. display:flex;
  5736. font-size:14px;
  5737. color:#AAAAAA;
  5738. }
  5739. #u57276 .text {
  5740. position:absolute;
  5741. align-self:flex-start;
  5742. padding:2px 2px 2px 2px;
  5743. box-sizing:border-box;
  5744. width:100%;
  5745. }
  5746. #u57276_div.disabled {
  5747. border-width:0px;
  5748. position:absolute;
  5749. left:0px;
  5750. top:0px;
  5751. width:134px;
  5752. height:23px;
  5753. background:inherit;
  5754. background-color:rgba(240, 240, 240, 1);
  5755. border:none;
  5756. border-radius:0px;
  5757. -moz-box-shadow:none;
  5758. -webkit-box-shadow:none;
  5759. box-shadow:none;
  5760. font-size:14px;
  5761. color:#AAAAAA;
  5762. }
  5763. #u57276.disabled {
  5764. }
  5765. .u57276_input_option {
  5766. font-size:14px;
  5767. }
  5768. #u57277 {
  5769. border-width:0px;
  5770. position:absolute;
  5771. left:0px;
  5772. top:0px;
  5773. width:0px;
  5774. height:0px;
  5775. }
  5776. #u57278_div {
  5777. border-width:0px;
  5778. position:absolute;
  5779. left:0px;
  5780. top:0px;
  5781. width:140px;
  5782. height:30px;
  5783. background:inherit;
  5784. background-color:rgba(255, 255, 255, 1);
  5785. box-sizing:border-box;
  5786. border-width:1px;
  5787. border-style:solid;
  5788. border-color:rgba(215, 215, 215, 1);
  5789. border-radius:4px;
  5790. -moz-box-shadow:none;
  5791. -webkit-box-shadow:none;
  5792. box-shadow:none;
  5793. font-size:14px;
  5794. }
  5795. #u57278 {
  5796. border-width:0px;
  5797. position:absolute;
  5798. left:807px;
  5799. top:101px;
  5800. width:140px;
  5801. height:30px;
  5802. display:flex;
  5803. font-size:14px;
  5804. }
  5805. #u57278 .text {
  5806. position:absolute;
  5807. align-self:center;
  5808. padding:2px 2px 2px 2px;
  5809. box-sizing:border-box;
  5810. width:100%;
  5811. }
  5812. #u57278_text {
  5813. border-width:0px;
  5814. word-wrap:break-word;
  5815. text-transform:none;
  5816. visibility:hidden;
  5817. }
  5818. #u57279_input {
  5819. position:absolute;
  5820. left:0px;
  5821. top:0px;
  5822. width:134px;
  5823. height:23px;
  5824. padding:2px 2px 2px 2px;
  5825. font-family:'ArialMT', 'Arial', sans-serif;
  5826. font-weight:400;
  5827. font-style:normal;
  5828. font-size:14px;
  5829. letter-spacing:normal;
  5830. color:#AAAAAA;
  5831. vertical-align:none;
  5832. text-align:left;
  5833. text-transform:none;
  5834. background-color:transparent;
  5835. border-color:transparent;
  5836. }
  5837. #u57279_input.disabled {
  5838. position:absolute;
  5839. left:0px;
  5840. top:0px;
  5841. width:134px;
  5842. height:23px;
  5843. padding:2px 2px 2px 2px;
  5844. font-family:'ArialMT', 'Arial', sans-serif;
  5845. font-weight:400;
  5846. font-style:normal;
  5847. font-size:14px;
  5848. letter-spacing:normal;
  5849. color:#AAAAAA;
  5850. vertical-align:none;
  5851. text-align:left;
  5852. text-transform:none;
  5853. background-color:transparent;
  5854. border-color:transparent;
  5855. }
  5856. #u57279_div {
  5857. border-width:0px;
  5858. position:absolute;
  5859. left:0px;
  5860. top:0px;
  5861. width:134px;
  5862. height:23px;
  5863. background:inherit;
  5864. background-color:rgba(255, 255, 255, 1);
  5865. border:none;
  5866. border-radius:0px;
  5867. -moz-box-shadow:none;
  5868. -webkit-box-shadow:none;
  5869. box-shadow:none;
  5870. font-size:14px;
  5871. color:#AAAAAA;
  5872. }
  5873. #u57279 {
  5874. border-width:0px;
  5875. position:absolute;
  5876. left:811px;
  5877. top:103px;
  5878. width:134px;
  5879. height:23px;
  5880. display:flex;
  5881. font-size:14px;
  5882. color:#AAAAAA;
  5883. }
  5884. #u57279 .text {
  5885. position:absolute;
  5886. align-self:flex-start;
  5887. padding:2px 2px 2px 2px;
  5888. box-sizing:border-box;
  5889. width:100%;
  5890. }
  5891. #u57279_div.disabled {
  5892. border-width:0px;
  5893. position:absolute;
  5894. left:0px;
  5895. top:0px;
  5896. width:134px;
  5897. height:23px;
  5898. background:inherit;
  5899. background-color:rgba(240, 240, 240, 1);
  5900. border:none;
  5901. border-radius:0px;
  5902. -moz-box-shadow:none;
  5903. -webkit-box-shadow:none;
  5904. box-shadow:none;
  5905. font-size:14px;
  5906. color:#AAAAAA;
  5907. }
  5908. #u57279.disabled {
  5909. }
  5910. .u57279_input_option {
  5911. font-size:14px;
  5912. }
  5913. #u57280 {
  5914. border-width:0px;
  5915. position:absolute;
  5916. left:0px;
  5917. top:0px;
  5918. width:0px;
  5919. height:0px;
  5920. }
  5921. #u57281_div {
  5922. border-width:0px;
  5923. position:absolute;
  5924. left:0px;
  5925. top:0px;
  5926. width:1000px;
  5927. height:1241px;
  5928. background:inherit;
  5929. background-color:rgba(242, 242, 242, 1);
  5930. box-sizing:border-box;
  5931. border-width:1px;
  5932. border-style:solid;
  5933. border-color:rgba(215, 215, 215, 1);
  5934. border-radius:0px;
  5935. -moz-box-shadow:none;
  5936. -webkit-box-shadow:none;
  5937. box-shadow:none;
  5938. }
  5939. #u57281 {
  5940. border-width:0px;
  5941. position:absolute;
  5942. left:1650px;
  5943. top:46px;
  5944. width:1000px;
  5945. height:1241px;
  5946. display:flex;
  5947. }
  5948. #u57281 .text {
  5949. position:absolute;
  5950. align-self:center;
  5951. padding:2px 2px 2px 2px;
  5952. box-sizing:border-box;
  5953. width:100%;
  5954. }
  5955. #u57281_text {
  5956. border-width:0px;
  5957. word-wrap:break-word;
  5958. text-transform:none;
  5959. visibility:hidden;
  5960. }
  5961. #u57282_div {
  5962. border-width:0px;
  5963. position:absolute;
  5964. left:0px;
  5965. top:0px;
  5966. width:1000px;
  5967. height:991px;
  5968. background:inherit;
  5969. background-color:rgba(255, 255, 255, 1);
  5970. box-sizing:border-box;
  5971. border-width:1px;
  5972. border-style:solid;
  5973. border-color:rgba(242, 242, 242, 1);
  5974. border-radius:0px;
  5975. -moz-box-shadow:none;
  5976. -webkit-box-shadow:none;
  5977. box-shadow:none;
  5978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5979. font-weight:400;
  5980. font-style:normal;
  5981. font-size:14px;
  5982. color:#AAAAAA;
  5983. text-align:center;
  5984. line-height:30px;
  5985. }
  5986. #u57282 {
  5987. border-width:0px;
  5988. position:absolute;
  5989. left:1650px;
  5990. top:256px;
  5991. width:1000px;
  5992. height:991px;
  5993. display:flex;
  5994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5995. font-weight:400;
  5996. font-style:normal;
  5997. font-size:14px;
  5998. color:#AAAAAA;
  5999. text-align:center;
  6000. line-height:30px;
  6001. }
  6002. #u57282 .text {
  6003. position:absolute;
  6004. align-self:center;
  6005. padding:5px 10px 5px 10px;
  6006. box-sizing:border-box;
  6007. width:100%;
  6008. }
  6009. #u57282_text {
  6010. border-width:0px;
  6011. word-wrap:break-word;
  6012. text-transform:none;
  6013. visibility:hidden;
  6014. }
  6015. #u57283_div {
  6016. border-width:0px;
  6017. position:absolute;
  6018. left:0px;
  6019. top:0px;
  6020. width:1000px;
  6021. height:200px;
  6022. background:inherit;
  6023. background-color:rgba(255, 255, 255, 1);
  6024. box-sizing:border-box;
  6025. border-width:1px;
  6026. border-style:solid;
  6027. border-color:rgba(215, 215, 215, 1);
  6028. border-radius:0px;
  6029. -moz-box-shadow:none;
  6030. -webkit-box-shadow:none;
  6031. box-shadow:none;
  6032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6033. font-weight:400;
  6034. font-style:normal;
  6035. font-size:14px;
  6036. color:#AAAAAA;
  6037. text-align:center;
  6038. line-height:30px;
  6039. }
  6040. #u57283 {
  6041. border-width:0px;
  6042. position:absolute;
  6043. left:1650px;
  6044. top:46px;
  6045. width:1000px;
  6046. height:200px;
  6047. display:flex;
  6048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6049. font-weight:400;
  6050. font-style:normal;
  6051. font-size:14px;
  6052. color:#AAAAAA;
  6053. text-align:center;
  6054. line-height:30px;
  6055. }
  6056. #u57283 .text {
  6057. position:absolute;
  6058. align-self:center;
  6059. padding:5px 10px 5px 10px;
  6060. box-sizing:border-box;
  6061. width:100%;
  6062. }
  6063. #u57283_text {
  6064. border-width:0px;
  6065. word-wrap:break-word;
  6066. text-transform:none;
  6067. visibility:hidden;
  6068. }
  6069. #u57284_div {
  6070. border-width:0px;
  6071. position:absolute;
  6072. left:0px;
  6073. top:0px;
  6074. width:83px;
  6075. height:35px;
  6076. background:inherit;
  6077. background-color:rgba(255, 255, 255, 0);
  6078. border:none;
  6079. border-top:0px;
  6080. border-right:0px;
  6081. border-bottom:0px;
  6082. border-radius:0px;
  6083. border-top-left-radius:0px;
  6084. border-bottom-left-radius:0px;
  6085. -moz-box-shadow:none;
  6086. -webkit-box-shadow:none;
  6087. box-shadow:none;
  6088. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6089. font-weight:500;
  6090. font-style:normal;
  6091. font-size:18px;
  6092. }
  6093. #u57284 {
  6094. border-width:0px;
  6095. position:absolute;
  6096. left:1670px;
  6097. top:64px;
  6098. width:83px;
  6099. height:35px;
  6100. display:flex;
  6101. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6102. font-weight:500;
  6103. font-style:normal;
  6104. font-size:18px;
  6105. }
  6106. #u57284 .text {
  6107. position:absolute;
  6108. align-self:center;
  6109. padding:5px 10px 5px 0px;
  6110. box-sizing:border-box;
  6111. width:100%;
  6112. }
  6113. #u57284_text {
  6114. border-width:0px;
  6115. white-space:nowrap;
  6116. text-transform:none;
  6117. }
  6118. #u57285 {
  6119. border-width:0px;
  6120. position:absolute;
  6121. left:0px;
  6122. top:0px;
  6123. width:0px;
  6124. height:0px;
  6125. }
  6126. #u57286_div {
  6127. border-width:0px;
  6128. position:absolute;
  6129. left:0px;
  6130. top:0px;
  6131. width:40px;
  6132. height:40px;
  6133. background:inherit;
  6134. background-color:rgba(255, 255, 255, 0);
  6135. border:none;
  6136. border-top:0px;
  6137. border-right:0px;
  6138. border-bottom:0px;
  6139. border-radius:0px;
  6140. border-top-left-radius:0px;
  6141. border-bottom-left-radius:0px;
  6142. -moz-box-shadow:none;
  6143. -webkit-box-shadow:none;
  6144. box-shadow:none;
  6145. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6146. font-weight:500;
  6147. font-style:normal;
  6148. font-size:14px;
  6149. text-align:center;
  6150. }
  6151. #u57286 {
  6152. border-width:0px;
  6153. position:absolute;
  6154. left:2610px;
  6155. top:46px;
  6156. width:40px;
  6157. height:40px;
  6158. display:flex;
  6159. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6160. font-weight:500;
  6161. font-style:normal;
  6162. font-size:14px;
  6163. text-align:center;
  6164. }
  6165. #u57286 .text {
  6166. position:absolute;
  6167. align-self:center;
  6168. padding:5px 10px 5px 0px;
  6169. box-sizing:border-box;
  6170. width:100%;
  6171. }
  6172. #u57286_text {
  6173. border-width:0px;
  6174. word-wrap:break-word;
  6175. text-transform:none;
  6176. }
  6177. #u57287_img {
  6178. border-width:0px;
  6179. position:absolute;
  6180. left:0px;
  6181. top:0px;
  6182. width:13px;
  6183. height:13px;
  6184. }
  6185. #u57287 {
  6186. border-width:0px;
  6187. position:absolute;
  6188. left:2598px;
  6189. top:62px;
  6190. width:13px;
  6191. height:13px;
  6192. display:flex;
  6193. font-size:14px;
  6194. }
  6195. #u57287 .text {
  6196. position:absolute;
  6197. align-self:center;
  6198. padding:2px 2px 2px 2px;
  6199. box-sizing:border-box;
  6200. width:100%;
  6201. }
  6202. #u57287_text {
  6203. border-width:0px;
  6204. word-wrap:break-word;
  6205. text-transform:none;
  6206. visibility:hidden;
  6207. }
  6208. #u57288_div {
  6209. border-width:0px;
  6210. position:absolute;
  6211. left:0px;
  6212. top:0px;
  6213. width:147px;
  6214. height:43px;
  6215. background:inherit;
  6216. background-color:rgba(255, 255, 255, 0);
  6217. border:none;
  6218. border-top:0px;
  6219. border-right:0px;
  6220. border-bottom:0px;
  6221. border-radius:0px;
  6222. border-top-left-radius:0px;
  6223. border-bottom-left-radius:0px;
  6224. -moz-box-shadow:none;
  6225. -webkit-box-shadow:none;
  6226. box-shadow:none;
  6227. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6228. font-weight:500;
  6229. font-style:normal;
  6230. font-size:24px;
  6231. }
  6232. #u57288 {
  6233. border-width:0px;
  6234. position:absolute;
  6235. left:1680px;
  6236. top:115px;
  6237. width:147px;
  6238. height:43px;
  6239. display:flex;
  6240. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6241. font-weight:500;
  6242. font-style:normal;
  6243. font-size:24px;
  6244. }
  6245. #u57288 .text {
  6246. position:absolute;
  6247. align-self:center;
  6248. padding:5px 10px 5px 0px;
  6249. box-sizing:border-box;
  6250. width:100%;
  6251. }
  6252. #u57288_text {
  6253. border-width:0px;
  6254. white-space:nowrap;
  6255. text-transform:none;
  6256. }
  6257. #u57289_img {
  6258. border-width:0px;
  6259. position:absolute;
  6260. left:0px;
  6261. top:0px;
  6262. width:108px;
  6263. height:108px;
  6264. }
  6265. #u57289 {
  6266. border-width:0px;
  6267. position:absolute;
  6268. left:2500px;
  6269. top:116px;
  6270. width:108px;
  6271. height:108px;
  6272. display:flex;
  6273. -webkit-transform:rotate(315deg);
  6274. -moz-transform:rotate(315deg);
  6275. -ms-transform:rotate(315deg);
  6276. transform:rotate(315deg);
  6277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6278. font-weight:400;
  6279. font-style:normal;
  6280. font-size:28px;
  6281. color:#F59A23;
  6282. }
  6283. #u57289 .text {
  6284. position:absolute;
  6285. align-self:center;
  6286. padding:2px 2px 2px 2px;
  6287. box-sizing:border-box;
  6288. width:100%;
  6289. }
  6290. #u57289_text {
  6291. border-width:0px;
  6292. word-wrap:break-word;
  6293. text-transform:none;
  6294. }
  6295. #u57290_div {
  6296. border-width:0px;
  6297. position:absolute;
  6298. left:0px;
  6299. top:0px;
  6300. width:325px;
  6301. height:60px;
  6302. background:inherit;
  6303. background-color:rgba(255, 255, 255, 0);
  6304. border:none;
  6305. border-left:0px;
  6306. border-top:0px;
  6307. border-right:0px;
  6308. border-radius:0px;
  6309. border-bottom-right-radius:0px;
  6310. border-bottom-left-radius:0px;
  6311. -moz-box-shadow:none;
  6312. -webkit-box-shadow:none;
  6313. box-shadow:none;
  6314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6315. font-weight:400;
  6316. font-style:normal;
  6317. font-size:14px;
  6318. line-height:30px;
  6319. }
  6320. #u57290 {
  6321. border-width:0px;
  6322. position:absolute;
  6323. left:1680px;
  6324. top:170px;
  6325. width:325px;
  6326. height:60px;
  6327. display:flex;
  6328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6329. font-weight:400;
  6330. font-style:normal;
  6331. font-size:14px;
  6332. line-height:30px;
  6333. }
  6334. #u57290 .text {
  6335. position:absolute;
  6336. align-self:flex-start;
  6337. padding:0px 0px 0px 0px;
  6338. box-sizing:border-box;
  6339. width:100%;
  6340. }
  6341. #u57290_text {
  6342. border-width:0px;
  6343. word-wrap:break-word;
  6344. text-transform:none;
  6345. }
  6346. #u57291 {
  6347. border-width:0px;
  6348. position:absolute;
  6349. left:0px;
  6350. top:0px;
  6351. width:0px;
  6352. height:0px;
  6353. }
  6354. #u57292_div {
  6355. border-width:0px;
  6356. position:absolute;
  6357. left:0px;
  6358. top:0px;
  6359. width:40px;
  6360. height:40px;
  6361. background:inherit;
  6362. background-color:rgba(255, 255, 255, 0);
  6363. border:none;
  6364. border-top:0px;
  6365. border-right:0px;
  6366. border-bottom:0px;
  6367. border-radius:0px;
  6368. border-top-left-radius:0px;
  6369. border-bottom-left-radius:0px;
  6370. -moz-box-shadow:none;
  6371. -webkit-box-shadow:none;
  6372. box-shadow:none;
  6373. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6374. font-weight:500;
  6375. font-style:normal;
  6376. font-size:18px;
  6377. text-align:center;
  6378. }
  6379. #u57292 {
  6380. border-width:0px;
  6381. position:absolute;
  6382. left:2610px;
  6383. top:49px;
  6384. width:40px;
  6385. height:40px;
  6386. display:flex;
  6387. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6388. font-weight:500;
  6389. font-style:normal;
  6390. font-size:18px;
  6391. text-align:center;
  6392. }
  6393. #u57292 .text {
  6394. position:absolute;
  6395. align-self:center;
  6396. padding:5px 10px 5px 0px;
  6397. box-sizing:border-box;
  6398. width:100%;
  6399. }
  6400. #u57292_text {
  6401. border-width:0px;
  6402. word-wrap:break-word;
  6403. text-transform:none;
  6404. }
  6405. #u57293_img {
  6406. border-width:0px;
  6407. position:absolute;
  6408. left:0px;
  6409. top:0px;
  6410. width:13px;
  6411. height:17px;
  6412. }
  6413. #u57293 {
  6414. border-width:0px;
  6415. position:absolute;
  6416. left:2597px;
  6417. top:61px;
  6418. width:13px;
  6419. height:17px;
  6420. display:flex;
  6421. }
  6422. #u57293 .text {
  6423. position:absolute;
  6424. align-self:center;
  6425. padding:2px 2px 2px 2px;
  6426. box-sizing:border-box;
  6427. width:100%;
  6428. }
  6429. #u57293_text {
  6430. border-width:0px;
  6431. word-wrap:break-word;
  6432. text-transform:none;
  6433. visibility:hidden;
  6434. }
  6435. #u57294 {
  6436. border-width:0px;
  6437. position:absolute;
  6438. left:0px;
  6439. top:0px;
  6440. width:0px;
  6441. height:0px;
  6442. }
  6443. #u57295_div {
  6444. border-width:0px;
  6445. position:absolute;
  6446. left:0px;
  6447. top:0px;
  6448. width:1000px;
  6449. height:60px;
  6450. background:inherit;
  6451. background-color:rgba(255, 255, 255, 1);
  6452. box-sizing:border-box;
  6453. border-width:1px;
  6454. border-style:solid;
  6455. border-color:rgba(215, 215, 215, 1);
  6456. border-radius:0px;
  6457. -moz-box-shadow:none;
  6458. -webkit-box-shadow:none;
  6459. box-shadow:none;
  6460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6461. font-weight:400;
  6462. font-style:normal;
  6463. font-size:14px;
  6464. color:#AAAAAA;
  6465. text-align:center;
  6466. line-height:30px;
  6467. }
  6468. #u57295 {
  6469. border-width:0px;
  6470. position:absolute;
  6471. left:1650px;
  6472. top:1227px;
  6473. width:1000px;
  6474. height:60px;
  6475. display:flex;
  6476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6477. font-weight:400;
  6478. font-style:normal;
  6479. font-size:14px;
  6480. color:#AAAAAA;
  6481. text-align:center;
  6482. line-height:30px;
  6483. }
  6484. #u57295 .text {
  6485. position:absolute;
  6486. align-self:center;
  6487. padding:5px 10px 5px 10px;
  6488. box-sizing:border-box;
  6489. width:100%;
  6490. }
  6491. #u57295_text {
  6492. border-width:0px;
  6493. word-wrap:break-word;
  6494. text-transform:none;
  6495. visibility:hidden;
  6496. }
  6497. #u57296_div {
  6498. border-width:0px;
  6499. position:absolute;
  6500. left:0px;
  6501. top:0px;
  6502. width:80px;
  6503. height:30px;
  6504. background:inherit;
  6505. background-color:rgba(255, 255, 255, 1);
  6506. box-sizing:border-box;
  6507. border-width:1px;
  6508. border-style:solid;
  6509. border-color:rgba(170, 170, 170, 1);
  6510. border-radius:4px;
  6511. -moz-box-shadow:none;
  6512. -webkit-box-shadow:none;
  6513. box-shadow:none;
  6514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6515. font-weight:400;
  6516. font-style:normal;
  6517. font-size:14px;
  6518. }
  6519. #u57296 {
  6520. border-width:0px;
  6521. position:absolute;
  6522. left:2540px;
  6523. top:1242px;
  6524. width:80px;
  6525. height:30px;
  6526. display:flex;
  6527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6528. font-weight:400;
  6529. font-style:normal;
  6530. font-size:14px;
  6531. }
  6532. #u57296 .text {
  6533. position:absolute;
  6534. align-self:center;
  6535. padding:2px 2px 2px 2px;
  6536. box-sizing:border-box;
  6537. width:100%;
  6538. }
  6539. #u57296_text {
  6540. border-width:0px;
  6541. word-wrap:break-word;
  6542. text-transform:none;
  6543. }
  6544. #u57297_div {
  6545. border-width:0px;
  6546. position:absolute;
  6547. left:0px;
  6548. top:0px;
  6549. width:81px;
  6550. height:30px;
  6551. background:inherit;
  6552. background-color:rgba(255, 255, 255, 0);
  6553. border:none;
  6554. border-top:0px;
  6555. border-right:0px;
  6556. border-bottom:0px;
  6557. border-radius:0px;
  6558. border-top-left-radius:0px;
  6559. border-bottom-left-radius:0px;
  6560. -moz-box-shadow:none;
  6561. -webkit-box-shadow:none;
  6562. box-shadow:none;
  6563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6564. font-weight:400;
  6565. font-style:normal;
  6566. font-size:14px;
  6567. color:#7F7F7F;
  6568. }
  6569. #u57297 {
  6570. border-width:0px;
  6571. position:absolute;
  6572. left:2010px;
  6573. top:289px;
  6574. width:81px;
  6575. height:30px;
  6576. display:flex;
  6577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6578. font-weight:400;
  6579. font-style:normal;
  6580. font-size:14px;
  6581. color:#7F7F7F;
  6582. }
  6583. #u57297 .text {
  6584. position:absolute;
  6585. align-self:center;
  6586. padding:5px 10px 5px 0px;
  6587. box-sizing:border-box;
  6588. width:100%;
  6589. }
  6590. #u57297_text {
  6591. border-width:0px;
  6592. white-space:nowrap;
  6593. text-transform:none;
  6594. }
  6595. #u57298_div {
  6596. border-width:0px;
  6597. position:absolute;
  6598. left:0px;
  6599. top:0px;
  6600. width:90px;
  6601. height:30px;
  6602. background:inherit;
  6603. background-color:rgba(255, 255, 255, 0);
  6604. border:none;
  6605. border-top:0px;
  6606. border-right:0px;
  6607. border-bottom:0px;
  6608. border-radius:0px;
  6609. border-top-left-radius:0px;
  6610. border-bottom-left-radius:0px;
  6611. -moz-box-shadow:none;
  6612. -webkit-box-shadow:none;
  6613. box-shadow:none;
  6614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6615. font-weight:400;
  6616. font-style:normal;
  6617. font-size:14px;
  6618. }
  6619. #u57298 {
  6620. border-width:0px;
  6621. position:absolute;
  6622. left:2091px;
  6623. top:289px;
  6624. width:90px;
  6625. height:30px;
  6626. display:flex;
  6627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6628. font-weight:400;
  6629. font-style:normal;
  6630. font-size:14px;
  6631. }
  6632. #u57298 .text {
  6633. position:absolute;
  6634. align-self:center;
  6635. padding:5px 10px 5px 0px;
  6636. box-sizing:border-box;
  6637. width:100%;
  6638. }
  6639. #u57298_text {
  6640. border-width:0px;
  6641. white-space:nowrap;
  6642. text-transform:none;
  6643. }
  6644. #u57299_div {
  6645. border-width:0px;
  6646. position:absolute;
  6647. left:0px;
  6648. top:0px;
  6649. width:81px;
  6650. height:30px;
  6651. background:inherit;
  6652. background-color:rgba(255, 255, 255, 0);
  6653. border:none;
  6654. border-top:0px;
  6655. border-right:0px;
  6656. border-bottom:0px;
  6657. border-radius:0px;
  6658. border-top-left-radius:0px;
  6659. border-bottom-left-radius:0px;
  6660. -moz-box-shadow:none;
  6661. -webkit-box-shadow:none;
  6662. box-shadow:none;
  6663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6664. font-weight:400;
  6665. font-style:normal;
  6666. font-size:14px;
  6667. color:#7F7F7F;
  6668. }
  6669. #u57299 {
  6670. border-width:0px;
  6671. position:absolute;
  6672. left:2307px;
  6673. top:289px;
  6674. width:81px;
  6675. height:30px;
  6676. display:flex;
  6677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6678. font-weight:400;
  6679. font-style:normal;
  6680. font-size:14px;
  6681. color:#7F7F7F;
  6682. }
  6683. #u57299 .text {
  6684. position:absolute;
  6685. align-self:center;
  6686. padding:5px 10px 5px 0px;
  6687. box-sizing:border-box;
  6688. width:100%;
  6689. }
  6690. #u57299_text {
  6691. border-width:0px;
  6692. white-space:nowrap;
  6693. text-transform:none;
  6694. }
  6695. #u57300_div {
  6696. border-width:0px;
  6697. position:absolute;
  6698. left:0px;
  6699. top:0px;
  6700. width:67px;
  6701. height:30px;
  6702. background:inherit;
  6703. background-color:rgba(255, 255, 255, 0);
  6704. border:none;
  6705. border-top:0px;
  6706. border-right:0px;
  6707. border-bottom:0px;
  6708. border-radius:0px;
  6709. border-top-left-radius:0px;
  6710. border-bottom-left-radius:0px;
  6711. -moz-box-shadow:none;
  6712. -webkit-box-shadow:none;
  6713. box-shadow:none;
  6714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6715. font-weight:400;
  6716. font-style:normal;
  6717. font-size:14px;
  6718. }
  6719. #u57300 {
  6720. border-width:0px;
  6721. position:absolute;
  6722. left:2388px;
  6723. top:289px;
  6724. width:67px;
  6725. height:30px;
  6726. display:flex;
  6727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6728. font-weight:400;
  6729. font-style:normal;
  6730. font-size:14px;
  6731. }
  6732. #u57300 .text {
  6733. position:absolute;
  6734. align-self:center;
  6735. padding:5px 10px 5px 0px;
  6736. box-sizing:border-box;
  6737. width:100%;
  6738. }
  6739. #u57300_text {
  6740. border-width:0px;
  6741. white-space:nowrap;
  6742. text-transform:none;
  6743. }
  6744. #u57301_div {
  6745. border-width:0px;
  6746. position:absolute;
  6747. left:0px;
  6748. top:0px;
  6749. width:81px;
  6750. height:30px;
  6751. background:inherit;
  6752. background-color:rgba(255, 255, 255, 0);
  6753. border:none;
  6754. border-top:0px;
  6755. border-right:0px;
  6756. border-bottom:0px;
  6757. border-radius:0px;
  6758. border-top-left-radius:0px;
  6759. border-bottom-left-radius:0px;
  6760. -moz-box-shadow:none;
  6761. -webkit-box-shadow:none;
  6762. box-shadow:none;
  6763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6764. font-weight:400;
  6765. font-style:normal;
  6766. font-size:14px;
  6767. color:#7F7F7F;
  6768. }
  6769. #u57301 {
  6770. border-width:0px;
  6771. position:absolute;
  6772. left:1690px;
  6773. top:329px;
  6774. width:81px;
  6775. height:30px;
  6776. display:flex;
  6777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6778. font-weight:400;
  6779. font-style:normal;
  6780. font-size:14px;
  6781. color:#7F7F7F;
  6782. }
  6783. #u57301 .text {
  6784. position:absolute;
  6785. align-self:center;
  6786. padding:5px 10px 5px 0px;
  6787. box-sizing:border-box;
  6788. width:100%;
  6789. }
  6790. #u57301_text {
  6791. border-width:0px;
  6792. white-space:nowrap;
  6793. text-transform:none;
  6794. }
  6795. #u57302_div {
  6796. border-width:0px;
  6797. position:absolute;
  6798. left:0px;
  6799. top:0px;
  6800. width:89px;
  6801. height:30px;
  6802. background:inherit;
  6803. background-color:rgba(255, 255, 255, 0);
  6804. border:none;
  6805. border-top:0px;
  6806. border-right:0px;
  6807. border-bottom:0px;
  6808. border-radius:0px;
  6809. border-top-left-radius:0px;
  6810. border-bottom-left-radius:0px;
  6811. -moz-box-shadow:none;
  6812. -webkit-box-shadow:none;
  6813. box-shadow:none;
  6814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6815. font-weight:400;
  6816. font-style:normal;
  6817. font-size:14px;
  6818. }
  6819. #u57302 {
  6820. border-width:0px;
  6821. position:absolute;
  6822. left:1771px;
  6823. top:329px;
  6824. width:89px;
  6825. height:30px;
  6826. display:flex;
  6827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6828. font-weight:400;
  6829. font-style:normal;
  6830. font-size:14px;
  6831. }
  6832. #u57302 .text {
  6833. position:absolute;
  6834. align-self:center;
  6835. padding:5px 10px 5px 0px;
  6836. box-sizing:border-box;
  6837. width:100%;
  6838. }
  6839. #u57302_text {
  6840. border-width:0px;
  6841. white-space:nowrap;
  6842. text-transform:none;
  6843. }
  6844. #u57303_div {
  6845. border-width:0px;
  6846. position:absolute;
  6847. left:0px;
  6848. top:0px;
  6849. width:81px;
  6850. height:30px;
  6851. background:inherit;
  6852. background-color:rgba(255, 255, 255, 0);
  6853. border:none;
  6854. border-top:0px;
  6855. border-right:0px;
  6856. border-bottom:0px;
  6857. border-radius:0px;
  6858. border-top-left-radius:0px;
  6859. border-bottom-left-radius:0px;
  6860. -moz-box-shadow:none;
  6861. -webkit-box-shadow:none;
  6862. box-shadow:none;
  6863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6864. font-weight:400;
  6865. font-style:normal;
  6866. font-size:14px;
  6867. color:#7F7F7F;
  6868. }
  6869. #u57303 {
  6870. border-width:0px;
  6871. position:absolute;
  6872. left:2307px;
  6873. top:329px;
  6874. width:81px;
  6875. height:30px;
  6876. display:flex;
  6877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6878. font-weight:400;
  6879. font-style:normal;
  6880. font-size:14px;
  6881. color:#7F7F7F;
  6882. }
  6883. #u57303 .text {
  6884. position:absolute;
  6885. align-self:center;
  6886. padding:5px 10px 5px 0px;
  6887. box-sizing:border-box;
  6888. width:100%;
  6889. }
  6890. #u57303_text {
  6891. border-width:0px;
  6892. white-space:nowrap;
  6893. text-transform:none;
  6894. }
  6895. #u57304_div {
  6896. border-width:0px;
  6897. position:absolute;
  6898. left:0px;
  6899. top:0px;
  6900. width:120px;
  6901. height:30px;
  6902. background:inherit;
  6903. background-color:rgba(255, 255, 255, 0);
  6904. border:none;
  6905. border-top:0px;
  6906. border-right:0px;
  6907. border-bottom:0px;
  6908. border-radius:0px;
  6909. border-top-left-radius:0px;
  6910. border-bottom-left-radius:0px;
  6911. -moz-box-shadow:none;
  6912. -webkit-box-shadow:none;
  6913. box-shadow:none;
  6914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6915. font-weight:400;
  6916. font-style:normal;
  6917. font-size:14px;
  6918. }
  6919. #u57304 {
  6920. border-width:0px;
  6921. position:absolute;
  6922. left:2388px;
  6923. top:329px;
  6924. width:120px;
  6925. height:30px;
  6926. display:flex;
  6927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6928. font-weight:400;
  6929. font-style:normal;
  6930. font-size:14px;
  6931. }
  6932. #u57304 .text {
  6933. position:absolute;
  6934. align-self:center;
  6935. padding:5px 10px 5px 0px;
  6936. box-sizing:border-box;
  6937. width:100%;
  6938. }
  6939. #u57304_text {
  6940. border-width:0px;
  6941. white-space:nowrap;
  6942. text-transform:none;
  6943. }
  6944. #u57305_div {
  6945. border-width:0px;
  6946. position:absolute;
  6947. left:0px;
  6948. top:0px;
  6949. width:81px;
  6950. height:30px;
  6951. background:inherit;
  6952. background-color:rgba(255, 255, 255, 0);
  6953. border:none;
  6954. border-top:0px;
  6955. border-right:0px;
  6956. border-bottom:0px;
  6957. border-radius:0px;
  6958. border-top-left-radius:0px;
  6959. border-bottom-left-radius:0px;
  6960. -moz-box-shadow:none;
  6961. -webkit-box-shadow:none;
  6962. box-shadow:none;
  6963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6964. font-weight:400;
  6965. font-style:normal;
  6966. font-size:14px;
  6967. color:#7F7F7F;
  6968. }
  6969. #u57305 {
  6970. border-width:0px;
  6971. position:absolute;
  6972. left:2010px;
  6973. top:329px;
  6974. width:81px;
  6975. height:30px;
  6976. display:flex;
  6977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6978. font-weight:400;
  6979. font-style:normal;
  6980. font-size:14px;
  6981. color:#7F7F7F;
  6982. }
  6983. #u57305 .text {
  6984. position:absolute;
  6985. align-self:center;
  6986. padding:5px 10px 5px 0px;
  6987. box-sizing:border-box;
  6988. width:100%;
  6989. }
  6990. #u57305_text {
  6991. border-width:0px;
  6992. white-space:nowrap;
  6993. text-transform:none;
  6994. }
  6995. #u57306_div {
  6996. border-width:0px;
  6997. position:absolute;
  6998. left:0px;
  6999. top:0px;
  7000. width:50px;
  7001. height:30px;
  7002. background:inherit;
  7003. background-color:rgba(255, 255, 255, 0);
  7004. border:none;
  7005. border-top:0px;
  7006. border-right:0px;
  7007. border-bottom:0px;
  7008. border-radius:0px;
  7009. border-top-left-radius:0px;
  7010. border-bottom-left-radius:0px;
  7011. -moz-box-shadow:none;
  7012. -webkit-box-shadow:none;
  7013. box-shadow:none;
  7014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7015. font-weight:400;
  7016. font-style:normal;
  7017. font-size:14px;
  7018. }
  7019. #u57306 {
  7020. border-width:0px;
  7021. position:absolute;
  7022. left:2091px;
  7023. top:329px;
  7024. width:50px;
  7025. height:30px;
  7026. display:flex;
  7027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7028. font-weight:400;
  7029. font-style:normal;
  7030. font-size:14px;
  7031. }
  7032. #u57306 .text {
  7033. position:absolute;
  7034. align-self:center;
  7035. padding:5px 10px 5px 0px;
  7036. box-sizing:border-box;
  7037. width:100%;
  7038. }
  7039. #u57306_text {
  7040. border-width:0px;
  7041. white-space:nowrap;
  7042. text-transform:none;
  7043. }
  7044. #u57307_div {
  7045. border-width:0px;
  7046. position:absolute;
  7047. left:0px;
  7048. top:0px;
  7049. width:81px;
  7050. height:30px;
  7051. background:inherit;
  7052. background-color:rgba(255, 255, 255, 0);
  7053. border:none;
  7054. border-top:0px;
  7055. border-right:0px;
  7056. border-bottom:0px;
  7057. border-radius:0px;
  7058. border-top-left-radius:0px;
  7059. border-bottom-left-radius:0px;
  7060. -moz-box-shadow:none;
  7061. -webkit-box-shadow:none;
  7062. box-shadow:none;
  7063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7064. font-weight:400;
  7065. font-style:normal;
  7066. font-size:14px;
  7067. color:#7F7F7F;
  7068. }
  7069. #u57307 {
  7070. border-width:0px;
  7071. position:absolute;
  7072. left:1690px;
  7073. top:369px;
  7074. width:81px;
  7075. height:30px;
  7076. display:flex;
  7077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7078. font-weight:400;
  7079. font-style:normal;
  7080. font-size:14px;
  7081. color:#7F7F7F;
  7082. }
  7083. #u57307 .text {
  7084. position:absolute;
  7085. align-self:center;
  7086. padding:5px 10px 5px 0px;
  7087. box-sizing:border-box;
  7088. width:100%;
  7089. }
  7090. #u57307_text {
  7091. border-width:0px;
  7092. white-space:nowrap;
  7093. text-transform:none;
  7094. }
  7095. #u57308_div {
  7096. border-width:0px;
  7097. position:absolute;
  7098. left:0px;
  7099. top:0px;
  7100. width:53px;
  7101. height:30px;
  7102. background:inherit;
  7103. background-color:rgba(255, 255, 255, 0);
  7104. border:none;
  7105. border-top:0px;
  7106. border-right:0px;
  7107. border-bottom:0px;
  7108. border-radius:0px;
  7109. border-top-left-radius:0px;
  7110. border-bottom-left-radius:0px;
  7111. -moz-box-shadow:none;
  7112. -webkit-box-shadow:none;
  7113. box-shadow:none;
  7114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7115. font-weight:400;
  7116. font-style:normal;
  7117. font-size:14px;
  7118. }
  7119. #u57308 {
  7120. border-width:0px;
  7121. position:absolute;
  7122. left:1771px;
  7123. top:369px;
  7124. width:53px;
  7125. height:30px;
  7126. display:flex;
  7127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7128. font-weight:400;
  7129. font-style:normal;
  7130. font-size:14px;
  7131. }
  7132. #u57308 .text {
  7133. position:absolute;
  7134. align-self:center;
  7135. padding:5px 10px 5px 0px;
  7136. box-sizing:border-box;
  7137. width:100%;
  7138. }
  7139. #u57308_text {
  7140. border-width:0px;
  7141. white-space:nowrap;
  7142. text-transform:none;
  7143. }
  7144. #u57309_div {
  7145. border-width:0px;
  7146. position:absolute;
  7147. left:0px;
  7148. top:0px;
  7149. width:67px;
  7150. height:30px;
  7151. background:inherit;
  7152. background-color:rgba(255, 255, 255, 0);
  7153. border:none;
  7154. border-top:0px;
  7155. border-right:0px;
  7156. border-bottom:0px;
  7157. border-radius:0px;
  7158. border-top-left-radius:0px;
  7159. border-bottom-left-radius:0px;
  7160. -moz-box-shadow:none;
  7161. -webkit-box-shadow:none;
  7162. box-shadow:none;
  7163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7164. font-weight:400;
  7165. font-style:normal;
  7166. font-size:14px;
  7167. color:#7F7F7F;
  7168. }
  7169. #u57309 {
  7170. border-width:0px;
  7171. position:absolute;
  7172. left:2010px;
  7173. top:369px;
  7174. width:67px;
  7175. height:30px;
  7176. display:flex;
  7177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7178. font-weight:400;
  7179. font-style:normal;
  7180. font-size:14px;
  7181. color:#7F7F7F;
  7182. }
  7183. #u57309 .text {
  7184. position:absolute;
  7185. align-self:center;
  7186. padding:5px 10px 5px 0px;
  7187. box-sizing:border-box;
  7188. width:100%;
  7189. }
  7190. #u57309_text {
  7191. border-width:0px;
  7192. white-space:nowrap;
  7193. text-transform:none;
  7194. }
  7195. #u57310_div {
  7196. border-width:0px;
  7197. position:absolute;
  7198. left:0px;
  7199. top:0px;
  7200. width:33px;
  7201. height:30px;
  7202. background:inherit;
  7203. background-color:rgba(255, 255, 255, 0);
  7204. border:none;
  7205. border-top:0px;
  7206. border-right:0px;
  7207. border-bottom:0px;
  7208. border-radius:0px;
  7209. border-top-left-radius:0px;
  7210. border-bottom-left-radius:0px;
  7211. -moz-box-shadow:none;
  7212. -webkit-box-shadow:none;
  7213. box-shadow:none;
  7214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7215. font-weight:400;
  7216. font-style:normal;
  7217. font-size:14px;
  7218. }
  7219. #u57310 {
  7220. border-width:0px;
  7221. position:absolute;
  7222. left:2091px;
  7223. top:369px;
  7224. width:33px;
  7225. height:30px;
  7226. display:flex;
  7227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7228. font-weight:400;
  7229. font-style:normal;
  7230. font-size:14px;
  7231. }
  7232. #u57310 .text {
  7233. position:absolute;
  7234. align-self:center;
  7235. padding:5px 10px 5px 0px;
  7236. box-sizing:border-box;
  7237. width:100%;
  7238. }
  7239. #u57310_text {
  7240. border-width:0px;
  7241. white-space:nowrap;
  7242. text-transform:none;
  7243. }
  7244. #u57311_div {
  7245. border-width:0px;
  7246. position:absolute;
  7247. left:0px;
  7248. top:0px;
  7249. width:81px;
  7250. height:30px;
  7251. background:inherit;
  7252. background-color:rgba(255, 255, 255, 0);
  7253. border:none;
  7254. border-top:0px;
  7255. border-right:0px;
  7256. border-bottom:0px;
  7257. border-radius:0px;
  7258. border-top-left-radius:0px;
  7259. border-bottom-left-radius:0px;
  7260. -moz-box-shadow:none;
  7261. -webkit-box-shadow:none;
  7262. box-shadow:none;
  7263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7264. font-weight:400;
  7265. font-style:normal;
  7266. font-size:14px;
  7267. color:#7F7F7F;
  7268. }
  7269. #u57311 {
  7270. border-width:0px;
  7271. position:absolute;
  7272. left:1690px;
  7273. top:289px;
  7274. width:81px;
  7275. height:30px;
  7276. display:flex;
  7277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7278. font-weight:400;
  7279. font-style:normal;
  7280. font-size:14px;
  7281. color:#7F7F7F;
  7282. }
  7283. #u57311 .text {
  7284. position:absolute;
  7285. align-self:center;
  7286. padding:5px 10px 5px 0px;
  7287. box-sizing:border-box;
  7288. width:100%;
  7289. }
  7290. #u57311_text {
  7291. border-width:0px;
  7292. white-space:nowrap;
  7293. text-transform:none;
  7294. }
  7295. #u57312_div {
  7296. border-width:0px;
  7297. position:absolute;
  7298. left:0px;
  7299. top:0px;
  7300. width:95px;
  7301. height:30px;
  7302. background:inherit;
  7303. background-color:rgba(255, 255, 255, 0);
  7304. border:none;
  7305. border-top:0px;
  7306. border-right:0px;
  7307. border-bottom:0px;
  7308. border-radius:0px;
  7309. border-top-left-radius:0px;
  7310. border-bottom-left-radius:0px;
  7311. -moz-box-shadow:none;
  7312. -webkit-box-shadow:none;
  7313. box-shadow:none;
  7314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7315. font-weight:400;
  7316. font-style:normal;
  7317. font-size:14px;
  7318. }
  7319. #u57312 {
  7320. border-width:0px;
  7321. position:absolute;
  7322. left:1771px;
  7323. top:289px;
  7324. width:95px;
  7325. height:30px;
  7326. display:flex;
  7327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7328. font-weight:400;
  7329. font-style:normal;
  7330. font-size:14px;
  7331. }
  7332. #u57312 .text {
  7333. position:absolute;
  7334. align-self:center;
  7335. padding:5px 10px 5px 0px;
  7336. box-sizing:border-box;
  7337. width:100%;
  7338. }
  7339. #u57312_text {
  7340. border-width:0px;
  7341. white-space:nowrap;
  7342. text-transform:none;
  7343. }
  7344. #u57313 {
  7345. border-width:0px;
  7346. position:absolute;
  7347. left:1690px;
  7348. top:466px;
  7349. width:921px;
  7350. height:120px;
  7351. }
  7352. #u57314_img {
  7353. border-width:0px;
  7354. position:absolute;
  7355. left:0px;
  7356. top:0px;
  7357. width:343px;
  7358. height:30px;
  7359. }
  7360. #u57314 {
  7361. border-width:0px;
  7362. position:absolute;
  7363. left:0px;
  7364. top:0px;
  7365. width:343px;
  7366. height:30px;
  7367. display:flex;
  7368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7369. font-weight:400;
  7370. font-style:normal;
  7371. color:#FFFFFF;
  7372. }
  7373. #u57314 .text {
  7374. position:absolute;
  7375. align-self:center;
  7376. padding:2px 2px 2px 2px;
  7377. box-sizing:border-box;
  7378. width:100%;
  7379. }
  7380. #u57314_text {
  7381. border-width:0px;
  7382. word-wrap:break-word;
  7383. text-transform:none;
  7384. }
  7385. #u57315_img {
  7386. border-width:0px;
  7387. position:absolute;
  7388. left:0px;
  7389. top:0px;
  7390. width:297px;
  7391. height:30px;
  7392. }
  7393. #u57315 {
  7394. border-width:0px;
  7395. position:absolute;
  7396. left:343px;
  7397. top:0px;
  7398. width:297px;
  7399. height:30px;
  7400. display:flex;
  7401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7402. font-weight:400;
  7403. font-style:normal;
  7404. color:#FFFFFF;
  7405. }
  7406. #u57315 .text {
  7407. position:absolute;
  7408. align-self:center;
  7409. padding:2px 2px 2px 2px;
  7410. box-sizing:border-box;
  7411. width:100%;
  7412. }
  7413. #u57315_text {
  7414. border-width:0px;
  7415. word-wrap:break-word;
  7416. text-transform:none;
  7417. }
  7418. #u57316_img {
  7419. border-width:0px;
  7420. position:absolute;
  7421. left:0px;
  7422. top:0px;
  7423. width:281px;
  7424. height:30px;
  7425. }
  7426. #u57316 {
  7427. border-width:0px;
  7428. position:absolute;
  7429. left:640px;
  7430. top:0px;
  7431. width:281px;
  7432. height:30px;
  7433. display:flex;
  7434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7435. font-weight:400;
  7436. font-style:normal;
  7437. color:#FFFFFF;
  7438. }
  7439. #u57316 .text {
  7440. position:absolute;
  7441. align-self:center;
  7442. padding:2px 2px 2px 2px;
  7443. box-sizing:border-box;
  7444. width:100%;
  7445. }
  7446. #u57316_text {
  7447. border-width:0px;
  7448. word-wrap:break-word;
  7449. text-transform:none;
  7450. }
  7451. #u57317_img {
  7452. border-width:0px;
  7453. position:absolute;
  7454. left:0px;
  7455. top:0px;
  7456. width:343px;
  7457. height:30px;
  7458. }
  7459. #u57317 {
  7460. border-width:0px;
  7461. position:absolute;
  7462. left:0px;
  7463. top:30px;
  7464. width:343px;
  7465. height:30px;
  7466. display:flex;
  7467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7468. font-weight:400;
  7469. font-style:normal;
  7470. }
  7471. #u57317 .text {
  7472. position:absolute;
  7473. align-self:center;
  7474. padding:2px 2px 2px 2px;
  7475. box-sizing:border-box;
  7476. width:100%;
  7477. }
  7478. #u57317_text {
  7479. border-width:0px;
  7480. word-wrap:break-word;
  7481. text-transform:none;
  7482. }
  7483. #u57318_img {
  7484. border-width:0px;
  7485. position:absolute;
  7486. left:0px;
  7487. top:0px;
  7488. width:297px;
  7489. height:30px;
  7490. }
  7491. #u57318 {
  7492. border-width:0px;
  7493. position:absolute;
  7494. left:343px;
  7495. top:30px;
  7496. width:297px;
  7497. height:30px;
  7498. display:flex;
  7499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7500. font-weight:400;
  7501. font-style:normal;
  7502. }
  7503. #u57318 .text {
  7504. position:absolute;
  7505. align-self:center;
  7506. padding:2px 2px 2px 2px;
  7507. box-sizing:border-box;
  7508. width:100%;
  7509. }
  7510. #u57318_text {
  7511. border-width:0px;
  7512. word-wrap:break-word;
  7513. text-transform:none;
  7514. }
  7515. #u57319_img {
  7516. border-width:0px;
  7517. position:absolute;
  7518. left:0px;
  7519. top:0px;
  7520. width:281px;
  7521. height:30px;
  7522. }
  7523. #u57319 {
  7524. border-width:0px;
  7525. position:absolute;
  7526. left:640px;
  7527. top:30px;
  7528. width:281px;
  7529. height:30px;
  7530. display:flex;
  7531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7532. font-weight:400;
  7533. font-style:normal;
  7534. }
  7535. #u57319 .text {
  7536. position:absolute;
  7537. align-self:center;
  7538. padding:2px 2px 2px 2px;
  7539. box-sizing:border-box;
  7540. width:100%;
  7541. }
  7542. #u57319_text {
  7543. border-width:0px;
  7544. word-wrap:break-word;
  7545. text-transform:none;
  7546. }
  7547. #u57320_img {
  7548. border-width:0px;
  7549. position:absolute;
  7550. left:0px;
  7551. top:0px;
  7552. width:343px;
  7553. height:30px;
  7554. }
  7555. #u57320 {
  7556. border-width:0px;
  7557. position:absolute;
  7558. left:0px;
  7559. top:60px;
  7560. width:343px;
  7561. height:30px;
  7562. display:flex;
  7563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7564. font-weight:400;
  7565. font-style:normal;
  7566. }
  7567. #u57320 .text {
  7568. position:absolute;
  7569. align-self:center;
  7570. padding:2px 2px 2px 2px;
  7571. box-sizing:border-box;
  7572. width:100%;
  7573. }
  7574. #u57320_text {
  7575. border-width:0px;
  7576. word-wrap:break-word;
  7577. text-transform:none;
  7578. visibility:hidden;
  7579. }
  7580. #u57321_img {
  7581. border-width:0px;
  7582. position:absolute;
  7583. left:0px;
  7584. top:0px;
  7585. width:297px;
  7586. height:30px;
  7587. }
  7588. #u57321 {
  7589. border-width:0px;
  7590. position:absolute;
  7591. left:343px;
  7592. top:60px;
  7593. width:297px;
  7594. height:30px;
  7595. display:flex;
  7596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7597. font-weight:400;
  7598. font-style:normal;
  7599. }
  7600. #u57321 .text {
  7601. position:absolute;
  7602. align-self:center;
  7603. padding:2px 2px 2px 2px;
  7604. box-sizing:border-box;
  7605. width:100%;
  7606. }
  7607. #u57321_text {
  7608. border-width:0px;
  7609. word-wrap:break-word;
  7610. text-transform:none;
  7611. visibility:hidden;
  7612. }
  7613. #u57322_img {
  7614. border-width:0px;
  7615. position:absolute;
  7616. left:0px;
  7617. top:0px;
  7618. width:281px;
  7619. height:30px;
  7620. }
  7621. #u57322 {
  7622. border-width:0px;
  7623. position:absolute;
  7624. left:640px;
  7625. top:60px;
  7626. width:281px;
  7627. height:30px;
  7628. display:flex;
  7629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7630. font-weight:400;
  7631. font-style:normal;
  7632. }
  7633. #u57322 .text {
  7634. position:absolute;
  7635. align-self:center;
  7636. padding:2px 2px 2px 2px;
  7637. box-sizing:border-box;
  7638. width:100%;
  7639. }
  7640. #u57322_text {
  7641. border-width:0px;
  7642. word-wrap:break-word;
  7643. text-transform:none;
  7644. visibility:hidden;
  7645. }
  7646. #u57323_img {
  7647. border-width:0px;
  7648. position:absolute;
  7649. left:0px;
  7650. top:0px;
  7651. width:343px;
  7652. height:30px;
  7653. }
  7654. #u57323 {
  7655. border-width:0px;
  7656. position:absolute;
  7657. left:0px;
  7658. top:90px;
  7659. width:343px;
  7660. height:30px;
  7661. display:flex;
  7662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7663. font-weight:400;
  7664. font-style:normal;
  7665. }
  7666. #u57323 .text {
  7667. position:absolute;
  7668. align-self:center;
  7669. padding:2px 2px 2px 2px;
  7670. box-sizing:border-box;
  7671. width:100%;
  7672. }
  7673. #u57323_text {
  7674. border-width:0px;
  7675. word-wrap:break-word;
  7676. text-transform:none;
  7677. visibility:hidden;
  7678. }
  7679. #u57324_img {
  7680. border-width:0px;
  7681. position:absolute;
  7682. left:0px;
  7683. top:0px;
  7684. width:297px;
  7685. height:30px;
  7686. }
  7687. #u57324 {
  7688. border-width:0px;
  7689. position:absolute;
  7690. left:343px;
  7691. top:90px;
  7692. width:297px;
  7693. height:30px;
  7694. display:flex;
  7695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7696. font-weight:400;
  7697. font-style:normal;
  7698. }
  7699. #u57324 .text {
  7700. position:absolute;
  7701. align-self:center;
  7702. padding:2px 2px 2px 2px;
  7703. box-sizing:border-box;
  7704. width:100%;
  7705. }
  7706. #u57324_text {
  7707. border-width:0px;
  7708. word-wrap:break-word;
  7709. text-transform:none;
  7710. visibility:hidden;
  7711. }
  7712. #u57325_img {
  7713. border-width:0px;
  7714. position:absolute;
  7715. left:0px;
  7716. top:0px;
  7717. width:281px;
  7718. height:30px;
  7719. }
  7720. #u57325 {
  7721. border-width:0px;
  7722. position:absolute;
  7723. left:640px;
  7724. top:90px;
  7725. width:281px;
  7726. height:30px;
  7727. display:flex;
  7728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7729. font-weight:400;
  7730. font-style:normal;
  7731. }
  7732. #u57325 .text {
  7733. position:absolute;
  7734. align-self:center;
  7735. padding:2px 2px 2px 2px;
  7736. box-sizing:border-box;
  7737. width:100%;
  7738. }
  7739. #u57325_text {
  7740. border-width:0px;
  7741. word-wrap:break-word;
  7742. text-transform:none;
  7743. visibility:hidden;
  7744. }
  7745. #u57326_div {
  7746. border-width:0px;
  7747. position:absolute;
  7748. left:0px;
  7749. top:0px;
  7750. width:101px;
  7751. height:35px;
  7752. background:inherit;
  7753. background-color:rgba(255, 255, 255, 0);
  7754. border:none;
  7755. border-top:0px;
  7756. border-right:0px;
  7757. border-bottom:0px;
  7758. border-radius:0px;
  7759. border-top-left-radius:0px;
  7760. border-bottom-left-radius:0px;
  7761. -moz-box-shadow:none;
  7762. -webkit-box-shadow:none;
  7763. box-shadow:none;
  7764. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7765. font-weight:500;
  7766. font-style:normal;
  7767. font-size:18px;
  7768. }
  7769. #u57326 {
  7770. border-width:0px;
  7771. position:absolute;
  7772. left:1690px;
  7773. top:421px;
  7774. width:101px;
  7775. height:35px;
  7776. display:flex;
  7777. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7778. font-weight:500;
  7779. font-style:normal;
  7780. font-size:18px;
  7781. }
  7782. #u57326 .text {
  7783. position:absolute;
  7784. align-self:center;
  7785. padding:5px 10px 5px 0px;
  7786. box-sizing:border-box;
  7787. width:100%;
  7788. }
  7789. #u57326_text {
  7790. border-width:0px;
  7791. white-space:nowrap;
  7792. text-transform:none;
  7793. }