styles.css 128 KB

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